blob: fee3e93ca5648a64ca3305402a7cb1583d34c105 [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"
Zhu Yib481de92007-09-25 17:54:57 -070050#include "iwl-3945.h"
Tomas Winklerbddadf82008-12-19 10:37:01 +080051#include "iwl-3945-fh.h"
Zhu Yib481de92007-09-25 17:54:57 -070052#include "iwl-helpers.h"
53
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080054#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080055u32 iwl3945_debug_level;
Zhu Yib481de92007-09-25 17:54:57 -070056#endif
57
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080058static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
59 struct iwl3945_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080060
Zhu Yib481de92007-09-25 17:54:57 -070061/******************************************************************************
62 *
63 * module boiler plate
64 *
65 ******************************************************************************/
66
67/* module parameters */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080068static int iwl3945_param_disable_hw_scan; /* def: 0 = use 3945's h/w scan */
Wu, Fengguang95aa1942008-12-17 16:52:30 +080069static u32 iwl3945_param_debug; /* def: 0 = minimal debug log messages */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080070static int iwl3945_param_disable; /* def: 0 = enable radio */
Ben Cahill9fbab512007-11-29 11:09:47 +080071static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080072int iwl3945_param_hwcrypto; /* def: 0 = use software encryption */
Ron Rindjunskydfe7d452008-04-15 16:01:45 -070073int iwl3945_param_queues_num = IWL39_MAX_NUM_QUEUES; /* def: 8 Tx queues */
Zhu Yib481de92007-09-25 17:54:57 -070074
75/*
76 * module name, copyright, version, etc.
77 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
78 */
79
80#define DRV_DESCRIPTION \
81"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
82
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080083#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070084#define VD "d"
85#else
86#define VD
87#endif
88
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080089#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070090#define VS "s"
91#else
92#define VS
93#endif
94
Reinette Chatreb9e0b442008-02-08 16:39:11 -080095#define IWLWIFI_VERSION "1.2.26k" VD VS
Reinette Chatreeb7ae892008-03-11 16:17:17 -070096#define DRV_COPYRIGHT "Copyright(c) 2003-2008 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080097#define DRV_AUTHOR "<ilw@linux.intel.com>"
Zhu Yib481de92007-09-25 17:54:57 -070098#define DRV_VERSION IWLWIFI_VERSION
99
Zhu Yib481de92007-09-25 17:54:57 -0700100
101MODULE_DESCRIPTION(DRV_DESCRIPTION);
102MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -0800103MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -0700104MODULE_LICENSE("GPL");
105
Johannes Berg8318d782008-01-24 19:38:38 +0100106static const struct ieee80211_supported_band *iwl3945_get_band(
107 struct iwl3945_priv *priv, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700108{
Johannes Berg8318d782008-01-24 19:38:38 +0100109 return priv->hw->wiphy->bands[band];
Zhu Yib481de92007-09-25 17:54:57 -0700110}
111
Zhu Yib481de92007-09-25 17:54:57 -0700112/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
113 * DMA services
114 *
115 * Theory of operation
116 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800117 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
118 * of buffer descriptors, each of which points to one or more data buffers for
119 * the device to read from or fill. Driver and device exchange status of each
120 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
121 * entries in each circular buffer, to protect against confusing empty and full
122 * queue states.
123 *
124 * The device reads or writes the data in the queues via the device's several
125 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700126 *
127 * For Tx queue, there are low mark and high mark limits. If, after queuing
128 * the packet for Tx, free space become < low mark, Tx queue stopped. When
129 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
130 * Tx queue resumed.
131 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800132 * The 3945 operates with six queues: One receive queue, one transmit queue
133 * (#4) for sending commands to the device firmware, and four transmit queues
134 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
Zhu Yib481de92007-09-25 17:54:57 -0700135 ***************************************************/
136
Tomas Winklerc54b6792008-03-06 17:36:53 -0800137int iwl3945_queue_space(const struct iwl3945_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -0700138{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800139 int s = q->read_ptr - q->write_ptr;
Zhu Yib481de92007-09-25 17:54:57 -0700140
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800141 if (q->read_ptr > q->write_ptr)
Zhu Yib481de92007-09-25 17:54:57 -0700142 s -= q->n_bd;
143
144 if (s <= 0)
145 s += q->n_window;
146 /* keep some reserve to not confuse empty and full situations */
147 s -= 2;
148 if (s < 0)
149 s = 0;
150 return s;
151}
152
Tomas Winklerc54b6792008-03-06 17:36:53 -0800153int iwl3945_x2_queue_used(const struct iwl3945_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700154{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800155 return q->write_ptr > q->read_ptr ?
156 (i >= q->read_ptr && i < q->write_ptr) :
157 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700158}
159
Tomas Winklerc54b6792008-03-06 17:36:53 -0800160
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800161static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge)
Zhu Yib481de92007-09-25 17:54:57 -0700162{
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800163 /* This is for scan command, the big buffer at end of command array */
Zhu Yib481de92007-09-25 17:54:57 -0700164 if (is_huge)
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800165 return q->n_window; /* must be power of 2 */
Zhu Yib481de92007-09-25 17:54:57 -0700166
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800167 /* Otherwise, use normal size buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700168 return index & (q->n_window - 1);
169}
170
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800171/**
172 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
173 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800174static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700175 int count, int slots_num, u32 id)
176{
177 q->n_bd = count;
178 q->n_window = slots_num;
179 q->id = id;
180
Tomas Winklerc54b6792008-03-06 17:36:53 -0800181 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
182 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700183 BUG_ON(!is_power_of_2(count));
184
185 /* slots_num must be power-of-two size, otherwise
186 * get_cmd_index is broken. */
187 BUG_ON(!is_power_of_2(slots_num));
188
189 q->low_mark = q->n_window / 4;
190 if (q->low_mark < 4)
191 q->low_mark = 4;
192
193 q->high_mark = q->n_window / 8;
194 if (q->high_mark < 2)
195 q->high_mark = 2;
196
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800197 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700198
199 return 0;
200}
201
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800202/**
203 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
204 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800205static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
206 struct iwl3945_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700207{
208 struct pci_dev *dev = priv->pci_dev;
209
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800210 /* Driver private data, only for Tx (not command) queues,
211 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700212 if (id != IWL_CMD_QUEUE_NUM) {
213 txq->txb = kmalloc(sizeof(txq->txb[0]) *
214 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
215 if (!txq->txb) {
Ian Schram01ebd062007-10-25 17:15:22 +0800216 IWL_ERROR("kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700217 "structures failed\n");
218 goto error;
219 }
220 } else
221 txq->txb = NULL;
222
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800223 /* Circular buffer of transmit frame descriptors (TFDs),
224 * shared with device */
Zhu Yib481de92007-09-25 17:54:57 -0700225 txq->bd = pci_alloc_consistent(dev,
226 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
227 &txq->q.dma_addr);
228
229 if (!txq->bd) {
230 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
231 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
232 goto error;
233 }
234 txq->q.id = id;
235
236 return 0;
237
238 error:
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300239 kfree(txq->txb);
240 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700241
242 return -ENOMEM;
243}
244
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800245/**
246 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
247 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800248int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
249 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700250{
251 struct pci_dev *dev = priv->pci_dev;
252 int len;
253 int rc = 0;
254
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800255 /*
256 * Alloc buffer array for commands (Tx or other types of commands).
257 * For the command queue (#4), allocate command space + one big
258 * command for scan, since scan command is very huge; the system will
259 * not have two scans at the same time, so only one is needed.
260 * For data Tx queues (all other queues), no super-size command
261 * space is needed.
262 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800263 len = sizeof(struct iwl3945_cmd) * slots_num;
Zhu Yib481de92007-09-25 17:54:57 -0700264 if (txq_id == IWL_CMD_QUEUE_NUM)
265 len += IWL_MAX_SCAN_SIZE;
266 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
267 if (!txq->cmd)
268 return -ENOMEM;
269
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800270 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800271 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700272 if (rc) {
273 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
274
275 return -ENOMEM;
276 }
277 txq->need_update = 0;
278
279 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800280 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700281 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800282
283 /* Initialize queue high/low-water, head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800284 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700285
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800286 /* Tell device where to find queue, enable DMA channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800287 iwl3945_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700288
289 return 0;
290}
291
292/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800293 * iwl3945_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700294 * @txq: Transmit queue to deallocate.
295 *
296 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800297 * Free all buffers.
298 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700299 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800300void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700301{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800302 struct iwl3945_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700303 struct pci_dev *dev = priv->pci_dev;
304 int len;
305
306 if (q->n_bd == 0)
307 return;
308
309 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800310 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800311 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800312 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700313
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800314 len = sizeof(struct iwl3945_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700315 if (q->id == IWL_CMD_QUEUE_NUM)
316 len += IWL_MAX_SCAN_SIZE;
317
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800318 /* De-alloc array of command/tx buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700319 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
320
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800321 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700322 if (txq->q.n_bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800323 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) *
Zhu Yib481de92007-09-25 17:54:57 -0700324 txq->q.n_bd, txq->bd, txq->q.dma_addr);
325
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800326 /* De-alloc array of per-TFD driver data */
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300327 kfree(txq->txb);
328 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700329
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800330 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700331 memset(txq, 0, sizeof(*txq));
332}
333
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800334const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Zhu Yib481de92007-09-25 17:54:57 -0700335
336/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800337 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700338 * the functionality provided here
339 */
340
341/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800342#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800343/**
344 * iwl3945_remove_station - Remove driver's knowledge of station.
345 *
346 * NOTE: This does not remove station from device's station table.
347 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800348static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700349{
350 int index = IWL_INVALID_STATION;
351 int i;
352 unsigned long flags;
353
354 spin_lock_irqsave(&priv->sta_lock, flags);
355
356 if (is_ap)
357 index = IWL_AP_ID;
358 else if (is_broadcast_ether_addr(addr))
359 index = priv->hw_setting.bcast_sta_id;
360 else
361 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
362 if (priv->stations[i].used &&
363 !compare_ether_addr(priv->stations[i].sta.sta.addr,
364 addr)) {
365 index = i;
366 break;
367 }
368
369 if (unlikely(index == IWL_INVALID_STATION))
370 goto out;
371
372 if (priv->stations[index].used) {
373 priv->stations[index].used = 0;
374 priv->num_stations--;
375 }
376
377 BUG_ON(priv->num_stations < 0);
378
379out:
380 spin_unlock_irqrestore(&priv->sta_lock, flags);
381 return 0;
382}
Zhu Yi556f8db2007-09-27 11:27:33 +0800383#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800384
385/**
386 * iwl3945_clear_stations_table - Clear the driver's station table
387 *
388 * NOTE: This does not clear or otherwise alter the device's station table.
389 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800390static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700391{
392 unsigned long flags;
393
394 spin_lock_irqsave(&priv->sta_lock, flags);
395
396 priv->num_stations = 0;
397 memset(priv->stations, 0, sizeof(priv->stations));
398
399 spin_unlock_irqrestore(&priv->sta_lock, flags);
400}
401
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800402/**
403 * iwl3945_add_station - Add station to station tables in driver and device
404 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800405u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700406{
407 int i;
408 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800409 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700410 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800411 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700412
413 spin_lock_irqsave(&priv->sta_lock, flags_spin);
414 if (is_ap)
415 index = IWL_AP_ID;
416 else if (is_broadcast_ether_addr(addr))
417 index = priv->hw_setting.bcast_sta_id;
418 else
419 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
420 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
421 addr)) {
422 index = i;
423 break;
424 }
425
426 if (!priv->stations[i].used &&
427 index == IWL_INVALID_STATION)
428 index = i;
429 }
430
Ian Schram01ebd062007-10-25 17:15:22 +0800431 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700432 since they have different meaning */
433 if (unlikely(index == IWL_INVALID_STATION)) {
434 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
435 return index;
436 }
437
438 if (priv->stations[index].used &&
439 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
440 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
441 return index;
442 }
443
Johannes Berge1749612008-10-27 15:59:26 -0700444 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
Zhu Yib481de92007-09-25 17:54:57 -0700445 station = &priv->stations[index];
446 station->used = 1;
447 priv->num_stations++;
448
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800449 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800450 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700451 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
452 station->sta.mode = 0;
453 station->sta.sta.sta_id = index;
454 station->sta.station_flags = 0;
455
Johannes Berg8318d782008-01-24 19:38:38 +0100456 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800457 rate = IWL_RATE_6M_PLCP;
458 else
459 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800460
461 /* Turn on both antennas for the station... */
462 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800463 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800464 station->current_rate.rate_n_flags =
465 le16_to_cpu(station->sta.rate_n_flags);
466
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)
638 out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME);
639
640 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800641 offsetof(struct iwl3945_cmd, hdr);
642 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700643
644 pad = U32_PAD(cmd->len);
645 count = TFD_CTL_COUNT_GET(*control_flags);
646 *control_flags = TFD_CTL_COUNT_SET(count) | TFD_CTL_PAD_SET(pad);
647
648 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
649 "%d bytes at %d[%d]:%d\n",
650 get_cmd_string(out_cmd->hdr.cmd),
651 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800652 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700653
654 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800655
656 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800657 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800658 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700659
660 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
661 return ret ? ret : idx;
662}
663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800664static int iwl3945_send_cmd_async(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700665{
666 int ret;
667
668 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
669
670 /* An asynchronous command can not expect an SKB to be set. */
671 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
672
673 /* An asynchronous command MUST have a callback. */
674 BUG_ON(!cmd->meta.u.callback);
675
676 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
677 return -EBUSY;
678
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800679 ret = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700680 if (ret < 0) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800681 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700682 get_cmd_string(cmd->id), ret);
683 return ret;
684 }
685 return 0;
686}
687
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800688static int iwl3945_send_cmd_sync(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700689{
690 int cmd_idx;
691 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700692
693 BUG_ON(cmd->meta.flags & CMD_ASYNC);
694
695 /* A synchronous command can not have a callback set. */
696 BUG_ON(cmd->meta.u.callback != NULL);
697
Tomas Winklere5472972008-03-28 16:21:12 -0700698 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
Zhu Yib481de92007-09-25 17:54:57 -0700699 IWL_ERROR("Error sending %s: Already sending a host command\n",
700 get_cmd_string(cmd->id));
Tomas Winklere5472972008-03-28 16:21:12 -0700701 ret = -EBUSY;
702 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700703 }
704
705 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
706
707 if (cmd->meta.flags & CMD_WANT_SKB)
708 cmd->meta.source = &cmd->meta;
709
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800710 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700711 if (cmd_idx < 0) {
712 ret = cmd_idx;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800713 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700714 get_cmd_string(cmd->id), ret);
715 goto out;
716 }
717
718 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
719 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
720 HOST_COMPLETE_TIMEOUT);
721 if (!ret) {
722 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
723 IWL_ERROR("Error sending %s: time out after %dms.\n",
724 get_cmd_string(cmd->id),
725 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
726
727 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
728 ret = -ETIMEDOUT;
729 goto cancel;
730 }
731 }
732
733 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
734 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
735 get_cmd_string(cmd->id));
736 ret = -ECANCELED;
737 goto fail;
738 }
739 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
740 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
741 get_cmd_string(cmd->id));
742 ret = -EIO;
743 goto fail;
744 }
745 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
746 IWL_ERROR("Error: Response NULL in '%s'\n",
747 get_cmd_string(cmd->id));
748 ret = -EIO;
Zhu Yi73e1a652009-01-08 10:19:58 -0800749 goto cancel;
Zhu Yib481de92007-09-25 17:54:57 -0700750 }
751
752 ret = 0;
753 goto out;
754
755cancel:
756 if (cmd->meta.flags & CMD_WANT_SKB) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800757 struct iwl3945_cmd *qcmd;
Zhu Yib481de92007-09-25 17:54:57 -0700758
759 /* Cancel the CMD_WANT_SKB flag for the cmd in the
760 * TX cmd queue. Otherwise in case the cmd comes
761 * in later, it will possibly set an invalid
762 * address (cmd->meta.source). */
763 qcmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
764 qcmd->meta.flags &= ~CMD_WANT_SKB;
765 }
766fail:
767 if (cmd->meta.u.skb) {
768 dev_kfree_skb_any(cmd->meta.u.skb);
769 cmd->meta.u.skb = NULL;
770 }
771out:
Tomas Winklere5472972008-03-28 16:21:12 -0700772 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -0700773 return ret;
774}
775
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800776int iwl3945_send_cmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700777{
Zhu Yib481de92007-09-25 17:54:57 -0700778 if (cmd->meta.flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800779 return iwl3945_send_cmd_async(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700780
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800781 return iwl3945_send_cmd_sync(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700782}
783
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800784int iwl3945_send_cmd_pdu(struct iwl3945_priv *priv, u8 id, u16 len, const void *data)
Zhu Yib481de92007-09-25 17:54:57 -0700785{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800786 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700787 .id = id,
788 .len = len,
789 .data = data,
790 };
791
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800792 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700793}
794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800795static int __must_check iwl3945_send_cmd_u32(struct iwl3945_priv *priv, u8 id, u32 val)
Zhu Yib481de92007-09-25 17:54:57 -0700796{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800797 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700798 .id = id,
799 .len = sizeof(val),
800 .data = &val,
801 };
802
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800803 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700804}
805
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800806int iwl3945_send_statistics_request(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700807{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800808 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700809}
810
811/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800812 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
Johannes Berg8318d782008-01-24 19:38:38 +0100813 * @band: 2.4 or 5 GHz band
814 * @channel: Any channel valid for the requested band
Zhu Yib481de92007-09-25 17:54:57 -0700815
Johannes Berg8318d782008-01-24 19:38:38 +0100816 * In addition to setting the staging RXON, priv->band is also set.
Zhu Yib481de92007-09-25 17:54:57 -0700817 *
818 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Johannes Berg8318d782008-01-24 19:38:38 +0100819 * in the staging RXON flag structure based on the band
Zhu Yib481de92007-09-25 17:54:57 -0700820 */
Johannes Berg8318d782008-01-24 19:38:38 +0100821static int iwl3945_set_rxon_channel(struct iwl3945_priv *priv,
822 enum ieee80211_band band,
823 u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -0700824{
Johannes Berg8318d782008-01-24 19:38:38 +0100825 if (!iwl3945_get_channel_info(priv, band, channel)) {
Zhu Yib481de92007-09-25 17:54:57 -0700826 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
Johannes Berg8318d782008-01-24 19:38:38 +0100827 channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700828 return -EINVAL;
829 }
830
831 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
Johannes Berg8318d782008-01-24 19:38:38 +0100832 (priv->band == band))
Zhu Yib481de92007-09-25 17:54:57 -0700833 return 0;
834
835 priv->staging_rxon.channel = cpu_to_le16(channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100836 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700837 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
838 else
839 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
840
Johannes Berg8318d782008-01-24 19:38:38 +0100841 priv->band = band;
Zhu Yib481de92007-09-25 17:54:57 -0700842
Johannes Berg8318d782008-01-24 19:38:38 +0100843 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700844
845 return 0;
846}
847
848/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800849 * iwl3945_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700850 *
851 * NOTE: This is really only useful during development and can eventually
852 * be #ifdef'd out once the driver is stable and folks aren't actively
853 * making changes
854 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800855static int iwl3945_check_rxon_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700856{
857 int error = 0;
858 int counter = 1;
859
860 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
861 error |= le32_to_cpu(rxon->flags &
862 (RXON_FLG_TGJ_NARROW_BAND_MSK |
863 RXON_FLG_RADAR_DETECT_MSK));
864 if (error)
865 IWL_WARNING("check 24G fields %d | %d\n",
866 counter++, error);
867 } else {
868 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
869 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
870 if (error)
871 IWL_WARNING("check 52 fields %d | %d\n",
872 counter++, error);
873 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
874 if (error)
875 IWL_WARNING("check 52 CCK %d | %d\n",
876 counter++, error);
877 }
878 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
879 if (error)
880 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
881
882 /* make sure basic rates 6Mbps and 1Mbps are supported */
883 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
884 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
885 if (error)
886 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
887
888 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
889 if (error)
890 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
891
892 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
893 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
894 if (error)
895 IWL_WARNING("check CCK and short slot %d | %d\n",
896 counter++, error);
897
898 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
899 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
900 if (error)
901 IWL_WARNING("check CCK & auto detect %d | %d\n",
902 counter++, error);
903
904 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
905 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
906 if (error)
907 IWL_WARNING("check TGG and auto detect %d | %d\n",
908 counter++, error);
909
910 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
911 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
912 RXON_FLG_ANT_A_MSK)) == 0);
913 if (error)
914 IWL_WARNING("check antenna %d %d\n", counter++, error);
915
916 if (error)
917 IWL_WARNING("Tuning to channel %d\n",
918 le16_to_cpu(rxon->channel));
919
920 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800921 IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700922 return -1;
923 }
924 return 0;
925}
926
927/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800928 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800929 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700930 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800931 * If the RXON structure is changing enough to require a new tune,
932 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
933 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700934 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800935static int iwl3945_full_rxon_required(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700936{
937
938 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800939 if (!(iwl3945_is_associated(priv)) ||
Zhu Yib481de92007-09-25 17:54:57 -0700940 compare_ether_addr(priv->staging_rxon.bssid_addr,
941 priv->active_rxon.bssid_addr) ||
942 compare_ether_addr(priv->staging_rxon.node_addr,
943 priv->active_rxon.node_addr) ||
944 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
945 priv->active_rxon.wlap_bssid_addr) ||
946 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
947 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
948 (priv->staging_rxon.air_propagation !=
949 priv->active_rxon.air_propagation) ||
950 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
951 return 1;
952
953 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
954 * be updated with the RXON_ASSOC command -- however only some
955 * flag transitions are allowed using RXON_ASSOC */
956
957 /* Check if we are not switching bands */
958 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
959 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
960 return 1;
961
962 /* Check if we are switching association toggle */
963 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
964 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
965 return 1;
966
967 return 0;
968}
969
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800970static int iwl3945_send_rxon_assoc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700971{
972 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800973 struct iwl3945_rx_packet *res = NULL;
974 struct iwl3945_rxon_assoc_cmd rxon_assoc;
975 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700976 .id = REPLY_RXON_ASSOC,
977 .len = sizeof(rxon_assoc),
978 .meta.flags = CMD_WANT_SKB,
979 .data = &rxon_assoc,
980 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800981 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging_rxon;
982 const struct iwl3945_rxon_cmd *rxon2 = &priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700983
984 if ((rxon1->flags == rxon2->flags) &&
985 (rxon1->filter_flags == rxon2->filter_flags) &&
986 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
987 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
988 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
989 return 0;
990 }
991
992 rxon_assoc.flags = priv->staging_rxon.flags;
993 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
994 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
995 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
996 rxon_assoc.reserved = 0;
997
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800998 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700999 if (rc)
1000 return rc;
1001
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001002 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001003 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1004 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1005 rc = -EIO;
1006 }
1007
1008 priv->alloc_rxb_skb--;
1009 dev_kfree_skb_any(cmd.meta.u.skb);
1010
1011 return rc;
1012}
1013
1014/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001015 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -07001016 *
Ian Schram01ebd062007-10-25 17:15:22 +08001017 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -07001018 * the active_rxon structure is updated with the new data. This
1019 * function correctly transitions out of the RXON_ASSOC_MSK state if
1020 * a HW tune is required based on the RXON structure changes.
1021 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001022static int iwl3945_commit_rxon(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001023{
1024 /* cast away the const for active_rxon in this function */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001025 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001026 int rc = 0;
1027
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001028 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001029 return -1;
1030
1031 /* always get timestamp with Rx frame */
1032 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
1033
1034 /* select antenna */
1035 priv->staging_rxon.flags &=
1036 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
1037 priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv);
1038
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001039 rc = iwl3945_check_rxon_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001040 if (rc) {
1041 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1042 return -EINVAL;
1043 }
1044
1045 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001046 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -07001047 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001048 if (!iwl3945_full_rxon_required(priv)) {
1049 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001050 if (rc) {
1051 IWL_ERROR("Error setting RXON_ASSOC "
1052 "configuration (%d).\n", rc);
1053 return rc;
1054 }
1055
1056 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1057
1058 return 0;
1059 }
1060
1061 /* If we are currently associated and the new config requires
1062 * an RXON_ASSOC and the new config wants the associated mask enabled,
1063 * we must clear the associated from the active configuration
1064 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001065 if (iwl3945_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -07001066 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
1067 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1068 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1069
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001070 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1071 sizeof(struct iwl3945_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001072 &priv->active_rxon);
1073
1074 /* If the mask clearing failed then we set
1075 * active_rxon back to what it was previously */
1076 if (rc) {
1077 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
1078 IWL_ERROR("Error clearing ASSOC_MSK on current "
1079 "configuration (%d).\n", rc);
1080 return rc;
1081 }
Zhu Yib481de92007-09-25 17:54:57 -07001082 }
1083
1084 IWL_DEBUG_INFO("Sending RXON\n"
1085 "* with%s RXON_FILTER_ASSOC_MSK\n"
1086 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -07001087 "* bssid = %pM\n",
Zhu Yib481de92007-09-25 17:54:57 -07001088 ((priv->staging_rxon.filter_flags &
1089 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
1090 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -07001091 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001092
1093 /* Apply the new configuration */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001094 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1095 sizeof(struct iwl3945_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001096 if (rc) {
1097 IWL_ERROR("Error setting new configuration (%d).\n", rc);
1098 return rc;
1099 }
1100
1101 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1102
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001103 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +08001104
Zhu Yib481de92007-09-25 17:54:57 -07001105 /* If we issue a new RXON command which required a tune then we must
1106 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001107 rc = iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001108 if (rc) {
1109 IWL_ERROR("Error setting Tx power (%d).\n", rc);
1110 return rc;
1111 }
1112
1113 /* Add the broadcast address so we can send broadcast frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001114 if (iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -07001115 IWL_INVALID_STATION) {
1116 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1117 return -EIO;
1118 }
1119
1120 /* If we have set the ASSOC_MSK and we are in BSS mode then
1121 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001122 if (iwl3945_is_associated(priv) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001123 (priv->iw_mode == NL80211_IFTYPE_STATION))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001124 if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr, 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -07001125 == IWL_INVALID_STATION) {
1126 IWL_ERROR("Error adding AP address for transmit.\n");
1127 return -EIO;
1128 }
1129
Johannes Berg8318d782008-01-24 19:38:38 +01001130 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -07001131 rc = iwl3945_init_hw_rate_table(priv);
1132 if (rc) {
1133 IWL_ERROR("Error setting HW rate table: %02X\n", rc);
1134 return -EIO;
1135 }
1136
1137 return 0;
1138}
1139
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001140static int iwl3945_send_bt_config(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001141{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001142 struct iwl3945_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001143 .flags = 3,
1144 .lead_time = 0xAA,
1145 .max_kill = 1,
1146 .kill_ack_mask = 0,
1147 .kill_cts_mask = 0,
1148 };
1149
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001150 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1151 sizeof(struct iwl3945_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001152}
1153
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001154static int iwl3945_send_scan_abort(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001155{
1156 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001157 struct iwl3945_rx_packet *res;
1158 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001159 .id = REPLY_SCAN_ABORT_CMD,
1160 .meta.flags = CMD_WANT_SKB,
1161 };
1162
1163 /* If there isn't a scan actively going on in the hardware
1164 * then we are in between scan bands and not actually
1165 * actively scanning, so don't send the abort command */
1166 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1167 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1168 return 0;
1169 }
1170
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001171 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001172 if (rc) {
1173 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1174 return rc;
1175 }
1176
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001177 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001178 if (res->u.status != CAN_ABORT_STATUS) {
1179 /* The scan abort will return 1 for success or
1180 * 2 for "failure". A failure condition can be
1181 * due to simply not being in an active scan which
1182 * can occur if we send the scan abort before we
1183 * the microcode has notified us that a scan is
1184 * completed. */
1185 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1186 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1187 clear_bit(STATUS_SCAN_HW, &priv->status);
1188 }
1189
1190 dev_kfree_skb_any(cmd.meta.u.skb);
1191
1192 return rc;
1193}
1194
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001195static int iwl3945_card_state_sync_callback(struct iwl3945_priv *priv,
1196 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001197 struct sk_buff *skb)
1198{
1199 return 1;
1200}
1201
1202/*
1203 * CARD_STATE_CMD
1204 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001205 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -07001206 *
1207 * When in the 'enable' state the card operates as normal.
1208 * When in the 'disable' state, the card enters into a low power mode.
1209 * When in the 'halt' state, the card is shut down and must be fully
1210 * restarted to come back on.
1211 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001212static int iwl3945_send_card_state(struct iwl3945_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -07001213{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001214 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001215 .id = REPLY_CARD_STATE_CMD,
1216 .len = sizeof(u32),
1217 .data = &flags,
1218 .meta.flags = meta_flag,
1219 };
1220
1221 if (meta_flag & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001222 cmd.meta.u.callback = iwl3945_card_state_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001223
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001224 return iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001225}
1226
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001227static int iwl3945_add_sta_sync_callback(struct iwl3945_priv *priv,
1228 struct iwl3945_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001229{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001230 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001231
1232 if (!skb) {
1233 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1234 return 1;
1235 }
1236
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001237 res = (struct iwl3945_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001238 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1239 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1240 res->hdr.flags);
1241 return 1;
1242 }
1243
1244 switch (res->u.add_sta.status) {
1245 case ADD_STA_SUCCESS_MSK:
1246 break;
1247 default:
1248 break;
1249 }
1250
1251 /* We didn't cache the SKB; let the caller free it */
1252 return 1;
1253}
1254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001255int iwl3945_send_add_station(struct iwl3945_priv *priv,
1256 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001257{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001258 struct iwl3945_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001259 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001260 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001261 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001262 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001263 .meta.flags = flags,
1264 .data = sta,
1265 };
1266
1267 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001268 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001269 else
1270 cmd.meta.flags |= CMD_WANT_SKB;
1271
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001272 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001273
1274 if (rc || (flags & CMD_ASYNC))
1275 return rc;
1276
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001277 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001278 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1279 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1280 res->hdr.flags);
1281 rc = -EIO;
1282 }
1283
1284 if (rc == 0) {
1285 switch (res->u.add_sta.status) {
1286 case ADD_STA_SUCCESS_MSK:
1287 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1288 break;
1289 default:
1290 rc = -EIO;
1291 IWL_WARNING("REPLY_ADD_STA failed\n");
1292 break;
1293 }
1294 }
1295
1296 priv->alloc_rxb_skb--;
1297 dev_kfree_skb_any(cmd.meta.u.skb);
1298
1299 return rc;
1300}
1301
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001302static int iwl3945_update_sta_key_info(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001303 struct ieee80211_key_conf *keyconf,
1304 u8 sta_id)
1305{
1306 unsigned long flags;
1307 __le16 key_flags = 0;
1308
1309 switch (keyconf->alg) {
1310 case ALG_CCMP:
1311 key_flags |= STA_KEY_FLG_CCMP;
1312 key_flags |= cpu_to_le16(
1313 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1314 key_flags &= ~STA_KEY_FLG_INVALID;
1315 break;
1316 case ALG_TKIP:
1317 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001318 default:
1319 return -EINVAL;
1320 }
1321 spin_lock_irqsave(&priv->sta_lock, flags);
1322 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1323 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
1324 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1325 keyconf->keylen);
1326
1327 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1328 keyconf->keylen);
1329 priv->stations[sta_id].sta.key.key_flags = key_flags;
1330 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1331 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1332
1333 spin_unlock_irqrestore(&priv->sta_lock, flags);
1334
1335 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001336 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001337 return 0;
1338}
1339
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001340static int iwl3945_clear_sta_key_info(struct iwl3945_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001341{
1342 unsigned long flags;
1343
1344 spin_lock_irqsave(&priv->sta_lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001345 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1346 memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl3945_keyinfo));
Zhu Yib481de92007-09-25 17:54:57 -07001347 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1348 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1349 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1350 spin_unlock_irqrestore(&priv->sta_lock, flags);
1351
1352 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001353 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001354 return 0;
1355}
1356
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001357static void iwl3945_clear_free_frames(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001358{
1359 struct list_head *element;
1360
1361 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1362 priv->frames_count);
1363
1364 while (!list_empty(&priv->free_frames)) {
1365 element = priv->free_frames.next;
1366 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001367 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001368 priv->frames_count--;
1369 }
1370
1371 if (priv->frames_count) {
1372 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1373 priv->frames_count);
1374 priv->frames_count = 0;
1375 }
1376}
1377
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001378static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001379{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001380 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001381 struct list_head *element;
1382 if (list_empty(&priv->free_frames)) {
1383 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1384 if (!frame) {
1385 IWL_ERROR("Could not allocate frame!\n");
1386 return NULL;
1387 }
1388
1389 priv->frames_count++;
1390 return frame;
1391 }
1392
1393 element = priv->free_frames.next;
1394 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001395 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001396}
1397
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001398static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001399{
1400 memset(frame, 0, sizeof(*frame));
1401 list_add(&frame->list, &priv->free_frames);
1402}
1403
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001404unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001405 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +02001406 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001407{
1408
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001409 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001410 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1411 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001412 return 0;
1413
1414 if (priv->ibss_beacon->len > left)
1415 return 0;
1416
1417 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1418
1419 return priv->ibss_beacon->len;
1420}
1421
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001422static u8 iwl3945_rate_get_lowest_plcp(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001423{
1424 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001425 int rate_mask;
1426
1427 /* Set rate mask*/
1428 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001429 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001430 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001431 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001432
1433 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001434 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001435 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001436 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001437 }
1438
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001439 /* No valid rate was found. Assign the lowest one */
1440 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
1441 return IWL_RATE_1M_PLCP;
1442 else
1443 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001444}
1445
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001446static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001447{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001448 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001449 unsigned int frame_size;
1450 int rc;
1451 u8 rate;
1452
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001453 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001454
1455 if (!frame) {
1456 IWL_ERROR("Could not obtain free frame buffer for beacon "
1457 "command.\n");
1458 return -ENOMEM;
1459 }
1460
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001461 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001462
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001463 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001464
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001465 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001466 &frame->u.cmd[0]);
1467
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001468 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001469
1470 return rc;
1471}
1472
1473/******************************************************************************
1474 *
1475 * EEPROM related functions
1476 *
1477 ******************************************************************************/
1478
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001479static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001480{
1481 memcpy(mac, priv->eeprom.mac_address, 6);
1482}
1483
Reinette Chatre74a3a252008-01-23 10:15:19 -08001484/*
1485 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1486 * embedded controller) as EEPROM reader; each read is a series of pulses
1487 * to/from the EEPROM chip, not a single event, so even reads could conflict
1488 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1489 * simply claims ownership, which should be safe when this function is called
1490 * (i.e. before loading uCode!).
1491 */
1492static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv)
1493{
1494 _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1495 return 0;
1496}
1497
Zhu Yib481de92007-09-25 17:54:57 -07001498/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001499 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001500 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001501 * Load the EEPROM contents from adapter into priv->eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001502 *
1503 * NOTE: This routine uses the non-debug IO access functions.
1504 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001505int iwl3945_eeprom_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001506{
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001507 u16 *e = (u16 *)&priv->eeprom;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001508 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
Zhu Yib481de92007-09-25 17:54:57 -07001509 int sz = sizeof(priv->eeprom);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001510 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001511 u16 addr;
1512
1513 /* The EEPROM structure has several padding buffers within it
1514 * and when adding new EEPROM maps is subject to programmer errors
1515 * which may be very difficult to identify without explicitly
1516 * checking the resulting size of the eeprom map. */
1517 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1518
1519 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001520 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001521 return -ENOENT;
1522 }
1523
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001524 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001525 ret = iwl3945_eeprom_acquire_semaphore(priv);
1526 if (ret < 0) {
Ian Schram91e17472007-10-25 17:15:23 +08001527 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001528 return -ENOENT;
1529 }
1530
1531 /* eeprom is an array of 16bit values */
1532 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001533 u32 r;
1534
1535 _iwl3945_write32(priv, CSR_EEPROM_REG,
1536 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001537 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001538 ret = iwl3945_poll_direct_bit(priv, CSR_EEPROM_REG,
1539 CSR_EEPROM_REG_READ_VALID_MSK,
1540 IWL_EEPROM_ACCESS_TIMEOUT);
1541 if (ret < 0) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001542 IWL_ERROR("Time out reading EEPROM[%d]\n", addr);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001543 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001544 }
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001545
1546 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001547 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001548 }
1549
1550 return 0;
1551}
1552
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001553static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001554{
1555 if (priv->hw_setting.shared_virt)
1556 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001557 sizeof(struct iwl3945_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001558 priv->hw_setting.shared_virt,
1559 priv->hw_setting.shared_phys);
1560}
1561
1562/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001563 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001564 *
1565 * return : set the bit for each supported rate insert in ie
1566 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001567static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001568 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001569{
1570 u16 ret_rates = 0, bit;
1571 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001572 u8 *cnt = ie;
1573 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001574
1575 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1576 if (bit & supported_rate) {
1577 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001578 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001579 ((bit & basic_rate) ? 0x80 : 0x00);
1580 (*cnt)++;
1581 (*left)--;
1582 if ((*left <= 0) ||
1583 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001584 break;
1585 }
1586 }
1587
1588 return ret_rates;
1589}
1590
1591/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001592 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001593 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001594static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001595 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001596 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001597{
1598 int len = 0;
1599 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001600 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001601
1602 /* Make sure there is enough space for the probe request,
1603 * two mandatory IEs and the data */
1604 left -= 24;
1605 if (left < 0)
1606 return 0;
1607 len += 24;
1608
1609 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001610 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001611 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001612 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001613 frame->seq_ctrl = 0;
1614
1615 /* fill in our indirect SSID IE */
1616 /* ...next IE... */
1617
1618 left -= 2;
1619 if (left < 0)
1620 return 0;
1621 len += 2;
1622 pos = &(frame->u.probe_req.variable[0]);
1623 *pos++ = WLAN_EID_SSID;
1624 *pos++ = 0;
1625
Zhu Yib481de92007-09-25 17:54:57 -07001626 /* fill in supported rate */
1627 /* ...next IE... */
1628 left -= 2;
1629 if (left < 0)
1630 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001631
Zhu Yib481de92007-09-25 17:54:57 -07001632 /* ... fill it in... */
1633 *pos++ = WLAN_EID_SUPP_RATES;
1634 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001635
1636 priv->active_rate = priv->rates_mask;
1637 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001638 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1639
Tomas Winklerc7c46672007-10-18 02:04:15 +02001640 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001641 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001642 priv->active_rate_basic, &left);
1643 active_rates &= ~ret_rates;
1644
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001645 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001646 priv->active_rate_basic, &left);
1647 active_rates &= ~ret_rates;
1648
Zhu Yib481de92007-09-25 17:54:57 -07001649 len += 2 + *pos;
1650 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001651 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001652 goto fill_end;
1653
1654 /* fill in supported extended rate */
1655 /* ...next IE... */
1656 left -= 2;
1657 if (left < 0)
1658 return 0;
1659 /* ... fill it in... */
1660 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1661 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001662 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001663 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001664 if (*pos > 0)
1665 len += 2 + *pos;
1666
1667 fill_end:
1668 return (u16)len;
1669}
1670
1671/*
1672 * QoS support
1673*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001674static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
1675 struct iwl3945_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001676{
1677
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001678 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1679 sizeof(struct iwl3945_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001680}
1681
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001682static void iwl3945_reset_qos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001683{
1684 u16 cw_min = 15;
1685 u16 cw_max = 1023;
1686 u8 aifs = 2;
1687 u8 is_legacy = 0;
1688 unsigned long flags;
1689 int i;
1690
1691 spin_lock_irqsave(&priv->lock, flags);
1692 priv->qos_data.qos_active = 0;
1693
Winkler, Tomas6d1ef1a2008-12-09 11:29:00 -08001694 /* QoS always active in AP and ADHOC mode
1695 * In STA mode wait for association
1696 */
1697 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
1698 priv->iw_mode == NL80211_IFTYPE_AP)
1699 priv->qos_data.qos_active = 1;
1700 else
1701 priv->qos_data.qos_active = 0;
1702
1703
1704 /* check for legacy mode */
1705 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC &&
1706 (priv->active_rate & IWL_OFDM_RATES_MASK) == 0) ||
1707 (priv->iw_mode == NL80211_IFTYPE_STATION &&
1708 (priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK) == 0)) {
Zhu Yib481de92007-09-25 17:54:57 -07001709 cw_min = 31;
1710 is_legacy = 1;
1711 }
1712
1713 if (priv->qos_data.qos_active)
1714 aifs = 3;
1715
1716 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1717 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1718 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1719 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1720 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1721
1722 if (priv->qos_data.qos_active) {
1723 i = 1;
1724 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1725 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1726 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1727 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1728 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1729
1730 i = 2;
1731 priv->qos_data.def_qos_parm.ac[i].cw_min =
1732 cpu_to_le16((cw_min + 1) / 2 - 1);
1733 priv->qos_data.def_qos_parm.ac[i].cw_max =
1734 cpu_to_le16(cw_max);
1735 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1736 if (is_legacy)
1737 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1738 cpu_to_le16(6016);
1739 else
1740 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1741 cpu_to_le16(3008);
1742 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1743
1744 i = 3;
1745 priv->qos_data.def_qos_parm.ac[i].cw_min =
1746 cpu_to_le16((cw_min + 1) / 4 - 1);
1747 priv->qos_data.def_qos_parm.ac[i].cw_max =
1748 cpu_to_le16((cw_max + 1) / 2 - 1);
1749 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1750 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1751 if (is_legacy)
1752 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1753 cpu_to_le16(3264);
1754 else
1755 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1756 cpu_to_le16(1504);
1757 } else {
1758 for (i = 1; i < 4; i++) {
1759 priv->qos_data.def_qos_parm.ac[i].cw_min =
1760 cpu_to_le16(cw_min);
1761 priv->qos_data.def_qos_parm.ac[i].cw_max =
1762 cpu_to_le16(cw_max);
1763 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1764 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1765 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1766 }
1767 }
1768 IWL_DEBUG_QOS("set QoS to default \n");
1769
1770 spin_unlock_irqrestore(&priv->lock, flags);
1771}
1772
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001773static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001774{
1775 unsigned long flags;
1776
Zhu Yib481de92007-09-25 17:54:57 -07001777 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1778 return;
1779
Zhu Yib481de92007-09-25 17:54:57 -07001780 spin_lock_irqsave(&priv->lock, flags);
1781 priv->qos_data.def_qos_parm.qos_flags = 0;
1782
1783 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1784 !priv->qos_data.qos_cap.q_AP.txop_request)
1785 priv->qos_data.def_qos_parm.qos_flags |=
1786 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1787
1788 if (priv->qos_data.qos_active)
1789 priv->qos_data.def_qos_parm.qos_flags |=
1790 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1791
1792 spin_unlock_irqrestore(&priv->lock, flags);
1793
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001794 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001795 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001796 priv->qos_data.qos_active);
1797
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001798 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001799 &(priv->qos_data.def_qos_parm));
1800 }
1801}
1802
Zhu Yib481de92007-09-25 17:54:57 -07001803/*
1804 * Power management (not Tx power!) functions
1805 */
1806#define MSEC_TO_USEC 1024
1807
1808#define NOSLP __constant_cpu_to_le32(0)
1809#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
1810#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1811#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1812 __constant_cpu_to_le32(X1), \
1813 __constant_cpu_to_le32(X2), \
1814 __constant_cpu_to_le32(X3), \
1815 __constant_cpu_to_le32(X4)}
1816
1817
1818/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001819/* for TIM 0-10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001820static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001821 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1822 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1823 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1824 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1825 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1826 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1827};
1828
Tomas Winklera96a27f2008-10-23 23:48:56 -07001829/* for TIM > 10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001830static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001831 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1832 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1833 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1834 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1835 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1836 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1837 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1838 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1839 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1840 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1841};
1842
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001843int iwl3945_power_init_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001844{
1845 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001846 struct iwl3945_power_mgr *pow_data;
1847 int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001848 u16 pci_pm;
1849
1850 IWL_DEBUG_POWER("Initialize power \n");
1851
1852 pow_data = &(priv->power_data);
1853
1854 memset(pow_data, 0, sizeof(*pow_data));
1855
1856 pow_data->active_index = IWL_POWER_RANGE_0;
1857 pow_data->dtim_val = 0xffff;
1858
1859 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1860 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1861
1862 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1863 if (rc != 0)
1864 return 0;
1865 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001866 struct iwl3945_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001867
1868 IWL_DEBUG_POWER("adjust power command flags\n");
1869
1870 for (i = 0; i < IWL_POWER_AC; i++) {
1871 cmd = &pow_data->pwr_range_0[i].cmd;
1872
1873 if (pci_pm & 0x1)
1874 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1875 else
1876 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1877 }
1878 }
1879 return rc;
1880}
1881
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001882static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
1883 struct iwl3945_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001884{
1885 int rc = 0, i;
1886 u8 skip;
1887 u32 max_sleep = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001888 struct iwl3945_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001889 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001890 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001891
1892 if (mode > IWL_POWER_INDEX_5) {
1893 IWL_DEBUG_POWER("Error invalid power mode \n");
1894 return -1;
1895 }
1896 pow_data = &(priv->power_data);
1897
1898 if (pow_data->active_index == IWL_POWER_RANGE_0)
1899 range = &pow_data->pwr_range_0[0];
1900 else
1901 range = &pow_data->pwr_range_1[1];
1902
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001903 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001904
1905#ifdef IWL_MAC80211_DISABLE
1906 if (priv->assoc_network != NULL) {
1907 unsigned long flags;
1908
1909 period = priv->assoc_network->tim.tim_period;
1910 }
1911#endif /*IWL_MAC80211_DISABLE */
1912 skip = range[mode].no_dtim;
1913
1914 if (period == 0) {
1915 period = 1;
1916 skip = 0;
1917 }
1918
1919 if (skip == 0) {
1920 max_sleep = period;
1921 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1922 } else {
1923 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1924 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1925 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1926 }
1927
1928 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1929 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1930 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1931 }
1932
1933 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1934 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1935 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1936 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1937 le32_to_cpu(cmd->sleep_interval[0]),
1938 le32_to_cpu(cmd->sleep_interval[1]),
1939 le32_to_cpu(cmd->sleep_interval[2]),
1940 le32_to_cpu(cmd->sleep_interval[3]),
1941 le32_to_cpu(cmd->sleep_interval[4]));
1942
1943 return rc;
1944}
1945
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001946static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001947{
John W. Linville9a62f732007-11-15 16:27:36 -05001948 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001949 int rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001950 struct iwl3945_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001951
1952 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001953 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001954 * else user level */
1955 switch (mode) {
1956 case IWL_POWER_BATTERY:
1957 final_mode = IWL_POWER_INDEX_3;
1958 break;
1959 case IWL_POWER_AC:
1960 final_mode = IWL_POWER_MODE_CAM;
1961 break;
1962 default:
1963 final_mode = mode;
1964 break;
1965 }
1966
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001967 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001968
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001969 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001970
1971 if (final_mode == IWL_POWER_MODE_CAM)
1972 clear_bit(STATUS_POWER_PMI, &priv->status);
1973 else
1974 set_bit(STATUS_POWER_PMI, &priv->status);
1975
1976 return rc;
1977}
1978
Zhu Yib481de92007-09-25 17:54:57 -07001979/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001980 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001981 *
1982 * NOTE: priv->mutex is not required before calling this function
1983 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001984static int iwl3945_scan_cancel(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001985{
1986 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1987 clear_bit(STATUS_SCANNING, &priv->status);
1988 return 0;
1989 }
1990
1991 if (test_bit(STATUS_SCANNING, &priv->status)) {
1992 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1993 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1994 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1995 queue_work(priv->workqueue, &priv->abort_scan);
1996
1997 } else
1998 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
1999
2000 return test_bit(STATUS_SCANNING, &priv->status);
2001 }
2002
2003 return 0;
2004}
2005
2006/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002007 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07002008 * @ms: amount of time to wait (in milliseconds) for scan to abort
2009 *
2010 * NOTE: priv->mutex must be held before calling this function
2011 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002012static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07002013{
2014 unsigned long now = jiffies;
2015 int ret;
2016
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002017 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002018 if (ret && ms) {
2019 mutex_unlock(&priv->mutex);
2020 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2021 test_bit(STATUS_SCANNING, &priv->status))
2022 msleep(1);
2023 mutex_lock(&priv->mutex);
2024
2025 return test_bit(STATUS_SCANNING, &priv->status);
2026 }
2027
2028 return ret;
2029}
2030
Zhu Yib481de92007-09-25 17:54:57 -07002031#define MAX_UCODE_BEACON_INTERVAL 1024
2032#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2033
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002034static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07002035{
2036 u16 new_val = 0;
2037 u16 beacon_factor = 0;
2038
2039 beacon_factor =
2040 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2041 / MAX_UCODE_BEACON_INTERVAL;
2042 new_val = beacon_val / beacon_factor;
2043
2044 return cpu_to_le16(new_val);
2045}
2046
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002047static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002048{
2049 u64 interval_tm_unit;
2050 u64 tsf, result;
2051 unsigned long flags;
2052 struct ieee80211_conf *conf = NULL;
2053 u16 beacon_int = 0;
2054
2055 conf = ieee80211_get_hw_conf(priv->hw);
2056
2057 spin_lock_irqsave(&priv->lock, flags);
2058 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2059 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2060
2061 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2062
2063 tsf = priv->timestamp1;
2064 tsf = ((tsf << 32) | priv->timestamp0);
2065
2066 beacon_int = priv->beacon_int;
2067 spin_unlock_irqrestore(&priv->lock, flags);
2068
Johannes Berg05c914f2008-09-11 00:01:58 +02002069 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07002070 if (beacon_int == 0) {
2071 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2072 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2073 } else {
2074 priv->rxon_timing.beacon_interval =
2075 cpu_to_le16(beacon_int);
2076 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002077 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07002078 le16_to_cpu(priv->rxon_timing.beacon_interval));
2079 }
2080
2081 priv->rxon_timing.atim_window = 0;
2082 } else {
2083 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002084 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07002085 /* TODO: we need to get atim_window from upper stack
2086 * for now we set to 0 */
2087 priv->rxon_timing.atim_window = 0;
2088 }
2089
2090 interval_tm_unit =
2091 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2092 result = do_div(tsf, interval_tm_unit);
2093 priv->rxon_timing.beacon_init_val =
2094 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2095
2096 IWL_DEBUG_ASSOC
2097 ("beacon interval %d beacon timer %d beacon tim %d\n",
2098 le16_to_cpu(priv->rxon_timing.beacon_interval),
2099 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2100 le16_to_cpu(priv->rxon_timing.atim_window));
2101}
2102
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002103static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002104{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002105 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002106 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2107 return -EIO;
2108 }
2109
2110 if (test_bit(STATUS_SCANNING, &priv->status)) {
2111 IWL_DEBUG_SCAN("Scan already in progress.\n");
2112 return -EAGAIN;
2113 }
2114
2115 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2116 IWL_DEBUG_SCAN("Scan request while abort pending. "
2117 "Queuing.\n");
2118 return -EAGAIN;
2119 }
2120
2121 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002122 if (priv->cfg->sku & IWL_SKU_G)
2123 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
2124 if (priv->cfg->sku & IWL_SKU_A)
2125 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002126 set_bit(STATUS_SCANNING, &priv->status);
2127 priv->scan_start = jiffies;
2128 priv->scan_pass_start = priv->scan_start;
2129
2130 queue_work(priv->workqueue, &priv->request_scan);
2131
2132 return 0;
2133}
2134
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002135static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07002136{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002137 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002138
2139 if (hw_decrypt)
2140 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2141 else
2142 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2143
2144 return 0;
2145}
2146
Johannes Berg8318d782008-01-24 19:38:38 +01002147static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv,
2148 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002149{
Johannes Berg8318d782008-01-24 19:38:38 +01002150 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002151 priv->staging_rxon.flags &=
2152 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2153 | RXON_FLG_CCK_MSK);
2154 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2155 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002156 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002157 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2158 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2159 else
2160 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2161
Johannes Berg05c914f2008-09-11 00:01:58 +02002162 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002163 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2164
2165 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2166 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2167 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2168 }
2169}
2170
2171/*
Ian Schram01ebd062007-10-25 17:15:22 +08002172 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002173 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002174static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv,
2175 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002176{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002177 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002178
2179 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2180
Zhu, Yi60294de2008-10-29 14:05:45 -07002181 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002182 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -07002183 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2184 break;
2185
Johannes Berg05c914f2008-09-11 00:01:58 +02002186 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002187 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2188 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2189 break;
2190
Johannes Berg05c914f2008-09-11 00:01:58 +02002191 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002192 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2193 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2194 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2195 RXON_FILTER_ACCEPT_GRP_MSK;
2196 break;
2197
Johannes Berg05c914f2008-09-11 00:01:58 +02002198 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -07002199 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2200 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2201 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2202 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002203 default:
Zhu, Yi60294de2008-10-29 14:05:45 -07002204 IWL_ERROR("Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002205 break;
Zhu Yib481de92007-09-25 17:54:57 -07002206 }
2207
2208#if 0
2209 /* TODO: Figure out when short_preamble would be set and cache from
2210 * that */
2211 if (!hw_to_local(priv->hw)->short_preamble)
2212 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2213 else
2214 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2215#endif
2216
Johannes Berg8318d782008-01-24 19:38:38 +01002217 ch_info = iwl3945_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +08002218 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002219
2220 if (!ch_info)
2221 ch_info = &priv->channel_info[0];
2222
2223 /*
2224 * in some case A channels are all non IBSS
2225 * in this case force B/G channel
2226 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002227 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07002228 ch_info = &priv->channel_info[0];
2229
2230 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2231 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002232 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002233 else
Johannes Berg8318d782008-01-24 19:38:38 +01002234 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002235
Johannes Berg8318d782008-01-24 19:38:38 +01002236 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002237
2238 priv->staging_rxon.ofdm_basic_rates =
2239 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2240 priv->staging_rxon.cck_basic_rates =
2241 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2242}
2243
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002244static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002245{
Johannes Berg05c914f2008-09-11 00:01:58 +02002246 if (mode == NL80211_IFTYPE_ADHOC) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002247 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002248
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002249 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002250 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002251 le16_to_cpu(priv->staging_rxon.channel));
2252
2253 if (!ch_info || !is_channel_ibss(ch_info)) {
2254 IWL_ERROR("channel %d not IBSS channel\n",
2255 le16_to_cpu(priv->staging_rxon.channel));
2256 return -EINVAL;
2257 }
2258 }
2259
Zhu, Yi60294de2008-10-29 14:05:45 -07002260 iwl3945_connection_init_rx_config(priv, mode);
Zhu Yib481de92007-09-25 17:54:57 -07002261 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2262
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002263 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002264
Tomas Winklera96a27f2008-10-23 23:48:56 -07002265 /* don't commit rxon if rf-kill is on*/
Mohamed Abbasfde35712007-11-29 11:10:15 +08002266 if (!iwl3945_is_ready_rf(priv))
2267 return -EAGAIN;
2268
2269 cancel_delayed_work(&priv->scan_check);
2270 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2271 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2272 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2273 return -EAGAIN;
2274 }
2275
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002276 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002277
2278 return 0;
2279}
2280
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002281static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002282 struct ieee80211_tx_info *info,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002283 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002284 struct sk_buff *skb_frag,
2285 int last_frag)
2286{
Ivo van Doorn1c014422008-04-17 19:41:02 +02002287 struct iwl3945_hw_key *keyinfo =
Johannes Berge039fa42008-05-15 12:55:29 +02002288 &priv->stations[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002289
2290 switch (keyinfo->alg) {
2291 case ALG_CCMP:
2292 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2293 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002294 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002295 break;
2296
2297 case ALG_TKIP:
2298#if 0
2299 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2300
2301 if (last_frag)
2302 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2303 8);
2304 else
2305 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2306#endif
2307 break;
2308
2309 case ALG_WEP:
2310 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002311 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002312
2313 if (keyinfo->keylen == 13)
2314 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2315
2316 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2317
2318 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002319 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002320 break;
2321
Zhu Yib481de92007-09-25 17:54:57 -07002322 default:
2323 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2324 break;
2325 }
2326}
2327
2328/*
2329 * handle build REPLY_TX command notification.
2330 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002331static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2332 struct iwl3945_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002333 struct ieee80211_tx_info *info,
Zhu Yib481de92007-09-25 17:54:57 -07002334 struct ieee80211_hdr *hdr,
2335 int is_unicast, u8 std_id)
2336{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002337 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002338 __le32 tx_flags = cmd->cmd.tx.tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +02002339 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002340
2341 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002342 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002343 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002344 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002345 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002346 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002347 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2348 tx_flags |= TX_CMD_FLG_TSF_MSK;
2349 } else {
2350 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2351 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2352 }
2353
2354 cmd->cmd.tx.sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002355 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002356 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2357
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002358 if (ieee80211_is_data_qos(fc)) {
2359 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002360 cmd->cmd.tx.tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002361 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002362 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002363 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002364 }
Zhu Yib481de92007-09-25 17:54:57 -07002365
Johannes Berge6a98542008-10-21 12:40:02 +02002366 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002367 tx_flags |= TX_CMD_FLG_RTS_MSK;
2368 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002369 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002370 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2371 tx_flags |= TX_CMD_FLG_CTS_MSK;
2372 }
2373
2374 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2375 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2376
2377 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002378 if (ieee80211_is_mgmt(fc)) {
2379 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Ian Schrambc434dd2007-10-25 17:15:29 +08002380 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002381 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002382 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002383 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002384 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002385#ifdef CONFIG_IWL3945_LEDS
2386 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2387#endif
2388 }
Zhu Yib481de92007-09-25 17:54:57 -07002389
2390 cmd->cmd.tx.driver_txop = 0;
2391 cmd->cmd.tx.tx_flags = tx_flags;
2392 cmd->cmd.tx.next_frame_len = 0;
2393}
2394
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002395/**
2396 * iwl3945_get_sta_id - Find station's index within station table
2397 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002398static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002399{
2400 int sta_id;
2401 u16 fc = le16_to_cpu(hdr->frame_control);
2402
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002403 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002404 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2405 is_multicast_ether_addr(hdr->addr1))
2406 return priv->hw_setting.bcast_sta_id;
2407
2408 switch (priv->iw_mode) {
2409
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002410 /* If we are a client station in a BSS network, use the special
2411 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002412 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002413 return IWL_AP_ID;
2414
2415 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002416 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002417 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002418 if (sta_id != IWL_INVALID_STATION)
2419 return sta_id;
2420 return priv->hw_setting.bcast_sta_id;
2421
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002422 /* If this frame is going out to an IBSS network, find the station,
2423 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002424 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002425 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002426 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002427 if (sta_id != IWL_INVALID_STATION)
2428 return sta_id;
2429
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002430 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002431
2432 if (sta_id != IWL_INVALID_STATION)
2433 return sta_id;
2434
Johannes Berge1749612008-10-27 15:59:26 -07002435 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002436 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002437 hdr->addr1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002438 iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002439 return priv->hw_setting.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002440 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002441 /* If we are in monitor mode, use BCAST. This is required for
2442 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002443 case NL80211_IFTYPE_MONITOR:
Stefanik Gábor914233d2008-06-30 17:23:30 +08002444 return priv->hw_setting.bcast_sta_id;
2445
Zhu Yib481de92007-09-25 17:54:57 -07002446 default:
Jiri Slaby6f147922008-08-11 23:49:41 +02002447 IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002448 return priv->hw_setting.bcast_sta_id;
2449 }
2450}
2451
2452/*
2453 * start REPLY_TX command process
2454 */
Johannes Berge039fa42008-05-15 12:55:29 +02002455static int iwl3945_tx_skb(struct iwl3945_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002456{
2457 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002458 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002459 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002460 u32 *control_flags;
Johannes Berge2530082008-05-17 00:57:14 +02002461 int txq_id = skb_get_queue_mapping(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002462 struct iwl3945_tx_queue *txq = NULL;
2463 struct iwl3945_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002464 dma_addr_t phys_addr;
2465 dma_addr_t txcmd_phys;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002466 struct iwl3945_cmd *out_cmd = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002467 u16 len, idx, len_org, hdr_len;
2468 u8 id;
2469 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002470 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002471 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002472 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002473 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002474 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002475 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002476 unsigned long flags;
2477 int rc;
2478
2479 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002480 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002481 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2482 goto drop_unlock;
2483 }
2484
Johannes Berge039fa42008-05-15 12:55:29 +02002485 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002486 IWL_ERROR("ERROR: No TX rate available.\n");
2487 goto drop_unlock;
2488 }
2489
2490 unicast = !is_multicast_ether_addr(hdr->addr1);
2491 id = 0;
2492
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002493 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002494
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002495#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002496 if (ieee80211_is_auth(fc))
2497 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002498 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002499 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002500 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002501 IWL_DEBUG_TX("Sending REASSOC frame\n");
2502#endif
2503
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002504 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002505 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002506 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002507 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002508 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002509 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002510 goto drop_unlock;
2511 }
2512
2513 spin_unlock_irqrestore(&priv->lock, flags);
2514
Harvey Harrison7294ec92008-07-15 18:43:59 -07002515 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002516
2517 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002518 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002519 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002520 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2521 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002522 goto drop;
2523 }
2524
2525 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2526
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002527 if (ieee80211_is_data_qos(fc)) {
2528 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002529 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002530 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2531 IEEE80211_SCTL_SEQ;
2532 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2533 (hdr->seq_ctrl &
2534 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2535 seq_number += 0x10;
2536 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002537
2538 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002539 txq = &priv->txq[txq_id];
2540 q = &txq->q;
2541
2542 spin_lock_irqsave(&priv->lock, flags);
2543
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002544 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002545 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002546 memset(tfd, 0, sizeof(*tfd));
2547 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002548 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002549
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002550 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002551 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002552 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002553
2554 /* Init first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002555 out_cmd = &txq->cmd[idx];
2556 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2557 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002558
2559 /*
2560 * Set up the Tx-command (not MAC!) header.
2561 * Store the chosen Tx queue and TFD index within the sequence field;
2562 * after Tx, uCode's Tx response will return this value so driver can
2563 * locate the frame within the tx queue and do post-tx processing.
2564 */
Zhu Yib481de92007-09-25 17:54:57 -07002565 out_cmd->hdr.cmd = REPLY_TX;
2566 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002567 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002568
2569 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002570 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2571
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002572 /*
2573 * Use the first empty entry in this queue's command buffer array
2574 * to contain the Tx command and MAC header concatenated together
2575 * (payload data will be in another buffer).
2576 * Size of this varies, due to varying MAC header length.
2577 * If end is not dword aligned, we'll have 2 extra bytes at the end
2578 * of the MAC header (device reads on dword boundaries).
2579 * We'll tell device about this padding later.
2580 */
Zhu Yib481de92007-09-25 17:54:57 -07002581 len = priv->hw_setting.tx_cmd_len +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002582 sizeof(struct iwl3945_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002583
2584 len_org = len;
2585 len = (len + 3) & ~3;
2586
2587 if (len_org != len)
2588 len_org = 1;
2589 else
2590 len_org = 0;
2591
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002592 /* Physical address of this Tx command's header (not MAC header!),
2593 * within command buffer array. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002594 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2595 offsetof(struct iwl3945_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002596
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002597 /* Add buffer containing Tx command and MAC(!) header to TFD's
2598 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002599 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002600
Johannes Bergd0f09802008-07-29 11:32:07 +02002601 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002602 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002603
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002604 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2605 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002606 len = skb->len - hdr_len;
2607 if (len) {
2608 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2609 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002610 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002611 }
2612
Zhu Yib481de92007-09-25 17:54:57 -07002613 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002614 /* If there is no payload, then we use only one Tx buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002615 *control_flags = TFD_CTL_COUNT_SET(1);
2616 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002617 /* Else use 2 buffers.
2618 * Tell 3945 about any padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002619 *control_flags = TFD_CTL_COUNT_SET(2) |
2620 TFD_CTL_PAD_SET(U32_PAD(len));
2621
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002622 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002623 len = (u16)skb->len;
2624 out_cmd->cmd.tx.len = cpu_to_le16(len);
2625
2626 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02002627 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002628
2629 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002630 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002631
2632 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2633 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2634
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002635 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002636 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002637 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07002638 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002639 } else {
2640 wait_write_ptr = 1;
2641 txq->need_update = 0;
2642 }
2643
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002644 iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002645 sizeof(out_cmd->cmd.tx));
2646
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002647 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002648 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002649
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002650 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002651 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002652 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002653 spin_unlock_irqrestore(&priv->lock, flags);
2654
2655 if (rc)
2656 return rc;
2657
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002658 if ((iwl3945_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002659 && priv->mac80211_registered) {
2660 if (wait_write_ptr) {
2661 spin_lock_irqsave(&priv->lock, flags);
2662 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002663 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002664 spin_unlock_irqrestore(&priv->lock, flags);
2665 }
2666
Johannes Berge2530082008-05-17 00:57:14 +02002667 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002668 }
2669
2670 return 0;
2671
2672drop_unlock:
2673 spin_unlock_irqrestore(&priv->lock, flags);
2674drop:
2675 return -1;
2676}
2677
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002678static void iwl3945_set_rate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002679{
Johannes Berg8318d782008-01-24 19:38:38 +01002680 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002681 struct ieee80211_rate *rate;
2682 int i;
2683
Johannes Berg8318d782008-01-24 19:38:38 +01002684 sband = iwl3945_get_band(priv, priv->band);
2685 if (!sband) {
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002686 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2687 return;
2688 }
Zhu Yib481de92007-09-25 17:54:57 -07002689
2690 priv->active_rate = 0;
2691 priv->active_rate_basic = 0;
2692
Johannes Berg8318d782008-01-24 19:38:38 +01002693 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2694 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002695
Johannes Berg8318d782008-01-24 19:38:38 +01002696 for (i = 0; i < sband->n_bitrates; i++) {
2697 rate = &sband->bitrates[i];
2698 if ((rate->hw_value < IWL_RATE_COUNT) &&
2699 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2700 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2701 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2702 priv->active_rate |= (1 << rate->hw_value);
2703 }
Zhu Yib481de92007-09-25 17:54:57 -07002704 }
2705
2706 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2707 priv->active_rate, priv->active_rate_basic);
2708
2709 /*
2710 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2711 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2712 * OFDM
2713 */
2714 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2715 priv->staging_rxon.cck_basic_rates =
2716 ((priv->active_rate_basic &
2717 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2718 else
2719 priv->staging_rxon.cck_basic_rates =
2720 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2721
2722 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2723 priv->staging_rxon.ofdm_basic_rates =
2724 ((priv->active_rate_basic &
2725 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2726 IWL_FIRST_OFDM_RATE) & 0xFF;
2727 else
2728 priv->staging_rxon.ofdm_basic_rates =
2729 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2730}
2731
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002732static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002733{
2734 unsigned long flags;
2735
2736 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2737 return;
2738
2739 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2740 disable_radio ? "OFF" : "ON");
2741
2742 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002743 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002744 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002745 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002746 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002747 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002748 CSR_UCODE_SW_BIT_RFKILL);
2749 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002750 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002751 set_bit(STATUS_RF_KILL_SW, &priv->status);
2752 }
2753 return;
2754 }
2755
2756 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002757 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002758
2759 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2760 spin_unlock_irqrestore(&priv->lock, flags);
2761
2762 /* wake up ucode */
2763 msleep(10);
2764
2765 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002766 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
2767 if (!iwl3945_grab_nic_access(priv))
2768 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002769 spin_unlock_irqrestore(&priv->lock, flags);
2770
2771 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2772 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2773 "disabled by HW switch\n");
2774 return;
2775 }
2776
Zhu Yi808e72a2008-06-12 09:47:17 +08002777 if (priv->is_open)
2778 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002779 return;
2780}
2781
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002782void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002783 u32 decrypt_res, struct ieee80211_rx_status *stats)
2784{
2785 u16 fc =
2786 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2787
2788 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2789 return;
2790
2791 if (!(fc & IEEE80211_FCTL_PROTECTED))
2792 return;
2793
2794 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2795 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2796 case RX_RES_STATUS_SEC_TYPE_TKIP:
2797 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2798 RX_RES_STATUS_BAD_ICV_MIC)
2799 stats->flag |= RX_FLAG_MMIC_ERROR;
2800 case RX_RES_STATUS_SEC_TYPE_WEP:
2801 case RX_RES_STATUS_SEC_TYPE_CCMP:
2802 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2803 RX_RES_STATUS_DECRYPT_OK) {
2804 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2805 stats->flag |= RX_FLAG_DECRYPTED;
2806 }
2807 break;
2808
2809 default:
2810 break;
2811 }
2812}
2813
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002814#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002815
2816#include "iwl-spectrum.h"
2817
2818#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2819#define BEACON_TIME_MASK_HIGH 0xFF000000
2820#define TIME_UNIT 1024
2821
2822/*
2823 * extended beacon time format
2824 * time in usec will be changed into a 32-bit value in 8:24 format
2825 * the high 1 byte is the beacon counts
2826 * the lower 3 bytes is the time in usec within one beacon interval
2827 */
2828
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002829static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002830{
2831 u32 quot;
2832 u32 rem;
2833 u32 interval = beacon_interval * 1024;
2834
2835 if (!interval || !usec)
2836 return 0;
2837
2838 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2839 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2840
2841 return (quot << 24) + rem;
2842}
2843
2844/* base is usually what we get from ucode with each received frame,
2845 * the same as HW timer counter counting down
2846 */
2847
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002848static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002849{
2850 u32 base_low = base & BEACON_TIME_MASK_LOW;
2851 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2852 u32 interval = beacon_interval * TIME_UNIT;
2853 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2854 (addon & BEACON_TIME_MASK_HIGH);
2855
2856 if (base_low > addon_low)
2857 res += base_low - addon_low;
2858 else if (base_low < addon_low) {
2859 res += interval + base_low - addon_low;
2860 res += (1 << 24);
2861 } else
2862 res += (1 << 24);
2863
2864 return cpu_to_le32(res);
2865}
2866
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002867static int iwl3945_get_measurement(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002868 struct ieee80211_measurement_params *params,
2869 u8 type)
2870{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002871 struct iwl3945_spectrum_cmd spectrum;
2872 struct iwl3945_rx_packet *res;
2873 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002874 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2875 .data = (void *)&spectrum,
2876 .meta.flags = CMD_WANT_SKB,
2877 };
2878 u32 add_time = le64_to_cpu(params->start_time);
2879 int rc;
2880 int spectrum_resp_status;
2881 int duration = le16_to_cpu(params->duration);
2882
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002883 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002884 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002885 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002886 le64_to_cpu(params->start_time) - priv->last_tsf,
2887 le16_to_cpu(priv->rxon_timing.beacon_interval));
2888
2889 memset(&spectrum, 0, sizeof(spectrum));
2890
2891 spectrum.channel_count = cpu_to_le16(1);
2892 spectrum.flags =
2893 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2894 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2895 cmd.len = sizeof(spectrum);
2896 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2897
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002898 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002899 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002900 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002901 add_time,
2902 le16_to_cpu(priv->rxon_timing.beacon_interval));
2903 else
2904 spectrum.start_time = 0;
2905
2906 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2907 spectrum.channels[0].channel = params->channel;
2908 spectrum.channels[0].type = type;
2909 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2910 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2911 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2912
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002913 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002914 if (rc)
2915 return rc;
2916
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002917 res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002918 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2919 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2920 rc = -EIO;
2921 }
2922
2923 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2924 switch (spectrum_resp_status) {
2925 case 0: /* Command will be handled */
2926 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002927 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2928 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002929 priv->measurement_status &= ~MEASUREMENT_READY;
2930 }
2931 priv->measurement_status |= MEASUREMENT_ACTIVE;
2932 rc = 0;
2933 break;
2934
2935 case 1: /* Command will not be handled */
2936 rc = -EAGAIN;
2937 break;
2938 }
2939
2940 dev_kfree_skb_any(cmd.meta.u.skb);
2941
2942 return rc;
2943}
2944#endif
2945
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002946static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
2947 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002948{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002949 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
2950 struct iwl3945_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002951 struct delayed_work *pwork;
2952
2953 palive = &pkt->u.alive_frame;
2954
2955 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2956 "0x%01X 0x%01X\n",
2957 palive->is_valid, palive->ver_type,
2958 palive->ver_subtype);
2959
2960 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2961 IWL_DEBUG_INFO("Initialization Alive received.\n");
2962 memcpy(&priv->card_alive_init,
2963 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002964 sizeof(struct iwl3945_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002965 pwork = &priv->init_alive_start;
2966 } else {
2967 IWL_DEBUG_INFO("Runtime Alive received.\n");
2968 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002969 sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002970 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002971 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002972 }
2973
2974 /* We delay the ALIVE response by 5ms to
2975 * give the HW RF Kill time to activate... */
2976 if (palive->is_valid == UCODE_VALID_OK)
2977 queue_delayed_work(priv->workqueue, pwork,
2978 msecs_to_jiffies(5));
2979 else
2980 IWL_WARNING("uCode did not respond OK.\n");
2981}
2982
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002983static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
2984 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002985{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002986 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002987
2988 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2989 return;
2990}
2991
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002992static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
2993 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002994{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002995 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002996
2997 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
2998 "seq 0x%04X ser 0x%08X\n",
2999 le32_to_cpu(pkt->u.err_resp.error_type),
3000 get_cmd_string(pkt->u.err_resp.cmd_id),
3001 pkt->u.err_resp.cmd_id,
3002 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3003 le32_to_cpu(pkt->u.err_resp.error_info));
3004}
3005
3006#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3007
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003008static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003009{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003010 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3011 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
3012 struct iwl3945_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003013 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3014 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3015 rxon->channel = csa->channel;
3016 priv->staging_rxon.channel = csa->channel;
3017}
3018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003019static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3020 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003021{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003022#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003023 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3024 struct iwl3945_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003025
3026 if (!report->state) {
3027 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3028 "Spectrum Measure Notification: Start\n");
3029 return;
3030 }
3031
3032 memcpy(&priv->measure_report, report, sizeof(*report));
3033 priv->measurement_status |= MEASUREMENT_READY;
3034#endif
3035}
3036
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003037static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3038 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003039{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003040#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003041 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3042 struct iwl3945_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003043 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3044 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3045#endif
3046}
3047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003048static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3049 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003050{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003051 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003052 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3053 "notification for %s:\n",
3054 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003055 iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003056}
3057
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003058static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003059{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003060 struct iwl3945_priv *priv =
3061 container_of(work, struct iwl3945_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003062 struct sk_buff *beacon;
3063
3064 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02003065 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07003066
3067 if (!beacon) {
3068 IWL_ERROR("update beacon failed\n");
3069 return;
3070 }
3071
3072 mutex_lock(&priv->mutex);
3073 /* new beacon skb is allocated every time; dispose previous.*/
3074 if (priv->ibss_beacon)
3075 dev_kfree_skb(priv->ibss_beacon);
3076
3077 priv->ibss_beacon = beacon;
3078 mutex_unlock(&priv->mutex);
3079
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003080 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003081}
3082
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003083static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3084 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003085{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003086#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003087 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3088 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07003089 u8 rate = beacon->beacon_notify_hdr.rate;
3090
3091 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3092 "tsf %d %d rate %d\n",
3093 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3094 beacon->beacon_notify_hdr.failure_frame,
3095 le32_to_cpu(beacon->ibss_mgr_status),
3096 le32_to_cpu(beacon->high_tsf),
3097 le32_to_cpu(beacon->low_tsf), rate);
3098#endif
3099
Johannes Berg05c914f2008-09-11 00:01:58 +02003100 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07003101 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3102 queue_work(priv->workqueue, &priv->beacon_update);
3103}
3104
3105/* Service response to REPLY_SCAN_CMD (0x80) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003106static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3107 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003108{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003109#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003110 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3111 struct iwl3945_scanreq_notification *notif =
3112 (struct iwl3945_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003113
3114 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3115#endif
3116}
3117
3118/* Service SCAN_START_NOTIFICATION (0x82) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003119static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3120 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003121{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003122 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3123 struct iwl3945_scanstart_notification *notif =
3124 (struct iwl3945_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003125 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3126 IWL_DEBUG_SCAN("Scan start: "
3127 "%d [802.11%s] "
3128 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3129 notif->channel,
3130 notif->band ? "bg" : "a",
3131 notif->tsf_high,
3132 notif->tsf_low, notif->status, notif->beacon_timer);
3133}
3134
3135/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003136static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3137 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003138{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003139 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3140 struct iwl3945_scanresults_notification *notif =
3141 (struct iwl3945_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003142
3143 IWL_DEBUG_SCAN("Scan ch.res: "
3144 "%d [802.11%s] "
3145 "(TSF: 0x%08X:%08X) - %d "
3146 "elapsed=%lu usec (%dms since last)\n",
3147 notif->channel,
3148 notif->band ? "bg" : "a",
3149 le32_to_cpu(notif->tsf_high),
3150 le32_to_cpu(notif->tsf_low),
3151 le32_to_cpu(notif->statistics[0]),
3152 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3153 jiffies_to_msecs(elapsed_jiffies
3154 (priv->last_scan_jiffies, jiffies)));
3155
3156 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003157 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003158}
3159
3160/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003161static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3162 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003163{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003164 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
3165 struct iwl3945_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003166
3167 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3168 scan_notif->scanned_channels,
3169 scan_notif->tsf_low,
3170 scan_notif->tsf_high, scan_notif->status);
3171
3172 /* The HW is no longer scanning */
3173 clear_bit(STATUS_SCAN_HW, &priv->status);
3174
3175 /* The scan completion notification came in, so kill that timer... */
3176 cancel_delayed_work(&priv->scan_check);
3177
3178 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003179 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
3180 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07003181 jiffies_to_msecs(elapsed_jiffies
3182 (priv->scan_pass_start, jiffies)));
3183
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003184 /* Remove this scanned band from the list of pending
3185 * bands to scan, band G precedes A in order of scanning
3186 * as seen in iwl3945_bg_request_scan */
3187 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
3188 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
3189 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
3190 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07003191
3192 /* If a request to abort was given, or the scan did not succeed
3193 * then we reset the scan state machine and terminate,
3194 * re-queuing another scan if one has been requested */
3195 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3196 IWL_DEBUG_INFO("Aborted scan completed.\n");
3197 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3198 } else {
3199 /* If there are more bands on this scan pass reschedule */
3200 if (priv->scan_bands > 0)
3201 goto reschedule;
3202 }
3203
3204 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003205 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003206 IWL_DEBUG_INFO("Setting scan to off\n");
3207
3208 clear_bit(STATUS_SCANNING, &priv->status);
3209
3210 IWL_DEBUG_INFO("Scan took %dms\n",
3211 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3212
3213 queue_work(priv->workqueue, &priv->scan_completed);
3214
3215 return;
3216
3217reschedule:
3218 priv->scan_pass_start = jiffies;
3219 queue_work(priv->workqueue, &priv->request_scan);
3220}
3221
3222/* Handle notification from uCode that card's power state is changing
3223 * due to software, hardware, or critical temperature RFKILL */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003224static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3225 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003226{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003227 struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003228 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3229 unsigned long status = priv->status;
3230
3231 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3232 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3233 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3234
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003235 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003236 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3237
3238 if (flags & HW_CARD_DISABLED)
3239 set_bit(STATUS_RF_KILL_HW, &priv->status);
3240 else
3241 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3242
3243
3244 if (flags & SW_CARD_DISABLED)
3245 set_bit(STATUS_RF_KILL_SW, &priv->status);
3246 else
3247 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3248
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003249 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003250
3251 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3252 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3253 (test_bit(STATUS_RF_KILL_SW, &status) !=
3254 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3255 queue_work(priv->workqueue, &priv->rf_kill);
3256 else
3257 wake_up_interruptible(&priv->wait_command_queue);
3258}
3259
3260/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003261 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003262 *
3263 * Setup the RX handlers for each of the reply types sent from the uCode
3264 * to the host.
3265 *
3266 * This function chains into the hardware specific files for them to setup
3267 * any hardware specific handlers as well.
3268 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003269static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003270{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003271 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3272 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3273 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3274 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003275 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003276 iwl3945_rx_spectrum_measure_notif;
3277 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003278 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003279 iwl3945_rx_pm_debug_statistics_notif;
3280 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003281
Ben Cahill9fbab512007-11-29 11:09:47 +08003282 /*
3283 * The same handler is used for both the REPLY to a discrete
3284 * statistics request from the host as well as for the periodic
3285 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003286 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003287 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3288 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003289
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003290 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3291 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003292 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003293 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003294 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003295 iwl3945_rx_scan_complete_notif;
3296 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003297
Ben Cahill9fbab512007-11-29 11:09:47 +08003298 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003299 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003300}
3301
3302/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003303 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3304 * When FW advances 'R' index, all entries between old and new 'R' index
3305 * need to be reclaimed.
3306 */
3307static void iwl3945_cmd_queue_reclaim(struct iwl3945_priv *priv,
3308 int txq_id, int index)
3309{
3310 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3311 struct iwl3945_queue *q = &txq->q;
3312 int nfreed = 0;
3313
3314 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
3315 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3316 "is out of range [0-%d] %d %d.\n", txq_id,
3317 index, q->n_bd, q->write_ptr, q->read_ptr);
3318 return;
3319 }
3320
3321 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3322 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3323 if (nfreed > 1) {
3324 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
3325 q->write_ptr, q->read_ptr);
3326 queue_work(priv->workqueue, &priv->restart);
3327 break;
3328 }
3329 nfreed++;
3330 }
3331}
3332
3333
3334/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003335 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003336 * @rxb: Rx buffer to reclaim
3337 *
3338 * If an Rx buffer has an async callback associated with it the callback
3339 * will be executed. The attached skb (if present) will only be freed
3340 * if the callback returns 1
3341 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003342static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3343 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003344{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003345 struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003346 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3347 int txq_id = SEQ_TO_QUEUE(sequence);
3348 int index = SEQ_TO_INDEX(sequence);
3349 int huge = sequence & SEQ_HUGE_FRAME;
3350 int cmd_index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003351 struct iwl3945_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003352
Zhu Yib481de92007-09-25 17:54:57 -07003353 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3354
3355 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3356 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3357
3358 /* Input error checking is done when commands are added to queue. */
3359 if (cmd->meta.flags & CMD_WANT_SKB) {
3360 cmd->meta.source->u.skb = rxb->skb;
3361 rxb->skb = NULL;
3362 } else if (cmd->meta.u.callback &&
3363 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3364 rxb->skb = NULL;
3365
Tomas Winkler91c066f2008-03-06 17:36:55 -08003366 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003367
3368 if (!(cmd->meta.flags & CMD_ASYNC)) {
3369 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3370 wake_up_interruptible(&priv->wait_command_queue);
3371 }
3372}
3373
3374/************************** RX-FUNCTIONS ****************************/
3375/*
3376 * Rx theory of operation
3377 *
3378 * The host allocates 32 DMA target addresses and passes the host address
3379 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3380 * 0 to 31
3381 *
3382 * Rx Queue Indexes
3383 * The host/firmware share two index registers for managing the Rx buffers.
3384 *
3385 * The READ index maps to the first position that the firmware may be writing
3386 * to -- the driver can read up to (but not including) this position and get
3387 * good data.
3388 * The READ index is managed by the firmware once the card is enabled.
3389 *
3390 * The WRITE index maps to the last position the driver has read from -- the
3391 * position preceding WRITE is the last slot the firmware can place a packet.
3392 *
3393 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3394 * WRITE = READ.
3395 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003396 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003397 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3398 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003399 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003400 * and fire the RX interrupt. The driver can then query the READ index and
3401 * process as many packets as possible, moving the WRITE index forward as it
3402 * resets the Rx queue buffers with new memory.
3403 *
3404 * The management in the driver is as follows:
3405 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3406 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003407 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003408 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003409 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3410 * 'processed' and 'read' driver indexes as well)
3411 * + A received packet is processed and handed to the kernel network stack,
3412 * detached from the iwl->rxq. The driver 'processed' index is updated.
3413 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3414 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3415 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3416 * were enough free buffers and RX_STALLED is set it is cleared.
3417 *
3418 *
3419 * Driver sequence:
3420 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003421 * iwl3945_rx_queue_alloc() Allocates rx_free
3422 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003423 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003424 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003425 * queue, updates firmware pointers, and updates
3426 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003427 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003428 *
3429 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003430 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003431 * READ INDEX, detaching the SKB from the pool.
3432 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003433 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003434 * slots.
3435 * ...
3436 *
3437 */
3438
3439/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003440 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003441 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003442static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003443{
3444 int s = q->read - q->write;
3445 if (s <= 0)
3446 s += RX_QUEUE_SIZE;
3447 /* keep some buffer to not confuse full and empty queue */
3448 s -= 2;
3449 if (s < 0)
3450 s = 0;
3451 return s;
3452}
3453
3454/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003455 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003456 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003457int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003458{
3459 u32 reg = 0;
3460 int rc = 0;
3461 unsigned long flags;
3462
3463 spin_lock_irqsave(&q->lock, flags);
3464
3465 if (q->need_update == 0)
3466 goto exit_unlock;
3467
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003468 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003469 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003470 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003471
3472 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003473 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003474 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3475 goto exit_unlock;
3476 }
3477
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003478 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003479 if (rc)
3480 goto exit_unlock;
3481
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003482 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003483 iwl3945_write_direct32(priv, FH39_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003484 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003485 iwl3945_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003486
3487 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003488 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003489 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003490 iwl3945_write32(priv, FH39_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003491
3492
3493 q->need_update = 0;
3494
3495 exit_unlock:
3496 spin_unlock_irqrestore(&q->lock, flags);
3497 return rc;
3498}
3499
3500/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003501 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003502 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003503static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003504 dma_addr_t dma_addr)
3505{
3506 return cpu_to_le32((u32)dma_addr);
3507}
3508
3509/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003510 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003511 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003512 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003513 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003514 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003515 *
3516 * This moves the 'write' index forward to catch up with 'processed', and
3517 * also updates the memory address in the firmware to reference the new
3518 * target buffer.
3519 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003520static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003521{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003522 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003523 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003524 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003525 unsigned long flags;
3526 int write, rc;
3527
3528 spin_lock_irqsave(&rxq->lock, flags);
3529 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003530 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003531 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003532 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003533 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003534 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003535
3536 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003537 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003538 rxq->queue[rxq->write] = rxb;
3539 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3540 rxq->free_count--;
3541 }
3542 spin_unlock_irqrestore(&rxq->lock, flags);
3543 /* If the pre-allocated buffer pool is dropping low, schedule to
3544 * refill it */
3545 if (rxq->free_count <= RX_LOW_WATERMARK)
3546 queue_work(priv->workqueue, &priv->rx_replenish);
3547
3548
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003549 /* If we've added more space for the firmware to place data, tell it.
3550 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003551 if ((write != (rxq->write & ~0x7))
3552 || (abs(rxq->write - rxq->read) > 7)) {
3553 spin_lock_irqsave(&rxq->lock, flags);
3554 rxq->need_update = 1;
3555 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003556 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003557 if (rc)
3558 return rc;
3559 }
3560
3561 return 0;
3562}
3563
3564/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003565 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003566 *
3567 * When moving to rx_free an SKB is allocated for the slot.
3568 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003569 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003570 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003571 */
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003572static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003573{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003574 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003575 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003576 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003577 unsigned long flags;
3578 spin_lock_irqsave(&rxq->lock, flags);
3579 while (!list_empty(&rxq->rx_used)) {
3580 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003581 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003582
3583 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003584 rxb->skb =
3585 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3586 if (!rxb->skb) {
3587 if (net_ratelimit())
3588 printk(KERN_CRIT DRV_NAME
3589 ": Can not allocate SKB buffers\n");
3590 /* We don't reschedule replenish work here -- we will
3591 * call the restock method and if it still needs
3592 * more buffers it will schedule replenish */
3593 break;
3594 }
Zhu Yi12342c42007-12-20 11:27:32 +08003595
3596 /* If radiotap head is required, reserve some headroom here.
3597 * The physical head count is a variable rx_stats->phy_count.
3598 * We reserve 4 bytes here. Plus these extra bytes, the
3599 * headroom of the physical head should be enough for the
3600 * radiotap head that iwl3945 supported. See iwl3945_rt.
3601 */
3602 skb_reserve(rxb->skb, 4);
3603
Zhu Yib481de92007-09-25 17:54:57 -07003604 priv->alloc_rxb_skb++;
3605 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003606
3607 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07003608 rxb->dma_addr =
3609 pci_map_single(priv->pci_dev, rxb->skb->data,
3610 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3611 list_add_tail(&rxb->list, &rxq->rx_free);
3612 rxq->free_count++;
3613 }
3614 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003615}
3616
3617/*
3618 * this should be called while priv->lock is locked
3619 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003620static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003621{
3622 struct iwl3945_priv *priv = data;
3623
3624 iwl3945_rx_allocate(priv);
3625 iwl3945_rx_queue_restock(priv);
3626}
3627
3628
3629void iwl3945_rx_replenish(void *data)
3630{
3631 struct iwl3945_priv *priv = data;
3632 unsigned long flags;
3633
3634 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003635
3636 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003637 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003638 spin_unlock_irqrestore(&priv->lock, flags);
3639}
3640
3641/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003642 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003643 * This free routine walks the list of POOL entries and if SKB is set to
3644 * non NULL it is unmapped and freed
3645 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003646static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003647{
3648 int i;
3649 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3650 if (rxq->pool[i].skb != NULL) {
3651 pci_unmap_single(priv->pci_dev,
3652 rxq->pool[i].dma_addr,
3653 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3654 dev_kfree_skb(rxq->pool[i].skb);
3655 }
3656 }
3657
3658 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3659 rxq->dma_addr);
3660 rxq->bd = NULL;
3661}
3662
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003663int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003664{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003665 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003666 struct pci_dev *dev = priv->pci_dev;
3667 int i;
3668
3669 spin_lock_init(&rxq->lock);
3670 INIT_LIST_HEAD(&rxq->rx_free);
3671 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003672
3673 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003674 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3675 if (!rxq->bd)
3676 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003677
Zhu Yib481de92007-09-25 17:54:57 -07003678 /* Fill the rx_used queue with _all_ of the Rx buffers */
3679 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3680 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003681
Zhu Yib481de92007-09-25 17:54:57 -07003682 /* Set us so that we have processed and used all buffers, but have
3683 * not restocked the Rx queue with fresh buffers */
3684 rxq->read = rxq->write = 0;
3685 rxq->free_count = 0;
3686 rxq->need_update = 0;
3687 return 0;
3688}
3689
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003690void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003691{
3692 unsigned long flags;
3693 int i;
3694 spin_lock_irqsave(&rxq->lock, flags);
3695 INIT_LIST_HEAD(&rxq->rx_free);
3696 INIT_LIST_HEAD(&rxq->rx_used);
3697 /* Fill the rx_used queue with _all_ of the Rx buffers */
3698 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3699 /* In the reset function, these buffers may have been allocated
3700 * to an SKB, so we need to unmap and free potential storage */
3701 if (rxq->pool[i].skb != NULL) {
3702 pci_unmap_single(priv->pci_dev,
3703 rxq->pool[i].dma_addr,
3704 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3705 priv->alloc_rxb_skb--;
3706 dev_kfree_skb(rxq->pool[i].skb);
3707 rxq->pool[i].skb = NULL;
3708 }
3709 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3710 }
3711
3712 /* Set us so that we have processed and used all buffers, but have
3713 * not restocked the Rx queue with fresh buffers */
3714 rxq->read = rxq->write = 0;
3715 rxq->free_count = 0;
3716 spin_unlock_irqrestore(&rxq->lock, flags);
3717}
3718
3719/* Convert linear signal-to-noise ratio into dB */
3720static u8 ratio2dB[100] = {
3721/* 0 1 2 3 4 5 6 7 8 9 */
3722 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3723 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3724 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3725 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3726 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3727 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3728 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3729 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3730 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3731 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3732};
3733
3734/* Calculates a relative dB value from a ratio of linear
3735 * (i.e. not dB) signal levels.
3736 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003737int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003738{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003739 /* 1000:1 or higher just report as 60 dB */
3740 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003741 return 60;
3742
Adrian Bunk221c80c2008-02-02 23:19:01 +02003743 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003744 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003745 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003746 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003747
3748 /* We shouldn't see this */
3749 if (sig_ratio < 1)
3750 return 0;
3751
3752 /* Use table for ratios 1:1 - 99:1 */
3753 return (int)ratio2dB[sig_ratio];
3754}
3755
3756#define PERFECT_RSSI (-20) /* dBm */
3757#define WORST_RSSI (-95) /* dBm */
3758#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3759
3760/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3761 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3762 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003763int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003764{
3765 int sig_qual;
3766 int degradation = PERFECT_RSSI - rssi_dbm;
3767
3768 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3769 * as indicator; formula is (signal dbm - noise dbm).
3770 * SNR at or above 40 is a great signal (100%).
3771 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3772 * Weakest usable signal is usually 10 - 15 dB SNR. */
3773 if (noise_dbm) {
3774 if (rssi_dbm - noise_dbm >= 40)
3775 return 100;
3776 else if (rssi_dbm < noise_dbm)
3777 return 0;
3778 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3779
3780 /* Else use just the signal level.
3781 * This formula is a least squares fit of data points collected and
3782 * compared with a reference system that had a percentage (%) display
3783 * for signal quality. */
3784 } else
3785 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3786 (15 * RSSI_RANGE + 62 * degradation)) /
3787 (RSSI_RANGE * RSSI_RANGE);
3788
3789 if (sig_qual > 100)
3790 sig_qual = 100;
3791 else if (sig_qual < 1)
3792 sig_qual = 0;
3793
3794 return sig_qual;
3795}
3796
3797/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003798 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003799 *
3800 * Uses the priv->rx_handlers callback function array to invoke
3801 * the appropriate handlers, including command responses,
3802 * frame-received notifications, and other notifications.
3803 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003804static void iwl3945_rx_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003805{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003806 struct iwl3945_rx_mem_buffer *rxb;
3807 struct iwl3945_rx_packet *pkt;
3808 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003809 u32 r, i;
3810 int reclaim;
3811 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003812 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003813 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003814
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003815 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3816 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003817 r = iwl3945_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003818 i = rxq->read;
3819
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003820 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3821 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003822 /* Rx interrupt, but nothing sent from uCode */
3823 if (i == r)
3824 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3825
3826 while (i != r) {
3827 rxb = rxq->queue[i];
3828
Ben Cahill9fbab512007-11-29 11:09:47 +08003829 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003830 * then a bug has been introduced in the queue refilling
3831 * routines -- catch it here */
3832 BUG_ON(rxb == NULL);
3833
3834 rxq->queue[i] = NULL;
3835
3836 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
3837 IWL_RX_BUF_SIZE,
3838 PCI_DMA_FROMDEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003839 pkt = (struct iwl3945_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003840
3841 /* Reclaim a command buffer only if this packet is a response
3842 * to a (driver-originated) command.
3843 * If the packet (e.g. Rx frame) originated from uCode,
3844 * there is no command buffer to reclaim.
3845 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3846 * but apparently a few don't get set; catch them here. */
3847 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3848 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3849 (pkt->hdr.cmd != REPLY_TX);
3850
3851 /* Based on type of command response or notification,
3852 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003853 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003854 if (priv->rx_handlers[pkt->hdr.cmd]) {
3855 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3856 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3857 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3858 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3859 } else {
3860 /* No handling needed */
3861 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3862 "r %d i %d No handler needed for %s, 0x%02x\n",
3863 r, i, get_cmd_string(pkt->hdr.cmd),
3864 pkt->hdr.cmd);
3865 }
3866
3867 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003868 /* Invoke any callbacks, transfer the skb to caller, and
3869 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003870 * as we reclaim the driver command queue */
3871 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003872 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003873 else
3874 IWL_WARNING("Claim null rxb?\n");
3875 }
3876
3877 /* For now we just don't re-use anything. We can tweak this
3878 * later to try and re-use notification packets and SKBs that
3879 * fail to Rx correctly */
3880 if (rxb->skb != NULL) {
3881 priv->alloc_rxb_skb--;
3882 dev_kfree_skb_any(rxb->skb);
3883 rxb->skb = NULL;
3884 }
3885
3886 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
3887 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3888 spin_lock_irqsave(&rxq->lock, flags);
3889 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3890 spin_unlock_irqrestore(&rxq->lock, flags);
3891 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003892 /* If there are a lot of unused frames,
3893 * restock the Rx queue so ucode won't assert. */
3894 if (fill_rx) {
3895 count++;
3896 if (count >= 8) {
3897 priv->rxq.read = i;
3898 __iwl3945_rx_replenish(priv);
3899 count = 0;
3900 }
3901 }
Zhu Yib481de92007-09-25 17:54:57 -07003902 }
3903
3904 /* Backtrack one entry */
3905 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003906 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003907}
3908
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003909/**
3910 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3911 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003912static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
3913 struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003914{
3915 u32 reg = 0;
3916 int rc = 0;
3917 int txq_id = txq->q.id;
3918
3919 if (txq->need_update == 0)
3920 return rc;
3921
3922 /* if we're trying to save power */
3923 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3924 /* wake up nic if it's powered down ...
3925 * uCode will wake up, and interrupt us again, so next
3926 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003927 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003928
3929 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3930 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003931 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003932 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3933 return rc;
3934 }
3935
3936 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003937 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003938 if (rc)
3939 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003940 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003941 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003942 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003943
3944 /* else not in power-save mode, uCode will never sleep when we're
3945 * trying to tx (during RFKILL, we're not trying to tx). */
3946 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003947 iwl3945_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003948 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003949
3950 txq->need_update = 0;
3951
3952 return rc;
3953}
3954
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003955#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003956static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003957{
3958 IWL_DEBUG_RADIO("RX CONFIG:\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003959 iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003960 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3961 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3962 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3963 le32_to_cpu(rxon->filter_flags));
3964 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3965 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3966 rxon->ofdm_basic_rates);
3967 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003968 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3969 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003970 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3971}
3972#endif
3973
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003974static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003975{
3976 IWL_DEBUG_ISR("Enabling interrupts\n");
3977 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003978 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003979}
3980
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003981
3982/* call this function to flush any scheduled tasklet */
3983static inline void iwl_synchronize_irq(struct iwl3945_priv *priv)
3984{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003985 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003986 synchronize_irq(priv->pci_dev->irq);
3987 tasklet_kill(&priv->irq_tasklet);
3988}
3989
3990
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003991static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003992{
3993 clear_bit(STATUS_INT_ENABLED, &priv->status);
3994
3995 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003996 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003997
3998 /* acknowledge/clear/reset any interrupts still pending
3999 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004000 iwl3945_write32(priv, CSR_INT, 0xffffffff);
4001 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004002 IWL_DEBUG_ISR("Disabled interrupts\n");
4003}
4004
4005static const char *desc_lookup(int i)
4006{
4007 switch (i) {
4008 case 1:
4009 return "FAIL";
4010 case 2:
4011 return "BAD_PARAM";
4012 case 3:
4013 return "BAD_CHECKSUM";
4014 case 4:
4015 return "NMI_INTERRUPT";
4016 case 5:
4017 return "SYSASSERT";
4018 case 6:
4019 return "FATAL_ERROR";
4020 }
4021
4022 return "UNKNOWN";
4023}
4024
4025#define ERROR_START_OFFSET (1 * sizeof(u32))
4026#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4027
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004028static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004029{
4030 u32 i;
4031 u32 desc, time, count, base, data1;
4032 u32 blink1, blink2, ilink1, ilink2;
4033 int rc;
4034
4035 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4036
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004037 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004038 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4039 return;
4040 }
4041
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004042 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004043 if (rc) {
4044 IWL_WARNING("Can not read from adapter at this time.\n");
4045 return;
4046 }
4047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004048 count = iwl3945_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004049
4050 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4051 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004052 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004053 }
4054
4055 IWL_ERROR("Desc Time asrtPC blink2 "
4056 "ilink1 nmiPC Line\n");
4057 for (i = ERROR_START_OFFSET;
4058 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4059 i += ERROR_ELEM_SIZE) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004060 desc = iwl3945_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07004061 time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004062 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004063 blink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004064 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004065 blink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004066 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004067 ilink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004068 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004069 ilink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004070 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004071 data1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004072 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004073
4074 IWL_ERROR
4075 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4076 desc_lookup(desc), desc, time, blink1, blink2,
4077 ilink1, ilink2, data1);
4078 }
4079
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004080 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004081
4082}
4083
Ben Cahillf58177b2007-11-29 11:09:43 +08004084#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07004085
4086/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004087 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004088 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004089 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004090 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004091static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004092 u32 num_events, u32 mode)
4093{
4094 u32 i;
4095 u32 base; /* SRAM byte address of event log header */
4096 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4097 u32 ptr; /* SRAM byte address of log data */
4098 u32 ev, time, data; /* event log data */
4099
4100 if (num_events == 0)
4101 return;
4102
4103 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4104
4105 if (mode == 0)
4106 event_size = 2 * sizeof(u32);
4107 else
4108 event_size = 3 * sizeof(u32);
4109
4110 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4111
4112 /* "time" is actually "data" for mode 0 (no timestamp).
4113 * place event id # at far right for easier visual parsing. */
4114 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004115 ev = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004116 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004117 time = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004118 ptr += sizeof(u32);
4119 if (mode == 0)
4120 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4121 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004122 data = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004123 ptr += sizeof(u32);
4124 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4125 }
4126 }
4127}
4128
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004129static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004130{
4131 int rc;
4132 u32 base; /* SRAM byte address of event log header */
4133 u32 capacity; /* event log capacity in # entries */
4134 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4135 u32 num_wraps; /* # times uCode wrapped to top of log */
4136 u32 next_entry; /* index of next entry to be written by uCode */
4137 u32 size; /* # entries that we'll print */
4138
4139 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004140 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004141 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4142 return;
4143 }
4144
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004145 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004146 if (rc) {
4147 IWL_WARNING("Can not read from adapter at this time.\n");
4148 return;
4149 }
4150
4151 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004152 capacity = iwl3945_read_targ_mem(priv, base);
4153 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4154 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4155 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004156
4157 size = num_wraps ? capacity : next_entry;
4158
4159 /* bail out if nothing in log */
4160 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004161 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004162 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004163 return;
4164 }
4165
Zhu Yi583fab32007-09-27 11:27:30 +08004166 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004167 size, num_wraps);
4168
4169 /* if uCode has wrapped back to top of log, start at the oldest entry,
4170 * i.e the next one that uCode would fill. */
4171 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004172 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004173 capacity - next_entry, mode);
4174
4175 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004176 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004177
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004178 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004179}
4180
4181/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004182 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004183 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004184static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004185{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004186 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07004187 set_bit(STATUS_FW_ERROR, &priv->status);
4188
4189 /* Cancel currently queued command. */
4190 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4191
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004192#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004193 if (iwl3945_debug_level & IWL_DL_FW_ERRORS) {
4194 iwl3945_dump_nic_error_log(priv);
4195 iwl3945_dump_nic_event_log(priv);
4196 iwl3945_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004197 }
4198#endif
4199
4200 wake_up_interruptible(&priv->wait_command_queue);
4201
4202 /* Keep the restart process from trying to send host
4203 * commands by clearing the INIT status bit */
4204 clear_bit(STATUS_READY, &priv->status);
4205
4206 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4207 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4208 "Restarting adapter due to uCode error.\n");
4209
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004210 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004211 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4212 sizeof(priv->recovery_rxon));
4213 priv->error_recovering = 1;
4214 }
4215 queue_work(priv->workqueue, &priv->restart);
4216 }
4217}
4218
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004219static void iwl3945_error_recovery(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004220{
4221 unsigned long flags;
4222
4223 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4224 sizeof(priv->staging_rxon));
4225 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004226 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004227
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004228 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004229
4230 spin_lock_irqsave(&priv->lock, flags);
4231 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4232 priv->error_recovering = 0;
4233 spin_unlock_irqrestore(&priv->lock, flags);
4234}
4235
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004236static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004237{
4238 u32 inta, handled = 0;
4239 u32 inta_fh;
4240 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004241#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004242 u32 inta_mask;
4243#endif
4244
4245 spin_lock_irqsave(&priv->lock, flags);
4246
4247 /* Ack/clear/reset pending uCode interrupts.
4248 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4249 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004250 inta = iwl3945_read32(priv, CSR_INT);
4251 iwl3945_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004252
4253 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4254 * Any new interrupts that happen after this, either while we're
4255 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004256 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4257 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004258
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004259#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004260 if (iwl3945_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004261 /* just for debug */
4262 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004263 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4264 inta, inta_mask, inta_fh);
4265 }
4266#endif
4267
4268 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4269 * atomic, make sure that inta covers all the interrupts that
4270 * we've discovered, even if FH interrupt came in just after
4271 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004272 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004273 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004274 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004275 inta |= CSR_INT_BIT_FH_TX;
4276
4277 /* Now service all interrupt bits discovered above. */
4278 if (inta & CSR_INT_BIT_HW_ERR) {
4279 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4280
4281 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004282 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004283
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004284 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004285
4286 handled |= CSR_INT_BIT_HW_ERR;
4287
4288 spin_unlock_irqrestore(&priv->lock, flags);
4289
4290 return;
4291 }
4292
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004293#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004294 if (iwl3945_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004295 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004296 if (inta & CSR_INT_BIT_SCD)
4297 IWL_DEBUG_ISR("Scheduler finished to transmit "
4298 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004299
4300 /* Alive notification via Rx interrupt will do the real work */
4301 if (inta & CSR_INT_BIT_ALIVE)
4302 IWL_DEBUG_ISR("Alive interrupt\n");
4303 }
4304#endif
4305 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004306 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004307
Zhu Yib481de92007-09-25 17:54:57 -07004308 /* Error detected by uCode */
4309 if (inta & CSR_INT_BIT_SW_ERR) {
4310 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4311 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004312 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004313 handled |= CSR_INT_BIT_SW_ERR;
4314 }
4315
4316 /* uCode wakes up after power-down sleep */
4317 if (inta & CSR_INT_BIT_WAKEUP) {
4318 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004319 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4320 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4321 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4322 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4323 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4324 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4325 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004326
4327 handled |= CSR_INT_BIT_WAKEUP;
4328 }
4329
4330 /* All uCode command responses, including Tx command responses,
4331 * Rx "responses" (frame-received notification), and other
4332 * notifications from uCode come through here*/
4333 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004334 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004335 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4336 }
4337
4338 if (inta & CSR_INT_BIT_FH_TX) {
4339 IWL_DEBUG_ISR("Tx interrupt\n");
4340
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004341 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4342 if (!iwl3945_grab_nic_access(priv)) {
Tomas Winklerbddadf82008-12-19 10:37:01 +08004343 iwl3945_write_direct32(priv, FH39_TCSR_CREDIT
4344 (FH39_SRVC_CHNL), 0x0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004345 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004346 }
4347 handled |= CSR_INT_BIT_FH_TX;
4348 }
4349
4350 if (inta & ~handled)
4351 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4352
4353 if (inta & ~CSR_INI_SET_MASK) {
4354 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4355 inta & ~CSR_INI_SET_MASK);
4356 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4357 }
4358
4359 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004360 /* only Re-enable if disabled by irq */
4361 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4362 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004363
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004364#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004365 if (iwl3945_debug_level & (IWL_DL_ISR)) {
4366 inta = iwl3945_read32(priv, CSR_INT);
4367 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4368 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004369 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4370 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4371 }
4372#endif
4373 spin_unlock_irqrestore(&priv->lock, flags);
4374}
4375
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004376static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004377{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004378 struct iwl3945_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004379 u32 inta, inta_mask;
4380 u32 inta_fh;
4381 if (!priv)
4382 return IRQ_NONE;
4383
4384 spin_lock(&priv->lock);
4385
4386 /* Disable (but don't clear!) interrupts here to avoid
4387 * back-to-back ISRs and sporadic interrupts from our NIC.
4388 * If we have something to service, the tasklet will re-enable ints.
4389 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004390 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4391 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004392
4393 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004394 inta = iwl3945_read32(priv, CSR_INT);
4395 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004396
4397 /* Ignore interrupt if there's nothing in NIC to service.
4398 * This may be due to IRQ shared with another device,
4399 * or due to sporadic interrupts thrown from our NIC. */
4400 if (!inta && !inta_fh) {
4401 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4402 goto none;
4403 }
4404
4405 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4406 /* Hardware disappeared */
Zhu Yi99df6302008-12-02 12:13:58 -08004407 IWL_WARNING("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004408 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004409 }
4410
4411 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4412 inta, inta_mask, inta_fh);
4413
Joonwoo Park25c03d82008-01-23 10:15:20 -08004414 inta &= ~CSR_INT_BIT_SCD;
4415
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004416 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004417 if (likely(inta || inta_fh))
4418 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004419unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004420 spin_unlock(&priv->lock);
4421
4422 return IRQ_HANDLED;
4423
4424 none:
4425 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004426 /* only Re-enable if disabled by irq */
4427 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4428 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004429 spin_unlock(&priv->lock);
4430 return IRQ_NONE;
4431}
4432
4433/************************** EEPROM BANDS ****************************
4434 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004435 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004436 * EEPROM contents to the specific channel number supported for each
4437 * band.
4438 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004439 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004440 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4441 * The specific geography and calibration information for that channel
4442 * is contained in the eeprom map itself.
4443 *
4444 * During init, we copy the eeprom information and channel map
4445 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4446 *
4447 * channel_map_24/52 provides the index in the channel_info array for a
4448 * given channel. We have to have two separate maps as there is channel
4449 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4450 * band_2
4451 *
4452 * A value of 0xff stored in the channel_map indicates that the channel
4453 * is not supported by the hardware at all.
4454 *
4455 * A value of 0xfe in the channel_map indicates that the channel is not
4456 * valid for Tx with the current hardware. This means that
4457 * while the system can tune and receive on a given channel, it may not
4458 * be able to associate or transmit any frames on that
4459 * channel. There is no corresponding channel information for that
4460 * entry.
4461 *
4462 *********************************************************************/
4463
4464/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004465static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004466 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4467};
4468
4469/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004470static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004471 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4472};
4473
Ben Cahill9fbab512007-11-29 11:09:47 +08004474static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004475 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4476};
4477
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004478static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004479 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4480};
4481
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004482static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004483 145, 149, 153, 157, 161, 165
4484};
4485
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004486static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004487 int *eeprom_ch_count,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004488 const struct iwl3945_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004489 **eeprom_ch_info,
4490 const u8 **eeprom_ch_index)
4491{
4492 switch (band) {
4493 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004494 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Zhu Yib481de92007-09-25 17:54:57 -07004495 *eeprom_ch_info = priv->eeprom.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004496 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004497 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004498 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004499 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Zhu Yib481de92007-09-25 17:54:57 -07004500 *eeprom_ch_info = priv->eeprom.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004501 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004502 break;
4503 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004504 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Zhu Yib481de92007-09-25 17:54:57 -07004505 *eeprom_ch_info = priv->eeprom.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004506 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004507 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004508 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004509 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Zhu Yib481de92007-09-25 17:54:57 -07004510 *eeprom_ch_info = priv->eeprom.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004511 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004512 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004513 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004514 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004515 *eeprom_ch_info = priv->eeprom.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004516 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004517 break;
4518 default:
4519 BUG();
4520 return;
4521 }
4522}
4523
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004524/**
4525 * iwl3945_get_channel_info - Find driver's private channel info
4526 *
4527 * Based on band and channel number.
4528 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004529const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004530 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004531{
4532 int i;
4533
Johannes Berg8318d782008-01-24 19:38:38 +01004534 switch (band) {
4535 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004536 for (i = 14; i < priv->channel_count; i++) {
4537 if (priv->channel_info[i].channel == channel)
4538 return &priv->channel_info[i];
4539 }
4540 break;
4541
Johannes Berg8318d782008-01-24 19:38:38 +01004542 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004543 if (channel >= 1 && channel <= 14)
4544 return &priv->channel_info[channel - 1];
4545 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004546 case IEEE80211_NUM_BANDS:
4547 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004548 }
4549
4550 return NULL;
4551}
4552
4553#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4554 ? # x " " : "")
4555
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004556/**
4557 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4558 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004559static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004560{
4561 int eeprom_ch_count = 0;
4562 const u8 *eeprom_ch_index = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004563 const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004564 int band, ch;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004565 struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004566
4567 if (priv->channel_count) {
4568 IWL_DEBUG_INFO("Channel map already initialized.\n");
4569 return 0;
4570 }
4571
4572 if (priv->eeprom.version < 0x2f) {
4573 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
4574 priv->eeprom.version);
4575 return -EINVAL;
4576 }
4577
4578 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4579
4580 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004581 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4582 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4583 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4584 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4585 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004586
4587 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4588
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004589 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004590 priv->channel_count, GFP_KERNEL);
4591 if (!priv->channel_info) {
4592 IWL_ERROR("Could not allocate channel_info\n");
4593 priv->channel_count = 0;
4594 return -ENOMEM;
4595 }
4596
4597 ch_info = priv->channel_info;
4598
4599 /* Loop through the 5 EEPROM bands adding them in order to the
4600 * channel map we maintain (that contains additional information than
4601 * what just in the EEPROM) */
4602 for (band = 1; band <= 5; band++) {
4603
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004604 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004605 &eeprom_ch_info, &eeprom_ch_index);
4606
4607 /* Loop through each band adding each of the channels */
4608 for (ch = 0; ch < eeprom_ch_count; ch++) {
4609 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004610 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4611 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004612
4613 /* permanently store EEPROM's channel regulatory flags
4614 * and max power in channel info database. */
4615 ch_info->eeprom = eeprom_ch_info[ch];
4616
4617 /* Copy the run-time flags so they are there even on
4618 * invalid channels */
4619 ch_info->flags = eeprom_ch_info[ch].flags;
4620
4621 if (!(is_channel_valid(ch_info))) {
4622 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4623 "No traffic\n",
4624 ch_info->channel,
4625 ch_info->flags,
4626 is_channel_a_band(ch_info) ?
4627 "5.2" : "2.4");
4628 ch_info++;
4629 continue;
4630 }
4631
4632 /* Initialize regulatory-based run-time data */
4633 ch_info->max_power_avg = ch_info->curr_txpow =
4634 eeprom_ch_info[ch].max_power_avg;
4635 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4636 ch_info->min_power = 0;
4637
Guy Cohenfe7c4042008-04-21 15:41:56 -07004638 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004639 " %ddBm): Ad-Hoc %ssupported\n",
4640 ch_info->channel,
4641 is_channel_a_band(ch_info) ?
4642 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004643 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004644 CHECK_AND_PRINT(IBSS),
4645 CHECK_AND_PRINT(ACTIVE),
4646 CHECK_AND_PRINT(RADAR),
4647 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004648 CHECK_AND_PRINT(DFS),
4649 eeprom_ch_info[ch].flags,
4650 eeprom_ch_info[ch].max_power_avg,
4651 ((eeprom_ch_info[ch].
4652 flags & EEPROM_CHANNEL_IBSS)
4653 && !(eeprom_ch_info[ch].
4654 flags & EEPROM_CHANNEL_RADAR))
4655 ? "" : "not ");
4656
4657 /* Set the user_txpower_limit to the highest power
4658 * supported by any channel */
4659 if (eeprom_ch_info[ch].max_power_avg >
4660 priv->user_txpower_limit)
4661 priv->user_txpower_limit =
4662 eeprom_ch_info[ch].max_power_avg;
4663
4664 ch_info++;
4665 }
4666 }
4667
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004668 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004669 if (iwl3945_txpower_set_from_eeprom(priv))
4670 return -EIO;
4671
4672 return 0;
4673}
4674
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004675/*
4676 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4677 */
4678static void iwl3945_free_channel_map(struct iwl3945_priv *priv)
4679{
4680 kfree(priv->channel_info);
4681 priv->channel_count = 0;
4682}
4683
Zhu Yib481de92007-09-25 17:54:57 -07004684/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4685 * sending probe req. This should be set long enough to hear probe responses
4686 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004687#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4688#define IWL_ACTIVE_DWELL_TIME_52 (20)
4689
4690#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4691#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004692
4693/* For faster active scanning, scan will move to the next channel if fewer than
4694 * PLCP_QUIET_THRESH packets are heard on this channel within
4695 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4696 * time if it's a quiet channel (nothing responded to our probe, and there's
4697 * no other traffic).
4698 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4699#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004700#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004701
4702/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4703 * Must be set longer than active dwell time.
4704 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4705#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4706#define IWL_PASSIVE_DWELL_TIME_52 (10)
4707#define IWL_PASSIVE_DWELL_BASE (100)
4708#define IWL_CHANNEL_TUNE_TIME 5
4709
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004710#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004711
Johannes Berg8318d782008-01-24 19:38:38 +01004712static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004713 enum ieee80211_band band,
4714 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004715{
Johannes Berg8318d782008-01-24 19:38:38 +01004716 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004717 return IWL_ACTIVE_DWELL_TIME_52 +
4718 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004719 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004720 return IWL_ACTIVE_DWELL_TIME_24 +
4721 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004722}
4723
Johannes Berg8318d782008-01-24 19:38:38 +01004724static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv,
4725 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004726{
Johannes Berg8318d782008-01-24 19:38:38 +01004727 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004728 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4729 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4730
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004731 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004732 /* If we're associated, we clamp the maximum passive
4733 * dwell time to be 98% of the beacon interval (minus
4734 * 2 * channel tune time) */
4735 passive = priv->beacon_int;
4736 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4737 passive = IWL_PASSIVE_DWELL_BASE;
4738 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4739 }
4740
Zhu Yib481de92007-09-25 17:54:57 -07004741 return passive;
4742}
4743
Johannes Berg8318d782008-01-24 19:38:38 +01004744static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv,
4745 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004746 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004747 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004748{
4749 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004750 const struct ieee80211_supported_band *sband;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004751 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004752 u16 passive_dwell = 0;
4753 u16 active_dwell = 0;
4754 int added, i;
4755
Johannes Berg8318d782008-01-24 19:38:38 +01004756 sband = iwl3945_get_band(priv, band);
4757 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004758 return 0;
4759
Johannes Berg8318d782008-01-24 19:38:38 +01004760 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004761
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004762 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004763 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004764
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004765 if (passive_dwell <= active_dwell)
4766 passive_dwell = active_dwell + 1;
4767
Johannes Berg8318d782008-01-24 19:38:38 +01004768 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004769 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4770 continue;
4771
Johannes Berg8318d782008-01-24 19:38:38 +01004772 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004773
Johannes Berg8318d782008-01-24 19:38:38 +01004774 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004775 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004776 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004777 scan_ch->channel);
4778 continue;
4779 }
4780
Zhu Yib481de92007-09-25 17:54:57 -07004781 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4782 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004783 /* If passive , set up for auto-switch
4784 * and use long active_dwell time.
4785 */
4786 if (!is_active || is_channel_passive(ch_info) ||
4787 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4788 scan_ch->type = 0; /* passive */
4789 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4790 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4791 } else {
4792 scan_ch->type = 1; /* active */
4793 }
4794
4795 /* Set direct probe bits. These may be used both for active
4796 * scan channels (probes gets sent right away),
4797 * or for passive channels (probes get se sent only after
4798 * hearing clear Rx packet).*/
4799 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4800 if (n_probes)
4801 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4802 } else {
4803 /* uCode v1 does not allow setting direct probe bits on
4804 * passive channel. */
4805 if ((scan_ch->type & 1) && n_probes)
4806 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4807 }
Zhu Yib481de92007-09-25 17:54:57 -07004808
Ben Cahill9fbab512007-11-29 11:09:47 +08004809 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004810 scan_ch->tpc.dsp_atten = 110;
4811 /* scan_pwr_info->tpc.dsp_atten; */
4812
4813 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004814 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004815 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4816 else {
4817 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4818 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004819 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004820 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004821 */
4822 }
4823
4824 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4825 scan_ch->channel,
4826 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4827 (scan_ch->type & 1) ?
4828 active_dwell : passive_dwell);
4829
4830 scan_ch++;
4831 added++;
4832 }
4833
4834 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4835 return added;
4836}
4837
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004838static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004839 struct ieee80211_rate *rates)
4840{
4841 int i;
4842
4843 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004844 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4845 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4846 rates[i].hw_value_short = i;
4847 rates[i].flags = 0;
4848 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004849 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004850 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004851 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004852 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004853 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004854 }
Zhu Yib481de92007-09-25 17:54:57 -07004855 }
4856}
4857
4858/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004859 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004860 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004861static int iwl3945_init_geos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004862{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004863 struct iwl3945_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004864 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004865 struct ieee80211_channel *channels;
4866 struct ieee80211_channel *geo_ch;
4867 struct ieee80211_rate *rates;
4868 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004869
Johannes Berg8318d782008-01-24 19:38:38 +01004870 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4871 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004872 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4873 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4874 return 0;
4875 }
4876
Zhu Yib481de92007-09-25 17:54:57 -07004877 channels = kzalloc(sizeof(struct ieee80211_channel) *
4878 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004879 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004880 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004881
Tomas Winkler8211ef72008-03-02 01:36:04 +02004882 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004883 GFP_KERNEL);
4884 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004885 kfree(channels);
4886 return -ENOMEM;
4887 }
4888
Zhu Yib481de92007-09-25 17:54:57 -07004889 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004890 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4891 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4892 /* just OFDM */
4893 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4894 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004895
Tomas Winkler8211ef72008-03-02 01:36:04 +02004896 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4897 sband->channels = channels;
4898 /* OFDM & CCK */
4899 sband->bitrates = rates;
4900 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004901
4902 priv->ieee_channels = channels;
4903 priv->ieee_rates = rates;
4904
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004905 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004906
Tomas Winkler8211ef72008-03-02 01:36:04 +02004907 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004908 ch = &priv->channel_info[i];
4909
Tomas Winkler8211ef72008-03-02 01:36:04 +02004910 /* FIXME: might be removed if scan is OK*/
4911 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004912 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004913
4914 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004915 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004916 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004917 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004918
Tomas Winkler8211ef72008-03-02 01:36:04 +02004919 geo_ch = &sband->channels[sband->n_channels++];
4920
4921 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004922 geo_ch->max_power = ch->max_power_avg;
4923 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004924 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004925
4926 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004927 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4928 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004929
Johannes Berg8318d782008-01-24 19:38:38 +01004930 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4931 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004932
4933 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004934 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004935
4936 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4937 priv->max_channel_txpower_limit =
4938 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004939 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004940 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004941 }
4942
4943 /* Save flags for reg domain usage */
4944 geo_ch->orig_flags = geo_ch->flags;
4945
4946 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4947 ch->channel, geo_ch->center_freq,
4948 is_channel_a_band(ch) ? "5.2" : "2.4",
4949 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4950 "restricted" : "valid",
4951 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004952 }
4953
Tomas Winkler82b9a122008-03-04 18:09:30 -08004954 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4955 priv->cfg->sku & IWL_SKU_A) {
Zhu Yib481de92007-09-25 17:54:57 -07004956 printk(KERN_INFO DRV_NAME
4957 ": Incorrectly detected BG card as ABG. Please send "
4958 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
4959 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004960 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004961 }
4962
4963 printk(KERN_INFO DRV_NAME
4964 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004965 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4966 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004967
John W. Linvillee0e0a672008-03-25 15:58:40 -04004968 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4969 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4970 &priv->bands[IEEE80211_BAND_2GHZ];
4971 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4972 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4973 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004974
Zhu Yib481de92007-09-25 17:54:57 -07004975 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4976
4977 return 0;
4978}
4979
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004980/*
4981 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4982 */
4983static void iwl3945_free_geos(struct iwl3945_priv *priv)
4984{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004985 kfree(priv->ieee_channels);
4986 kfree(priv->ieee_rates);
4987 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4988}
4989
Zhu Yib481de92007-09-25 17:54:57 -07004990/******************************************************************************
4991 *
4992 * uCode download functions
4993 *
4994 ******************************************************************************/
4995
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004996static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004997{
Tomas Winkler98c92212008-01-14 17:46:20 -08004998 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4999 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
5000 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
5001 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
5002 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5003 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005004}
5005
5006/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005007 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005008 * looking at all data.
5009 */
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005010static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005011{
5012 u32 val;
5013 u32 save_len = len;
5014 int rc = 0;
5015 u32 errcnt;
5016
5017 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005019 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005020 if (rc)
5021 return rc;
5022
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005023 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005024
5025 errcnt = 0;
5026 for (; len > 0; len -= sizeof(u32), image++) {
5027 /* read data comes through single port, auto-incr addr */
5028 /* NOTE: Use the debugless read so we don't flood kernel log
5029 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005030 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005031 if (val != le32_to_cpu(*image)) {
5032 IWL_ERROR("uCode INST section is invalid at "
5033 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5034 save_len - len, val, le32_to_cpu(*image));
5035 rc = -EIO;
5036 errcnt++;
5037 if (errcnt >= 20)
5038 break;
5039 }
5040 }
5041
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005042 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005043
5044 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08005045 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07005046
5047 return rc;
5048}
5049
5050
5051/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005052 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005053 * using sample data 100 bytes apart. If these sample points are good,
5054 * it's a pretty good bet that everything between them is good, too.
5055 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005056static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005057{
5058 u32 val;
5059 int rc = 0;
5060 u32 errcnt = 0;
5061 u32 i;
5062
5063 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5064
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005065 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005066 if (rc)
5067 return rc;
5068
5069 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5070 /* read data comes through single port, auto-incr addr */
5071 /* NOTE: Use the debugless read so we don't flood kernel log
5072 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005073 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Zhu Yib481de92007-09-25 17:54:57 -07005074 i + RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005075 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005076 if (val != le32_to_cpu(*image)) {
5077#if 0 /* Enable this if you want to see details */
5078 IWL_ERROR("uCode INST section is invalid at "
5079 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5080 i, val, *image);
5081#endif
5082 rc = -EIO;
5083 errcnt++;
5084 if (errcnt >= 3)
5085 break;
5086 }
5087 }
5088
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005089 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005090
5091 return rc;
5092}
5093
5094
5095/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005096 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005097 * and verify its contents
5098 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005099static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005100{
5101 __le32 *image;
5102 u32 len;
5103 int rc = 0;
5104
5105 /* Try bootstrap */
5106 image = (__le32 *)priv->ucode_boot.v_addr;
5107 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005108 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005109 if (rc == 0) {
5110 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5111 return 0;
5112 }
5113
5114 /* Try initialize */
5115 image = (__le32 *)priv->ucode_init.v_addr;
5116 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005117 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005118 if (rc == 0) {
5119 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5120 return 0;
5121 }
5122
5123 /* Try runtime/protocol */
5124 image = (__le32 *)priv->ucode_code.v_addr;
5125 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005126 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005127 if (rc == 0) {
5128 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5129 return 0;
5130 }
5131
5132 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5133
Ben Cahill9fbab512007-11-29 11:09:47 +08005134 /* Since nothing seems to match, show first several data entries in
5135 * instruction SRAM, so maybe visual inspection will give a clue.
5136 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005137 image = (__le32 *)priv->ucode_boot.v_addr;
5138 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005139 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005140
5141 return rc;
5142}
5143
5144
5145/* check contents of special bootstrap uCode SRAM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005146static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005147{
5148 __le32 *image = priv->ucode_boot.v_addr;
5149 u32 len = priv->ucode_boot.len;
5150 u32 reg;
5151 u32 val;
5152
5153 IWL_DEBUG_INFO("Begin verify bsm\n");
5154
5155 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005156 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005157 for (reg = BSM_SRAM_LOWER_BOUND;
5158 reg < BSM_SRAM_LOWER_BOUND + len;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005159 reg += sizeof(u32), image++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005160 val = iwl3945_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005161 if (val != le32_to_cpu(*image)) {
5162 IWL_ERROR("BSM uCode verification failed at "
5163 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5164 BSM_SRAM_LOWER_BOUND,
5165 reg - BSM_SRAM_LOWER_BOUND, len,
5166 val, le32_to_cpu(*image));
5167 return -EIO;
5168 }
5169 }
5170
5171 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5172
5173 return 0;
5174}
5175
5176/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005177 * iwl3945_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005178 *
5179 * BSM operation:
5180 *
5181 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5182 * in special SRAM that does not power down during RFKILL. When powering back
5183 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5184 * the bootstrap program into the on-board processor, and starts it.
5185 *
5186 * The bootstrap program loads (via DMA) instructions and data for a new
5187 * program from host DRAM locations indicated by the host driver in the
5188 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5189 * automatically.
5190 *
5191 * When initializing the NIC, the host driver points the BSM to the
5192 * "initialize" uCode image. This uCode sets up some internal data, then
5193 * notifies host via "initialize alive" that it is complete.
5194 *
5195 * The host then replaces the BSM_DRAM_* pointer values to point to the
5196 * normal runtime uCode instructions and a backup uCode data cache buffer
5197 * (filled initially with starting data values for the on-board processor),
5198 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5199 * which begins normal operation.
5200 *
5201 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5202 * the backup data cache in DRAM before SRAM is powered down.
5203 *
5204 * When powering back up, the BSM loads the bootstrap program. This reloads
5205 * the runtime uCode instructions and the backup data cache into SRAM,
5206 * and re-launches the runtime uCode from where it left off.
5207 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005208static int iwl3945_load_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005209{
5210 __le32 *image = priv->ucode_boot.v_addr;
5211 u32 len = priv->ucode_boot.len;
5212 dma_addr_t pinst;
5213 dma_addr_t pdata;
5214 u32 inst_len;
5215 u32 data_len;
5216 int rc;
5217 int i;
5218 u32 done;
5219 u32 reg_offset;
5220
5221 IWL_DEBUG_INFO("Begin load bsm\n");
5222
5223 /* make sure bootstrap program is no larger than BSM's SRAM size */
5224 if (len > IWL_MAX_BSM_SIZE)
5225 return -EINVAL;
5226
5227 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005228 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005229 * NOTE: iwl3945_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005230 * after the "initialize" uCode has run, to point to
5231 * runtime/protocol instructions and backup data cache. */
5232 pinst = priv->ucode_init.p_addr;
5233 pdata = priv->ucode_init_data.p_addr;
5234 inst_len = priv->ucode_init.len;
5235 data_len = priv->ucode_init_data.len;
5236
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005237 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005238 if (rc)
5239 return rc;
5240
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005241 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5242 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5243 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5244 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005245
5246 /* Fill BSM memory with bootstrap instructions */
5247 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5248 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5249 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005250 _iwl3945_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005251 le32_to_cpu(*image));
5252
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005253 rc = iwl3945_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005254 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005255 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005256 return rc;
5257 }
5258
5259 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005260 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5261 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005262 RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005263 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005264
5265 /* Load bootstrap code into instruction SRAM now,
5266 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005267 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005268 BSM_WR_CTRL_REG_BIT_START);
5269
5270 /* Wait for load of bootstrap uCode to finish */
5271 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005272 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005273 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5274 break;
5275 udelay(10);
5276 }
5277 if (i < 100)
5278 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5279 else {
5280 IWL_ERROR("BSM write did not complete!\n");
5281 return -EIO;
5282 }
5283
5284 /* Enable future boot loads whenever power management unit triggers it
5285 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005286 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005287 BSM_WR_CTRL_REG_BIT_START_EN);
5288
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005289 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005290
5291 return 0;
5292}
5293
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005294static void iwl3945_nic_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005295{
5296 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005297 iwl3945_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005298}
5299
5300/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005301 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005302 *
5303 * Copy into buffers for card to fetch via bus-mastering
5304 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005305static int iwl3945_read_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005306{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005307 struct iwl3945_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005308 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07005309 const struct firmware *ucode_raw;
5310 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005311 const char *name_pre = priv->cfg->fw_name_pre;
5312 const unsigned int api_max = priv->cfg->ucode_api_max;
5313 const unsigned int api_min = priv->cfg->ucode_api_min;
5314 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07005315 u8 *src;
5316 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005317 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07005318
5319 /* Ask kernel firmware_class module to get the boot firmware off disk.
5320 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005321 for (index = api_max; index >= api_min; index--) {
5322 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
5323 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
5324 if (ret < 0) {
5325 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5326 buf, ret);
5327 if (ret == -ENOENT)
5328 continue;
5329 else
5330 goto error;
5331 } else {
5332 if (index < api_max)
5333 IWL_ERROR("Loaded firmware %s, which is deprecated. Please use API v%u instead.\n",
5334 buf, api_max);
5335 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5336 buf, ucode_raw->size);
5337 break;
5338 }
Zhu Yib481de92007-09-25 17:54:57 -07005339 }
5340
Reinette Chatrea0987a82008-12-02 12:14:06 -08005341 if (ret < 0)
5342 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07005343
5344 /* Make sure that we got at least our header! */
5345 if (ucode_raw->size < sizeof(*ucode)) {
5346 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005347 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005348 goto err_release;
5349 }
5350
5351 /* Data from ucode file: header followed by uCode images */
5352 ucode = (void *)ucode_raw->data;
5353
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005354 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08005355 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07005356 inst_size = le32_to_cpu(ucode->inst_size);
5357 data_size = le32_to_cpu(ucode->data_size);
5358 init_size = le32_to_cpu(ucode->init_size);
5359 init_data_size = le32_to_cpu(ucode->init_data_size);
5360 boot_size = le32_to_cpu(ucode->boot_size);
5361
Reinette Chatrea0987a82008-12-02 12:14:06 -08005362 /* api_ver should match the api version forming part of the
5363 * firmware filename ... but we don't check for that and only rely
5364 * on the API version read from firware header from here on forward */
5365
5366 if (api_ver < api_min || api_ver > api_max) {
5367 IWL_ERROR("Driver unable to support your firmware API. "
5368 "Driver supports v%u, firmware is v%u.\n",
5369 api_max, api_ver);
5370 priv->ucode_ver = 0;
5371 ret = -EINVAL;
5372 goto err_release;
5373 }
5374 if (api_ver != api_max)
5375 IWL_ERROR("Firmware has old API version. Expected %u, "
5376 "got %u. New firmware can be obtained "
5377 "from http://www.intellinuxwireless.org.\n",
5378 api_max, api_ver);
5379
5380 printk(KERN_INFO DRV_NAME " loaded firmware version %u.%u.%u.%u\n",
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005381 IWL_UCODE_MAJOR(priv->ucode_ver),
5382 IWL_UCODE_MINOR(priv->ucode_ver),
5383 IWL_UCODE_API(priv->ucode_ver),
5384 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08005385 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
5386 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08005387 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5388 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5389 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5390 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5391 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005392
Reinette Chatrea0987a82008-12-02 12:14:06 -08005393
Zhu Yib481de92007-09-25 17:54:57 -07005394 /* Verify size of file vs. image size info in file's header */
5395 if (ucode_raw->size < sizeof(*ucode) +
5396 inst_size + data_size + init_size +
5397 init_data_size + boot_size) {
5398
5399 IWL_DEBUG_INFO("uCode file size %d too small\n",
5400 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005401 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005402 goto err_release;
5403 }
5404
5405 /* Verify that uCode images will fit in card's SRAM */
5406 if (inst_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005407 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5408 inst_size);
5409 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005410 goto err_release;
5411 }
5412
5413 if (data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005414 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5415 data_size);
5416 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005417 goto err_release;
5418 }
5419 if (init_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005420 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5421 init_size);
5422 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005423 goto err_release;
5424 }
5425 if (init_data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005426 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5427 init_data_size);
5428 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005429 goto err_release;
5430 }
5431 if (boot_size > IWL_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005432 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5433 boot_size);
5434 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005435 goto err_release;
5436 }
5437
5438 /* Allocate ucode buffers for card's bus-master loading ... */
5439
5440 /* Runtime instructions and 2 copies of data:
5441 * 1) unmodified from disk
5442 * 2) backup cache for save/restore during power-downs */
5443 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005444 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005445
5446 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005447 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005448
5449 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005450 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005451
5452 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005453 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005454 goto err_pci_alloc;
5455
Tomas Winkler90e759d2007-11-29 11:09:41 +08005456 /* Initialization instructions and data */
5457 if (init_size && init_data_size) {
5458 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005459 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005460
5461 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005462 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005463
5464 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5465 goto err_pci_alloc;
5466 }
5467
5468 /* Bootstrap (instructions only, no data) */
5469 if (boot_size) {
5470 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005471 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005472
5473 if (!priv->ucode_boot.v_addr)
5474 goto err_pci_alloc;
5475 }
5476
Zhu Yib481de92007-09-25 17:54:57 -07005477 /* Copy images into buffers for card's bus-master reads ... */
5478
5479 /* Runtime instructions (first block of data in file) */
5480 src = &ucode->data[0];
5481 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005482 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005483 memcpy(priv->ucode_code.v_addr, src, len);
5484 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5485 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5486
5487 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005488 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005489 src = &ucode->data[inst_size];
5490 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005491 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005492 memcpy(priv->ucode_data.v_addr, src, len);
5493 memcpy(priv->ucode_data_backup.v_addr, src, len);
5494
5495 /* Initialization instructions (3rd block) */
5496 if (init_size) {
5497 src = &ucode->data[inst_size + data_size];
5498 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005499 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5500 len);
Zhu Yib481de92007-09-25 17:54:57 -07005501 memcpy(priv->ucode_init.v_addr, src, len);
5502 }
5503
5504 /* Initialization data (4th block) */
5505 if (init_data_size) {
5506 src = &ucode->data[inst_size + data_size + init_size];
5507 len = priv->ucode_init_data.len;
5508 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5509 (int)len);
5510 memcpy(priv->ucode_init_data.v_addr, src, len);
5511 }
5512
5513 /* Bootstrap instructions (5th block) */
5514 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5515 len = priv->ucode_boot.len;
5516 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5517 (int)len);
5518 memcpy(priv->ucode_boot.v_addr, src, len);
5519
5520 /* We have our copies now, allow OS release its copies */
5521 release_firmware(ucode_raw);
5522 return 0;
5523
5524 err_pci_alloc:
5525 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005526 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005527 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005528
5529 err_release:
5530 release_firmware(ucode_raw);
5531
5532 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005533 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005534}
5535
5536
5537/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005538 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005539 *
5540 * Tell initialization uCode where to find runtime uCode.
5541 *
5542 * BSM registers initially contain pointers to initialization uCode.
5543 * We need to replace them to load runtime uCode inst and data,
5544 * and to save runtime data when powering down.
5545 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005546static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005547{
5548 dma_addr_t pinst;
5549 dma_addr_t pdata;
5550 int rc = 0;
5551 unsigned long flags;
5552
5553 /* bits 31:0 for 3945 */
5554 pinst = priv->ucode_code.p_addr;
5555 pdata = priv->ucode_data_backup.p_addr;
5556
5557 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005558 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005559 if (rc) {
5560 spin_unlock_irqrestore(&priv->lock, flags);
5561 return rc;
5562 }
5563
5564 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005565 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5566 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5567 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005568 priv->ucode_data.len);
5569
Tomas Winklera96a27f2008-10-23 23:48:56 -07005570 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005571 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005572 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005573 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5574
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005575 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005576
5577 spin_unlock_irqrestore(&priv->lock, flags);
5578
5579 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5580
5581 return rc;
5582}
5583
5584/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005585 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005586 *
5587 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5588 *
Zhu Yib481de92007-09-25 17:54:57 -07005589 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005590 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005591static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005592{
5593 /* Check alive response for "valid" sign from uCode */
5594 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5595 /* We had an error bringing up the hardware, so take it
5596 * all the way back down so we can try again */
5597 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5598 goto restart;
5599 }
5600
5601 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5602 * This is a paranoid check, because we would not have gotten the
5603 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005604 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005605 /* Runtime instruction load was bad;
5606 * take it all the way back down so we can try again */
5607 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5608 goto restart;
5609 }
5610
5611 /* Send pointers to protocol/runtime uCode image ... init code will
5612 * load and launch runtime uCode, which will send us another "Alive"
5613 * notification. */
5614 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005615 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005616 /* Runtime instruction load won't happen;
5617 * take it all the way back down so we can try again */
5618 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5619 goto restart;
5620 }
5621 return;
5622
5623 restart:
5624 queue_work(priv->workqueue, &priv->restart);
5625}
5626
5627
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005628/* temporary */
5629static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5630 struct sk_buff *skb);
5631
Zhu Yib481de92007-09-25 17:54:57 -07005632/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005633 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005634 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005635 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005636 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005637static void iwl3945_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005638{
5639 int rc = 0;
5640 int thermal_spin = 0;
5641 u32 rfkill;
5642
5643 IWL_DEBUG_INFO("Runtime Alive received.\n");
5644
5645 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5646 /* We had an error bringing up the hardware, so take it
5647 * all the way back down so we can try again */
5648 IWL_DEBUG_INFO("Alive failed.\n");
5649 goto restart;
5650 }
5651
5652 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5653 * This is a paranoid check, because we would not have gotten the
5654 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005655 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005656 /* Runtime instruction load was bad;
5657 * take it all the way back down so we can try again */
5658 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5659 goto restart;
5660 }
5661
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005662 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005664 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005665 if (rc) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005666 IWL_WARNING("Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005667 return;
5668 }
5669
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005670 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005671 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005672 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005673
5674 if (rfkill & 0x1) {
5675 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005676 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005677 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005678 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005679 thermal_spin++;
5680 udelay(10);
5681 }
5682
5683 if (thermal_spin)
5684 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5685 thermal_spin * 10);
5686 } else
5687 set_bit(STATUS_RF_KILL_HW, &priv->status);
5688
Ben Cahill9fbab512007-11-29 11:09:47 +08005689 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005690 set_bit(STATUS_ALIVE, &priv->status);
5691
5692 /* Clear out the uCode error bit if it is set */
5693 clear_bit(STATUS_FW_ERROR, &priv->status);
5694
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005695 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005696 return;
5697
Johannes Berg36d68252008-05-15 12:55:26 +02005698 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005699
5700 priv->active_rate = priv->rates_mask;
5701 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5702
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005703 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005704
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005705 if (iwl3945_is_associated(priv)) {
5706 struct iwl3945_rxon_cmd *active_rxon =
5707 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005708
5709 memcpy(&priv->staging_rxon, &priv->active_rxon,
5710 sizeof(priv->staging_rxon));
5711 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5712 } else {
5713 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005714 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005715 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5716 }
5717
Ben Cahill9fbab512007-11-29 11:09:47 +08005718 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005719 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005720
5721 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005722 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005723
Zhu Yib481de92007-09-25 17:54:57 -07005724 iwl3945_reg_txpower_periodic(priv);
5725
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005726 iwl3945_led_register(priv);
5727
Zhu Yib481de92007-09-25 17:54:57 -07005728 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005729 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005730 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005731
5732 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005733 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005734
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005735 /* reassociate for ADHOC mode */
5736 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5737 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5738 priv->vif);
5739 if (beacon)
5740 iwl3945_mac_beacon_update(priv->hw, beacon);
5741 }
5742
Zhu Yib481de92007-09-25 17:54:57 -07005743 return;
5744
5745 restart:
5746 queue_work(priv->workqueue, &priv->restart);
5747}
5748
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005749static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005750
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005751static void __iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005752{
5753 unsigned long flags;
5754 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5755 struct ieee80211_conf *conf = NULL;
5756
5757 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5758
5759 conf = ieee80211_get_hw_conf(priv->hw);
5760
5761 if (!exit_pending)
5762 set_bit(STATUS_EXIT_PENDING, &priv->status);
5763
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005764 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005765 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005766
5767 /* Unblock any waiting calls */
5768 wake_up_interruptible_all(&priv->wait_command_queue);
5769
Zhu Yib481de92007-09-25 17:54:57 -07005770 /* Wipe out the EXIT_PENDING status bit if we are not actually
5771 * exiting the module */
5772 if (!exit_pending)
5773 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5774
5775 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005776 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005777
5778 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005779 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005780 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005781 spin_unlock_irqrestore(&priv->lock, flags);
5782 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005783
5784 if (priv->mac80211_registered)
5785 ieee80211_stop_queues(priv->hw);
5786
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005787 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005788 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005789 if (!iwl3945_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005790 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5791 STATUS_RF_KILL_HW |
5792 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5793 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005794 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5795 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005796 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005797 STATUS_IN_SUSPEND |
5798 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5799 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005800 goto exit;
5801 }
5802
5803 /* ...otherwise clear out all the status bits but the RF Kill and
5804 * SUSPEND bits and continue taking the NIC down. */
5805 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5806 STATUS_RF_KILL_HW |
5807 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5808 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005809 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5810 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005811 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5812 STATUS_IN_SUSPEND |
5813 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005814 STATUS_FW_ERROR |
5815 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5816 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005817
5818 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005819 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005820 spin_unlock_irqrestore(&priv->lock, flags);
5821
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005822 iwl3945_hw_txq_ctx_stop(priv);
5823 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005824
5825 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005826 if (!iwl3945_grab_nic_access(priv)) {
5827 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005828 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005829 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005830 }
5831 spin_unlock_irqrestore(&priv->lock, flags);
5832
5833 udelay(5);
5834
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005835 iwl3945_hw_nic_stop_master(priv);
5836 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
5837 iwl3945_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005838
5839 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005840 memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005841
5842 if (priv->ibss_beacon)
5843 dev_kfree_skb(priv->ibss_beacon);
5844 priv->ibss_beacon = NULL;
5845
5846 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005847 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005848}
5849
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005850static void iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005851{
5852 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005853 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005854 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005855
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005856 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005857}
5858
5859#define MAX_HW_RESTARTS 5
5860
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005861static int __iwl3945_up(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005862{
5863 int rc, i;
5864
5865 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5866 IWL_WARNING("Exit pending; will not bring the NIC up\n");
5867 return -EIO;
5868 }
5869
5870 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5871 IWL_WARNING("Radio disabled by SW RF kill (module "
5872 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005873 return -ENODEV;
5874 }
5875
Reinette Chatree903fbd2008-01-30 22:05:15 -08005876 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005877 IWL_ERROR("ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005878 return -EIO;
5879 }
5880
Zhu Yie655b9f2008-01-24 02:19:38 -08005881 /* If platform's RF_KILL switch is NOT set to KILL */
5882 if (iwl3945_read32(priv, CSR_GP_CNTRL) &
5883 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5884 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5885 else {
5886 set_bit(STATUS_RF_KILL_HW, &priv->status);
5887 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5888 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
5889 return -ENODEV;
5890 }
Zhu Yib481de92007-09-25 17:54:57 -07005891 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005892
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005893 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005894
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005895 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005896 if (rc) {
5897 IWL_ERROR("Unable to int nic\n");
5898 return rc;
5899 }
5900
5901 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005902 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5903 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005904 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5905
5906 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005907 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
5908 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005909
5910 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005911 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5912 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005913
5914 /* Copy original ucode data image from disk into backup cache.
5915 * This will be used to initialize the on-board processor's
5916 * data SRAM for a clean start when the runtime program first loads. */
5917 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08005918 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005919
Zhu Yie655b9f2008-01-24 02:19:38 -08005920 /* We return success when we resume from suspend and rf_kill is on. */
5921 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5922 return 0;
5923
Zhu Yib481de92007-09-25 17:54:57 -07005924 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5925
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005926 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005927
5928 /* load bootstrap state machine,
5929 * load bootstrap program into processor's memory,
5930 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005931 rc = iwl3945_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005932
5933 if (rc) {
5934 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
5935 continue;
5936 }
5937
5938 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005939 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005940
Zhu Yib481de92007-09-25 17:54:57 -07005941 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5942
5943 return 0;
5944 }
5945
5946 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005947 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005948 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005949
5950 /* tried to restart and config the device for as long as our
5951 * patience could withstand */
5952 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
5953 return -EIO;
5954}
5955
5956
5957/*****************************************************************************
5958 *
5959 * Workqueue callbacks
5960 *
5961 *****************************************************************************/
5962
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005963static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005964{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005965 struct iwl3945_priv *priv =
5966 container_of(data, struct iwl3945_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005967
5968 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5969 return;
5970
5971 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005972 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005973 mutex_unlock(&priv->mutex);
5974}
5975
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005976static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005977{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005978 struct iwl3945_priv *priv =
5979 container_of(data, struct iwl3945_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005980
5981 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5982 return;
5983
5984 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005985 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005986 mutex_unlock(&priv->mutex);
5987}
5988
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005989static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005990{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005991 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005992
5993 wake_up_interruptible(&priv->wait_command_queue);
5994
5995 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5996 return;
5997
5998 mutex_lock(&priv->mutex);
5999
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006000 if (!iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006001 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
6002 "HW and/or SW RF Kill no longer active, restarting "
6003 "device\n");
6004 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
6005 queue_work(priv->workqueue, &priv->restart);
6006 } else {
6007
6008 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
6009 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
6010 "disabled by SW switch\n");
6011 else
6012 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
6013 "Kill switch must be turned off for "
6014 "wireless networking to work.\n");
6015 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08006016
Zhu Yib481de92007-09-25 17:54:57 -07006017 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006018 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006019}
6020
6021#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6022
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006023static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006024{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006025 struct iwl3945_priv *priv =
6026 container_of(data, struct iwl3945_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07006027
6028 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6029 return;
6030
6031 mutex_lock(&priv->mutex);
6032 if (test_bit(STATUS_SCANNING, &priv->status) ||
6033 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6034 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6035 "Scan completion watchdog resetting adapter (%dms)\n",
6036 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006037
Zhu Yib481de92007-09-25 17:54:57 -07006038 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006039 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006040 }
6041 mutex_unlock(&priv->mutex);
6042}
6043
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006044static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006045{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006046 struct iwl3945_priv *priv =
6047 container_of(data, struct iwl3945_priv, request_scan);
6048 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006049 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006050 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006051 .meta.flags = CMD_SIZE_HUGE,
6052 };
6053 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006054 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006055 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006056 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01006057 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04006058 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07006059
6060 conf = ieee80211_get_hw_conf(priv->hw);
6061
6062 mutex_lock(&priv->mutex);
6063
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006064 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006065 IWL_WARNING("request scan called when driver not ready.\n");
6066 goto done;
6067 }
6068
Tomas Winklera96a27f2008-10-23 23:48:56 -07006069 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07006070 * was given the chance to run... */
6071 if (!test_bit(STATUS_SCANNING, &priv->status))
6072 goto done;
6073
6074 /* This should never be called or scheduled if there is currently
6075 * a scan active in the hardware. */
6076 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6077 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6078 "Ignoring second request.\n");
6079 rc = -EIO;
6080 goto done;
6081 }
6082
6083 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6084 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6085 goto done;
6086 }
6087
6088 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6089 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6090 goto done;
6091 }
6092
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006093 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006094 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6095 goto done;
6096 }
6097
6098 if (!test_bit(STATUS_READY, &priv->status)) {
6099 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6100 goto done;
6101 }
6102
6103 if (!priv->scan_bands) {
6104 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6105 goto done;
6106 }
6107
6108 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006109 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006110 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6111 if (!priv->scan) {
6112 rc = -ENOMEM;
6113 goto done;
6114 }
6115 }
6116 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006117 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006118
6119 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6120 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6121
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006122 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006123 u16 interval = 0;
6124 u32 extra;
6125 u32 suspend_time = 100;
6126 u32 scan_suspend_time = 100;
6127 unsigned long flags;
6128
6129 IWL_DEBUG_INFO("Scanning while associated...\n");
6130
6131 spin_lock_irqsave(&priv->lock, flags);
6132 interval = priv->beacon_int;
6133 spin_unlock_irqrestore(&priv->lock, flags);
6134
6135 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006136 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006137 if (!interval)
6138 interval = suspend_time;
6139 /*
6140 * suspend time format:
6141 * 0-19: beacon interval in usec (time before exec.)
6142 * 20-23: 0
6143 * 24-31: number of beacons (suspend between channels)
6144 */
6145
6146 extra = (suspend_time / interval) << 24;
6147 scan_suspend_time = 0xFF0FFFFF &
6148 (extra | ((suspend_time % interval) * 1024));
6149
6150 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6151 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6152 scan_suspend_time, interval);
6153 }
6154
6155 /* We should add the ability for user to lock to PASSIVE ONLY */
6156 if (priv->one_direct_scan) {
6157 IWL_DEBUG_SCAN
6158 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006159 print_ssid(ssid, priv->direct_ssid,
6160 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006161 scan->direct_scan[0].id = WLAN_EID_SSID;
6162 scan->direct_scan[0].len = priv->direct_ssid_len;
6163 memcpy(scan->direct_scan[0].ssid,
6164 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006165 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006166 } else
Bill Moss786b4552008-04-17 16:03:40 -07006167 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006168
6169 /* We don't build a direct scan probe request; the uCode will do
6170 * that based on the direct_mask added to each channel entry */
6171 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006172 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01006173 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07006174 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6175 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6176 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6177
6178 /* flags + rate selection */
6179
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006180 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006181 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6182 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6183 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006184 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006185 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006186 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6187 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006188 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006189 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006190 IWL_WARNING("Invalid scan band count\n");
6191 goto done;
6192 }
6193
6194 /* select Rx antennas */
6195 scan->flags |= iwl3945_get_antenna_flags(priv);
6196
Johannes Berg05c914f2008-09-11 00:01:58 +02006197 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07006198 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6199
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006200 scan->channel_count =
6201 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
6202 n_probes,
6203 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07006204
Reinette Chatre14b54332008-11-04 12:21:35 -08006205 if (scan->channel_count == 0) {
6206 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
6207 goto done;
6208 }
6209
Zhu Yib481de92007-09-25 17:54:57 -07006210 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006211 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006212 cmd.data = scan;
6213 scan->len = cpu_to_le16(cmd.len);
6214
6215 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006216 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07006217 if (rc)
6218 goto done;
6219
6220 queue_delayed_work(priv->workqueue, &priv->scan_check,
6221 IWL_SCAN_CHECK_WATCHDOG);
6222
6223 mutex_unlock(&priv->mutex);
6224 return;
6225
6226 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08006227 /* can not perform scan make sure we clear scanning
6228 * bits from status so next scan request can be performed.
6229 * if we dont clear scanning status bit here all next scan
6230 * will fail
6231 */
6232 clear_bit(STATUS_SCAN_HW, &priv->status);
6233 clear_bit(STATUS_SCANNING, &priv->status);
6234
Ian Schram01ebd062007-10-25 17:15:22 +08006235 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006236 queue_work(priv->workqueue, &priv->scan_completed);
6237 mutex_unlock(&priv->mutex);
6238}
6239
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006240static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006241{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006242 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006243
6244 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6245 return;
6246
6247 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006248 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006249 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006250 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006251}
6252
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006253static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006254{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006255 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006256
6257 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6258 return;
6259
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006260 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006261 queue_work(priv->workqueue, &priv->up);
6262}
6263
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006264static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006265{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006266 struct iwl3945_priv *priv =
6267 container_of(data, struct iwl3945_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006268
6269 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6270 return;
6271
6272 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006273 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006274 mutex_unlock(&priv->mutex);
6275}
6276
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006277#define IWL_DELAY_NEXT_SCAN (HZ*2)
6278
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006279static void iwl3945_post_associate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006280{
Zhu Yib481de92007-09-25 17:54:57 -07006281 int rc = 0;
6282 struct ieee80211_conf *conf = NULL;
6283
Johannes Berg05c914f2008-09-11 00:01:58 +02006284 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006285 IWL_ERROR("%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07006286 return;
6287 }
6288
6289
Johannes Berge1749612008-10-27 15:59:26 -07006290 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
6291 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07006292
6293 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6294 return;
6295
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006296 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006297 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006298
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006299 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006300
Zhu Yib481de92007-09-25 17:54:57 -07006301 conf = ieee80211_get_hw_conf(priv->hw);
6302
6303 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006304 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006305
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006306 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6307 iwl3945_setup_rxon_timing(priv);
6308 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006309 sizeof(priv->rxon_timing), &priv->rxon_timing);
6310 if (rc)
6311 IWL_WARNING("REPLY_RXON_TIMING failed - "
6312 "Attempting to continue.\n");
6313
6314 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6315
6316 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6317
6318 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6319 priv->assoc_id, priv->beacon_int);
6320
6321 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6322 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6323 else
6324 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6325
6326 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6327 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6328 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6329 else
6330 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6331
Johannes Berg05c914f2008-09-11 00:01:58 +02006332 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006333 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6334
6335 }
6336
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006337 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006338
6339 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02006340 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006341 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006342 break;
6343
Johannes Berg05c914f2008-09-11 00:01:58 +02006344 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07006345
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08006346 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006347 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006348 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006349 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006350 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6351 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006352 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6353 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006354
6355 break;
6356
6357 default:
6358 IWL_ERROR("%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006359 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006360 break;
6361 }
6362
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006363 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006364
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006365 /* we have just associated, don't start scan too early */
6366 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006367}
6368
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006369static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006370{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006371 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006372
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006373 if (!iwl3945_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006374 return;
6375
6376 mutex_lock(&priv->mutex);
6377
6378 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006379 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006380
6381 mutex_unlock(&priv->mutex);
6382}
6383
Johannes Berge8975582008-10-09 12:18:51 +02006384static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006385
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006386static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006387{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006388 struct iwl3945_priv *priv =
6389 container_of(work, struct iwl3945_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006390
6391 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6392
6393 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6394 return;
6395
Zhu Yia0646472007-12-20 14:10:01 +08006396 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02006397 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006398
Zhu Yib481de92007-09-25 17:54:57 -07006399 ieee80211_scan_completed(priv->hw);
6400
6401 /* Since setting the TXPOWER may have been deferred while
6402 * performing the scan, fire one off */
6403 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006404 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006405 mutex_unlock(&priv->mutex);
6406}
6407
6408/*****************************************************************************
6409 *
6410 * mac80211 entry point functions
6411 *
6412 *****************************************************************************/
6413
Zhu Yi5a66926a2008-01-14 17:46:18 -08006414#define UCODE_READY_TIMEOUT (2 * HZ)
6415
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006416static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006417{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006418 struct iwl3945_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006419 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006420
6421 IWL_DEBUG_MAC80211("enter\n");
6422
Zhu Yi5a66926a2008-01-14 17:46:18 -08006423 if (pci_enable_device(priv->pci_dev)) {
6424 IWL_ERROR("Fail to pci_enable_device\n");
6425 return -ENODEV;
6426 }
6427 pci_restore_state(priv->pci_dev);
6428 pci_enable_msi(priv->pci_dev);
6429
6430 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6431 DRV_NAME, priv);
6432 if (ret) {
6433 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6434 goto out_disable_msi;
6435 }
6436
Zhu Yib481de92007-09-25 17:54:57 -07006437 /* we should be verifying the device is ready to be opened */
6438 mutex_lock(&priv->mutex);
6439
Zhu Yi5a66926a2008-01-14 17:46:18 -08006440 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6441 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6442 * ucode filename and max sizes are card-specific. */
6443
6444 if (!priv->ucode_code.len) {
6445 ret = iwl3945_read_ucode(priv);
6446 if (ret) {
6447 IWL_ERROR("Could not read microcode: %d\n", ret);
6448 mutex_unlock(&priv->mutex);
6449 goto out_release_irq;
6450 }
6451 }
6452
Zhu Yie655b9f2008-01-24 02:19:38 -08006453 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006454
Zhu Yib481de92007-09-25 17:54:57 -07006455 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006456
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006457 iwl3945_rfkill_set_hw_state(priv);
6458
Zhu Yie655b9f2008-01-24 02:19:38 -08006459 if (ret)
6460 goto out_release_irq;
6461
6462 IWL_DEBUG_INFO("Start UP work.\n");
6463
6464 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6465 return 0;
6466
Zhu Yi5a66926a2008-01-14 17:46:18 -08006467 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6468 * mac80211 will not be run successfully. */
6469 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6470 test_bit(STATUS_READY, &priv->status),
6471 UCODE_READY_TIMEOUT);
6472 if (!ret) {
6473 if (!test_bit(STATUS_READY, &priv->status)) {
6474 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6475 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6476 ret = -ETIMEDOUT;
6477 goto out_release_irq;
6478 }
6479 }
6480
Zhu Yie655b9f2008-01-24 02:19:38 -08006481 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006482 IWL_DEBUG_MAC80211("leave\n");
6483 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006484
6485out_release_irq:
6486 free_irq(priv->pci_dev->irq, priv);
6487out_disable_msi:
6488 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006489 pci_disable_device(priv->pci_dev);
6490 priv->is_open = 0;
6491 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08006492 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006493}
6494
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006495static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006496{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006497 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006498
6499 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006500
Zhu Yie655b9f2008-01-24 02:19:38 -08006501 if (!priv->is_open) {
6502 IWL_DEBUG_MAC80211("leave - skip\n");
6503 return;
6504 }
6505
Zhu Yib481de92007-09-25 17:54:57 -07006506 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006507
6508 if (iwl3945_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006509 /* stop mac, cancel any scan request and clear
6510 * RXON_FILTER_ASSOC_MSK BIT
6511 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08006512 mutex_lock(&priv->mutex);
6513 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006514 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006515 }
6516
Zhu Yi5a66926a2008-01-14 17:46:18 -08006517 iwl3945_down(priv);
6518
6519 flush_workqueue(priv->workqueue);
6520 free_irq(priv->pci_dev->irq, priv);
6521 pci_disable_msi(priv->pci_dev);
6522 pci_save_state(priv->pci_dev);
6523 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006524
Zhu Yib481de92007-09-25 17:54:57 -07006525 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006526}
6527
Johannes Berge039fa42008-05-15 12:55:29 +02006528static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006529{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006530 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006531
6532 IWL_DEBUG_MAC80211("enter\n");
6533
Zhu Yib481de92007-09-25 17:54:57 -07006534 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006535 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006536
Johannes Berge039fa42008-05-15 12:55:29 +02006537 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006538 dev_kfree_skb_any(skb);
6539
6540 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006541 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006542}
6543
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006544static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006545 struct ieee80211_if_init_conf *conf)
6546{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006547 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006548 unsigned long flags;
6549
Johannes Berg32bfd352007-12-19 01:31:26 +01006550 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006551
Johannes Berg32bfd352007-12-19 01:31:26 +01006552 if (priv->vif) {
6553 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006554 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006555 }
6556
6557 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006558 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006559 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006560
6561 spin_unlock_irqrestore(&priv->lock, flags);
6562
6563 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006564
6565 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006566 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006567 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6568 }
6569
Zhu Yi5a66926a2008-01-14 17:46:18 -08006570 if (iwl3945_is_ready(priv))
6571 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006572
Zhu Yib481de92007-09-25 17:54:57 -07006573 mutex_unlock(&priv->mutex);
6574
Zhu Yi5a66926a2008-01-14 17:46:18 -08006575 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006576 return 0;
6577}
6578
6579/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006580 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006581 *
6582 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6583 * be set inappropriately and the driver currently sets the hardware up to
6584 * use it whenever needed.
6585 */
Johannes Berge8975582008-10-09 12:18:51 +02006586static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006587{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006588 struct iwl3945_priv *priv = hw->priv;
6589 const struct iwl3945_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006590 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006591 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006592 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006593
6594 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006595 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006596
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006597 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006598 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006599 ret = -EIO;
6600 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006601 }
6602
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006603 if (unlikely(!iwl3945_param_disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006604 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006605 IWL_DEBUG_MAC80211("leave - scanning\n");
6606 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006607 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006608 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006609 }
6610
6611 spin_lock_irqsave(&priv->lock, flags);
6612
Johannes Berg8318d782008-01-24 19:38:38 +01006613 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6614 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006615 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006616 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006617 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006618 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6619 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006620 ret = -EINVAL;
6621 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006622 }
6623
Johannes Berg8318d782008-01-24 19:38:38 +01006624 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006625
Johannes Berg8318d782008-01-24 19:38:38 +01006626 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006627
6628 /* The list of supported rates and rate mask can be different
6629 * for each phymode; since the phymode may have changed, reset
6630 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006631 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006632
6633 spin_unlock_irqrestore(&priv->lock, flags);
6634
6635#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6636 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006637 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006638 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006639 }
6640#endif
6641
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006642 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006643
6644 if (!conf->radio_enabled) {
6645 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006646 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006647 }
6648
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006649 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006650 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006651 ret = -EIO;
6652 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006653 }
6654
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006655 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006656
6657 if (memcmp(&priv->active_rxon,
6658 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006659 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006660 else
6661 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6662
6663 IWL_DEBUG_MAC80211("leave\n");
6664
Zhu Yi76bb77e2007-11-22 10:53:22 +08006665out:
Zhu Yia0646472007-12-20 14:10:01 +08006666 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006667 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006668 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006669}
6670
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006671static void iwl3945_config_ap(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006672{
6673 int rc = 0;
6674
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006675 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006676 return;
6677
6678 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006679 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006680
6681 /* RXON - unassoc (to set timing command) */
6682 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006683 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006684
6685 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006686 memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd));
6687 iwl3945_setup_rxon_timing(priv);
6688 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006689 sizeof(priv->rxon_timing), &priv->rxon_timing);
6690 if (rc)
6691 IWL_WARNING("REPLY_RXON_TIMING failed - "
6692 "Attempting to continue.\n");
6693
6694 /* FIXME: what should be the assoc_id for AP? */
6695 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6696 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6697 priv->staging_rxon.flags |=
6698 RXON_FLG_SHORT_PREAMBLE_MSK;
6699 else
6700 priv->staging_rxon.flags &=
6701 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6702
6703 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6704 if (priv->assoc_capability &
6705 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6706 priv->staging_rxon.flags |=
6707 RXON_FLG_SHORT_SLOT_MSK;
6708 else
6709 priv->staging_rxon.flags &=
6710 ~RXON_FLG_SHORT_SLOT_MSK;
6711
Johannes Berg05c914f2008-09-11 00:01:58 +02006712 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006713 priv->staging_rxon.flags &=
6714 ~RXON_FLG_SHORT_SLOT_MSK;
6715 }
6716 /* restore RXON assoc */
6717 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006718 iwl3945_commit_rxon(priv);
6719 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006720 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006721 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006722
6723 /* FIXME - we need to add code here to detect a totally new
6724 * configuration, reset the AP, unassoc, rxon timing, assoc,
6725 * clear sta table, add BCAST sta... */
6726}
6727
Johannes Berg32bfd352007-12-19 01:31:26 +01006728static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6729 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07006730 struct ieee80211_if_conf *conf)
6731{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006732 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006733 int rc;
6734
6735 if (conf == NULL)
6736 return -EIO;
6737
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006738 if (priv->vif != vif) {
6739 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006740 return 0;
6741 }
6742
Johannes Berg9d139c82008-07-09 14:40:37 +02006743 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006744 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006745 conf->changed & IEEE80211_IFCC_BEACON) {
6746 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6747 if (!beacon)
6748 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006749 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006750 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006751 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006752 if (rc)
6753 return rc;
6754 }
6755
Zhu Yi5a66926a2008-01-14 17:46:18 -08006756 if (!iwl3945_is_alive(priv))
6757 return -EAGAIN;
6758
Zhu Yib481de92007-09-25 17:54:57 -07006759 mutex_lock(&priv->mutex);
6760
Zhu Yib481de92007-09-25 17:54:57 -07006761 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006762 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006763
Johannes Berg4150c572007-09-17 01:29:23 -04006764/*
6765 * very dubious code was here; the probe filtering flag is never set:
6766 *
Zhu Yib481de92007-09-25 17:54:57 -07006767 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6768 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006769 */
Zhu Yib481de92007-09-25 17:54:57 -07006770
Johannes Berg05c914f2008-09-11 00:01:58 +02006771 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006772 if (!conf->bssid) {
6773 conf->bssid = priv->mac_addr;
6774 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006775 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6776 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006777 }
6778 if (priv->ibss_beacon)
6779 dev_kfree_skb(priv->ibss_beacon);
6780
Johannes Berg9d139c82008-07-09 14:40:37 +02006781 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006782 }
6783
Mohamed Abbasfde35712007-11-29 11:10:15 +08006784 if (iwl3945_is_rfkill(priv))
6785 goto done;
6786
Zhu Yib481de92007-09-25 17:54:57 -07006787 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6788 !is_multicast_ether_addr(conf->bssid)) {
6789 /* If there is currently a HW scan going on in the background
6790 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006791 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07006792 IWL_WARNING("Aborted scan still in progress "
6793 "after 100ms\n");
6794 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6795 mutex_unlock(&priv->mutex);
6796 return -EAGAIN;
6797 }
6798 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6799
6800 /* TODO: Audit driver for usage of these members and see
6801 * if mac80211 deprecates them (priv->bssid looks like it
6802 * shouldn't be there, but I haven't scanned the IBSS code
6803 * to verify) - jpk */
6804 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6805
Johannes Berg05c914f2008-09-11 00:01:58 +02006806 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006807 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006808 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006809 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006810 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006811 iwl3945_add_station(priv,
Zhu Yi556f8db2007-09-27 11:27:33 +08006812 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006813 }
6814
6815 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006816 iwl3945_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07006817 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006818 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006819 }
6820
Mohamed Abbasfde35712007-11-29 11:10:15 +08006821 done:
Zhu Yib481de92007-09-25 17:54:57 -07006822 IWL_DEBUG_MAC80211("leave\n");
6823 mutex_unlock(&priv->mutex);
6824
6825 return 0;
6826}
6827
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006828static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006829 unsigned int changed_flags,
6830 unsigned int *total_flags,
6831 int mc_count, struct dev_addr_list *mc_list)
6832{
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006833 struct iwl3945_priv *priv = hw->priv;
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006834 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006835
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006836 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6837 changed_flags, *total_flags);
6838
6839 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6840 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6841 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6842 else
6843 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006844 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006845 if (changed_flags & FIF_ALLMULTI) {
6846 if (*total_flags & FIF_ALLMULTI)
6847 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6848 else
6849 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6850 }
6851 if (changed_flags & FIF_CONTROL) {
6852 if (*total_flags & FIF_CONTROL)
6853 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6854 else
6855 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6856 }
6857 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6858 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6859 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6860 else
6861 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6862 }
6863
6864 /* We avoid iwl_commit_rxon here to commit the new filter flags
6865 * since mac80211 will call ieee80211_hw_config immediately.
6866 * (mc_list is not supported at this time). Otherwise, we need to
6867 * queue a background iwl_commit_rxon work.
6868 */
6869
6870 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006871 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006872}
6873
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006874static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006875 struct ieee80211_if_init_conf *conf)
6876{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006877 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006878
6879 IWL_DEBUG_MAC80211("enter\n");
6880
6881 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006882
Mohamed Abbasfde35712007-11-29 11:10:15 +08006883 if (iwl3945_is_ready_rf(priv)) {
6884 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006885 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6886 iwl3945_commit_rxon(priv);
6887 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006888 if (priv->vif == conf->vif) {
6889 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006890 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006891 }
6892 mutex_unlock(&priv->mutex);
6893
6894 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006895}
6896
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006897#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6898
6899static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6900 struct ieee80211_vif *vif,
6901 struct ieee80211_bss_conf *bss_conf,
6902 u32 changes)
6903{
6904 struct iwl3945_priv *priv = hw->priv;
6905
6906 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6907
6908 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6909 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6910 bss_conf->use_short_preamble);
6911 if (bss_conf->use_short_preamble)
6912 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6913 else
6914 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6915 }
6916
6917 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6918 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6919 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
6920 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6921 else
6922 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6923 }
6924
6925 if (changes & BSS_CHANGED_ASSOC) {
6926 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6927 /* This should never happen as this function should
6928 * never be called from interrupt context. */
6929 if (WARN_ON_ONCE(in_interrupt()))
6930 return;
6931 if (bss_conf->assoc) {
6932 priv->assoc_id = bss_conf->aid;
6933 priv->beacon_int = bss_conf->beacon_int;
6934 priv->timestamp0 = bss_conf->timestamp & 0xFFFFFFFF;
6935 priv->timestamp1 = (bss_conf->timestamp >> 32) &
6936 0xFFFFFFFF;
6937 priv->assoc_capability = bss_conf->assoc_capability;
6938 priv->next_scan_jiffies = jiffies +
6939 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6940 mutex_lock(&priv->mutex);
6941 iwl3945_post_associate(priv);
6942 mutex_unlock(&priv->mutex);
6943 } else {
6944 priv->assoc_id = 0;
6945 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6946 }
6947 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6948 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6949 iwl3945_send_rxon_assoc(priv);
6950 }
6951
6952}
6953
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006954static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006955{
6956 int rc = 0;
6957 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006958 struct iwl3945_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006959 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006960
6961 IWL_DEBUG_MAC80211("enter\n");
6962
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006963 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006964 spin_lock_irqsave(&priv->lock, flags);
6965
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006966 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006967 rc = -EIO;
6968 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6969 goto out_unlock;
6970 }
6971
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006972 /* we don't schedule scan within next_scan_jiffies period */
6973 if (priv->next_scan_jiffies &&
6974 time_after(priv->next_scan_jiffies, jiffies)) {
6975 rc = -EAGAIN;
6976 goto out_unlock;
6977 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006978 /* if we just finished scan ask for delay for a broadcast scan */
6979 if ((len == 0) && priv->last_scan_jiffies &&
6980 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6981 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006982 rc = -EAGAIN;
6983 goto out_unlock;
6984 }
6985 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006986 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006987 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006988
6989 priv->one_direct_scan = 1;
6990 priv->direct_ssid_len = (u8)
6991 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6992 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006993 } else
6994 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006995
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006996 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006997
6998 IWL_DEBUG_MAC80211("leave\n");
6999
7000out_unlock:
7001 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007002 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07007003
7004 return rc;
7005}
7006
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007007static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07007008 const u8 *local_addr, const u8 *addr,
7009 struct ieee80211_key_conf *key)
7010{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007011 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007012 int rc = 0;
7013 u8 sta_id;
7014
7015 IWL_DEBUG_MAC80211("enter\n");
7016
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007017 if (!iwl3945_param_hwcrypto) {
Zhu Yib481de92007-09-25 17:54:57 -07007018 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7019 return -EOPNOTSUPP;
7020 }
7021
7022 if (is_zero_ether_addr(addr))
7023 /* only support pairwise keys */
7024 return -EOPNOTSUPP;
7025
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007026 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07007027 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07007028 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
7029 addr);
Zhu Yib481de92007-09-25 17:54:57 -07007030 return -EINVAL;
7031 }
7032
7033 mutex_lock(&priv->mutex);
7034
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007035 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007036
Zhu Yib481de92007-09-25 17:54:57 -07007037 switch (cmd) {
7038 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007039 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007040 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007041 iwl3945_set_rxon_hwcrypto(priv, 1);
7042 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007043 key->hw_key_idx = sta_id;
7044 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7045 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7046 }
7047 break;
7048 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007049 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007050 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007051 iwl3945_set_rxon_hwcrypto(priv, 0);
7052 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007053 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7054 }
7055 break;
7056 default:
7057 rc = -EINVAL;
7058 }
7059
7060 IWL_DEBUG_MAC80211("leave\n");
7061 mutex_unlock(&priv->mutex);
7062
7063 return rc;
7064}
7065
Johannes Berge100bb62008-04-30 18:51:21 +02007066static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07007067 const struct ieee80211_tx_queue_params *params)
7068{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007069 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007070 unsigned long flags;
7071 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007072
7073 IWL_DEBUG_MAC80211("enter\n");
7074
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007075 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007076 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7077 return -EIO;
7078 }
7079
7080 if (queue >= AC_NUM) {
7081 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7082 return 0;
7083 }
7084
Zhu Yib481de92007-09-25 17:54:57 -07007085 q = AC_NUM - 1 - queue;
7086
7087 spin_lock_irqsave(&priv->lock, flags);
7088
7089 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7090 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7091 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7092 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01007093 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007094
7095 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7096 priv->qos_data.qos_active = 1;
7097
7098 spin_unlock_irqrestore(&priv->lock, flags);
7099
7100 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02007101 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007102 iwl3945_activate_qos(priv, 1);
7103 else if (priv->assoc_id && iwl3945_is_associated(priv))
7104 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007105
7106 mutex_unlock(&priv->mutex);
7107
Zhu Yib481de92007-09-25 17:54:57 -07007108 IWL_DEBUG_MAC80211("leave\n");
7109 return 0;
7110}
7111
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007112static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007113 struct ieee80211_tx_queue_stats *stats)
7114{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007115 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007116 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007117 struct iwl3945_tx_queue *txq;
7118 struct iwl3945_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007119 unsigned long flags;
7120
7121 IWL_DEBUG_MAC80211("enter\n");
7122
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007123 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007124 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7125 return -EIO;
7126 }
7127
7128 spin_lock_irqsave(&priv->lock, flags);
7129
7130 for (i = 0; i < AC_NUM; i++) {
7131 txq = &priv->txq[i];
7132 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007133 avail = iwl3945_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007134
Johannes Berg57ffc582008-04-29 17:18:59 +02007135 stats[i].len = q->n_window - avail;
7136 stats[i].limit = q->n_window - q->high_mark;
7137 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07007138
7139 }
7140 spin_unlock_irqrestore(&priv->lock, flags);
7141
7142 IWL_DEBUG_MAC80211("leave\n");
7143
7144 return 0;
7145}
7146
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007147static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007148 struct ieee80211_low_level_stats *stats)
7149{
7150 IWL_DEBUG_MAC80211("enter\n");
7151 IWL_DEBUG_MAC80211("leave\n");
7152
7153 return 0;
7154}
7155
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007156static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007157{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007158 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007159 unsigned long flags;
7160
7161 mutex_lock(&priv->mutex);
7162 IWL_DEBUG_MAC80211("enter\n");
7163
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007164 iwl3945_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08007165
Zhu Yib481de92007-09-25 17:54:57 -07007166 spin_lock_irqsave(&priv->lock, flags);
7167 priv->assoc_id = 0;
7168 priv->assoc_capability = 0;
7169 priv->call_post_assoc_from_beacon = 0;
7170
7171 /* new association get rid of ibss beacon skb */
7172 if (priv->ibss_beacon)
7173 dev_kfree_skb(priv->ibss_beacon);
7174
7175 priv->ibss_beacon = NULL;
7176
7177 priv->beacon_int = priv->hw->conf.beacon_int;
7178 priv->timestamp1 = 0;
7179 priv->timestamp0 = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02007180 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07007181 priv->beacon_int = 0;
7182
7183 spin_unlock_irqrestore(&priv->lock, flags);
7184
Mohamed Abbasfde35712007-11-29 11:10:15 +08007185 if (!iwl3945_is_ready_rf(priv)) {
7186 IWL_DEBUG_MAC80211("leave - not ready\n");
7187 mutex_unlock(&priv->mutex);
7188 return;
7189 }
7190
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007191 /* we are restarting association process
7192 * clear RXON_FILTER_ASSOC_MSK bit
7193 */
Johannes Berg05c914f2008-09-11 00:01:58 +02007194 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007195 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007196 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007197 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007198 }
7199
Zhu Yib481de92007-09-25 17:54:57 -07007200 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02007201 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007202
Zhu Yib481de92007-09-25 17:54:57 -07007203 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7204 mutex_unlock(&priv->mutex);
7205 return;
7206 }
7207
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007208 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007209
7210 mutex_unlock(&priv->mutex);
7211
7212 IWL_DEBUG_MAC80211("leave\n");
7213
7214}
7215
Johannes Berge039fa42008-05-15 12:55:29 +02007216static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07007217{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007218 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007219 unsigned long flags;
7220
Zhu Yib481de92007-09-25 17:54:57 -07007221 IWL_DEBUG_MAC80211("enter\n");
7222
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007223 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007224 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07007225 return -EIO;
7226 }
7227
Johannes Berg05c914f2008-09-11 00:01:58 +02007228 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07007229 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07007230 return -EIO;
7231 }
7232
7233 spin_lock_irqsave(&priv->lock, flags);
7234
7235 if (priv->ibss_beacon)
7236 dev_kfree_skb(priv->ibss_beacon);
7237
7238 priv->ibss_beacon = skb;
7239
7240 priv->assoc_id = 0;
7241
7242 IWL_DEBUG_MAC80211("leave\n");
7243 spin_unlock_irqrestore(&priv->lock, flags);
7244
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007245 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007246
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08007247 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007248
Zhu Yib481de92007-09-25 17:54:57 -07007249
7250 return 0;
7251}
7252
7253/*****************************************************************************
7254 *
7255 * sysfs attributes
7256 *
7257 *****************************************************************************/
7258
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007259#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007260
7261/*
7262 * The following adds a new attribute to the sysfs representation
7263 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7264 * used for controlling the debug level.
7265 *
7266 * See the level definitions in iwl for details.
7267 */
7268
7269static ssize_t show_debug_level(struct device_driver *d, char *buf)
7270{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007271 return sprintf(buf, "0x%08X\n", iwl3945_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007272}
7273static ssize_t store_debug_level(struct device_driver *d,
7274 const char *buf, size_t count)
7275{
7276 char *p = (char *)buf;
7277 u32 val;
7278
7279 val = simple_strtoul(p, &p, 0);
7280 if (p == buf)
7281 printk(KERN_INFO DRV_NAME
7282 ": %s is not in hex or decimal form.\n", buf);
7283 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007284 iwl3945_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007285
7286 return strnlen(buf, count);
7287}
7288
7289static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7290 show_debug_level, store_debug_level);
7291
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007292#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007293
Zhu Yib481de92007-09-25 17:54:57 -07007294static ssize_t show_temperature(struct device *d,
7295 struct device_attribute *attr, char *buf)
7296{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007297 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007298
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007299 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007300 return -EAGAIN;
7301
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007302 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007303}
7304
7305static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7306
Zhu Yib481de92007-09-25 17:54:57 -07007307static ssize_t show_tx_power(struct device *d,
7308 struct device_attribute *attr, char *buf)
7309{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007310 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007311 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7312}
7313
7314static ssize_t store_tx_power(struct device *d,
7315 struct device_attribute *attr,
7316 const char *buf, size_t count)
7317{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007318 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007319 char *p = (char *)buf;
7320 u32 val;
7321
7322 val = simple_strtoul(p, &p, 10);
7323 if (p == buf)
7324 printk(KERN_INFO DRV_NAME
7325 ": %s is not in decimal form.\n", buf);
7326 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007327 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007328
7329 return count;
7330}
7331
7332static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7333
7334static ssize_t show_flags(struct device *d,
7335 struct device_attribute *attr, char *buf)
7336{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007337 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007338
7339 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7340}
7341
7342static ssize_t store_flags(struct device *d,
7343 struct device_attribute *attr,
7344 const char *buf, size_t count)
7345{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007346 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007347 u32 flags = simple_strtoul(buf, NULL, 0);
7348
7349 mutex_lock(&priv->mutex);
7350 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7351 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007352 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007353 IWL_WARNING("Could not cancel scan.\n");
7354 else {
7355 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7356 flags);
7357 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007358 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007359 }
7360 }
7361 mutex_unlock(&priv->mutex);
7362
7363 return count;
7364}
7365
7366static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7367
7368static ssize_t show_filter_flags(struct device *d,
7369 struct device_attribute *attr, char *buf)
7370{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007371 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007372
7373 return sprintf(buf, "0x%04X\n",
7374 le32_to_cpu(priv->active_rxon.filter_flags));
7375}
7376
7377static ssize_t store_filter_flags(struct device *d,
7378 struct device_attribute *attr,
7379 const char *buf, size_t count)
7380{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007381 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007382 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7383
7384 mutex_lock(&priv->mutex);
7385 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7386 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007387 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007388 IWL_WARNING("Could not cancel scan.\n");
7389 else {
7390 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7391 "0x%04X\n", filter_flags);
7392 priv->staging_rxon.filter_flags =
7393 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007394 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007395 }
7396 }
7397 mutex_unlock(&priv->mutex);
7398
7399 return count;
7400}
7401
7402static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7403 store_filter_flags);
7404
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007405#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007406
7407static ssize_t show_measurement(struct device *d,
7408 struct device_attribute *attr, char *buf)
7409{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007410 struct iwl3945_priv *priv = dev_get_drvdata(d);
7411 struct iwl3945_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007412 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007413 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007414 unsigned long flags;
7415
7416 spin_lock_irqsave(&priv->lock, flags);
7417 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7418 spin_unlock_irqrestore(&priv->lock, flags);
7419 return 0;
7420 }
7421 memcpy(&measure_report, &priv->measure_report, size);
7422 priv->measurement_status = 0;
7423 spin_unlock_irqrestore(&priv->lock, flags);
7424
7425 while (size && (PAGE_SIZE - len)) {
7426 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7427 PAGE_SIZE - len, 1);
7428 len = strlen(buf);
7429 if (PAGE_SIZE - len)
7430 buf[len++] = '\n';
7431
7432 ofs += 16;
7433 size -= min(size, 16U);
7434 }
7435
7436 return len;
7437}
7438
7439static ssize_t store_measurement(struct device *d,
7440 struct device_attribute *attr,
7441 const char *buf, size_t count)
7442{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007443 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007444 struct ieee80211_measurement_params params = {
7445 .channel = le16_to_cpu(priv->active_rxon.channel),
7446 .start_time = cpu_to_le64(priv->last_tsf),
7447 .duration = cpu_to_le16(1),
7448 };
7449 u8 type = IWL_MEASURE_BASIC;
7450 u8 buffer[32];
7451 u8 channel;
7452
7453 if (count) {
7454 char *p = buffer;
7455 strncpy(buffer, buf, min(sizeof(buffer), count));
7456 channel = simple_strtoul(p, NULL, 0);
7457 if (channel)
7458 params.channel = channel;
7459
7460 p = buffer;
7461 while (*p && *p != ' ')
7462 p++;
7463 if (*p)
7464 type = simple_strtoul(p + 1, NULL, 0);
7465 }
7466
7467 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7468 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007469 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007470
7471 return count;
7472}
7473
7474static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7475 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007476#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007477
Zhu Yib481de92007-09-25 17:54:57 -07007478static ssize_t store_retry_rate(struct device *d,
7479 struct device_attribute *attr,
7480 const char *buf, size_t count)
7481{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007482 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007483
7484 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7485 if (priv->retry_rate <= 0)
7486 priv->retry_rate = 1;
7487
7488 return count;
7489}
7490
7491static ssize_t show_retry_rate(struct device *d,
7492 struct device_attribute *attr, char *buf)
7493{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007494 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007495 return sprintf(buf, "%d", priv->retry_rate);
7496}
7497
7498static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7499 store_retry_rate);
7500
7501static ssize_t store_power_level(struct device *d,
7502 struct device_attribute *attr,
7503 const char *buf, size_t count)
7504{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007505 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007506 int rc;
7507 int mode;
7508
7509 mode = simple_strtoul(buf, NULL, 0);
7510 mutex_lock(&priv->mutex);
7511
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007512 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007513 rc = -EAGAIN;
7514 goto out;
7515 }
7516
7517 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
7518 mode = IWL_POWER_AC;
7519 else
7520 mode |= IWL_POWER_ENABLED;
7521
7522 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007523 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007524 if (rc) {
7525 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7526 goto out;
7527 }
7528 priv->power_mode = mode;
7529 }
7530
7531 rc = count;
7532
7533 out:
7534 mutex_unlock(&priv->mutex);
7535 return rc;
7536}
7537
7538#define MAX_WX_STRING 80
7539
7540/* Values are in microsecond */
7541static const s32 timeout_duration[] = {
7542 350000,
7543 250000,
7544 75000,
7545 37000,
7546 25000,
7547};
7548static const s32 period_duration[] = {
7549 400000,
7550 700000,
7551 1000000,
7552 1000000,
7553 1000000
7554};
7555
7556static ssize_t show_power_level(struct device *d,
7557 struct device_attribute *attr, char *buf)
7558{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007559 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007560 int level = IWL_POWER_LEVEL(priv->power_mode);
7561 char *p = buf;
7562
7563 p += sprintf(p, "%d ", level);
7564 switch (level) {
7565 case IWL_POWER_MODE_CAM:
7566 case IWL_POWER_AC:
7567 p += sprintf(p, "(AC)");
7568 break;
7569 case IWL_POWER_BATTERY:
7570 p += sprintf(p, "(BATTERY)");
7571 break;
7572 default:
7573 p += sprintf(p,
7574 "(Timeout %dms, Period %dms)",
7575 timeout_duration[level - 1] / 1000,
7576 period_duration[level - 1] / 1000);
7577 }
7578
7579 if (!(priv->power_mode & IWL_POWER_ENABLED))
7580 p += sprintf(p, " OFF\n");
7581 else
7582 p += sprintf(p, " \n");
7583
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007584 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007585
7586}
7587
7588static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7589 store_power_level);
7590
7591static ssize_t show_channels(struct device *d,
7592 struct device_attribute *attr, char *buf)
7593{
Johannes Berg8318d782008-01-24 19:38:38 +01007594 /* all this shit doesn't belong into sysfs anyway */
7595 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007596}
7597
7598static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7599
7600static ssize_t show_statistics(struct device *d,
7601 struct device_attribute *attr, char *buf)
7602{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007603 struct iwl3945_priv *priv = dev_get_drvdata(d);
7604 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007605 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007606 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07007607 int rc = 0;
7608
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007609 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007610 return -EAGAIN;
7611
7612 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007613 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007614 mutex_unlock(&priv->mutex);
7615
7616 if (rc) {
7617 len = sprintf(buf,
7618 "Error sending statistics request: 0x%08X\n", rc);
7619 return len;
7620 }
7621
7622 while (size && (PAGE_SIZE - len)) {
7623 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7624 PAGE_SIZE - len, 1);
7625 len = strlen(buf);
7626 if (PAGE_SIZE - len)
7627 buf[len++] = '\n';
7628
7629 ofs += 16;
7630 size -= min(size, 16U);
7631 }
7632
7633 return len;
7634}
7635
7636static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7637
7638static ssize_t show_antenna(struct device *d,
7639 struct device_attribute *attr, char *buf)
7640{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007641 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007642
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007643 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007644 return -EAGAIN;
7645
7646 return sprintf(buf, "%d\n", priv->antenna);
7647}
7648
7649static ssize_t store_antenna(struct device *d,
7650 struct device_attribute *attr,
7651 const char *buf, size_t count)
7652{
7653 int ant;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007654 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007655
7656 if (count == 0)
7657 return 0;
7658
7659 if (sscanf(buf, "%1i", &ant) != 1) {
7660 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7661 return count;
7662 }
7663
7664 if ((ant >= 0) && (ant <= 2)) {
7665 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007666 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007667 } else
7668 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7669
7670
7671 return count;
7672}
7673
7674static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7675
7676static ssize_t show_status(struct device *d,
7677 struct device_attribute *attr, char *buf)
7678{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007679 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
7680 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007681 return -EAGAIN;
7682 return sprintf(buf, "0x%08x\n", (int)priv->status);
7683}
7684
7685static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7686
7687static ssize_t dump_error_log(struct device *d,
7688 struct device_attribute *attr,
7689 const char *buf, size_t count)
7690{
7691 char *p = (char *)buf;
7692
7693 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007694 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007695
7696 return strnlen(buf, count);
7697}
7698
7699static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7700
7701static ssize_t dump_event_log(struct device *d,
7702 struct device_attribute *attr,
7703 const char *buf, size_t count)
7704{
7705 char *p = (char *)buf;
7706
7707 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007708 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007709
7710 return strnlen(buf, count);
7711}
7712
7713static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7714
7715/*****************************************************************************
7716 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007717 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007718 *
7719 *****************************************************************************/
7720
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007721static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007722{
7723 priv->workqueue = create_workqueue(DRV_NAME);
7724
7725 init_waitqueue_head(&priv->wait_command_queue);
7726
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007727 INIT_WORK(&priv->up, iwl3945_bg_up);
7728 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7729 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7730 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7731 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7732 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7733 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7734 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007735 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7736 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7737 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007738
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007739 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007740
7741 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007742 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007743}
7744
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007745static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007746{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007747 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007748
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007749 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007750 cancel_delayed_work(&priv->scan_check);
7751 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007752 cancel_work_sync(&priv->beacon_update);
7753}
7754
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007755static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007756 &dev_attr_antenna.attr,
7757 &dev_attr_channels.attr,
7758 &dev_attr_dump_errors.attr,
7759 &dev_attr_dump_events.attr,
7760 &dev_attr_flags.attr,
7761 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007762#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007763 &dev_attr_measurement.attr,
7764#endif
7765 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007766 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007767 &dev_attr_statistics.attr,
7768 &dev_attr_status.attr,
7769 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007770 &dev_attr_tx_power.attr,
7771
7772 NULL
7773};
7774
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007775static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007776 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007777 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007778};
7779
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007780static struct ieee80211_ops iwl3945_hw_ops = {
7781 .tx = iwl3945_mac_tx,
7782 .start = iwl3945_mac_start,
7783 .stop = iwl3945_mac_stop,
7784 .add_interface = iwl3945_mac_add_interface,
7785 .remove_interface = iwl3945_mac_remove_interface,
7786 .config = iwl3945_mac_config,
7787 .config_interface = iwl3945_mac_config_interface,
7788 .configure_filter = iwl3945_configure_filter,
7789 .set_key = iwl3945_mac_set_key,
7790 .get_stats = iwl3945_mac_get_stats,
7791 .get_tx_stats = iwl3945_mac_get_tx_stats,
7792 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007793 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007794 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007795 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007796};
7797
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007798static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007799{
7800 int err = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007801 struct iwl3945_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007802 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007803 struct iwl_3945_cfg *cfg = (struct iwl_3945_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007804 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007805
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007806 /***********************
7807 * 1. Allocating HW data
7808 * ********************/
7809
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007810 /* Disabling hardware scan means that mac80211 will perform scans
7811 * "the hard way", rather than using device's scan. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007812 if (iwl3945_param_disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07007813 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007814 iwl3945_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07007815 }
7816
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007817 if ((iwl3945_param_queues_num > IWL39_MAX_NUM_QUEUES) ||
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007818 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
Zhu Yib481de92007-09-25 17:54:57 -07007819 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07007820 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Zhu Yib481de92007-09-25 17:54:57 -07007821 err = -EINVAL;
7822 goto out;
7823 }
7824
7825 /* mac80211 allocates memory for this device instance, including
7826 * space for this driver's private structure */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007827 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007828 if (hw == NULL) {
7829 IWL_ERROR("Can not allocate network device\n");
7830 err = -ENOMEM;
7831 goto out;
7832 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007833
Zhu Yib481de92007-09-25 17:54:57 -07007834 SET_IEEE80211_DEV(hw, &pdev->dev);
7835
Zhu Yib481de92007-09-25 17:54:57 -07007836 priv = hw->priv;
7837 priv->hw = hw;
Zhu Yib481de92007-09-25 17:54:57 -07007838 priv->pci_dev = pdev;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007839 priv->cfg = cfg;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007840
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007841 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
7842 hw->rate_control_algorithm = "iwl-3945-rs";
7843 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7844
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007845 /* Select antenna (may be helpful if only one antenna is connected) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007846 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007847#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007848 iwl3945_debug_level = iwl3945_param_debug;
Zhu Yib481de92007-09-25 17:54:57 -07007849 atomic_set(&priv->restrict_refcnt, 0);
7850#endif
Zhu Yib481de92007-09-25 17:54:57 -07007851
Bruno Randolf566bfe52008-05-08 19:15:40 +02007852 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007853 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007854 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007855
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007856 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007857 BIT(NL80211_IFTYPE_STATION) |
7858 BIT(NL80211_IFTYPE_ADHOC);
7859
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007860 hw->wiphy->fw_handles_regulatory = true;
7861
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007862 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007863 hw->queues = 4;
7864
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007865 /***************************
7866 * 2. Initializing PCI bus
7867 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007868 if (pci_enable_device(pdev)) {
7869 err = -ENODEV;
7870 goto out_ieee80211_free_hw;
7871 }
7872
7873 pci_set_master(pdev);
7874
Zhu Yib481de92007-09-25 17:54:57 -07007875 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7876 if (!err)
7877 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7878 if (err) {
7879 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
7880 goto out_pci_disable_device;
7881 }
7882
7883 pci_set_drvdata(pdev, priv);
7884 err = pci_request_regions(pdev, DRV_NAME);
7885 if (err)
7886 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007887
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007888 /***********************
7889 * 3. Read REV Register
7890 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007891 priv->hw_base = pci_iomap(pdev, 0, 0);
7892 if (!priv->hw_base) {
7893 err = -ENODEV;
7894 goto out_pci_release_regions;
7895 }
7896
7897 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7898 (unsigned long long) pci_resource_len(pdev, 0));
7899 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7900
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007901 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7902 * PCI Tx retries from interfering with C3 CPU state */
7903 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007904
Zhu Yi5a66926a2008-01-14 17:46:18 -08007905 /* nic init */
7906 iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS,
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007907 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Zhu Yi5a66926a2008-01-14 17:46:18 -08007908
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007909 iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Zhu, Yi73d7b5a2008-12-05 07:58:40 -08007910 err = iwl3945_poll_direct_bit(priv, CSR_GP_CNTRL,
7911 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007912 if (err < 0) {
7913 IWL_DEBUG_INFO("Failed to init the card\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08007914 goto out_remove_sysfs;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007915 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007916
7917 /***********************
7918 * 4. Read EEPROM
7919 * ********************/
Zhu Yi5a66926a2008-01-14 17:46:18 -08007920 /* Read the EEPROM */
7921 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007922 if (err) {
Zhu Yi5a66926a2008-01-14 17:46:18 -08007923 IWL_ERROR("Unable to init EEPROM\n");
7924 goto out_remove_sysfs;
7925 }
7926 /* MAC Address location in EEPROM same for 3945/4965 */
7927 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007928 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a66926a2008-01-14 17:46:18 -08007929 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7930
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007931 /***********************
7932 * 5. Setup HW Constants
7933 * ********************/
7934 /* Device-specific setup */
7935 if (iwl3945_hw_set_hw_setting(priv)) {
7936 IWL_ERROR("failed to set hw settings\n");
7937 goto out_iounmap;
7938 }
7939
7940 /***********************
7941 * 6. Setup priv
7942 * ********************/
7943 priv->retry_rate = 1;
7944 priv->ibss_beacon = NULL;
7945
7946 spin_lock_init(&priv->lock);
7947 spin_lock_init(&priv->power_data.lock);
7948 spin_lock_init(&priv->sta_lock);
7949 spin_lock_init(&priv->hcmd_lock);
7950
7951 INIT_LIST_HEAD(&priv->free_frames);
7952 mutex_init(&priv->mutex);
7953
7954 /* Clear the driver's (not device's) station table */
7955 iwl3945_clear_stations_table(priv);
7956
7957 priv->data_retry_limit = -1;
7958 priv->ieee_channels = NULL;
7959 priv->ieee_rates = NULL;
7960 priv->band = IEEE80211_BAND_2GHZ;
7961
7962 priv->iw_mode = NL80211_IFTYPE_STATION;
7963
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007964 iwl3945_reset_qos(priv);
7965
7966 priv->qos_data.qos_active = 0;
7967 priv->qos_data.qos_cap.val = 0;
7968
7969
7970 priv->rates_mask = IWL_RATES_MASK;
7971 /* If power management is turned on, default to AC mode */
7972 priv->power_mode = IWL_POWER_AC;
7973 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7974
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007975 err = iwl3945_init_channel_map(priv);
7976 if (err) {
7977 IWL_ERROR("initializing regulatory failed: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007978 goto out_release_irq;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007979 }
7980
7981 err = iwl3945_init_geos(priv);
7982 if (err) {
7983 IWL_ERROR("initializing geos failed: %d\n", err);
7984 goto out_free_channel_map;
7985 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007986
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007987 printk(KERN_INFO DRV_NAME
7988 ": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name);
7989
7990 /***********************************
7991 * 7. Initialize Module Parameters
7992 * **********************************/
7993
7994 /* Initialize module parameter values here */
7995 /* Disable radio (SW RF KILL) via parameter when loading driver */
7996 if (iwl3945_param_disable) {
7997 set_bit(STATUS_RF_KILL_SW, &priv->status);
7998 IWL_DEBUG_INFO("Radio disabled.\n");
7999 }
8000
8001
8002 /***********************
8003 * 8. Setup Services
8004 * ********************/
8005
8006 spin_lock_irqsave(&priv->lock, flags);
8007 iwl3945_disable_interrupts(priv);
8008 spin_unlock_irqrestore(&priv->lock, flags);
8009
8010 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
8011 if (err) {
8012 IWL_ERROR("failed to create sysfs device attributes\n");
8013 goto out_free_geos;
8014 }
8015
8016 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
8017 iwl3945_setup_deferred_work(priv);
8018 iwl3945_setup_rx_handlers(priv);
8019
8020 /***********************
8021 * 9. Conclude
8022 * ********************/
8023 pci_save_state(pdev);
8024 pci_disable_device(pdev);
8025
8026 /*********************************
8027 * 10. Setup and Register mac80211
8028 * *******************************/
8029
Zhu Yi5a66926a2008-01-14 17:46:18 -08008030 err = ieee80211_register_hw(priv->hw);
8031 if (err) {
8032 IWL_ERROR("Failed to register network device (error %d)\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008033 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07008034 }
8035
Zhu Yi5a66926a2008-01-14 17:46:18 -08008036 priv->hw->conf.beacon_int = 100;
8037 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008038
Zhu Yib481de92007-09-25 17:54:57 -07008039
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008040 err = iwl3945_rfkill_init(priv);
8041 if (err)
8042 IWL_ERROR("Unable to initialize RFKILL system. "
8043 "Ignoring error: %d\n", err);
8044
Zhu Yib481de92007-09-25 17:54:57 -07008045 return 0;
8046
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008047 out_remove_sysfs:
8048 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008049 out_free_geos:
8050 iwl3945_free_geos(priv);
8051 out_free_channel_map:
8052 iwl3945_free_channel_map(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08008053
Zhu Yib481de92007-09-25 17:54:57 -07008054
8055 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07008056 destroy_workqueue(priv->workqueue);
8057 priv->workqueue = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008058 iwl3945_unset_hw_setting(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008059
8060 out_iounmap:
8061 pci_iounmap(pdev, priv->hw_base);
8062 out_pci_release_regions:
8063 pci_release_regions(pdev);
8064 out_pci_disable_device:
8065 pci_disable_device(pdev);
8066 pci_set_drvdata(pdev, NULL);
8067 out_ieee80211_free_hw:
8068 ieee80211_free_hw(priv->hw);
8069 out:
8070 return err;
8071}
8072
Reinette Chatrec83dbf62008-03-21 13:53:41 -07008073static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008074{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008075 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008076 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07008077
8078 if (!priv)
8079 return;
8080
8081 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8082
Zhu Yib481de92007-09-25 17:54:57 -07008083 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08008084
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008085 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008086
Mohamed Abbas0359fac2008-03-28 16:21:08 -07008087 /* make sure we flush any pending irq or
8088 * tasklet for the driver
8089 */
8090 spin_lock_irqsave(&priv->lock, flags);
8091 iwl3945_disable_interrupts(priv);
8092 spin_unlock_irqrestore(&priv->lock, flags);
8093
8094 iwl_synchronize_irq(priv);
8095
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008096 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008097
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008098 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008099 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008100
8101 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008102 iwl3945_rx_queue_free(priv, &priv->rxq);
8103 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008104
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008105 iwl3945_unset_hw_setting(priv);
8106 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008107
Tomas Winkler3ac7f142008-07-21 02:40:14 +03008108 if (priv->mac80211_registered)
Zhu Yib481de92007-09-25 17:54:57 -07008109 ieee80211_unregister_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008110
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08008111 /*netif_stop_queue(dev); */
8112 flush_workqueue(priv->workqueue);
8113
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008114 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07008115 * priv->workqueue... so we can't take down the workqueue
8116 * until now... */
8117 destroy_workqueue(priv->workqueue);
8118 priv->workqueue = NULL;
8119
Zhu Yib481de92007-09-25 17:54:57 -07008120 pci_iounmap(pdev, priv->hw_base);
8121 pci_release_regions(pdev);
8122 pci_disable_device(pdev);
8123 pci_set_drvdata(pdev, NULL);
8124
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008125 iwl3945_free_channel_map(priv);
8126 iwl3945_free_geos(priv);
Emmanuel Grumbach261415f2008-05-29 16:35:25 +08008127 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07008128 if (priv->ibss_beacon)
8129 dev_kfree_skb(priv->ibss_beacon);
8130
8131 ieee80211_free_hw(priv->hw);
8132}
8133
8134#ifdef CONFIG_PM
8135
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008136static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07008137{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008138 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008139
Zhu Yie655b9f2008-01-24 02:19:38 -08008140 if (priv->is_open) {
8141 set_bit(STATUS_IN_SUSPEND, &priv->status);
8142 iwl3945_mac_stop(priv->hw);
8143 priv->is_open = 1;
8144 }
Zhu Yib481de92007-09-25 17:54:57 -07008145
Zhu Yib481de92007-09-25 17:54:57 -07008146 pci_set_power_state(pdev, PCI_D3hot);
8147
Zhu Yib481de92007-09-25 17:54:57 -07008148 return 0;
8149}
8150
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008151static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008152{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008153 struct iwl3945_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008154
Zhu Yib481de92007-09-25 17:54:57 -07008155 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07008156
Zhu Yie655b9f2008-01-24 02:19:38 -08008157 if (priv->is_open)
8158 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008159
Zhu Yie655b9f2008-01-24 02:19:38 -08008160 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07008161 return 0;
8162}
8163
8164#endif /* CONFIG_PM */
8165
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008166/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008167#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008168/* software rf-kill from user */
8169static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
8170{
8171 struct iwl3945_priv *priv = data;
8172 int err = 0;
8173
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008174 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008175 return 0;
8176
8177 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
8178 return 0;
8179
Tomas Winklera96a27f2008-10-23 23:48:56 -07008180 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008181 mutex_lock(&priv->mutex);
8182
8183 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008184 case RFKILL_STATE_UNBLOCKED:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008185 if (iwl3945_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008186 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008187 goto out_unlock;
8188 }
8189 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008190 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008191 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008192 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008193 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008194 default:
Tomas Winklera96a27f2008-10-23 23:48:56 -07008195 IWL_WARNING("we received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08008196 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008197 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008198out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008199 mutex_unlock(&priv->mutex);
8200
8201 return err;
8202}
8203
8204int iwl3945_rfkill_init(struct iwl3945_priv *priv)
8205{
8206 struct device *device = wiphy_dev(priv->hw->wiphy);
8207 int ret = 0;
8208
8209 BUG_ON(device == NULL);
8210
8211 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008212 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
8213 if (!priv->rfkill) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008214 IWL_ERROR("Unable to allocate rfkill device.\n");
8215 ret = -ENOMEM;
8216 goto error;
8217 }
8218
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008219 priv->rfkill->name = priv->cfg->name;
8220 priv->rfkill->data = priv;
8221 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
8222 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
8223 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008224
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008225 priv->rfkill->dev.class->suspend = NULL;
8226 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008227
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008228 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008229 if (ret) {
8230 IWL_ERROR("Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008231 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008232 }
8233
8234 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8235 return ret;
8236
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008237freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008238 if (priv->rfkill != NULL)
8239 rfkill_free(priv->rfkill);
8240 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008241
8242error:
8243 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
8244 return ret;
8245}
8246
8247void iwl3945_rfkill_unregister(struct iwl3945_priv *priv)
8248{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008249 if (priv->rfkill)
8250 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008251
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008252 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008253}
8254
8255/* set rf-kill to the right state. */
8256void iwl3945_rfkill_set_hw_state(struct iwl3945_priv *priv)
8257{
8258
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008259 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008260 return;
8261
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008262 if (iwl3945_is_rfkill_hw(priv)) {
8263 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
8264 return;
8265 }
8266
8267 if (!iwl3945_is_rfkill_sw(priv))
8268 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008269 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02008270 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08008271}
8272#endif
8273
Zhu Yib481de92007-09-25 17:54:57 -07008274/*****************************************************************************
8275 *
8276 * driver and module entry point
8277 *
8278 *****************************************************************************/
8279
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008280static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07008281 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008282 .id_table = iwl3945_hw_card_ids,
8283 .probe = iwl3945_pci_probe,
8284 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07008285#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008286 .suspend = iwl3945_pci_suspend,
8287 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07008288#endif
8289};
8290
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008291static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07008292{
8293
8294 int ret;
8295 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8296 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008297
8298 ret = iwl3945_rate_control_register();
8299 if (ret) {
8300 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
8301 return ret;
8302 }
8303
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008304 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008305 if (ret) {
8306 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008307 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07008308 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008309#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008310 ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008311 if (ret) {
8312 IWL_ERROR("Unable to create driver sysfs file\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008313 goto error_debug;
Zhu Yib481de92007-09-25 17:54:57 -07008314 }
8315#endif
8316
8317 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008318
8319#ifdef CONFIG_IWL3945_DEBUG
8320error_debug:
8321 pci_unregister_driver(&iwl3945_driver);
8322#endif
8323error_register:
8324 iwl3945_rate_control_unregister();
8325 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07008326}
8327
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008328static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008329{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08008330#ifdef CONFIG_IWL3945_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008331 driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008332#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008333 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008334 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07008335}
8336
Reinette Chatrea0987a82008-12-02 12:14:06 -08008337MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08008338
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008339module_param_named(antenna, iwl3945_param_antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008340MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008341module_param_named(disable, iwl3945_param_disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008342MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008343module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008344MODULE_PARM_DESC(hwcrypto,
8345 "using hardware crypto engine (default 0 [software])\n");
Wu, Fengguang95aa1942008-12-17 16:52:30 +08008346module_param_named(debug, iwl3945_param_debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008347MODULE_PARM_DESC(debug, "debug output mask");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008348module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008349MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8350
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008351module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008352MODULE_PARM_DESC(queues_num, "number of hw queues.");
8353
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008354module_exit(iwl3945_exit);
8355module_init(iwl3945_init);