blob: aac8825237f442dfbb0a8eaeab4f5698b06dd450 [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
Samuel Ortiza3139c52008-12-19 10:37:09 +080049#define DRV_NAME "iwl3945"
50
Tomas Winkler82b9a122008-03-04 18:09:30 -080051#include "iwl-3945-core.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080052#include "iwl-commands.h"
Zhu Yib481de92007-09-25 17:54:57 -070053#include "iwl-3945.h"
Tomas Winklerbddadf82008-12-19 10:37:01 +080054#include "iwl-3945-fh.h"
Zhu Yib481de92007-09-25 17:54:57 -070055#include "iwl-helpers.h"
56
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080057static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
58 struct iwl3945_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080059
Zhu Yib481de92007-09-25 17:54:57 -070060/******************************************************************************
61 *
62 * module boiler plate
63 *
64 ******************************************************************************/
65
66/* module parameters */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080067static int iwl3945_param_disable_hw_scan; /* def: 0 = use 3945's h/w scan */
Wu, Fengguang95aa1942008-12-17 16:52:30 +080068static u32 iwl3945_param_debug; /* def: 0 = minimal debug log messages */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080069static int iwl3945_param_disable; /* def: 0 = enable radio */
Ben Cahill9fbab512007-11-29 11:09:47 +080070static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */
Cahill, Ben M6440adb2007-11-29 11:09:55 +080071int iwl3945_param_hwcrypto; /* def: 0 = use software encryption */
Ron Rindjunskydfe7d452008-04-15 16:01:45 -070072int iwl3945_param_queues_num = IWL39_MAX_NUM_QUEUES; /* def: 8 Tx queues */
Zhu Yib481de92007-09-25 17:54:57 -070073
74/*
75 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070076 */
77
78#define DRV_DESCRIPTION \
79"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
80
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080081#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070082#define VD "d"
83#else
84#define VD
85#endif
86
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080087#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070088#define VS "s"
89#else
90#define VS
91#endif
92
Reinette Chatreb9e0b442008-02-08 16:39:11 -080093#define IWLWIFI_VERSION "1.2.26k" VD VS
Reinette Chatreeb7ae892008-03-11 16:17:17 -070094#define DRV_COPYRIGHT "Copyright(c) 2003-2008 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080095#define DRV_AUTHOR "<ilw@linux.intel.com>"
Zhu Yib481de92007-09-25 17:54:57 -070096#define DRV_VERSION IWLWIFI_VERSION
97
Zhu Yib481de92007-09-25 17:54:57 -070098
99MODULE_DESCRIPTION(DRV_DESCRIPTION);
100MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -0800101MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -0700102MODULE_LICENSE("GPL");
103
Johannes Berg8318d782008-01-24 19:38:38 +0100104static const struct ieee80211_supported_band *iwl3945_get_band(
105 struct iwl3945_priv *priv, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700106{
Johannes Berg8318d782008-01-24 19:38:38 +0100107 return priv->hw->wiphy->bands[band];
Zhu Yib481de92007-09-25 17:54:57 -0700108}
109
Zhu Yib481de92007-09-25 17:54:57 -0700110/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
111 * DMA services
112 *
113 * Theory of operation
114 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800115 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
116 * of buffer descriptors, each of which points to one or more data buffers for
117 * the device to read from or fill. Driver and device exchange status of each
118 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
119 * entries in each circular buffer, to protect against confusing empty and full
120 * queue states.
121 *
122 * The device reads or writes the data in the queues via the device's several
123 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700124 *
125 * For Tx queue, there are low mark and high mark limits. If, after queuing
126 * the packet for Tx, free space become < low mark, Tx queue stopped. When
127 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
128 * Tx queue resumed.
129 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800130 * The 3945 operates with six queues: One receive queue, one transmit queue
131 * (#4) for sending commands to the device firmware, and four transmit queues
132 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
Zhu Yib481de92007-09-25 17:54:57 -0700133 ***************************************************/
134
Tomas Winklerc54b6792008-03-06 17:36:53 -0800135int iwl3945_queue_space(const struct iwl3945_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -0700136{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800137 int s = q->read_ptr - q->write_ptr;
Zhu Yib481de92007-09-25 17:54:57 -0700138
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800139 if (q->read_ptr > q->write_ptr)
Zhu Yib481de92007-09-25 17:54:57 -0700140 s -= q->n_bd;
141
142 if (s <= 0)
143 s += q->n_window;
144 /* keep some reserve to not confuse empty and full situations */
145 s -= 2;
146 if (s < 0)
147 s = 0;
148 return s;
149}
150
Tomas Winklerc54b6792008-03-06 17:36:53 -0800151int iwl3945_x2_queue_used(const struct iwl3945_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700152{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800153 return q->write_ptr > q->read_ptr ?
154 (i >= q->read_ptr && i < q->write_ptr) :
155 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700156}
157
Tomas Winklerc54b6792008-03-06 17:36:53 -0800158
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800159static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge)
Zhu Yib481de92007-09-25 17:54:57 -0700160{
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800161 /* This is for scan command, the big buffer at end of command array */
Zhu Yib481de92007-09-25 17:54:57 -0700162 if (is_huge)
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800163 return q->n_window; /* must be power of 2 */
Zhu Yib481de92007-09-25 17:54:57 -0700164
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800165 /* Otherwise, use normal size buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700166 return index & (q->n_window - 1);
167}
168
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800169/**
170 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
171 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800172static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700173 int count, int slots_num, u32 id)
174{
175 q->n_bd = count;
176 q->n_window = slots_num;
177 q->id = id;
178
Tomas Winklerc54b6792008-03-06 17:36:53 -0800179 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
180 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700181 BUG_ON(!is_power_of_2(count));
182
183 /* slots_num must be power-of-two size, otherwise
184 * get_cmd_index is broken. */
185 BUG_ON(!is_power_of_2(slots_num));
186
187 q->low_mark = q->n_window / 4;
188 if (q->low_mark < 4)
189 q->low_mark = 4;
190
191 q->high_mark = q->n_window / 8;
192 if (q->high_mark < 2)
193 q->high_mark = 2;
194
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800195 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700196
197 return 0;
198}
199
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800200/**
201 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
202 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800203static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
204 struct iwl3945_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700205{
206 struct pci_dev *dev = priv->pci_dev;
207
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800208 /* Driver private data, only for Tx (not command) queues,
209 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700210 if (id != IWL_CMD_QUEUE_NUM) {
211 txq->txb = kmalloc(sizeof(txq->txb[0]) *
212 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
213 if (!txq->txb) {
Ian Schram01ebd062007-10-25 17:15:22 +0800214 IWL_ERROR("kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700215 "structures failed\n");
216 goto error;
217 }
218 } else
219 txq->txb = NULL;
220
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800221 /* Circular buffer of transmit frame descriptors (TFDs),
222 * shared with device */
Zhu Yib481de92007-09-25 17:54:57 -0700223 txq->bd = pci_alloc_consistent(dev,
224 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
225 &txq->q.dma_addr);
226
227 if (!txq->bd) {
228 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
229 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
230 goto error;
231 }
232 txq->q.id = id;
233
234 return 0;
235
236 error:
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300237 kfree(txq->txb);
238 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700239
240 return -ENOMEM;
241}
242
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800243/**
244 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
245 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800246int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
247 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700248{
249 struct pci_dev *dev = priv->pci_dev;
250 int len;
251 int rc = 0;
252
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800253 /*
254 * Alloc buffer array for commands (Tx or other types of commands).
255 * For the command queue (#4), allocate command space + one big
256 * command for scan, since scan command is very huge; the system will
257 * not have two scans at the same time, so only one is needed.
258 * For data Tx queues (all other queues), no super-size command
259 * space is needed.
260 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800261 len = sizeof(struct iwl3945_cmd) * slots_num;
Zhu Yib481de92007-09-25 17:54:57 -0700262 if (txq_id == IWL_CMD_QUEUE_NUM)
263 len += IWL_MAX_SCAN_SIZE;
264 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
265 if (!txq->cmd)
266 return -ENOMEM;
267
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800268 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800269 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700270 if (rc) {
271 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
272
273 return -ENOMEM;
274 }
275 txq->need_update = 0;
276
277 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800278 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700279 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800280
281 /* Initialize queue high/low-water, head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800282 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700283
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800284 /* Tell device where to find queue, enable DMA channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800285 iwl3945_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700286
287 return 0;
288}
289
290/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800291 * iwl3945_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700292 * @txq: Transmit queue to deallocate.
293 *
294 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800295 * Free all buffers.
296 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700297 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800298void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700299{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800300 struct iwl3945_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700301 struct pci_dev *dev = priv->pci_dev;
302 int len;
303
304 if (q->n_bd == 0)
305 return;
306
307 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800308 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800309 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800310 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700311
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800312 len = sizeof(struct iwl3945_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700313 if (q->id == IWL_CMD_QUEUE_NUM)
314 len += IWL_MAX_SCAN_SIZE;
315
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800316 /* De-alloc array of command/tx buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700317 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
318
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800319 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700320 if (txq->q.n_bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800321 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) *
Zhu Yib481de92007-09-25 17:54:57 -0700322 txq->q.n_bd, txq->bd, txq->q.dma_addr);
323
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800324 /* De-alloc array of per-TFD driver data */
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300325 kfree(txq->txb);
326 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700327
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800328 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700329 memset(txq, 0, sizeof(*txq));
330}
331
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800332const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Zhu Yib481de92007-09-25 17:54:57 -0700333
334/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800335 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700336 * the functionality provided here
337 */
338
339/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800340#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800341/**
342 * iwl3945_remove_station - Remove driver's knowledge of station.
343 *
344 * NOTE: This does not remove station from device's station table.
345 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800346static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700347{
348 int index = IWL_INVALID_STATION;
349 int i;
350 unsigned long flags;
351
352 spin_lock_irqsave(&priv->sta_lock, flags);
353
354 if (is_ap)
355 index = IWL_AP_ID;
356 else if (is_broadcast_ether_addr(addr))
357 index = priv->hw_setting.bcast_sta_id;
358 else
359 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
360 if (priv->stations[i].used &&
361 !compare_ether_addr(priv->stations[i].sta.sta.addr,
362 addr)) {
363 index = i;
364 break;
365 }
366
367 if (unlikely(index == IWL_INVALID_STATION))
368 goto out;
369
370 if (priv->stations[index].used) {
371 priv->stations[index].used = 0;
372 priv->num_stations--;
373 }
374
375 BUG_ON(priv->num_stations < 0);
376
377out:
378 spin_unlock_irqrestore(&priv->sta_lock, flags);
379 return 0;
380}
Zhu Yi556f8db2007-09-27 11:27:33 +0800381#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800382
383/**
384 * iwl3945_clear_stations_table - Clear the driver's station table
385 *
386 * NOTE: This does not clear or otherwise alter the device's station table.
387 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800388static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700389{
390 unsigned long flags;
391
392 spin_lock_irqsave(&priv->sta_lock, flags);
393
394 priv->num_stations = 0;
395 memset(priv->stations, 0, sizeof(priv->stations));
396
397 spin_unlock_irqrestore(&priv->sta_lock, flags);
398}
399
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800400/**
401 * iwl3945_add_station - Add station to station tables in driver and device
402 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800403u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700404{
405 int i;
406 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800407 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700408 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800409 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700410
411 spin_lock_irqsave(&priv->sta_lock, flags_spin);
412 if (is_ap)
413 index = IWL_AP_ID;
414 else if (is_broadcast_ether_addr(addr))
415 index = priv->hw_setting.bcast_sta_id;
416 else
417 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
418 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
419 addr)) {
420 index = i;
421 break;
422 }
423
424 if (!priv->stations[i].used &&
425 index == IWL_INVALID_STATION)
426 index = i;
427 }
428
Ian Schram01ebd062007-10-25 17:15:22 +0800429 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700430 since they have different meaning */
431 if (unlikely(index == IWL_INVALID_STATION)) {
432 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
433 return index;
434 }
435
436 if (priv->stations[index].used &&
437 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
438 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
439 return index;
440 }
441
Johannes Berge1749612008-10-27 15:59:26 -0700442 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
Zhu Yib481de92007-09-25 17:54:57 -0700443 station = &priv->stations[index];
444 station->used = 1;
445 priv->num_stations++;
446
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800447 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800448 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700449 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
450 station->sta.mode = 0;
451 station->sta.sta.sta_id = index;
452 station->sta.station_flags = 0;
453
Johannes Berg8318d782008-01-24 19:38:38 +0100454 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800455 rate = IWL_RATE_6M_PLCP;
456 else
457 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800458
459 /* Turn on both antennas for the station... */
460 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800461 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800462
Zhu Yib481de92007-09-25 17:54:57 -0700463 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800464
465 /* Add station to device's station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800466 iwl3945_send_add_station(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700467 return index;
468
469}
470
471/*************** DRIVER STATUS FUNCTIONS *****/
472
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800473static inline int iwl3945_is_ready(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700474{
475 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
476 * set but EXIT_PENDING is not */
477 return test_bit(STATUS_READY, &priv->status) &&
478 test_bit(STATUS_GEO_CONFIGURED, &priv->status) &&
479 !test_bit(STATUS_EXIT_PENDING, &priv->status);
480}
481
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800482static inline int iwl3945_is_alive(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700483{
484 return test_bit(STATUS_ALIVE, &priv->status);
485}
486
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800487static inline int iwl3945_is_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700488{
489 return test_bit(STATUS_INIT, &priv->status);
490}
491
Adel Gadllah80fcc9e2008-07-01 17:49:50 +0200492static inline int iwl3945_is_rfkill_sw(struct iwl3945_priv *priv)
493{
494 return test_bit(STATUS_RF_KILL_SW, &priv->status);
495}
496
497static inline int iwl3945_is_rfkill_hw(struct iwl3945_priv *priv)
498{
499 return test_bit(STATUS_RF_KILL_HW, &priv->status);
500}
501
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800502static inline int iwl3945_is_rfkill(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700503{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +0200504 return iwl3945_is_rfkill_hw(priv) ||
505 iwl3945_is_rfkill_sw(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700506}
507
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800508static inline int iwl3945_is_ready_rf(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700509{
510
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800511 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700512 return 0;
513
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800514 return iwl3945_is_ready(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700515}
516
517/*************** HOST COMMAND QUEUE FUNCTIONS *****/
518
Abhijeet Kolekarc3056062008-11-12 13:14:08 -0800519#define IWL_CMD(x) case x: return #x
Zhu Yib481de92007-09-25 17:54:57 -0700520
521static const char *get_cmd_string(u8 cmd)
522{
523 switch (cmd) {
524 IWL_CMD(REPLY_ALIVE);
525 IWL_CMD(REPLY_ERROR);
526 IWL_CMD(REPLY_RXON);
527 IWL_CMD(REPLY_RXON_ASSOC);
528 IWL_CMD(REPLY_QOS_PARAM);
529 IWL_CMD(REPLY_RXON_TIMING);
530 IWL_CMD(REPLY_ADD_STA);
531 IWL_CMD(REPLY_REMOVE_STA);
532 IWL_CMD(REPLY_REMOVE_ALL_STA);
533 IWL_CMD(REPLY_3945_RX);
534 IWL_CMD(REPLY_TX);
535 IWL_CMD(REPLY_RATE_SCALE);
536 IWL_CMD(REPLY_LEDS_CMD);
537 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
538 IWL_CMD(RADAR_NOTIFICATION);
539 IWL_CMD(REPLY_QUIET_CMD);
540 IWL_CMD(REPLY_CHANNEL_SWITCH);
541 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
542 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
543 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
544 IWL_CMD(POWER_TABLE_CMD);
545 IWL_CMD(PM_SLEEP_NOTIFICATION);
546 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
547 IWL_CMD(REPLY_SCAN_CMD);
548 IWL_CMD(REPLY_SCAN_ABORT_CMD);
549 IWL_CMD(SCAN_START_NOTIFICATION);
550 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
551 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
552 IWL_CMD(BEACON_NOTIFICATION);
553 IWL_CMD(REPLY_TX_BEACON);
554 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
555 IWL_CMD(QUIET_NOTIFICATION);
556 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
557 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
558 IWL_CMD(REPLY_BT_CONFIG);
559 IWL_CMD(REPLY_STATISTICS_CMD);
560 IWL_CMD(STATISTICS_NOTIFICATION);
561 IWL_CMD(REPLY_CARD_STATE_CMD);
562 IWL_CMD(CARD_STATE_NOTIFICATION);
563 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
564 default:
565 return "UNKNOWN";
566
567 }
568}
569
570#define HOST_COMPLETE_TIMEOUT (HZ / 2)
571
572/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800573 * iwl3945_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700574 * @priv: device private data point
575 * @cmd: a point to the ucode command structure
576 *
577 * The function returns < 0 values to indicate the operation is
578 * failed. On success, it turns the index (> 0) of command in the
579 * command queue.
580 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800581static int iwl3945_enqueue_hcmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700582{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800583 struct iwl3945_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
584 struct iwl3945_queue *q = &txq->q;
585 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -0700586 u32 *control_flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800587 struct iwl3945_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700588 u32 idx;
589 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
590 dma_addr_t phys_addr;
591 int pad;
592 u16 count;
593 int ret;
594 unsigned long flags;
595
596 /* If any of the command structures end up being larger than
597 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
598 * we will need to increase the size of the TFD entries */
599 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
600 !(cmd->meta.flags & CMD_SIZE_HUGE));
601
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800602
603 if (iwl3945_is_rfkill(priv)) {
604 IWL_DEBUG_INFO("Not sending command - RF KILL");
605 return -EIO;
606 }
607
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800608 if (iwl3945_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Zhu Yib481de92007-09-25 17:54:57 -0700609 IWL_ERROR("No space for Tx\n");
610 return -ENOSPC;
611 }
612
613 spin_lock_irqsave(&priv->hcmd_lock, flags);
614
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800615 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700616 memset(tfd, 0, sizeof(*tfd));
617
618 control_flags = (u32 *) tfd;
619
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800620 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Zhu Yib481de92007-09-25 17:54:57 -0700621 out_cmd = &txq->cmd[idx];
622
623 out_cmd->hdr.cmd = cmd->id;
624 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
625 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
626
627 /* At this point, the out_cmd now has all of the incoming cmd
628 * information */
629
630 out_cmd->hdr.flags = 0;
631 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800632 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700633 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
Tomas Winkler600c0e12008-12-19 10:37:04 +0800634 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
Zhu Yib481de92007-09-25 17:54:57 -0700635
636 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800637 offsetof(struct iwl3945_cmd, hdr);
638 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700639
640 pad = U32_PAD(cmd->len);
641 count = TFD_CTL_COUNT_GET(*control_flags);
642 *control_flags = TFD_CTL_COUNT_SET(count) | TFD_CTL_PAD_SET(pad);
643
644 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
645 "%d bytes at %d[%d]:%d\n",
646 get_cmd_string(out_cmd->hdr.cmd),
647 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800648 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700649
650 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800651
652 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800653 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800654 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700655
656 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
657 return ret ? ret : idx;
658}
659
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800660static int iwl3945_send_cmd_async(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700661{
662 int ret;
663
664 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
665
666 /* An asynchronous command can not expect an SKB to be set. */
667 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
668
669 /* An asynchronous command MUST have a callback. */
670 BUG_ON(!cmd->meta.u.callback);
671
672 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
673 return -EBUSY;
674
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800675 ret = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700676 if (ret < 0) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800677 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700678 get_cmd_string(cmd->id), ret);
679 return ret;
680 }
681 return 0;
682}
683
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800684static int iwl3945_send_cmd_sync(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700685{
686 int cmd_idx;
687 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700688
689 BUG_ON(cmd->meta.flags & CMD_ASYNC);
690
691 /* A synchronous command can not have a callback set. */
692 BUG_ON(cmd->meta.u.callback != NULL);
693
Tomas Winklere5472972008-03-28 16:21:12 -0700694 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
Zhu Yib481de92007-09-25 17:54:57 -0700695 IWL_ERROR("Error sending %s: Already sending a host command\n",
696 get_cmd_string(cmd->id));
Tomas Winklere5472972008-03-28 16:21:12 -0700697 ret = -EBUSY;
698 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700699 }
700
701 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
702
703 if (cmd->meta.flags & CMD_WANT_SKB)
704 cmd->meta.source = &cmd->meta;
705
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800706 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700707 if (cmd_idx < 0) {
708 ret = cmd_idx;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800709 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700710 get_cmd_string(cmd->id), ret);
711 goto out;
712 }
713
714 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
715 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
716 HOST_COMPLETE_TIMEOUT);
717 if (!ret) {
718 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
719 IWL_ERROR("Error sending %s: time out after %dms.\n",
720 get_cmd_string(cmd->id),
721 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
722
723 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
724 ret = -ETIMEDOUT;
725 goto cancel;
726 }
727 }
728
729 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
730 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
731 get_cmd_string(cmd->id));
732 ret = -ECANCELED;
733 goto fail;
734 }
735 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
736 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
737 get_cmd_string(cmd->id));
738 ret = -EIO;
739 goto fail;
740 }
741 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
742 IWL_ERROR("Error: Response NULL in '%s'\n",
743 get_cmd_string(cmd->id));
744 ret = -EIO;
Zhu Yi73e1a652009-01-08 10:19:58 -0800745 goto cancel;
Zhu Yib481de92007-09-25 17:54:57 -0700746 }
747
748 ret = 0;
749 goto out;
750
751cancel:
752 if (cmd->meta.flags & CMD_WANT_SKB) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800753 struct iwl3945_cmd *qcmd;
Zhu Yib481de92007-09-25 17:54:57 -0700754
755 /* Cancel the CMD_WANT_SKB flag for the cmd in the
756 * TX cmd queue. Otherwise in case the cmd comes
757 * in later, it will possibly set an invalid
758 * address (cmd->meta.source). */
759 qcmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
760 qcmd->meta.flags &= ~CMD_WANT_SKB;
761 }
762fail:
763 if (cmd->meta.u.skb) {
764 dev_kfree_skb_any(cmd->meta.u.skb);
765 cmd->meta.u.skb = NULL;
766 }
767out:
Tomas Winklere5472972008-03-28 16:21:12 -0700768 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -0700769 return ret;
770}
771
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800772int iwl3945_send_cmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700773{
Zhu Yib481de92007-09-25 17:54:57 -0700774 if (cmd->meta.flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800775 return iwl3945_send_cmd_async(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700776
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800777 return iwl3945_send_cmd_sync(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700778}
779
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800780int iwl3945_send_cmd_pdu(struct iwl3945_priv *priv, u8 id, u16 len, const void *data)
Zhu Yib481de92007-09-25 17:54:57 -0700781{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800782 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700783 .id = id,
784 .len = len,
785 .data = data,
786 };
787
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800788 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700789}
790
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800791static int __must_check iwl3945_send_cmd_u32(struct iwl3945_priv *priv, u8 id, u32 val)
Zhu Yib481de92007-09-25 17:54:57 -0700792{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800793 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700794 .id = id,
795 .len = sizeof(val),
796 .data = &val,
797 };
798
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800799 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700800}
801
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800802int iwl3945_send_statistics_request(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700803{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800804 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700805}
806
807/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800808 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
Johannes Berg8318d782008-01-24 19:38:38 +0100809 * @band: 2.4 or 5 GHz band
810 * @channel: Any channel valid for the requested band
Zhu Yib481de92007-09-25 17:54:57 -0700811
Johannes Berg8318d782008-01-24 19:38:38 +0100812 * In addition to setting the staging RXON, priv->band is also set.
Zhu Yib481de92007-09-25 17:54:57 -0700813 *
814 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Johannes Berg8318d782008-01-24 19:38:38 +0100815 * in the staging RXON flag structure based on the band
Zhu Yib481de92007-09-25 17:54:57 -0700816 */
Johannes Berg8318d782008-01-24 19:38:38 +0100817static int iwl3945_set_rxon_channel(struct iwl3945_priv *priv,
818 enum ieee80211_band band,
819 u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -0700820{
Johannes Berg8318d782008-01-24 19:38:38 +0100821 if (!iwl3945_get_channel_info(priv, band, channel)) {
Zhu Yib481de92007-09-25 17:54:57 -0700822 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
Johannes Berg8318d782008-01-24 19:38:38 +0100823 channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700824 return -EINVAL;
825 }
826
827 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
Johannes Berg8318d782008-01-24 19:38:38 +0100828 (priv->band == band))
Zhu Yib481de92007-09-25 17:54:57 -0700829 return 0;
830
831 priv->staging_rxon.channel = cpu_to_le16(channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100832 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700833 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
834 else
835 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
836
Johannes Berg8318d782008-01-24 19:38:38 +0100837 priv->band = band;
Zhu Yib481de92007-09-25 17:54:57 -0700838
Johannes Berg8318d782008-01-24 19:38:38 +0100839 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700840
841 return 0;
842}
843
844/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800845 * iwl3945_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700846 *
847 * NOTE: This is really only useful during development and can eventually
848 * be #ifdef'd out once the driver is stable and folks aren't actively
849 * making changes
850 */
Samuel Ortiza3139c52008-12-19 10:37:09 +0800851static int iwl3945_check_rxon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700852{
853 int error = 0;
854 int counter = 1;
Samuel Ortiza3139c52008-12-19 10:37:09 +0800855 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700856
857 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
858 error |= le32_to_cpu(rxon->flags &
859 (RXON_FLG_TGJ_NARROW_BAND_MSK |
860 RXON_FLG_RADAR_DETECT_MSK));
861 if (error)
862 IWL_WARNING("check 24G fields %d | %d\n",
863 counter++, error);
864 } else {
865 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
866 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
867 if (error)
868 IWL_WARNING("check 52 fields %d | %d\n",
869 counter++, error);
870 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
871 if (error)
872 IWL_WARNING("check 52 CCK %d | %d\n",
873 counter++, error);
874 }
875 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
876 if (error)
877 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
878
879 /* make sure basic rates 6Mbps and 1Mbps are supported */
880 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
881 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
882 if (error)
883 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
884
885 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
886 if (error)
887 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
888
889 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
890 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
891 if (error)
892 IWL_WARNING("check CCK and short slot %d | %d\n",
893 counter++, error);
894
895 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
896 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
897 if (error)
898 IWL_WARNING("check CCK & auto detect %d | %d\n",
899 counter++, error);
900
901 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
902 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
903 if (error)
904 IWL_WARNING("check TGG and auto detect %d | %d\n",
905 counter++, error);
906
907 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
908 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
909 RXON_FLG_ANT_A_MSK)) == 0);
910 if (error)
911 IWL_WARNING("check antenna %d %d\n", counter++, error);
912
913 if (error)
914 IWL_WARNING("Tuning to channel %d\n",
915 le16_to_cpu(rxon->channel));
916
917 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800918 IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700919 return -1;
920 }
921 return 0;
922}
923
924/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800925 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800926 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700927 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800928 * If the RXON structure is changing enough to require a new tune,
929 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
930 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700931 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800932static int iwl3945_full_rxon_required(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700933{
934
935 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800936 if (!(iwl3945_is_associated(priv)) ||
Zhu Yib481de92007-09-25 17:54:57 -0700937 compare_ether_addr(priv->staging_rxon.bssid_addr,
938 priv->active_rxon.bssid_addr) ||
939 compare_ether_addr(priv->staging_rxon.node_addr,
940 priv->active_rxon.node_addr) ||
941 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
942 priv->active_rxon.wlap_bssid_addr) ||
943 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
944 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
945 (priv->staging_rxon.air_propagation !=
946 priv->active_rxon.air_propagation) ||
947 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
948 return 1;
949
950 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
951 * be updated with the RXON_ASSOC command -- however only some
952 * flag transitions are allowed using RXON_ASSOC */
953
954 /* Check if we are not switching bands */
955 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
956 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
957 return 1;
958
959 /* Check if we are switching association toggle */
960 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
961 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
962 return 1;
963
964 return 0;
965}
966
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800967static int iwl3945_send_rxon_assoc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700968{
969 int rc = 0;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800970 struct iwl_rx_packet *res = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800971 struct iwl3945_rxon_assoc_cmd rxon_assoc;
972 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700973 .id = REPLY_RXON_ASSOC,
974 .len = sizeof(rxon_assoc),
975 .meta.flags = CMD_WANT_SKB,
976 .data = &rxon_assoc,
977 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800978 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging_rxon;
979 const struct iwl3945_rxon_cmd *rxon2 = &priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700980
981 if ((rxon1->flags == rxon2->flags) &&
982 (rxon1->filter_flags == rxon2->filter_flags) &&
983 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
984 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
985 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
986 return 0;
987 }
988
989 rxon_assoc.flags = priv->staging_rxon.flags;
990 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
991 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
992 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
993 rxon_assoc.reserved = 0;
994
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800995 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700996 if (rc)
997 return rc;
998
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800999 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001000 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1001 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1002 rc = -EIO;
1003 }
1004
1005 priv->alloc_rxb_skb--;
1006 dev_kfree_skb_any(cmd.meta.u.skb);
1007
1008 return rc;
1009}
1010
1011/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001012 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -07001013 *
Ian Schram01ebd062007-10-25 17:15:22 +08001014 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -07001015 * the active_rxon structure is updated with the new data. This
1016 * function correctly transitions out of the RXON_ASSOC_MSK state if
1017 * a HW tune is required based on the RXON structure changes.
1018 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001019static int iwl3945_commit_rxon(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001020{
1021 /* cast away the const for active_rxon in this function */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001022 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001023 int rc = 0;
1024
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001025 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001026 return -1;
1027
1028 /* always get timestamp with Rx frame */
1029 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
1030
1031 /* select antenna */
1032 priv->staging_rxon.flags &=
1033 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
1034 priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv);
1035
Samuel Ortiza3139c52008-12-19 10:37:09 +08001036 rc = iwl3945_check_rxon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001037 if (rc) {
1038 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1039 return -EINVAL;
1040 }
1041
1042 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001043 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -07001044 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001045 if (!iwl3945_full_rxon_required(priv)) {
1046 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001047 if (rc) {
1048 IWL_ERROR("Error setting RXON_ASSOC "
1049 "configuration (%d).\n", rc);
1050 return rc;
1051 }
1052
1053 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1054
1055 return 0;
1056 }
1057
1058 /* If we are currently associated and the new config requires
1059 * an RXON_ASSOC and the new config wants the associated mask enabled,
1060 * we must clear the associated from the active configuration
1061 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001062 if (iwl3945_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -07001063 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
1064 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1065 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1066
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001067 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1068 sizeof(struct iwl3945_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001069 &priv->active_rxon);
1070
1071 /* If the mask clearing failed then we set
1072 * active_rxon back to what it was previously */
1073 if (rc) {
1074 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
1075 IWL_ERROR("Error clearing ASSOC_MSK on current "
1076 "configuration (%d).\n", rc);
1077 return rc;
1078 }
Zhu Yib481de92007-09-25 17:54:57 -07001079 }
1080
1081 IWL_DEBUG_INFO("Sending RXON\n"
1082 "* with%s RXON_FILTER_ASSOC_MSK\n"
1083 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -07001084 "* bssid = %pM\n",
Zhu Yib481de92007-09-25 17:54:57 -07001085 ((priv->staging_rxon.filter_flags &
1086 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
1087 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -07001088 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001089
1090 /* Apply the new configuration */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001091 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
1092 sizeof(struct iwl3945_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07001093 if (rc) {
1094 IWL_ERROR("Error setting new configuration (%d).\n", rc);
1095 return rc;
1096 }
1097
1098 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1099
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001100 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +08001101
Zhu Yib481de92007-09-25 17:54:57 -07001102 /* If we issue a new RXON command which required a tune then we must
1103 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001104 rc = iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001105 if (rc) {
1106 IWL_ERROR("Error setting Tx power (%d).\n", rc);
1107 return rc;
1108 }
1109
1110 /* Add the broadcast address so we can send broadcast frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001111 if (iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -07001112 IWL_INVALID_STATION) {
1113 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1114 return -EIO;
1115 }
1116
1117 /* If we have set the ASSOC_MSK and we are in BSS mode then
1118 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001119 if (iwl3945_is_associated(priv) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001120 (priv->iw_mode == NL80211_IFTYPE_STATION))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001121 if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr, 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -07001122 == IWL_INVALID_STATION) {
1123 IWL_ERROR("Error adding AP address for transmit.\n");
1124 return -EIO;
1125 }
1126
Johannes Berg8318d782008-01-24 19:38:38 +01001127 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -07001128 rc = iwl3945_init_hw_rate_table(priv);
1129 if (rc) {
1130 IWL_ERROR("Error setting HW rate table: %02X\n", rc);
1131 return -EIO;
1132 }
1133
1134 return 0;
1135}
1136
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001137static int iwl3945_send_bt_config(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001138{
Tomas Winkler4c897252008-12-19 10:37:05 +08001139 struct iwl_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001140 .flags = 3,
1141 .lead_time = 0xAA,
1142 .max_kill = 1,
1143 .kill_ack_mask = 0,
1144 .kill_cts_mask = 0,
1145 };
1146
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001147 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Tomas Winkler4c897252008-12-19 10:37:05 +08001148 sizeof(bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001149}
1150
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001151static int iwl3945_send_scan_abort(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001152{
1153 int rc = 0;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001154 struct iwl_rx_packet *res;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001155 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001156 .id = REPLY_SCAN_ABORT_CMD,
1157 .meta.flags = CMD_WANT_SKB,
1158 };
1159
1160 /* If there isn't a scan actively going on in the hardware
1161 * then we are in between scan bands and not actually
1162 * actively scanning, so don't send the abort command */
1163 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1164 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1165 return 0;
1166 }
1167
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001168 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001169 if (rc) {
1170 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1171 return rc;
1172 }
1173
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001174 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001175 if (res->u.status != CAN_ABORT_STATUS) {
1176 /* The scan abort will return 1 for success or
1177 * 2 for "failure". A failure condition can be
1178 * due to simply not being in an active scan which
1179 * can occur if we send the scan abort before we
1180 * the microcode has notified us that a scan is
1181 * completed. */
1182 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1183 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1184 clear_bit(STATUS_SCAN_HW, &priv->status);
1185 }
1186
1187 dev_kfree_skb_any(cmd.meta.u.skb);
1188
1189 return rc;
1190}
1191
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001192static int iwl3945_card_state_sync_callback(struct iwl3945_priv *priv,
1193 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001194 struct sk_buff *skb)
1195{
1196 return 1;
1197}
1198
1199/*
1200 * CARD_STATE_CMD
1201 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001202 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -07001203 *
1204 * When in the 'enable' state the card operates as normal.
1205 * When in the 'disable' state, the card enters into a low power mode.
1206 * When in the 'halt' state, the card is shut down and must be fully
1207 * restarted to come back on.
1208 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001209static int iwl3945_send_card_state(struct iwl3945_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -07001210{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001211 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001212 .id = REPLY_CARD_STATE_CMD,
1213 .len = sizeof(u32),
1214 .data = &flags,
1215 .meta.flags = meta_flag,
1216 };
1217
1218 if (meta_flag & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001219 cmd.meta.u.callback = iwl3945_card_state_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001220
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001221 return iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001222}
1223
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001224static int iwl3945_add_sta_sync_callback(struct iwl3945_priv *priv,
1225 struct iwl3945_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001226{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001227 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001228
1229 if (!skb) {
1230 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1231 return 1;
1232 }
1233
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001234 res = (struct iwl_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001235 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1236 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1237 res->hdr.flags);
1238 return 1;
1239 }
1240
1241 switch (res->u.add_sta.status) {
1242 case ADD_STA_SUCCESS_MSK:
1243 break;
1244 default:
1245 break;
1246 }
1247
1248 /* We didn't cache the SKB; let the caller free it */
1249 return 1;
1250}
1251
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001252int iwl3945_send_add_station(struct iwl3945_priv *priv,
1253 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001254{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001255 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001256 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001257 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001258 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001259 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001260 .meta.flags = flags,
1261 .data = sta,
1262 };
1263
1264 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001265 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001266 else
1267 cmd.meta.flags |= CMD_WANT_SKB;
1268
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001269 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001270
1271 if (rc || (flags & CMD_ASYNC))
1272 return rc;
1273
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001274 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001275 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1276 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1277 res->hdr.flags);
1278 rc = -EIO;
1279 }
1280
1281 if (rc == 0) {
1282 switch (res->u.add_sta.status) {
1283 case ADD_STA_SUCCESS_MSK:
1284 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1285 break;
1286 default:
1287 rc = -EIO;
1288 IWL_WARNING("REPLY_ADD_STA failed\n");
1289 break;
1290 }
1291 }
1292
1293 priv->alloc_rxb_skb--;
1294 dev_kfree_skb_any(cmd.meta.u.skb);
1295
1296 return rc;
1297}
1298
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001299static int iwl3945_update_sta_key_info(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001300 struct ieee80211_key_conf *keyconf,
1301 u8 sta_id)
1302{
1303 unsigned long flags;
1304 __le16 key_flags = 0;
1305
1306 switch (keyconf->alg) {
1307 case ALG_CCMP:
1308 key_flags |= STA_KEY_FLG_CCMP;
1309 key_flags |= cpu_to_le16(
1310 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1311 key_flags &= ~STA_KEY_FLG_INVALID;
1312 break;
1313 case ALG_TKIP:
1314 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001315 default:
1316 return -EINVAL;
1317 }
1318 spin_lock_irqsave(&priv->sta_lock, flags);
1319 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1320 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
1321 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1322 keyconf->keylen);
1323
1324 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1325 keyconf->keylen);
1326 priv->stations[sta_id].sta.key.key_flags = key_flags;
1327 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1328 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1329
1330 spin_unlock_irqrestore(&priv->sta_lock, flags);
1331
1332 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001333 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001334 return 0;
1335}
1336
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001337static int iwl3945_clear_sta_key_info(struct iwl3945_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001338{
1339 unsigned long flags;
1340
1341 spin_lock_irqsave(&priv->sta_lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001342 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
Tomas Winkler4c897252008-12-19 10:37:05 +08001343 memset(&priv->stations[sta_id].sta.key, 0,
1344 sizeof(struct iwl4965_keyinfo));
Zhu Yib481de92007-09-25 17:54:57 -07001345 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1346 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1347 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1348 spin_unlock_irqrestore(&priv->sta_lock, flags);
1349
1350 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001351 iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001352 return 0;
1353}
1354
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001355static void iwl3945_clear_free_frames(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001356{
1357 struct list_head *element;
1358
1359 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1360 priv->frames_count);
1361
1362 while (!list_empty(&priv->free_frames)) {
1363 element = priv->free_frames.next;
1364 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001365 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001366 priv->frames_count--;
1367 }
1368
1369 if (priv->frames_count) {
1370 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1371 priv->frames_count);
1372 priv->frames_count = 0;
1373 }
1374}
1375
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001376static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001377{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001378 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001379 struct list_head *element;
1380 if (list_empty(&priv->free_frames)) {
1381 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1382 if (!frame) {
1383 IWL_ERROR("Could not allocate frame!\n");
1384 return NULL;
1385 }
1386
1387 priv->frames_count++;
1388 return frame;
1389 }
1390
1391 element = priv->free_frames.next;
1392 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001393 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001394}
1395
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001396static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001397{
1398 memset(frame, 0, sizeof(*frame));
1399 list_add(&frame->list, &priv->free_frames);
1400}
1401
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001402unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001403 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +02001404 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001405{
1406
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001407 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001408 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1409 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001410 return 0;
1411
1412 if (priv->ibss_beacon->len > left)
1413 return 0;
1414
1415 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1416
1417 return priv->ibss_beacon->len;
1418}
1419
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001420static u8 iwl3945_rate_get_lowest_plcp(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001421{
1422 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001423 int rate_mask;
1424
1425 /* Set rate mask*/
1426 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001427 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001428 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001429 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001430
1431 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001432 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001433 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001434 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001435 }
1436
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001437 /* No valid rate was found. Assign the lowest one */
1438 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
1439 return IWL_RATE_1M_PLCP;
1440 else
1441 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001442}
1443
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001444static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001445{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001446 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001447 unsigned int frame_size;
1448 int rc;
1449 u8 rate;
1450
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001451 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001452
1453 if (!frame) {
1454 IWL_ERROR("Could not obtain free frame buffer for beacon "
1455 "command.\n");
1456 return -ENOMEM;
1457 }
1458
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001459 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001460
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001461 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001462
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001463 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001464 &frame->u.cmd[0]);
1465
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001466 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001467
1468 return rc;
1469}
1470
1471/******************************************************************************
1472 *
1473 * EEPROM related functions
1474 *
1475 ******************************************************************************/
1476
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001477static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001478{
1479 memcpy(mac, priv->eeprom.mac_address, 6);
1480}
1481
Reinette Chatre74a3a252008-01-23 10:15:19 -08001482/*
1483 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1484 * embedded controller) as EEPROM reader; each read is a series of pulses
1485 * to/from the EEPROM chip, not a single event, so even reads could conflict
1486 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1487 * simply claims ownership, which should be safe when this function is called
1488 * (i.e. before loading uCode!).
1489 */
1490static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv)
1491{
1492 _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1493 return 0;
1494}
1495
Zhu Yib481de92007-09-25 17:54:57 -07001496/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001497 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001498 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001499 * Load the EEPROM contents from adapter into priv->eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001500 *
1501 * NOTE: This routine uses the non-debug IO access functions.
1502 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001503int iwl3945_eeprom_init(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001504{
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001505 u16 *e = (u16 *)&priv->eeprom;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001506 u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP);
Zhu Yib481de92007-09-25 17:54:57 -07001507 int sz = sizeof(priv->eeprom);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001508 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001509 u16 addr;
1510
1511 /* The EEPROM structure has several padding buffers within it
1512 * and when adding new EEPROM maps is subject to programmer errors
1513 * which may be very difficult to identify without explicitly
1514 * checking the resulting size of the eeprom map. */
1515 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1516
1517 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001518 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001519 return -ENOENT;
1520 }
1521
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001522 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001523 ret = iwl3945_eeprom_acquire_semaphore(priv);
1524 if (ret < 0) {
Ian Schram91e17472007-10-25 17:15:23 +08001525 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001526 return -ENOENT;
1527 }
1528
1529 /* eeprom is an array of 16bit values */
1530 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001531 u32 r;
1532
1533 _iwl3945_write32(priv, CSR_EEPROM_REG,
1534 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001535 _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001536 ret = iwl3945_poll_direct_bit(priv, CSR_EEPROM_REG,
1537 CSR_EEPROM_REG_READ_VALID_MSK,
1538 IWL_EEPROM_ACCESS_TIMEOUT);
1539 if (ret < 0) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001540 IWL_ERROR("Time out reading EEPROM[%d]\n", addr);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001541 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001542 }
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001543
1544 r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG);
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001545 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001546 }
1547
1548 return 0;
1549}
1550
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001551static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001552{
1553 if (priv->hw_setting.shared_virt)
1554 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001555 sizeof(struct iwl3945_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001556 priv->hw_setting.shared_virt,
1557 priv->hw_setting.shared_phys);
1558}
1559
1560/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001561 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001562 *
1563 * return : set the bit for each supported rate insert in ie
1564 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001565static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001566 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001567{
1568 u16 ret_rates = 0, bit;
1569 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001570 u8 *cnt = ie;
1571 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001572
1573 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1574 if (bit & supported_rate) {
1575 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001576 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001577 ((bit & basic_rate) ? 0x80 : 0x00);
1578 (*cnt)++;
1579 (*left)--;
1580 if ((*left <= 0) ||
1581 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001582 break;
1583 }
1584 }
1585
1586 return ret_rates;
1587}
1588
1589/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001590 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001591 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001592static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001593 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001594 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001595{
1596 int len = 0;
1597 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001598 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001599
1600 /* Make sure there is enough space for the probe request,
1601 * two mandatory IEs and the data */
1602 left -= 24;
1603 if (left < 0)
1604 return 0;
1605 len += 24;
1606
1607 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001608 memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001609 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001610 memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001611 frame->seq_ctrl = 0;
1612
1613 /* fill in our indirect SSID IE */
1614 /* ...next IE... */
1615
1616 left -= 2;
1617 if (left < 0)
1618 return 0;
1619 len += 2;
1620 pos = &(frame->u.probe_req.variable[0]);
1621 *pos++ = WLAN_EID_SSID;
1622 *pos++ = 0;
1623
Zhu Yib481de92007-09-25 17:54:57 -07001624 /* fill in supported rate */
1625 /* ...next IE... */
1626 left -= 2;
1627 if (left < 0)
1628 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001629
Zhu Yib481de92007-09-25 17:54:57 -07001630 /* ... fill it in... */
1631 *pos++ = WLAN_EID_SUPP_RATES;
1632 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001633
1634 priv->active_rate = priv->rates_mask;
1635 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001636 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1637
Tomas Winklerc7c46672007-10-18 02:04:15 +02001638 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001639 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001640 priv->active_rate_basic, &left);
1641 active_rates &= ~ret_rates;
1642
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001643 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001644 priv->active_rate_basic, &left);
1645 active_rates &= ~ret_rates;
1646
Zhu Yib481de92007-09-25 17:54:57 -07001647 len += 2 + *pos;
1648 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001649 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001650 goto fill_end;
1651
1652 /* fill in supported extended rate */
1653 /* ...next IE... */
1654 left -= 2;
1655 if (left < 0)
1656 return 0;
1657 /* ... fill it in... */
1658 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1659 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001660 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001661 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001662 if (*pos > 0)
1663 len += 2 + *pos;
1664
1665 fill_end:
1666 return (u16)len;
1667}
1668
1669/*
1670 * QoS support
1671*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001672static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv,
Tomas Winkler4c897252008-12-19 10:37:05 +08001673 struct iwl_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001674{
1675
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001676 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Tomas Winkler4c897252008-12-19 10:37:05 +08001677 sizeof(struct iwl_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001678}
1679
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001680static void iwl3945_reset_qos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001681{
1682 u16 cw_min = 15;
1683 u16 cw_max = 1023;
1684 u8 aifs = 2;
1685 u8 is_legacy = 0;
1686 unsigned long flags;
1687 int i;
1688
1689 spin_lock_irqsave(&priv->lock, flags);
1690 priv->qos_data.qos_active = 0;
1691
Winkler, Tomas6d1ef1a2008-12-09 11:29:00 -08001692 /* QoS always active in AP and ADHOC mode
1693 * In STA mode wait for association
1694 */
1695 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
1696 priv->iw_mode == NL80211_IFTYPE_AP)
1697 priv->qos_data.qos_active = 1;
1698 else
1699 priv->qos_data.qos_active = 0;
1700
1701
1702 /* check for legacy mode */
1703 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC &&
1704 (priv->active_rate & IWL_OFDM_RATES_MASK) == 0) ||
1705 (priv->iw_mode == NL80211_IFTYPE_STATION &&
1706 (priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK) == 0)) {
Zhu Yib481de92007-09-25 17:54:57 -07001707 cw_min = 31;
1708 is_legacy = 1;
1709 }
1710
1711 if (priv->qos_data.qos_active)
1712 aifs = 3;
1713
1714 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1715 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1716 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1717 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1718 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1719
1720 if (priv->qos_data.qos_active) {
1721 i = 1;
1722 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1723 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1724 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1725 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1726 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1727
1728 i = 2;
1729 priv->qos_data.def_qos_parm.ac[i].cw_min =
1730 cpu_to_le16((cw_min + 1) / 2 - 1);
1731 priv->qos_data.def_qos_parm.ac[i].cw_max =
1732 cpu_to_le16(cw_max);
1733 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1734 if (is_legacy)
1735 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1736 cpu_to_le16(6016);
1737 else
1738 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1739 cpu_to_le16(3008);
1740 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1741
1742 i = 3;
1743 priv->qos_data.def_qos_parm.ac[i].cw_min =
1744 cpu_to_le16((cw_min + 1) / 4 - 1);
1745 priv->qos_data.def_qos_parm.ac[i].cw_max =
1746 cpu_to_le16((cw_max + 1) / 2 - 1);
1747 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1748 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1749 if (is_legacy)
1750 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1751 cpu_to_le16(3264);
1752 else
1753 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1754 cpu_to_le16(1504);
1755 } else {
1756 for (i = 1; i < 4; i++) {
1757 priv->qos_data.def_qos_parm.ac[i].cw_min =
1758 cpu_to_le16(cw_min);
1759 priv->qos_data.def_qos_parm.ac[i].cw_max =
1760 cpu_to_le16(cw_max);
1761 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1762 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1763 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1764 }
1765 }
1766 IWL_DEBUG_QOS("set QoS to default \n");
1767
1768 spin_unlock_irqrestore(&priv->lock, flags);
1769}
1770
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001771static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001772{
1773 unsigned long flags;
1774
Zhu Yib481de92007-09-25 17:54:57 -07001775 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1776 return;
1777
Zhu Yib481de92007-09-25 17:54:57 -07001778 spin_lock_irqsave(&priv->lock, flags);
1779 priv->qos_data.def_qos_parm.qos_flags = 0;
1780
1781 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1782 !priv->qos_data.qos_cap.q_AP.txop_request)
1783 priv->qos_data.def_qos_parm.qos_flags |=
1784 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1785
1786 if (priv->qos_data.qos_active)
1787 priv->qos_data.def_qos_parm.qos_flags |=
1788 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1789
1790 spin_unlock_irqrestore(&priv->lock, flags);
1791
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001792 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001793 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001794 priv->qos_data.qos_active);
1795
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001796 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001797 &(priv->qos_data.def_qos_parm));
1798 }
1799}
1800
Zhu Yib481de92007-09-25 17:54:57 -07001801/*
1802 * Power management (not Tx power!) functions
1803 */
1804#define MSEC_TO_USEC 1024
1805
Tomas Winkler600c0e12008-12-19 10:37:04 +08001806
1807#define NOSLP __constant_cpu_to_le16(0), 0, 0
1808#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -07001809#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1810#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1811 __constant_cpu_to_le32(X1), \
1812 __constant_cpu_to_le32(X2), \
1813 __constant_cpu_to_le32(X3), \
1814 __constant_cpu_to_le32(X4)}
1815
Zhu Yib481de92007-09-25 17:54:57 -07001816/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001817/* for TIM 0-10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001818static struct iwl_power_vec_entry range_0[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001819 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1820 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1821 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1822 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1823 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1824 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1825};
1826
Tomas Winklera96a27f2008-10-23 23:48:56 -07001827/* for TIM > 10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001828static struct iwl_power_vec_entry range_1[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001829 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1830 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1831 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1832 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1833 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1834 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1835 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1836 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1837 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1838 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1839};
1840
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001841int iwl3945_power_init_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001842{
1843 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001844 struct iwl3945_power_mgr *pow_data;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001845 int size = sizeof(struct iwl_power_vec_entry) * IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001846 u16 pci_pm;
1847
1848 IWL_DEBUG_POWER("Initialize power \n");
1849
1850 pow_data = &(priv->power_data);
1851
1852 memset(pow_data, 0, sizeof(*pow_data));
1853
1854 pow_data->active_index = IWL_POWER_RANGE_0;
1855 pow_data->dtim_val = 0xffff;
1856
1857 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1858 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1859
1860 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1861 if (rc != 0)
1862 return 0;
1863 else {
Tomas Winkler600c0e12008-12-19 10:37:04 +08001864 struct iwl_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001865
1866 IWL_DEBUG_POWER("adjust power command flags\n");
1867
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001868 for (i = 0; i < IWL39_POWER_AC; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07001869 cmd = &pow_data->pwr_range_0[i].cmd;
1870
1871 if (pci_pm & 0x1)
1872 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1873 else
1874 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1875 }
1876 }
1877 return rc;
1878}
1879
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001880static int iwl3945_update_power_cmd(struct iwl3945_priv *priv,
Tomas Winkler600c0e12008-12-19 10:37:04 +08001881 struct iwl_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001882{
1883 int rc = 0, i;
1884 u8 skip;
1885 u32 max_sleep = 0;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001886 struct iwl_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001887 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001888 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001889
1890 if (mode > IWL_POWER_INDEX_5) {
1891 IWL_DEBUG_POWER("Error invalid power mode \n");
1892 return -1;
1893 }
1894 pow_data = &(priv->power_data);
1895
1896 if (pow_data->active_index == IWL_POWER_RANGE_0)
1897 range = &pow_data->pwr_range_0[0];
1898 else
1899 range = &pow_data->pwr_range_1[1];
1900
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001901 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001902
1903#ifdef IWL_MAC80211_DISABLE
1904 if (priv->assoc_network != NULL) {
1905 unsigned long flags;
1906
1907 period = priv->assoc_network->tim.tim_period;
1908 }
1909#endif /*IWL_MAC80211_DISABLE */
1910 skip = range[mode].no_dtim;
1911
1912 if (period == 0) {
1913 period = 1;
1914 skip = 0;
1915 }
1916
1917 if (skip == 0) {
1918 max_sleep = period;
1919 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1920 } else {
1921 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1922 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1923 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1924 }
1925
1926 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1927 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1928 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1929 }
1930
1931 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1932 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1933 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1934 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1935 le32_to_cpu(cmd->sleep_interval[0]),
1936 le32_to_cpu(cmd->sleep_interval[1]),
1937 le32_to_cpu(cmd->sleep_interval[2]),
1938 le32_to_cpu(cmd->sleep_interval[3]),
1939 le32_to_cpu(cmd->sleep_interval[4]));
1940
1941 return rc;
1942}
1943
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001944static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001945{
John W. Linville9a62f732007-11-15 16:27:36 -05001946 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001947 int rc;
Tomas Winkler600c0e12008-12-19 10:37:04 +08001948 struct iwl_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001949
1950 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001951 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001952 * else user level */
1953 switch (mode) {
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001954 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07001955 final_mode = IWL_POWER_INDEX_3;
1956 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001957 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07001958 final_mode = IWL_POWER_MODE_CAM;
1959 break;
1960 default:
1961 final_mode = mode;
1962 break;
1963 }
1964
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001965 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001966
Tomas Winkler600c0e12008-12-19 10:37:04 +08001967 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
1968 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD,
1969 sizeof(struct iwl3945_powertable_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);
Tomas Winkler28afaf92008-12-19 10:37:06 +08002058 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07002059 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2060
Tomas Winkler28afaf92008-12-19 10:37:06 +08002061 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07002062
2063 beacon_int = priv->beacon_int;
2064 spin_unlock_irqrestore(&priv->lock, flags);
2065
Johannes Berg05c914f2008-09-11 00:01:58 +02002066 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07002067 if (beacon_int == 0) {
2068 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2069 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2070 } else {
2071 priv->rxon_timing.beacon_interval =
2072 cpu_to_le16(beacon_int);
2073 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002074 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07002075 le16_to_cpu(priv->rxon_timing.beacon_interval));
2076 }
2077
2078 priv->rxon_timing.atim_window = 0;
2079 } else {
2080 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002081 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07002082 /* TODO: we need to get atim_window from upper stack
2083 * for now we set to 0 */
2084 priv->rxon_timing.atim_window = 0;
2085 }
2086
2087 interval_tm_unit =
2088 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2089 result = do_div(tsf, interval_tm_unit);
2090 priv->rxon_timing.beacon_init_val =
2091 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2092
2093 IWL_DEBUG_ASSOC
2094 ("beacon interval %d beacon timer %d beacon tim %d\n",
2095 le16_to_cpu(priv->rxon_timing.beacon_interval),
2096 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2097 le16_to_cpu(priv->rxon_timing.atim_window));
2098}
2099
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002100static int iwl3945_scan_initiate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002101{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002102 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002103 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2104 return -EIO;
2105 }
2106
2107 if (test_bit(STATUS_SCANNING, &priv->status)) {
2108 IWL_DEBUG_SCAN("Scan already in progress.\n");
2109 return -EAGAIN;
2110 }
2111
2112 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2113 IWL_DEBUG_SCAN("Scan request while abort pending. "
2114 "Queuing.\n");
2115 return -EAGAIN;
2116 }
2117
2118 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002119 if (priv->cfg->sku & IWL_SKU_G)
2120 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
2121 if (priv->cfg->sku & IWL_SKU_A)
2122 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002123 set_bit(STATUS_SCANNING, &priv->status);
2124 priv->scan_start = jiffies;
2125 priv->scan_pass_start = priv->scan_start;
2126
2127 queue_work(priv->workqueue, &priv->request_scan);
2128
2129 return 0;
2130}
2131
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002132static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07002133{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002134 struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002135
2136 if (hw_decrypt)
2137 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2138 else
2139 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2140
2141 return 0;
2142}
2143
Johannes Berg8318d782008-01-24 19:38:38 +01002144static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv,
2145 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002146{
Johannes Berg8318d782008-01-24 19:38:38 +01002147 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002148 priv->staging_rxon.flags &=
2149 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2150 | RXON_FLG_CCK_MSK);
2151 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2152 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002153 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002154 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2155 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2156 else
2157 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2158
Johannes Berg05c914f2008-09-11 00:01:58 +02002159 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002160 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2161
2162 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2163 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2164 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2165 }
2166}
2167
2168/*
Ian Schram01ebd062007-10-25 17:15:22 +08002169 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002170 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002171static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv,
2172 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002173{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002174 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002175
2176 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2177
Zhu, Yi60294de2008-10-29 14:05:45 -07002178 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002179 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -07002180 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2181 break;
2182
Johannes Berg05c914f2008-09-11 00:01:58 +02002183 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002184 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2185 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2186 break;
2187
Johannes Berg05c914f2008-09-11 00:01:58 +02002188 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002189 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2190 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2191 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2192 RXON_FILTER_ACCEPT_GRP_MSK;
2193 break;
2194
Johannes Berg05c914f2008-09-11 00:01:58 +02002195 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -07002196 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2197 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2198 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2199 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002200 default:
Zhu, Yi60294de2008-10-29 14:05:45 -07002201 IWL_ERROR("Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07002202 break;
Zhu Yib481de92007-09-25 17:54:57 -07002203 }
2204
2205#if 0
2206 /* TODO: Figure out when short_preamble would be set and cache from
2207 * that */
2208 if (!hw_to_local(priv->hw)->short_preamble)
2209 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2210 else
2211 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2212#endif
2213
Johannes Berg8318d782008-01-24 19:38:38 +01002214 ch_info = iwl3945_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +08002215 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002216
2217 if (!ch_info)
2218 ch_info = &priv->channel_info[0];
2219
2220 /*
2221 * in some case A channels are all non IBSS
2222 * in this case force B/G channel
2223 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002224 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07002225 ch_info = &priv->channel_info[0];
2226
2227 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2228 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002229 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002230 else
Johannes Berg8318d782008-01-24 19:38:38 +01002231 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002232
Johannes Berg8318d782008-01-24 19:38:38 +01002233 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002234
2235 priv->staging_rxon.ofdm_basic_rates =
2236 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2237 priv->staging_rxon.cck_basic_rates =
2238 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2239}
2240
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002241static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002242{
Johannes Berg05c914f2008-09-11 00:01:58 +02002243 if (mode == NL80211_IFTYPE_ADHOC) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002244 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002245
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002246 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002247 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002248 le16_to_cpu(priv->staging_rxon.channel));
2249
2250 if (!ch_info || !is_channel_ibss(ch_info)) {
2251 IWL_ERROR("channel %d not IBSS channel\n",
2252 le16_to_cpu(priv->staging_rxon.channel));
2253 return -EINVAL;
2254 }
2255 }
2256
Zhu, Yi60294de2008-10-29 14:05:45 -07002257 iwl3945_connection_init_rx_config(priv, mode);
Zhu Yib481de92007-09-25 17:54:57 -07002258 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2259
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002260 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002261
Tomas Winklera96a27f2008-10-23 23:48:56 -07002262 /* don't commit rxon if rf-kill is on*/
Mohamed Abbasfde35712007-11-29 11:10:15 +08002263 if (!iwl3945_is_ready_rf(priv))
2264 return -EAGAIN;
2265
2266 cancel_delayed_work(&priv->scan_check);
2267 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2268 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2269 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2270 return -EAGAIN;
2271 }
2272
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002273 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002274
2275 return 0;
2276}
2277
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002278static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002279 struct ieee80211_tx_info *info,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002280 struct iwl3945_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002281 struct sk_buff *skb_frag,
2282 int last_frag)
2283{
Ivo van Doorn1c014422008-04-17 19:41:02 +02002284 struct iwl3945_hw_key *keyinfo =
Johannes Berge039fa42008-05-15 12:55:29 +02002285 &priv->stations[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002286
2287 switch (keyinfo->alg) {
2288 case ALG_CCMP:
2289 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2290 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002291 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002292 break;
2293
2294 case ALG_TKIP:
2295#if 0
2296 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2297
2298 if (last_frag)
2299 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2300 8);
2301 else
2302 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2303#endif
2304 break;
2305
2306 case ALG_WEP:
2307 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002308 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002309
2310 if (keyinfo->keylen == 13)
2311 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2312
2313 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2314
2315 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002316 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002317 break;
2318
Zhu Yib481de92007-09-25 17:54:57 -07002319 default:
2320 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2321 break;
2322 }
2323}
2324
2325/*
2326 * handle build REPLY_TX command notification.
2327 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002328static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2329 struct iwl3945_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002330 struct ieee80211_tx_info *info,
Zhu Yib481de92007-09-25 17:54:57 -07002331 struct ieee80211_hdr *hdr,
2332 int is_unicast, u8 std_id)
2333{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002334 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002335 __le32 tx_flags = cmd->cmd.tx.tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +02002336 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002337
2338 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002339 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002340 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002341 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002342 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002343 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002344 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2345 tx_flags |= TX_CMD_FLG_TSF_MSK;
2346 } else {
2347 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2348 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2349 }
2350
2351 cmd->cmd.tx.sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002352 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002353 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2354
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002355 if (ieee80211_is_data_qos(fc)) {
2356 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002357 cmd->cmd.tx.tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002358 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002359 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002360 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002361 }
Zhu Yib481de92007-09-25 17:54:57 -07002362
Johannes Berge6a98542008-10-21 12:40:02 +02002363 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002364 tx_flags |= TX_CMD_FLG_RTS_MSK;
2365 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002366 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002367 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2368 tx_flags |= TX_CMD_FLG_CTS_MSK;
2369 }
2370
2371 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2372 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2373
2374 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002375 if (ieee80211_is_mgmt(fc)) {
2376 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Ian Schrambc434dd2007-10-25 17:15:29 +08002377 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002378 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002379 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002380 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002381 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002382#ifdef CONFIG_IWL3945_LEDS
2383 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2384#endif
2385 }
Zhu Yib481de92007-09-25 17:54:57 -07002386
2387 cmd->cmd.tx.driver_txop = 0;
2388 cmd->cmd.tx.tx_flags = tx_flags;
2389 cmd->cmd.tx.next_frame_len = 0;
2390}
2391
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002392/**
2393 * iwl3945_get_sta_id - Find station's index within station table
2394 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002395static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002396{
2397 int sta_id;
2398 u16 fc = le16_to_cpu(hdr->frame_control);
2399
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002400 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002401 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2402 is_multicast_ether_addr(hdr->addr1))
2403 return priv->hw_setting.bcast_sta_id;
2404
2405 switch (priv->iw_mode) {
2406
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002407 /* If we are a client station in a BSS network, use the special
2408 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002409 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002410 return IWL_AP_ID;
2411
2412 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002413 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002414 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002415 if (sta_id != IWL_INVALID_STATION)
2416 return sta_id;
2417 return priv->hw_setting.bcast_sta_id;
2418
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002419 /* If this frame is going out to an IBSS network, find the station,
2420 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002421 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002422 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002423 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002424 if (sta_id != IWL_INVALID_STATION)
2425 return sta_id;
2426
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002427 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002428
2429 if (sta_id != IWL_INVALID_STATION)
2430 return sta_id;
2431
Johannes Berge1749612008-10-27 15:59:26 -07002432 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002433 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002434 hdr->addr1);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002435 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002436 return priv->hw_setting.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002437 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002438 /* If we are in monitor mode, use BCAST. This is required for
2439 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002440 case NL80211_IFTYPE_MONITOR:
Stefanik Gábor914233d2008-06-30 17:23:30 +08002441 return priv->hw_setting.bcast_sta_id;
2442
Zhu Yib481de92007-09-25 17:54:57 -07002443 default:
Jiri Slaby6f147922008-08-11 23:49:41 +02002444 IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002445 return priv->hw_setting.bcast_sta_id;
2446 }
2447}
2448
2449/*
2450 * start REPLY_TX command process
2451 */
Johannes Berge039fa42008-05-15 12:55:29 +02002452static int iwl3945_tx_skb(struct iwl3945_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002453{
2454 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002455 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002456 struct iwl3945_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002457 u32 *control_flags;
Johannes Berge2530082008-05-17 00:57:14 +02002458 int txq_id = skb_get_queue_mapping(skb);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002459 struct iwl3945_tx_queue *txq = NULL;
2460 struct iwl3945_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002461 dma_addr_t phys_addr;
2462 dma_addr_t txcmd_phys;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002463 struct iwl3945_cmd *out_cmd = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002464 u16 len, idx, len_org, hdr_len;
2465 u8 id;
2466 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002467 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002468 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002469 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002470 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002471 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002472 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002473 unsigned long flags;
2474 int rc;
2475
2476 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002477 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002478 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2479 goto drop_unlock;
2480 }
2481
Johannes Berge039fa42008-05-15 12:55:29 +02002482 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002483 IWL_ERROR("ERROR: No TX rate available.\n");
2484 goto drop_unlock;
2485 }
2486
2487 unicast = !is_multicast_ether_addr(hdr->addr1);
2488 id = 0;
2489
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002490 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002491
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002492#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002493 if (ieee80211_is_auth(fc))
2494 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002495 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002496 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002497 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002498 IWL_DEBUG_TX("Sending REASSOC frame\n");
2499#endif
2500
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002501 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002502 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002503 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002504 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002505 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002506 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002507 goto drop_unlock;
2508 }
2509
2510 spin_unlock_irqrestore(&priv->lock, flags);
2511
Harvey Harrison7294ec92008-07-15 18:43:59 -07002512 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002513
2514 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002515 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002516 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002517 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2518 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002519 goto drop;
2520 }
2521
2522 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2523
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002524 if (ieee80211_is_data_qos(fc)) {
2525 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002526 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002527 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2528 IEEE80211_SCTL_SEQ;
2529 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2530 (hdr->seq_ctrl &
2531 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2532 seq_number += 0x10;
2533 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002534
2535 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002536 txq = &priv->txq[txq_id];
2537 q = &txq->q;
2538
2539 spin_lock_irqsave(&priv->lock, flags);
2540
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002541 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002542 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002543 memset(tfd, 0, sizeof(*tfd));
2544 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002545 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002546
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002547 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002548 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002549 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002550
2551 /* Init first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002552 out_cmd = &txq->cmd[idx];
2553 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2554 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002555
2556 /*
2557 * Set up the Tx-command (not MAC!) header.
2558 * Store the chosen Tx queue and TFD index within the sequence field;
2559 * after Tx, uCode's Tx response will return this value so driver can
2560 * locate the frame within the tx queue and do post-tx processing.
2561 */
Zhu Yib481de92007-09-25 17:54:57 -07002562 out_cmd->hdr.cmd = REPLY_TX;
2563 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002564 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002565
2566 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002567 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2568
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002569 /*
2570 * Use the first empty entry in this queue's command buffer array
2571 * to contain the Tx command and MAC header concatenated together
2572 * (payload data will be in another buffer).
2573 * Size of this varies, due to varying MAC header length.
2574 * If end is not dword aligned, we'll have 2 extra bytes at the end
2575 * of the MAC header (device reads on dword boundaries).
2576 * We'll tell device about this padding later.
2577 */
Zhu Yib481de92007-09-25 17:54:57 -07002578 len = priv->hw_setting.tx_cmd_len +
Tomas Winkler4c897252008-12-19 10:37:05 +08002579 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002580
2581 len_org = len;
2582 len = (len + 3) & ~3;
2583
2584 if (len_org != len)
2585 len_org = 1;
2586 else
2587 len_org = 0;
2588
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002589 /* Physical address of this Tx command's header (not MAC header!),
2590 * within command buffer array. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002591 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2592 offsetof(struct iwl3945_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002593
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002594 /* Add buffer containing Tx command and MAC(!) header to TFD's
2595 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002596 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002597
Johannes Bergd0f09802008-07-29 11:32:07 +02002598 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002599 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002600
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002601 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2602 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002603 len = skb->len - hdr_len;
2604 if (len) {
2605 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2606 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002607 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002608 }
2609
Zhu Yib481de92007-09-25 17:54:57 -07002610 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002611 /* If there is no payload, then we use only one Tx buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002612 *control_flags = TFD_CTL_COUNT_SET(1);
2613 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002614 /* Else use 2 buffers.
2615 * Tell 3945 about any padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002616 *control_flags = TFD_CTL_COUNT_SET(2) |
2617 TFD_CTL_PAD_SET(U32_PAD(len));
2618
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002619 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002620 len = (u16)skb->len;
2621 out_cmd->cmd.tx.len = cpu_to_le16(len);
2622
2623 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02002624 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002625
2626 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002627 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002628
2629 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2630 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2631
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002632 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002633 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002634 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07002635 priv->stations[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002636 } else {
2637 wait_write_ptr = 1;
2638 txq->need_update = 0;
2639 }
2640
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002641 iwl_print_hex_dump(priv, IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002642 sizeof(out_cmd->cmd.tx));
2643
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002644 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002645 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002646
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002647 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002648 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002649 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002650 spin_unlock_irqrestore(&priv->lock, flags);
2651
2652 if (rc)
2653 return rc;
2654
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002655 if ((iwl3945_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002656 && priv->mac80211_registered) {
2657 if (wait_write_ptr) {
2658 spin_lock_irqsave(&priv->lock, flags);
2659 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002660 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002661 spin_unlock_irqrestore(&priv->lock, flags);
2662 }
2663
Johannes Berge2530082008-05-17 00:57:14 +02002664 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002665 }
2666
2667 return 0;
2668
2669drop_unlock:
2670 spin_unlock_irqrestore(&priv->lock, flags);
2671drop:
2672 return -1;
2673}
2674
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002675static void iwl3945_set_rate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002676{
Johannes Berg8318d782008-01-24 19:38:38 +01002677 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002678 struct ieee80211_rate *rate;
2679 int i;
2680
Johannes Berg8318d782008-01-24 19:38:38 +01002681 sband = iwl3945_get_band(priv, priv->band);
2682 if (!sband) {
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002683 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2684 return;
2685 }
Zhu Yib481de92007-09-25 17:54:57 -07002686
2687 priv->active_rate = 0;
2688 priv->active_rate_basic = 0;
2689
Johannes Berg8318d782008-01-24 19:38:38 +01002690 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2691 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002692
Johannes Berg8318d782008-01-24 19:38:38 +01002693 for (i = 0; i < sband->n_bitrates; i++) {
2694 rate = &sband->bitrates[i];
2695 if ((rate->hw_value < IWL_RATE_COUNT) &&
2696 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2697 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2698 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2699 priv->active_rate |= (1 << rate->hw_value);
2700 }
Zhu Yib481de92007-09-25 17:54:57 -07002701 }
2702
2703 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2704 priv->active_rate, priv->active_rate_basic);
2705
2706 /*
2707 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2708 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2709 * OFDM
2710 */
2711 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2712 priv->staging_rxon.cck_basic_rates =
2713 ((priv->active_rate_basic &
2714 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2715 else
2716 priv->staging_rxon.cck_basic_rates =
2717 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2718
2719 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2720 priv->staging_rxon.ofdm_basic_rates =
2721 ((priv->active_rate_basic &
2722 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2723 IWL_FIRST_OFDM_RATE) & 0xFF;
2724 else
2725 priv->staging_rxon.ofdm_basic_rates =
2726 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2727}
2728
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002729static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002730{
2731 unsigned long flags;
2732
2733 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2734 return;
2735
2736 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2737 disable_radio ? "OFF" : "ON");
2738
2739 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002740 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002741 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002742 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002743 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002744 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002745 CSR_UCODE_SW_BIT_RFKILL);
2746 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002747 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002748 set_bit(STATUS_RF_KILL_SW, &priv->status);
2749 }
2750 return;
2751 }
2752
2753 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002754 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002755
2756 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2757 spin_unlock_irqrestore(&priv->lock, flags);
2758
2759 /* wake up ucode */
2760 msleep(10);
2761
2762 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002763 iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
2764 if (!iwl3945_grab_nic_access(priv))
2765 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002766 spin_unlock_irqrestore(&priv->lock, flags);
2767
2768 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2769 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2770 "disabled by HW switch\n");
2771 return;
2772 }
2773
Zhu Yi808e72a2008-06-12 09:47:17 +08002774 if (priv->is_open)
2775 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002776 return;
2777}
2778
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002779void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002780 u32 decrypt_res, struct ieee80211_rx_status *stats)
2781{
2782 u16 fc =
2783 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2784
2785 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2786 return;
2787
2788 if (!(fc & IEEE80211_FCTL_PROTECTED))
2789 return;
2790
2791 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2792 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2793 case RX_RES_STATUS_SEC_TYPE_TKIP:
2794 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2795 RX_RES_STATUS_BAD_ICV_MIC)
2796 stats->flag |= RX_FLAG_MMIC_ERROR;
2797 case RX_RES_STATUS_SEC_TYPE_WEP:
2798 case RX_RES_STATUS_SEC_TYPE_CCMP:
2799 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2800 RX_RES_STATUS_DECRYPT_OK) {
2801 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2802 stats->flag |= RX_FLAG_DECRYPTED;
2803 }
2804 break;
2805
2806 default:
2807 break;
2808 }
2809}
2810
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002811#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002812
2813#include "iwl-spectrum.h"
2814
2815#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2816#define BEACON_TIME_MASK_HIGH 0xFF000000
2817#define TIME_UNIT 1024
2818
2819/*
2820 * extended beacon time format
2821 * time in usec will be changed into a 32-bit value in 8:24 format
2822 * the high 1 byte is the beacon counts
2823 * the lower 3 bytes is the time in usec within one beacon interval
2824 */
2825
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002826static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002827{
2828 u32 quot;
2829 u32 rem;
2830 u32 interval = beacon_interval * 1024;
2831
2832 if (!interval || !usec)
2833 return 0;
2834
2835 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2836 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2837
2838 return (quot << 24) + rem;
2839}
2840
2841/* base is usually what we get from ucode with each received frame,
2842 * the same as HW timer counter counting down
2843 */
2844
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002845static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002846{
2847 u32 base_low = base & BEACON_TIME_MASK_LOW;
2848 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2849 u32 interval = beacon_interval * TIME_UNIT;
2850 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2851 (addon & BEACON_TIME_MASK_HIGH);
2852
2853 if (base_low > addon_low)
2854 res += base_low - addon_low;
2855 else if (base_low < addon_low) {
2856 res += interval + base_low - addon_low;
2857 res += (1 << 24);
2858 } else
2859 res += (1 << 24);
2860
2861 return cpu_to_le32(res);
2862}
2863
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002864static int iwl3945_get_measurement(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002865 struct ieee80211_measurement_params *params,
2866 u8 type)
2867{
Tomas Winkler600c0e12008-12-19 10:37:04 +08002868 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002869 struct iwl_rx_packet *res;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002870 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002871 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2872 .data = (void *)&spectrum,
2873 .meta.flags = CMD_WANT_SKB,
2874 };
2875 u32 add_time = le64_to_cpu(params->start_time);
2876 int rc;
2877 int spectrum_resp_status;
2878 int duration = le16_to_cpu(params->duration);
2879
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002880 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002881 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002882 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002883 le64_to_cpu(params->start_time) - priv->last_tsf,
2884 le16_to_cpu(priv->rxon_timing.beacon_interval));
2885
2886 memset(&spectrum, 0, sizeof(spectrum));
2887
2888 spectrum.channel_count = cpu_to_le16(1);
2889 spectrum.flags =
2890 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2891 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2892 cmd.len = sizeof(spectrum);
2893 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2894
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002895 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002896 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002897 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002898 add_time,
2899 le16_to_cpu(priv->rxon_timing.beacon_interval));
2900 else
2901 spectrum.start_time = 0;
2902
2903 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2904 spectrum.channels[0].channel = params->channel;
2905 spectrum.channels[0].type = type;
2906 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2907 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2908 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2909
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002910 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002911 if (rc)
2912 return rc;
2913
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002914 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002915 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2916 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2917 rc = -EIO;
2918 }
2919
2920 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2921 switch (spectrum_resp_status) {
2922 case 0: /* Command will be handled */
2923 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002924 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2925 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002926 priv->measurement_status &= ~MEASUREMENT_READY;
2927 }
2928 priv->measurement_status |= MEASUREMENT_ACTIVE;
2929 rc = 0;
2930 break;
2931
2932 case 1: /* Command will not be handled */
2933 rc = -EAGAIN;
2934 break;
2935 }
2936
2937 dev_kfree_skb_any(cmd.meta.u.skb);
2938
2939 return rc;
2940}
2941#endif
2942
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002943static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv,
2944 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002945{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002946 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2947 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002948 struct delayed_work *pwork;
2949
2950 palive = &pkt->u.alive_frame;
2951
2952 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2953 "0x%01X 0x%01X\n",
2954 palive->is_valid, palive->ver_type,
2955 palive->ver_subtype);
2956
2957 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2958 IWL_DEBUG_INFO("Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002959 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
2960 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002961 pwork = &priv->init_alive_start;
2962 } else {
2963 IWL_DEBUG_INFO("Runtime Alive received.\n");
2964 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002965 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002966 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002967 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002968 }
2969
2970 /* We delay the ALIVE response by 5ms to
2971 * give the HW RF Kill time to activate... */
2972 if (palive->is_valid == UCODE_VALID_OK)
2973 queue_delayed_work(priv->workqueue, pwork,
2974 msecs_to_jiffies(5));
2975 else
2976 IWL_WARNING("uCode did not respond OK.\n");
2977}
2978
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002979static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv,
2980 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002981{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002982 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002983
2984 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2985 return;
2986}
2987
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002988static void iwl3945_rx_reply_error(struct iwl3945_priv *priv,
2989 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002990{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002991 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002992
2993 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
2994 "seq 0x%04X ser 0x%08X\n",
2995 le32_to_cpu(pkt->u.err_resp.error_type),
2996 get_cmd_string(pkt->u.err_resp.cmd_id),
2997 pkt->u.err_resp.cmd_id,
2998 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2999 le32_to_cpu(pkt->u.err_resp.error_info));
3000}
3001
3002#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3003
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003004static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003005{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003006 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003007 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003008 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003009 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3010 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3011 rxon->channel = csa->channel;
3012 priv->staging_rxon.channel = csa->channel;
3013}
3014
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003015static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv,
3016 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003017{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003018#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003019 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003020 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003021
3022 if (!report->state) {
3023 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3024 "Spectrum Measure Notification: Start\n");
3025 return;
3026 }
3027
3028 memcpy(&priv->measure_report, report, sizeof(*report));
3029 priv->measurement_status |= MEASUREMENT_READY;
3030#endif
3031}
3032
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003033static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv,
3034 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003035{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003036#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003037 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08003038 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003039 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3040 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3041#endif
3042}
3043
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003044static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv,
3045 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003046{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003047 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003048 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3049 "notification for %s:\n",
3050 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003051 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw,
3052 le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003053}
3054
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003055static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003056{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003057 struct iwl3945_priv *priv =
3058 container_of(work, struct iwl3945_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003059 struct sk_buff *beacon;
3060
3061 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02003062 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07003063
3064 if (!beacon) {
3065 IWL_ERROR("update beacon failed\n");
3066 return;
3067 }
3068
3069 mutex_lock(&priv->mutex);
3070 /* new beacon skb is allocated every time; dispose previous.*/
3071 if (priv->ibss_beacon)
3072 dev_kfree_skb(priv->ibss_beacon);
3073
3074 priv->ibss_beacon = beacon;
3075 mutex_unlock(&priv->mutex);
3076
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003077 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003078}
3079
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003080static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv,
3081 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003082{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003083#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003084 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003085 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07003086 u8 rate = beacon->beacon_notify_hdr.rate;
3087
3088 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3089 "tsf %d %d rate %d\n",
3090 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3091 beacon->beacon_notify_hdr.failure_frame,
3092 le32_to_cpu(beacon->ibss_mgr_status),
3093 le32_to_cpu(beacon->high_tsf),
3094 le32_to_cpu(beacon->low_tsf), rate);
3095#endif
3096
Johannes Berg05c914f2008-09-11 00:01:58 +02003097 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07003098 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3099 queue_work(priv->workqueue, &priv->beacon_update);
3100}
3101
3102/* Service response to REPLY_SCAN_CMD (0x80) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003103static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv,
3104 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003105{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003106#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003107 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003108 struct iwl_scanreq_notification *notif =
3109 (struct iwl_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003110
3111 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3112#endif
3113}
3114
3115/* Service SCAN_START_NOTIFICATION (0x82) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003116static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv,
3117 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003118{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003119 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003120 struct iwl_scanstart_notification *notif =
3121 (struct iwl_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003122 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3123 IWL_DEBUG_SCAN("Scan start: "
3124 "%d [802.11%s] "
3125 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3126 notif->channel,
3127 notif->band ? "bg" : "a",
3128 notif->tsf_high,
3129 notif->tsf_low, notif->status, notif->beacon_timer);
3130}
3131
3132/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003133static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv,
3134 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003135{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003136 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003137 struct iwl_scanresults_notification *notif =
3138 (struct iwl_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003139
3140 IWL_DEBUG_SCAN("Scan ch.res: "
3141 "%d [802.11%s] "
3142 "(TSF: 0x%08X:%08X) - %d "
3143 "elapsed=%lu usec (%dms since last)\n",
3144 notif->channel,
3145 notif->band ? "bg" : "a",
3146 le32_to_cpu(notif->tsf_high),
3147 le32_to_cpu(notif->tsf_low),
3148 le32_to_cpu(notif->statistics[0]),
3149 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3150 jiffies_to_msecs(elapsed_jiffies
3151 (priv->last_scan_jiffies, jiffies)));
3152
3153 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003154 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003155}
3156
3157/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003158static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv,
3159 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003160{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003161 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08003162 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003163
3164 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3165 scan_notif->scanned_channels,
3166 scan_notif->tsf_low,
3167 scan_notif->tsf_high, scan_notif->status);
3168
3169 /* The HW is no longer scanning */
3170 clear_bit(STATUS_SCAN_HW, &priv->status);
3171
3172 /* The scan completion notification came in, so kill that timer... */
3173 cancel_delayed_work(&priv->scan_check);
3174
3175 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003176 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
3177 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07003178 jiffies_to_msecs(elapsed_jiffies
3179 (priv->scan_pass_start, jiffies)));
3180
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003181 /* Remove this scanned band from the list of pending
3182 * bands to scan, band G precedes A in order of scanning
3183 * as seen in iwl3945_bg_request_scan */
3184 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
3185 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
3186 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
3187 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07003188
3189 /* If a request to abort was given, or the scan did not succeed
3190 * then we reset the scan state machine and terminate,
3191 * re-queuing another scan if one has been requested */
3192 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3193 IWL_DEBUG_INFO("Aborted scan completed.\n");
3194 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3195 } else {
3196 /* If there are more bands on this scan pass reschedule */
3197 if (priv->scan_bands > 0)
3198 goto reschedule;
3199 }
3200
3201 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003202 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003203 IWL_DEBUG_INFO("Setting scan to off\n");
3204
3205 clear_bit(STATUS_SCANNING, &priv->status);
3206
3207 IWL_DEBUG_INFO("Scan took %dms\n",
3208 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3209
3210 queue_work(priv->workqueue, &priv->scan_completed);
3211
3212 return;
3213
3214reschedule:
3215 priv->scan_pass_start = jiffies;
3216 queue_work(priv->workqueue, &priv->request_scan);
3217}
3218
3219/* Handle notification from uCode that card's power state is changing
3220 * due to software, hardware, or critical temperature RFKILL */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003221static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv,
3222 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003223{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003224 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003225 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3226 unsigned long status = priv->status;
3227
3228 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3229 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3230 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3231
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003232 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003233 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3234
3235 if (flags & HW_CARD_DISABLED)
3236 set_bit(STATUS_RF_KILL_HW, &priv->status);
3237 else
3238 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3239
3240
3241 if (flags & SW_CARD_DISABLED)
3242 set_bit(STATUS_RF_KILL_SW, &priv->status);
3243 else
3244 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3245
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003246 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003247
3248 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3249 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3250 (test_bit(STATUS_RF_KILL_SW, &status) !=
3251 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3252 queue_work(priv->workqueue, &priv->rf_kill);
3253 else
3254 wake_up_interruptible(&priv->wait_command_queue);
3255}
3256
3257/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003258 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003259 *
3260 * Setup the RX handlers for each of the reply types sent from the uCode
3261 * to the host.
3262 *
3263 * This function chains into the hardware specific files for them to setup
3264 * any hardware specific handlers as well.
3265 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003266static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003267{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003268 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3269 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3270 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3271 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003272 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003273 iwl3945_rx_spectrum_measure_notif;
3274 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003275 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003276 iwl3945_rx_pm_debug_statistics_notif;
3277 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003278
Ben Cahill9fbab512007-11-29 11:09:47 +08003279 /*
3280 * The same handler is used for both the REPLY to a discrete
3281 * statistics request from the host as well as for the periodic
3282 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003283 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003284 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3285 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003286
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003287 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3288 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003289 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003290 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003291 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003292 iwl3945_rx_scan_complete_notif;
3293 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003294
Ben Cahill9fbab512007-11-29 11:09:47 +08003295 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003296 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003297}
3298
3299/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003300 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3301 * When FW advances 'R' index, all entries between old and new 'R' index
3302 * need to be reclaimed.
3303 */
3304static void iwl3945_cmd_queue_reclaim(struct iwl3945_priv *priv,
3305 int txq_id, int index)
3306{
3307 struct iwl3945_tx_queue *txq = &priv->txq[txq_id];
3308 struct iwl3945_queue *q = &txq->q;
3309 int nfreed = 0;
3310
3311 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
3312 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3313 "is out of range [0-%d] %d %d.\n", txq_id,
3314 index, q->n_bd, q->write_ptr, q->read_ptr);
3315 return;
3316 }
3317
3318 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3319 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3320 if (nfreed > 1) {
3321 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
3322 q->write_ptr, q->read_ptr);
3323 queue_work(priv->workqueue, &priv->restart);
3324 break;
3325 }
3326 nfreed++;
3327 }
3328}
3329
3330
3331/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003332 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003333 * @rxb: Rx buffer to reclaim
3334 *
3335 * If an Rx buffer has an async callback associated with it the callback
3336 * will be executed. The attached skb (if present) will only be freed
3337 * if the callback returns 1
3338 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003339static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
3340 struct iwl3945_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003341{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003342 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003343 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3344 int txq_id = SEQ_TO_QUEUE(sequence);
3345 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003346 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Zhu Yib481de92007-09-25 17:54:57 -07003347 int cmd_index;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003348 struct iwl3945_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003349
Zhu Yib481de92007-09-25 17:54:57 -07003350 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3351
3352 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3353 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3354
3355 /* Input error checking is done when commands are added to queue. */
3356 if (cmd->meta.flags & CMD_WANT_SKB) {
3357 cmd->meta.source->u.skb = rxb->skb;
3358 rxb->skb = NULL;
3359 } else if (cmd->meta.u.callback &&
3360 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3361 rxb->skb = NULL;
3362
Tomas Winkler91c066f2008-03-06 17:36:55 -08003363 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003364
3365 if (!(cmd->meta.flags & CMD_ASYNC)) {
3366 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3367 wake_up_interruptible(&priv->wait_command_queue);
3368 }
3369}
3370
3371/************************** RX-FUNCTIONS ****************************/
3372/*
3373 * Rx theory of operation
3374 *
3375 * The host allocates 32 DMA target addresses and passes the host address
3376 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3377 * 0 to 31
3378 *
3379 * Rx Queue Indexes
3380 * The host/firmware share two index registers for managing the Rx buffers.
3381 *
3382 * The READ index maps to the first position that the firmware may be writing
3383 * to -- the driver can read up to (but not including) this position and get
3384 * good data.
3385 * The READ index is managed by the firmware once the card is enabled.
3386 *
3387 * The WRITE index maps to the last position the driver has read from -- the
3388 * position preceding WRITE is the last slot the firmware can place a packet.
3389 *
3390 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3391 * WRITE = READ.
3392 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003393 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003394 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3395 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003396 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003397 * and fire the RX interrupt. The driver can then query the READ index and
3398 * process as many packets as possible, moving the WRITE index forward as it
3399 * resets the Rx queue buffers with new memory.
3400 *
3401 * The management in the driver is as follows:
3402 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3403 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003404 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003405 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003406 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3407 * 'processed' and 'read' driver indexes as well)
3408 * + A received packet is processed and handed to the kernel network stack,
3409 * detached from the iwl->rxq. The driver 'processed' index is updated.
3410 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3411 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3412 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3413 * were enough free buffers and RX_STALLED is set it is cleared.
3414 *
3415 *
3416 * Driver sequence:
3417 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003418 * iwl3945_rx_queue_alloc() Allocates rx_free
3419 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003420 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003421 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003422 * queue, updates firmware pointers, and updates
3423 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003424 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003425 *
3426 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003427 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003428 * READ INDEX, detaching the SKB from the pool.
3429 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003430 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003431 * slots.
3432 * ...
3433 *
3434 */
3435
3436/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003437 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003438 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003439static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003440{
3441 int s = q->read - q->write;
3442 if (s <= 0)
3443 s += RX_QUEUE_SIZE;
3444 /* keep some buffer to not confuse full and empty queue */
3445 s -= 2;
3446 if (s < 0)
3447 s = 0;
3448 return s;
3449}
3450
3451/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003452 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003453 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003454int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003455{
3456 u32 reg = 0;
3457 int rc = 0;
3458 unsigned long flags;
3459
3460 spin_lock_irqsave(&q->lock, flags);
3461
3462 if (q->need_update == 0)
3463 goto exit_unlock;
3464
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003465 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003466 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003467 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003468
3469 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003470 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003471 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3472 goto exit_unlock;
3473 }
3474
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003475 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003476 if (rc)
3477 goto exit_unlock;
3478
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003479 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003480 iwl3945_write_direct32(priv, FH39_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003481 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003482 iwl3945_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003483
3484 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003485 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003486 /* Device expects a multiple of 8 */
Tomas Winklerbddadf82008-12-19 10:37:01 +08003487 iwl3945_write32(priv, FH39_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003488
3489
3490 q->need_update = 0;
3491
3492 exit_unlock:
3493 spin_unlock_irqrestore(&q->lock, flags);
3494 return rc;
3495}
3496
3497/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003498 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003499 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003500static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003501 dma_addr_t dma_addr)
3502{
3503 return cpu_to_le32((u32)dma_addr);
3504}
3505
3506/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003507 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003508 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003509 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003510 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003511 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003512 *
3513 * This moves the 'write' index forward to catch up with 'processed', and
3514 * also updates the memory address in the firmware to reference the new
3515 * target buffer.
3516 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003517static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003518{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003519 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003520 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003521 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003522 unsigned long flags;
3523 int write, rc;
3524
3525 spin_lock_irqsave(&rxq->lock, flags);
3526 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003527 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003528 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003529 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003530 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003531 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003532
3533 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003534 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003535 rxq->queue[rxq->write] = rxb;
3536 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3537 rxq->free_count--;
3538 }
3539 spin_unlock_irqrestore(&rxq->lock, flags);
3540 /* If the pre-allocated buffer pool is dropping low, schedule to
3541 * refill it */
3542 if (rxq->free_count <= RX_LOW_WATERMARK)
3543 queue_work(priv->workqueue, &priv->rx_replenish);
3544
3545
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003546 /* If we've added more space for the firmware to place data, tell it.
3547 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003548 if ((write != (rxq->write & ~0x7))
3549 || (abs(rxq->write - rxq->read) > 7)) {
3550 spin_lock_irqsave(&rxq->lock, flags);
3551 rxq->need_update = 1;
3552 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003553 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003554 if (rc)
3555 return rc;
3556 }
3557
3558 return 0;
3559}
3560
3561/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003562 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003563 *
3564 * When moving to rx_free an SKB is allocated for the slot.
3565 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003566 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003567 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003568 */
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003569static void iwl3945_rx_allocate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003570{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003571 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003572 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003573 struct iwl3945_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003574 unsigned long flags;
3575 spin_lock_irqsave(&rxq->lock, flags);
3576 while (!list_empty(&rxq->rx_used)) {
3577 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003578 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003579
3580 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003581 rxb->skb =
3582 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3583 if (!rxb->skb) {
3584 if (net_ratelimit())
3585 printk(KERN_CRIT DRV_NAME
3586 ": Can not allocate SKB buffers\n");
3587 /* We don't reschedule replenish work here -- we will
3588 * call the restock method and if it still needs
3589 * more buffers it will schedule replenish */
3590 break;
3591 }
Zhu Yi12342c42007-12-20 11:27:32 +08003592
3593 /* If radiotap head is required, reserve some headroom here.
3594 * The physical head count is a variable rx_stats->phy_count.
3595 * We reserve 4 bytes here. Plus these extra bytes, the
3596 * headroom of the physical head should be enough for the
3597 * radiotap head that iwl3945 supported. See iwl3945_rt.
3598 */
3599 skb_reserve(rxb->skb, 4);
3600
Zhu Yib481de92007-09-25 17:54:57 -07003601 priv->alloc_rxb_skb++;
3602 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003603
3604 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07003605 rxb->dma_addr =
3606 pci_map_single(priv->pci_dev, rxb->skb->data,
3607 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3608 list_add_tail(&rxb->list, &rxq->rx_free);
3609 rxq->free_count++;
3610 }
3611 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003612}
3613
3614/*
3615 * this should be called while priv->lock is locked
3616 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003617static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003618{
3619 struct iwl3945_priv *priv = data;
3620
3621 iwl3945_rx_allocate(priv);
3622 iwl3945_rx_queue_restock(priv);
3623}
3624
3625
3626void iwl3945_rx_replenish(void *data)
3627{
3628 struct iwl3945_priv *priv = data;
3629 unsigned long flags;
3630
3631 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003632
3633 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003634 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003635 spin_unlock_irqrestore(&priv->lock, flags);
3636}
3637
3638/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003639 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003640 * This free routine walks the list of POOL entries and if SKB is set to
3641 * non NULL it is unmapped and freed
3642 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003643static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003644{
3645 int i;
3646 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3647 if (rxq->pool[i].skb != NULL) {
3648 pci_unmap_single(priv->pci_dev,
3649 rxq->pool[i].dma_addr,
3650 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3651 dev_kfree_skb(rxq->pool[i].skb);
3652 }
3653 }
3654
3655 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3656 rxq->dma_addr);
3657 rxq->bd = NULL;
3658}
3659
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003660int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003661{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003662 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003663 struct pci_dev *dev = priv->pci_dev;
3664 int i;
3665
3666 spin_lock_init(&rxq->lock);
3667 INIT_LIST_HEAD(&rxq->rx_free);
3668 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003669
3670 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003671 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3672 if (!rxq->bd)
3673 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003674
Zhu Yib481de92007-09-25 17:54:57 -07003675 /* Fill the rx_used queue with _all_ of the Rx buffers */
3676 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3677 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003678
Zhu Yib481de92007-09-25 17:54:57 -07003679 /* Set us so that we have processed and used all buffers, but have
3680 * not restocked the Rx queue with fresh buffers */
3681 rxq->read = rxq->write = 0;
3682 rxq->free_count = 0;
3683 rxq->need_update = 0;
3684 return 0;
3685}
3686
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003687void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003688{
3689 unsigned long flags;
3690 int i;
3691 spin_lock_irqsave(&rxq->lock, flags);
3692 INIT_LIST_HEAD(&rxq->rx_free);
3693 INIT_LIST_HEAD(&rxq->rx_used);
3694 /* Fill the rx_used queue with _all_ of the Rx buffers */
3695 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3696 /* In the reset function, these buffers may have been allocated
3697 * to an SKB, so we need to unmap and free potential storage */
3698 if (rxq->pool[i].skb != NULL) {
3699 pci_unmap_single(priv->pci_dev,
3700 rxq->pool[i].dma_addr,
3701 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3702 priv->alloc_rxb_skb--;
3703 dev_kfree_skb(rxq->pool[i].skb);
3704 rxq->pool[i].skb = NULL;
3705 }
3706 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3707 }
3708
3709 /* Set us so that we have processed and used all buffers, but have
3710 * not restocked the Rx queue with fresh buffers */
3711 rxq->read = rxq->write = 0;
3712 rxq->free_count = 0;
3713 spin_unlock_irqrestore(&rxq->lock, flags);
3714}
3715
3716/* Convert linear signal-to-noise ratio into dB */
3717static u8 ratio2dB[100] = {
3718/* 0 1 2 3 4 5 6 7 8 9 */
3719 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3720 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3721 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3722 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3723 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3724 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3725 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3726 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3727 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3728 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3729};
3730
3731/* Calculates a relative dB value from a ratio of linear
3732 * (i.e. not dB) signal levels.
3733 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003734int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003735{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003736 /* 1000:1 or higher just report as 60 dB */
3737 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003738 return 60;
3739
Adrian Bunk221c80c2008-02-02 23:19:01 +02003740 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003741 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003742 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003743 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003744
3745 /* We shouldn't see this */
3746 if (sig_ratio < 1)
3747 return 0;
3748
3749 /* Use table for ratios 1:1 - 99:1 */
3750 return (int)ratio2dB[sig_ratio];
3751}
3752
3753#define PERFECT_RSSI (-20) /* dBm */
3754#define WORST_RSSI (-95) /* dBm */
3755#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3756
3757/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3758 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3759 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003760int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003761{
3762 int sig_qual;
3763 int degradation = PERFECT_RSSI - rssi_dbm;
3764
3765 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3766 * as indicator; formula is (signal dbm - noise dbm).
3767 * SNR at or above 40 is a great signal (100%).
3768 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3769 * Weakest usable signal is usually 10 - 15 dB SNR. */
3770 if (noise_dbm) {
3771 if (rssi_dbm - noise_dbm >= 40)
3772 return 100;
3773 else if (rssi_dbm < noise_dbm)
3774 return 0;
3775 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3776
3777 /* Else use just the signal level.
3778 * This formula is a least squares fit of data points collected and
3779 * compared with a reference system that had a percentage (%) display
3780 * for signal quality. */
3781 } else
3782 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3783 (15 * RSSI_RANGE + 62 * degradation)) /
3784 (RSSI_RANGE * RSSI_RANGE);
3785
3786 if (sig_qual > 100)
3787 sig_qual = 100;
3788 else if (sig_qual < 1)
3789 sig_qual = 0;
3790
3791 return sig_qual;
3792}
3793
3794/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003795 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003796 *
3797 * Uses the priv->rx_handlers callback function array to invoke
3798 * the appropriate handlers, including command responses,
3799 * frame-received notifications, and other notifications.
3800 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003801static void iwl3945_rx_handle(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003802{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003803 struct iwl3945_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003804 struct iwl_rx_packet *pkt;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003805 struct iwl3945_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003806 u32 r, i;
3807 int reclaim;
3808 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003809 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003810 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003811
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003812 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3813 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003814 r = iwl3945_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003815 i = rxq->read;
3816
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003817 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3818 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003819 /* Rx interrupt, but nothing sent from uCode */
3820 if (i == r)
3821 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3822
3823 while (i != r) {
3824 rxb = rxq->queue[i];
3825
Ben Cahill9fbab512007-11-29 11:09:47 +08003826 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003827 * then a bug has been introduced in the queue refilling
3828 * routines -- catch it here */
3829 BUG_ON(rxb == NULL);
3830
3831 rxq->queue[i] = NULL;
3832
3833 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
3834 IWL_RX_BUF_SIZE,
3835 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003836 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003837
3838 /* Reclaim a command buffer only if this packet is a response
3839 * to a (driver-originated) command.
3840 * If the packet (e.g. Rx frame) originated from uCode,
3841 * there is no command buffer to reclaim.
3842 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3843 * but apparently a few don't get set; catch them here. */
3844 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3845 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3846 (pkt->hdr.cmd != REPLY_TX);
3847
3848 /* Based on type of command response or notification,
3849 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003850 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003851 if (priv->rx_handlers[pkt->hdr.cmd]) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003852 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003853 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3854 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3855 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3856 } else {
3857 /* No handling needed */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003858 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003859 "r %d i %d No handler needed for %s, 0x%02x\n",
3860 r, i, get_cmd_string(pkt->hdr.cmd),
3861 pkt->hdr.cmd);
3862 }
3863
3864 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003865 /* Invoke any callbacks, transfer the skb to caller, and
3866 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003867 * as we reclaim the driver command queue */
3868 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003869 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003870 else
3871 IWL_WARNING("Claim null rxb?\n");
3872 }
3873
3874 /* For now we just don't re-use anything. We can tweak this
3875 * later to try and re-use notification packets and SKBs that
3876 * fail to Rx correctly */
3877 if (rxb->skb != NULL) {
3878 priv->alloc_rxb_skb--;
3879 dev_kfree_skb_any(rxb->skb);
3880 rxb->skb = NULL;
3881 }
3882
3883 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
3884 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3885 spin_lock_irqsave(&rxq->lock, flags);
3886 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3887 spin_unlock_irqrestore(&rxq->lock, flags);
3888 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003889 /* If there are a lot of unused frames,
3890 * restock the Rx queue so ucode won't assert. */
3891 if (fill_rx) {
3892 count++;
3893 if (count >= 8) {
3894 priv->rxq.read = i;
3895 __iwl3945_rx_replenish(priv);
3896 count = 0;
3897 }
3898 }
Zhu Yib481de92007-09-25 17:54:57 -07003899 }
3900
3901 /* Backtrack one entry */
3902 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003903 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003904}
3905
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003906/**
3907 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3908 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003909static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
3910 struct iwl3945_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003911{
3912 u32 reg = 0;
3913 int rc = 0;
3914 int txq_id = txq->q.id;
3915
3916 if (txq->need_update == 0)
3917 return rc;
3918
3919 /* if we're trying to save power */
3920 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3921 /* wake up nic if it's powered down ...
3922 * uCode will wake up, and interrupt us again, so next
3923 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003924 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003925
3926 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3927 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003928 iwl3945_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003929 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3930 return rc;
3931 }
3932
3933 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003934 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003935 if (rc)
3936 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003937 iwl3945_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003938 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003939 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003940
3941 /* else not in power-save mode, uCode will never sleep when we're
3942 * trying to tx (during RFKILL, we're not trying to tx). */
3943 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003944 iwl3945_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003945 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003946
3947 txq->need_update = 0;
3948
3949 return rc;
3950}
3951
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003952#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003953static void iwl3945_print_rx_config_cmd(struct iwl3945_priv *priv,
3954 struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003955{
3956 IWL_DEBUG_RADIO("RX CONFIG:\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003957 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003958 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3959 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3960 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3961 le32_to_cpu(rxon->filter_flags));
3962 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3963 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3964 rxon->ofdm_basic_rates);
3965 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003966 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3967 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003968 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3969}
3970#endif
3971
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003972static void iwl3945_enable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003973{
3974 IWL_DEBUG_ISR("Enabling interrupts\n");
3975 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003976 iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003977}
3978
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003979
3980/* call this function to flush any scheduled tasklet */
3981static inline void iwl_synchronize_irq(struct iwl3945_priv *priv)
3982{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003983 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003984 synchronize_irq(priv->pci_dev->irq);
3985 tasklet_kill(&priv->irq_tasklet);
3986}
3987
3988
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003989static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003990{
3991 clear_bit(STATUS_INT_ENABLED, &priv->status);
3992
3993 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003994 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003995
3996 /* acknowledge/clear/reset any interrupts still pending
3997 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003998 iwl3945_write32(priv, CSR_INT, 0xffffffff);
3999 iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004000 IWL_DEBUG_ISR("Disabled interrupts\n");
4001}
4002
4003static const char *desc_lookup(int i)
4004{
4005 switch (i) {
4006 case 1:
4007 return "FAIL";
4008 case 2:
4009 return "BAD_PARAM";
4010 case 3:
4011 return "BAD_CHECKSUM";
4012 case 4:
4013 return "NMI_INTERRUPT";
4014 case 5:
4015 return "SYSASSERT";
4016 case 6:
4017 return "FATAL_ERROR";
4018 }
4019
4020 return "UNKNOWN";
4021}
4022
4023#define ERROR_START_OFFSET (1 * sizeof(u32))
4024#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4025
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004026static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004027{
4028 u32 i;
4029 u32 desc, time, count, base, data1;
4030 u32 blink1, blink2, ilink1, ilink2;
4031 int rc;
4032
4033 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4034
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004035 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004036 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4037 return;
4038 }
4039
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004040 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004041 if (rc) {
4042 IWL_WARNING("Can not read from adapter at this time.\n");
4043 return;
4044 }
4045
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004046 count = iwl3945_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004047
4048 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4049 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004050 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004051 }
4052
4053 IWL_ERROR("Desc Time asrtPC blink2 "
4054 "ilink1 nmiPC Line\n");
4055 for (i = ERROR_START_OFFSET;
4056 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
4057 i += ERROR_ELEM_SIZE) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004058 desc = iwl3945_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07004059 time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004060 iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004061 blink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004062 iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004063 blink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004064 iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004065 ilink1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004066 iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004067 ilink2 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004068 iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004069 data1 =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004070 iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004071
4072 IWL_ERROR
4073 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4074 desc_lookup(desc), desc, time, blink1, blink2,
4075 ilink1, ilink2, data1);
4076 }
4077
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004078 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004079
4080}
4081
Ben Cahillf58177b2007-11-29 11:09:43 +08004082#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07004083
4084/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004085 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004086 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004087 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004088 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004089static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004090 u32 num_events, u32 mode)
4091{
4092 u32 i;
4093 u32 base; /* SRAM byte address of event log header */
4094 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4095 u32 ptr; /* SRAM byte address of log data */
4096 u32 ev, time, data; /* event log data */
4097
4098 if (num_events == 0)
4099 return;
4100
4101 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4102
4103 if (mode == 0)
4104 event_size = 2 * sizeof(u32);
4105 else
4106 event_size = 3 * sizeof(u32);
4107
4108 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4109
4110 /* "time" is actually "data" for mode 0 (no timestamp).
4111 * place event id # at far right for easier visual parsing. */
4112 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004113 ev = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004114 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004115 time = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004116 ptr += sizeof(u32);
4117 if (mode == 0)
4118 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4119 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004120 data = iwl3945_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004121 ptr += sizeof(u32);
4122 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4123 }
4124 }
4125}
4126
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004127static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004128{
4129 int rc;
4130 u32 base; /* SRAM byte address of event log header */
4131 u32 capacity; /* event log capacity in # entries */
4132 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4133 u32 num_wraps; /* # times uCode wrapped to top of log */
4134 u32 next_entry; /* index of next entry to be written by uCode */
4135 u32 size; /* # entries that we'll print */
4136
4137 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004138 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004139 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4140 return;
4141 }
4142
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004143 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004144 if (rc) {
4145 IWL_WARNING("Can not read from adapter at this time.\n");
4146 return;
4147 }
4148
4149 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004150 capacity = iwl3945_read_targ_mem(priv, base);
4151 mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32)));
4152 num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32)));
4153 next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004154
4155 size = num_wraps ? capacity : next_entry;
4156
4157 /* bail out if nothing in log */
4158 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004159 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004160 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004161 return;
4162 }
4163
Zhu Yi583fab32007-09-27 11:27:30 +08004164 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004165 size, num_wraps);
4166
4167 /* if uCode has wrapped back to top of log, start at the oldest entry,
4168 * i.e the next one that uCode would fill. */
4169 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004170 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004171 capacity - next_entry, mode);
4172
4173 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004174 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004175
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004176 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004177}
4178
4179/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004180 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004181 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004182static void iwl3945_irq_handle_error(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004183{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004184 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07004185 set_bit(STATUS_FW_ERROR, &priv->status);
4186
4187 /* Cancel currently queued command. */
4188 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4189
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004190#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004191 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004192 iwl3945_dump_nic_error_log(priv);
4193 iwl3945_dump_nic_event_log(priv);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004194 iwl3945_print_rx_config_cmd(priv, &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004195 }
4196#endif
4197
4198 wake_up_interruptible(&priv->wait_command_queue);
4199
4200 /* Keep the restart process from trying to send host
4201 * commands by clearing the INIT status bit */
4202 clear_bit(STATUS_READY, &priv->status);
4203
4204 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4205 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4206 "Restarting adapter due to uCode error.\n");
4207
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004208 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004209 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4210 sizeof(priv->recovery_rxon));
4211 priv->error_recovering = 1;
4212 }
4213 queue_work(priv->workqueue, &priv->restart);
4214 }
4215}
4216
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004217static void iwl3945_error_recovery(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004218{
4219 unsigned long flags;
4220
4221 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4222 sizeof(priv->staging_rxon));
4223 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004224 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004225
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004226 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004227
4228 spin_lock_irqsave(&priv->lock, flags);
4229 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4230 priv->error_recovering = 0;
4231 spin_unlock_irqrestore(&priv->lock, flags);
4232}
4233
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004234static void iwl3945_irq_tasklet(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004235{
4236 u32 inta, handled = 0;
4237 u32 inta_fh;
4238 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004239#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004240 u32 inta_mask;
4241#endif
4242
4243 spin_lock_irqsave(&priv->lock, flags);
4244
4245 /* Ack/clear/reset pending uCode interrupts.
4246 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4247 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004248 inta = iwl3945_read32(priv, CSR_INT);
4249 iwl3945_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004250
4251 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4252 * Any new interrupts that happen after this, either while we're
4253 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004254 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
4255 iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004256
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004257#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004258 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004259 /* just for debug */
4260 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004261 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4262 inta, inta_mask, inta_fh);
4263 }
4264#endif
4265
4266 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4267 * atomic, make sure that inta covers all the interrupts that
4268 * we've discovered, even if FH interrupt came in just after
4269 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004270 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004271 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004272 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004273 inta |= CSR_INT_BIT_FH_TX;
4274
4275 /* Now service all interrupt bits discovered above. */
4276 if (inta & CSR_INT_BIT_HW_ERR) {
4277 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4278
4279 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004280 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004281
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004282 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004283
4284 handled |= CSR_INT_BIT_HW_ERR;
4285
4286 spin_unlock_irqrestore(&priv->lock, flags);
4287
4288 return;
4289 }
4290
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004291#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004292 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004293 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004294 if (inta & CSR_INT_BIT_SCD)
4295 IWL_DEBUG_ISR("Scheduler finished to transmit "
4296 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004297
4298 /* Alive notification via Rx interrupt will do the real work */
4299 if (inta & CSR_INT_BIT_ALIVE)
4300 IWL_DEBUG_ISR("Alive interrupt\n");
4301 }
4302#endif
4303 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004304 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004305
Zhu Yib481de92007-09-25 17:54:57 -07004306 /* Error detected by uCode */
4307 if (inta & CSR_INT_BIT_SW_ERR) {
4308 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4309 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004310 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004311 handled |= CSR_INT_BIT_SW_ERR;
4312 }
4313
4314 /* uCode wakes up after power-down sleep */
4315 if (inta & CSR_INT_BIT_WAKEUP) {
4316 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004317 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4318 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4319 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4320 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4321 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4322 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4323 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004324
4325 handled |= CSR_INT_BIT_WAKEUP;
4326 }
4327
4328 /* All uCode command responses, including Tx command responses,
4329 * Rx "responses" (frame-received notification), and other
4330 * notifications from uCode come through here*/
4331 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004332 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004333 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4334 }
4335
4336 if (inta & CSR_INT_BIT_FH_TX) {
4337 IWL_DEBUG_ISR("Tx interrupt\n");
4338
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004339 iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4340 if (!iwl3945_grab_nic_access(priv)) {
Tomas Winklerbddadf82008-12-19 10:37:01 +08004341 iwl3945_write_direct32(priv, FH39_TCSR_CREDIT
4342 (FH39_SRVC_CHNL), 0x0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004343 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004344 }
4345 handled |= CSR_INT_BIT_FH_TX;
4346 }
4347
4348 if (inta & ~handled)
4349 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4350
4351 if (inta & ~CSR_INI_SET_MASK) {
4352 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4353 inta & ~CSR_INI_SET_MASK);
4354 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4355 }
4356
4357 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004358 /* only Re-enable if disabled by irq */
4359 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4360 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004361
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004362#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004363 if (priv->debug_level & (IWL_DL_ISR)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004364 inta = iwl3945_read32(priv, CSR_INT);
4365 inta_mask = iwl3945_read32(priv, CSR_INT_MASK);
4366 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004367 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4368 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4369 }
4370#endif
4371 spin_unlock_irqrestore(&priv->lock, flags);
4372}
4373
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004374static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004375{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004376 struct iwl3945_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004377 u32 inta, inta_mask;
4378 u32 inta_fh;
4379 if (!priv)
4380 return IRQ_NONE;
4381
4382 spin_lock(&priv->lock);
4383
4384 /* Disable (but don't clear!) interrupts here to avoid
4385 * back-to-back ISRs and sporadic interrupts from our NIC.
4386 * If we have something to service, the tasklet will re-enable ints.
4387 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004388 inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */
4389 iwl3945_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004390
4391 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004392 inta = iwl3945_read32(priv, CSR_INT);
4393 inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004394
4395 /* Ignore interrupt if there's nothing in NIC to service.
4396 * This may be due to IRQ shared with another device,
4397 * or due to sporadic interrupts thrown from our NIC. */
4398 if (!inta && !inta_fh) {
4399 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4400 goto none;
4401 }
4402
4403 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4404 /* Hardware disappeared */
Zhu Yi99df6302008-12-02 12:13:58 -08004405 IWL_WARNING("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004406 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004407 }
4408
4409 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4410 inta, inta_mask, inta_fh);
4411
Joonwoo Park25c03d82008-01-23 10:15:20 -08004412 inta &= ~CSR_INT_BIT_SCD;
4413
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004414 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004415 if (likely(inta || inta_fh))
4416 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004417unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004418 spin_unlock(&priv->lock);
4419
4420 return IRQ_HANDLED;
4421
4422 none:
4423 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004424 /* only Re-enable if disabled by irq */
4425 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4426 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004427 spin_unlock(&priv->lock);
4428 return IRQ_NONE;
4429}
4430
4431/************************** EEPROM BANDS ****************************
4432 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004433 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004434 * EEPROM contents to the specific channel number supported for each
4435 * band.
4436 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004437 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004438 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4439 * The specific geography and calibration information for that channel
4440 * is contained in the eeprom map itself.
4441 *
4442 * During init, we copy the eeprom information and channel map
4443 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4444 *
4445 * channel_map_24/52 provides the index in the channel_info array for a
4446 * given channel. We have to have two separate maps as there is channel
4447 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4448 * band_2
4449 *
4450 * A value of 0xff stored in the channel_map indicates that the channel
4451 * is not supported by the hardware at all.
4452 *
4453 * A value of 0xfe in the channel_map indicates that the channel is not
4454 * valid for Tx with the current hardware. This means that
4455 * while the system can tune and receive on a given channel, it may not
4456 * be able to associate or transmit any frames on that
4457 * channel. There is no corresponding channel information for that
4458 * entry.
4459 *
4460 *********************************************************************/
4461
4462/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004463static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004464 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4465};
4466
4467/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004468static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004469 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4470};
4471
Ben Cahill9fbab512007-11-29 11:09:47 +08004472static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004473 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4474};
4475
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004476static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004477 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4478};
4479
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004480static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004481 145, 149, 153, 157, 161, 165
4482};
4483
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004484static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004485 int *eeprom_ch_count,
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004486 const struct iwl_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004487 **eeprom_ch_info,
4488 const u8 **eeprom_ch_index)
4489{
4490 switch (band) {
4491 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004492 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Zhu Yib481de92007-09-25 17:54:57 -07004493 *eeprom_ch_info = priv->eeprom.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004494 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004495 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004496 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004497 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Zhu Yib481de92007-09-25 17:54:57 -07004498 *eeprom_ch_info = priv->eeprom.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004499 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004500 break;
4501 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004502 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Zhu Yib481de92007-09-25 17:54:57 -07004503 *eeprom_ch_info = priv->eeprom.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004504 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004505 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004506 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004507 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Zhu Yib481de92007-09-25 17:54:57 -07004508 *eeprom_ch_info = priv->eeprom.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004509 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004510 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004511 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004512 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004513 *eeprom_ch_info = priv->eeprom.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004514 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004515 break;
4516 default:
4517 BUG();
4518 return;
4519 }
4520}
4521
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004522/**
4523 * iwl3945_get_channel_info - Find driver's private channel info
4524 *
4525 * Based on band and channel number.
4526 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004527const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004528 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004529{
4530 int i;
4531
Johannes Berg8318d782008-01-24 19:38:38 +01004532 switch (band) {
4533 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004534 for (i = 14; i < priv->channel_count; i++) {
4535 if (priv->channel_info[i].channel == channel)
4536 return &priv->channel_info[i];
4537 }
4538 break;
4539
Johannes Berg8318d782008-01-24 19:38:38 +01004540 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004541 if (channel >= 1 && channel <= 14)
4542 return &priv->channel_info[channel - 1];
4543 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004544 case IEEE80211_NUM_BANDS:
4545 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004546 }
4547
4548 return NULL;
4549}
4550
4551#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4552 ? # x " " : "")
4553
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004554/**
4555 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4556 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004557static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004558{
4559 int eeprom_ch_count = 0;
4560 const u8 *eeprom_ch_index = NULL;
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004561 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004562 int band, ch;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004563 struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004564
4565 if (priv->channel_count) {
4566 IWL_DEBUG_INFO("Channel map already initialized.\n");
4567 return 0;
4568 }
4569
4570 if (priv->eeprom.version < 0x2f) {
4571 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
4572 priv->eeprom.version);
4573 return -EINVAL;
4574 }
4575
4576 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4577
4578 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004579 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4580 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4581 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4582 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4583 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004584
4585 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4586
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004587 priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004588 priv->channel_count, GFP_KERNEL);
4589 if (!priv->channel_info) {
4590 IWL_ERROR("Could not allocate channel_info\n");
4591 priv->channel_count = 0;
4592 return -ENOMEM;
4593 }
4594
4595 ch_info = priv->channel_info;
4596
4597 /* Loop through the 5 EEPROM bands adding them in order to the
4598 * channel map we maintain (that contains additional information than
4599 * what just in the EEPROM) */
4600 for (band = 1; band <= 5; band++) {
4601
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004602 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004603 &eeprom_ch_info, &eeprom_ch_index);
4604
4605 /* Loop through each band adding each of the channels */
4606 for (ch = 0; ch < eeprom_ch_count; ch++) {
4607 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004608 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4609 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004610
4611 /* permanently store EEPROM's channel regulatory flags
4612 * and max power in channel info database. */
4613 ch_info->eeprom = eeprom_ch_info[ch];
4614
4615 /* Copy the run-time flags so they are there even on
4616 * invalid channels */
4617 ch_info->flags = eeprom_ch_info[ch].flags;
4618
4619 if (!(is_channel_valid(ch_info))) {
4620 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4621 "No traffic\n",
4622 ch_info->channel,
4623 ch_info->flags,
4624 is_channel_a_band(ch_info) ?
4625 "5.2" : "2.4");
4626 ch_info++;
4627 continue;
4628 }
4629
4630 /* Initialize regulatory-based run-time data */
4631 ch_info->max_power_avg = ch_info->curr_txpow =
4632 eeprom_ch_info[ch].max_power_avg;
4633 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4634 ch_info->min_power = 0;
4635
Guy Cohenfe7c4042008-04-21 15:41:56 -07004636 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004637 " %ddBm): Ad-Hoc %ssupported\n",
4638 ch_info->channel,
4639 is_channel_a_band(ch_info) ?
4640 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004641 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004642 CHECK_AND_PRINT(IBSS),
4643 CHECK_AND_PRINT(ACTIVE),
4644 CHECK_AND_PRINT(RADAR),
4645 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004646 CHECK_AND_PRINT(DFS),
4647 eeprom_ch_info[ch].flags,
4648 eeprom_ch_info[ch].max_power_avg,
4649 ((eeprom_ch_info[ch].
4650 flags & EEPROM_CHANNEL_IBSS)
4651 && !(eeprom_ch_info[ch].
4652 flags & EEPROM_CHANNEL_RADAR))
4653 ? "" : "not ");
4654
4655 /* Set the user_txpower_limit to the highest power
4656 * supported by any channel */
4657 if (eeprom_ch_info[ch].max_power_avg >
4658 priv->user_txpower_limit)
4659 priv->user_txpower_limit =
4660 eeprom_ch_info[ch].max_power_avg;
4661
4662 ch_info++;
4663 }
4664 }
4665
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004666 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004667 if (iwl3945_txpower_set_from_eeprom(priv))
4668 return -EIO;
4669
4670 return 0;
4671}
4672
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004673/*
4674 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4675 */
4676static void iwl3945_free_channel_map(struct iwl3945_priv *priv)
4677{
4678 kfree(priv->channel_info);
4679 priv->channel_count = 0;
4680}
4681
Zhu Yib481de92007-09-25 17:54:57 -07004682/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4683 * sending probe req. This should be set long enough to hear probe responses
4684 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004685#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4686#define IWL_ACTIVE_DWELL_TIME_52 (20)
4687
4688#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4689#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004690
4691/* For faster active scanning, scan will move to the next channel if fewer than
4692 * PLCP_QUIET_THRESH packets are heard on this channel within
4693 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4694 * time if it's a quiet channel (nothing responded to our probe, and there's
4695 * no other traffic).
4696 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4697#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004698#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004699
4700/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4701 * Must be set longer than active dwell time.
4702 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4703#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4704#define IWL_PASSIVE_DWELL_TIME_52 (10)
4705#define IWL_PASSIVE_DWELL_BASE (100)
4706#define IWL_CHANNEL_TUNE_TIME 5
4707
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004708#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004709
Johannes Berg8318d782008-01-24 19:38:38 +01004710static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004711 enum ieee80211_band band,
4712 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004713{
Johannes Berg8318d782008-01-24 19:38:38 +01004714 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004715 return IWL_ACTIVE_DWELL_TIME_52 +
4716 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004717 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004718 return IWL_ACTIVE_DWELL_TIME_24 +
4719 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004720}
4721
Johannes Berg8318d782008-01-24 19:38:38 +01004722static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv,
4723 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004724{
Johannes Berg8318d782008-01-24 19:38:38 +01004725 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004726 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4727 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4728
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004729 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004730 /* If we're associated, we clamp the maximum passive
4731 * dwell time to be 98% of the beacon interval (minus
4732 * 2 * channel tune time) */
4733 passive = priv->beacon_int;
4734 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4735 passive = IWL_PASSIVE_DWELL_BASE;
4736 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4737 }
4738
Zhu Yib481de92007-09-25 17:54:57 -07004739 return passive;
4740}
4741
Johannes Berg8318d782008-01-24 19:38:38 +01004742static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv,
4743 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004744 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004745 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004746{
4747 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004748 const struct ieee80211_supported_band *sband;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004749 const struct iwl3945_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004750 u16 passive_dwell = 0;
4751 u16 active_dwell = 0;
4752 int added, i;
4753
Johannes Berg8318d782008-01-24 19:38:38 +01004754 sband = iwl3945_get_band(priv, band);
4755 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004756 return 0;
4757
Johannes Berg8318d782008-01-24 19:38:38 +01004758 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004759
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004760 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004761 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004762
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004763 if (passive_dwell <= active_dwell)
4764 passive_dwell = active_dwell + 1;
4765
Johannes Berg8318d782008-01-24 19:38:38 +01004766 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004767 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4768 continue;
4769
Johannes Berg8318d782008-01-24 19:38:38 +01004770 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004771
Johannes Berg8318d782008-01-24 19:38:38 +01004772 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004773 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004774 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004775 scan_ch->channel);
4776 continue;
4777 }
4778
Zhu Yib481de92007-09-25 17:54:57 -07004779 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4780 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004781 /* If passive , set up for auto-switch
4782 * and use long active_dwell time.
4783 */
4784 if (!is_active || is_channel_passive(ch_info) ||
4785 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4786 scan_ch->type = 0; /* passive */
4787 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4788 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4789 } else {
4790 scan_ch->type = 1; /* active */
4791 }
4792
4793 /* Set direct probe bits. These may be used both for active
4794 * scan channels (probes gets sent right away),
4795 * or for passive channels (probes get se sent only after
4796 * hearing clear Rx packet).*/
4797 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4798 if (n_probes)
4799 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4800 } else {
4801 /* uCode v1 does not allow setting direct probe bits on
4802 * passive channel. */
4803 if ((scan_ch->type & 1) && n_probes)
4804 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4805 }
Zhu Yib481de92007-09-25 17:54:57 -07004806
Ben Cahill9fbab512007-11-29 11:09:47 +08004807 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004808 scan_ch->tpc.dsp_atten = 110;
4809 /* scan_pwr_info->tpc.dsp_atten; */
4810
4811 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004812 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004813 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4814 else {
4815 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4816 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004817 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004818 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004819 */
4820 }
4821
4822 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4823 scan_ch->channel,
4824 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4825 (scan_ch->type & 1) ?
4826 active_dwell : passive_dwell);
4827
4828 scan_ch++;
4829 added++;
4830 }
4831
4832 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4833 return added;
4834}
4835
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004836static void iwl3945_init_hw_rates(struct iwl3945_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004837 struct ieee80211_rate *rates)
4838{
4839 int i;
4840
4841 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004842 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4843 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4844 rates[i].hw_value_short = i;
4845 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08004846 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004847 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004848 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004849 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004850 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004851 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004852 }
Zhu Yib481de92007-09-25 17:54:57 -07004853 }
4854}
4855
4856/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004857 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004858 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004859static int iwl3945_init_geos(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004860{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004861 struct iwl3945_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004862 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004863 struct ieee80211_channel *channels;
4864 struct ieee80211_channel *geo_ch;
4865 struct ieee80211_rate *rates;
4866 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004867
Johannes Berg8318d782008-01-24 19:38:38 +01004868 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4869 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004870 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4871 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4872 return 0;
4873 }
4874
Zhu Yib481de92007-09-25 17:54:57 -07004875 channels = kzalloc(sizeof(struct ieee80211_channel) *
4876 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004877 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004878 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004879
Tomas Winkler8211ef72008-03-02 01:36:04 +02004880 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004881 GFP_KERNEL);
4882 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004883 kfree(channels);
4884 return -ENOMEM;
4885 }
4886
Zhu Yib481de92007-09-25 17:54:57 -07004887 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004888 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4889 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4890 /* just OFDM */
4891 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4892 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004893
Tomas Winkler8211ef72008-03-02 01:36:04 +02004894 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4895 sband->channels = channels;
4896 /* OFDM & CCK */
4897 sband->bitrates = rates;
4898 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004899
4900 priv->ieee_channels = channels;
4901 priv->ieee_rates = rates;
4902
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004903 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004904
Tomas Winkler8211ef72008-03-02 01:36:04 +02004905 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004906 ch = &priv->channel_info[i];
4907
Tomas Winkler8211ef72008-03-02 01:36:04 +02004908 /* FIXME: might be removed if scan is OK*/
4909 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004910 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004911
4912 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004913 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004914 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004915 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004916
Tomas Winkler8211ef72008-03-02 01:36:04 +02004917 geo_ch = &sband->channels[sband->n_channels++];
4918
4919 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004920 geo_ch->max_power = ch->max_power_avg;
4921 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004922 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004923
4924 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004925 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4926 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004927
Johannes Berg8318d782008-01-24 19:38:38 +01004928 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4929 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004930
4931 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004932 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004933
4934 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4935 priv->max_channel_txpower_limit =
4936 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004937 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004938 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004939 }
4940
4941 /* Save flags for reg domain usage */
4942 geo_ch->orig_flags = geo_ch->flags;
4943
4944 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4945 ch->channel, geo_ch->center_freq,
4946 is_channel_a_band(ch) ? "5.2" : "2.4",
4947 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4948 "restricted" : "valid",
4949 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004950 }
4951
Tomas Winkler82b9a122008-03-04 18:09:30 -08004952 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4953 priv->cfg->sku & IWL_SKU_A) {
Zhu Yib481de92007-09-25 17:54:57 -07004954 printk(KERN_INFO DRV_NAME
4955 ": Incorrectly detected BG card as ABG. Please send "
4956 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
4957 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004958 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004959 }
4960
4961 printk(KERN_INFO DRV_NAME
4962 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004963 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4964 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004965
John W. Linvillee0e0a672008-03-25 15:58:40 -04004966 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4967 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4968 &priv->bands[IEEE80211_BAND_2GHZ];
4969 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4970 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4971 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004972
Zhu Yib481de92007-09-25 17:54:57 -07004973 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4974
4975 return 0;
4976}
4977
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004978/*
4979 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4980 */
4981static void iwl3945_free_geos(struct iwl3945_priv *priv)
4982{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004983 kfree(priv->ieee_channels);
4984 kfree(priv->ieee_rates);
4985 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4986}
4987
Zhu Yib481de92007-09-25 17:54:57 -07004988/******************************************************************************
4989 *
4990 * uCode download functions
4991 *
4992 ******************************************************************************/
4993
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004994static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004995{
Tomas Winkler98c92212008-01-14 17:46:20 -08004996 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4997 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4998 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4999 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
5000 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5001 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005002}
5003
5004/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005005 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005006 * looking at all data.
5007 */
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005008static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005009{
5010 u32 val;
5011 u32 save_len = len;
5012 int rc = 0;
5013 u32 errcnt;
5014
5015 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5016
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005017 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005018 if (rc)
5019 return rc;
5020
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005021 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
5022 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005023
5024 errcnt = 0;
5025 for (; len > 0; len -= sizeof(u32), image++) {
5026 /* read data comes through single port, auto-incr addr */
5027 /* NOTE: Use the debugless read so we don't flood kernel log
5028 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005029 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005030 if (val != le32_to_cpu(*image)) {
5031 IWL_ERROR("uCode INST section is invalid at "
5032 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5033 save_len - len, val, le32_to_cpu(*image));
5034 rc = -EIO;
5035 errcnt++;
5036 if (errcnt >= 20)
5037 break;
5038 }
5039 }
5040
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005041 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005042
5043 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08005044 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07005045
5046 return rc;
5047}
5048
5049
5050/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005051 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005052 * using sample data 100 bytes apart. If these sample points are good,
5053 * it's a pretty good bet that everything between them is good, too.
5054 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005055static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005056{
5057 u32 val;
5058 int rc = 0;
5059 u32 errcnt = 0;
5060 u32 i;
5061
5062 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5063
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005064 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005065 if (rc)
5066 return rc;
5067
5068 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5069 /* read data comes through single port, auto-incr addr */
5070 /* NOTE: Use the debugless read so we don't flood kernel log
5071 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005072 iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005073 i + IWL39_RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005074 val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005075 if (val != le32_to_cpu(*image)) {
5076#if 0 /* Enable this if you want to see details */
5077 IWL_ERROR("uCode INST section is invalid at "
5078 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5079 i, val, *image);
5080#endif
5081 rc = -EIO;
5082 errcnt++;
5083 if (errcnt >= 3)
5084 break;
5085 }
5086 }
5087
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005088 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005089
5090 return rc;
5091}
5092
5093
5094/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005095 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005096 * and verify its contents
5097 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005098static int iwl3945_verify_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005099{
5100 __le32 *image;
5101 u32 len;
5102 int rc = 0;
5103
5104 /* Try bootstrap */
5105 image = (__le32 *)priv->ucode_boot.v_addr;
5106 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005107 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005108 if (rc == 0) {
5109 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5110 return 0;
5111 }
5112
5113 /* Try initialize */
5114 image = (__le32 *)priv->ucode_init.v_addr;
5115 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005116 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005117 if (rc == 0) {
5118 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5119 return 0;
5120 }
5121
5122 /* Try runtime/protocol */
5123 image = (__le32 *)priv->ucode_code.v_addr;
5124 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005125 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005126 if (rc == 0) {
5127 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5128 return 0;
5129 }
5130
5131 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5132
Ben Cahill9fbab512007-11-29 11:09:47 +08005133 /* Since nothing seems to match, show first several data entries in
5134 * instruction SRAM, so maybe visual inspection will give a clue.
5135 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005136 image = (__le32 *)priv->ucode_boot.v_addr;
5137 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005138 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005139
5140 return rc;
5141}
5142
5143
5144/* check contents of special bootstrap uCode SRAM */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005145static int iwl3945_verify_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005146{
5147 __le32 *image = priv->ucode_boot.v_addr;
5148 u32 len = priv->ucode_boot.len;
5149 u32 reg;
5150 u32 val;
5151
5152 IWL_DEBUG_INFO("Begin verify bsm\n");
5153
5154 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005155 val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005156 for (reg = BSM_SRAM_LOWER_BOUND;
5157 reg < BSM_SRAM_LOWER_BOUND + len;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005158 reg += sizeof(u32), image++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005159 val = iwl3945_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005160 if (val != le32_to_cpu(*image)) {
5161 IWL_ERROR("BSM uCode verification failed at "
5162 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5163 BSM_SRAM_LOWER_BOUND,
5164 reg - BSM_SRAM_LOWER_BOUND, len,
5165 val, le32_to_cpu(*image));
5166 return -EIO;
5167 }
5168 }
5169
5170 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5171
5172 return 0;
5173}
5174
5175/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005176 * iwl3945_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005177 *
5178 * BSM operation:
5179 *
5180 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5181 * in special SRAM that does not power down during RFKILL. When powering back
5182 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5183 * the bootstrap program into the on-board processor, and starts it.
5184 *
5185 * The bootstrap program loads (via DMA) instructions and data for a new
5186 * program from host DRAM locations indicated by the host driver in the
5187 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5188 * automatically.
5189 *
5190 * When initializing the NIC, the host driver points the BSM to the
5191 * "initialize" uCode image. This uCode sets up some internal data, then
5192 * notifies host via "initialize alive" that it is complete.
5193 *
5194 * The host then replaces the BSM_DRAM_* pointer values to point to the
5195 * normal runtime uCode instructions and a backup uCode data cache buffer
5196 * (filled initially with starting data values for the on-board processor),
5197 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5198 * which begins normal operation.
5199 *
5200 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5201 * the backup data cache in DRAM before SRAM is powered down.
5202 *
5203 * When powering back up, the BSM loads the bootstrap program. This reloads
5204 * the runtime uCode instructions and the backup data cache into SRAM,
5205 * and re-launches the runtime uCode from where it left off.
5206 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005207static int iwl3945_load_bsm(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005208{
5209 __le32 *image = priv->ucode_boot.v_addr;
5210 u32 len = priv->ucode_boot.len;
5211 dma_addr_t pinst;
5212 dma_addr_t pdata;
5213 u32 inst_len;
5214 u32 data_len;
5215 int rc;
5216 int i;
5217 u32 done;
5218 u32 reg_offset;
5219
5220 IWL_DEBUG_INFO("Begin load bsm\n");
5221
5222 /* make sure bootstrap program is no larger than BSM's SRAM size */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005223 if (len > IWL39_MAX_BSM_SIZE)
Zhu Yib481de92007-09-25 17:54:57 -07005224 return -EINVAL;
5225
5226 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005227 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005228 * NOTE: iwl3945_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005229 * after the "initialize" uCode has run, to point to
5230 * runtime/protocol instructions and backup data cache. */
5231 pinst = priv->ucode_init.p_addr;
5232 pdata = priv->ucode_init_data.p_addr;
5233 inst_len = priv->ucode_init.len;
5234 data_len = priv->ucode_init_data.len;
5235
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005236 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005237 if (rc)
5238 return rc;
5239
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005240 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5241 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5242 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5243 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005244
5245 /* Fill BSM memory with bootstrap instructions */
5246 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5247 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5248 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005249 _iwl3945_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005250 le32_to_cpu(*image));
5251
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005252 rc = iwl3945_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005253 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005254 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005255 return rc;
5256 }
5257
5258 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005259 iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5260 iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005261 IWL39_RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005262 iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005263
5264 /* Load bootstrap code into instruction SRAM now,
5265 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005266 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005267 BSM_WR_CTRL_REG_BIT_START);
5268
5269 /* Wait for load of bootstrap uCode to finish */
5270 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005271 done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005272 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5273 break;
5274 udelay(10);
5275 }
5276 if (i < 100)
5277 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5278 else {
5279 IWL_ERROR("BSM write did not complete!\n");
5280 return -EIO;
5281 }
5282
5283 /* Enable future boot loads whenever power management unit triggers it
5284 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005285 iwl3945_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005286 BSM_WR_CTRL_REG_BIT_START_EN);
5287
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005288 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005289
5290 return 0;
5291}
5292
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005293static void iwl3945_nic_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005294{
5295 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005296 iwl3945_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005297}
5298
5299/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005300 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005301 *
5302 * Copy into buffers for card to fetch via bus-mastering
5303 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005304static int iwl3945_read_ucode(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005305{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005306 struct iwl3945_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005307 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07005308 const struct firmware *ucode_raw;
5309 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005310 const char *name_pre = priv->cfg->fw_name_pre;
5311 const unsigned int api_max = priv->cfg->ucode_api_max;
5312 const unsigned int api_min = priv->cfg->ucode_api_min;
5313 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07005314 u8 *src;
5315 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08005316 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07005317
5318 /* Ask kernel firmware_class module to get the boot firmware off disk.
5319 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08005320 for (index = api_max; index >= api_min; index--) {
5321 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
5322 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
5323 if (ret < 0) {
5324 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5325 buf, ret);
5326 if (ret == -ENOENT)
5327 continue;
5328 else
5329 goto error;
5330 } else {
5331 if (index < api_max)
5332 IWL_ERROR("Loaded firmware %s, which is deprecated. Please use API v%u instead.\n",
5333 buf, api_max);
5334 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5335 buf, ucode_raw->size);
5336 break;
5337 }
Zhu Yib481de92007-09-25 17:54:57 -07005338 }
5339
Reinette Chatrea0987a82008-12-02 12:14:06 -08005340 if (ret < 0)
5341 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07005342
5343 /* Make sure that we got at least our header! */
5344 if (ucode_raw->size < sizeof(*ucode)) {
5345 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005346 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005347 goto err_release;
5348 }
5349
5350 /* Data from ucode file: header followed by uCode images */
5351 ucode = (void *)ucode_raw->data;
5352
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005353 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08005354 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07005355 inst_size = le32_to_cpu(ucode->inst_size);
5356 data_size = le32_to_cpu(ucode->data_size);
5357 init_size = le32_to_cpu(ucode->init_size);
5358 init_data_size = le32_to_cpu(ucode->init_data_size);
5359 boot_size = le32_to_cpu(ucode->boot_size);
5360
Reinette Chatrea0987a82008-12-02 12:14:06 -08005361 /* api_ver should match the api version forming part of the
5362 * firmware filename ... but we don't check for that and only rely
5363 * on the API version read from firware header from here on forward */
5364
5365 if (api_ver < api_min || api_ver > api_max) {
5366 IWL_ERROR("Driver unable to support your firmware API. "
5367 "Driver supports v%u, firmware is v%u.\n",
5368 api_max, api_ver);
5369 priv->ucode_ver = 0;
5370 ret = -EINVAL;
5371 goto err_release;
5372 }
5373 if (api_ver != api_max)
5374 IWL_ERROR("Firmware has old API version. Expected %u, "
5375 "got %u. New firmware can be obtained "
5376 "from http://www.intellinuxwireless.org.\n",
5377 api_max, api_ver);
5378
5379 printk(KERN_INFO DRV_NAME " loaded firmware version %u.%u.%u.%u\n",
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005380 IWL_UCODE_MAJOR(priv->ucode_ver),
5381 IWL_UCODE_MINOR(priv->ucode_ver),
5382 IWL_UCODE_API(priv->ucode_ver),
5383 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08005384 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
5385 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08005386 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5387 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5388 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5389 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5390 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005391
Reinette Chatrea0987a82008-12-02 12:14:06 -08005392
Zhu Yib481de92007-09-25 17:54:57 -07005393 /* Verify size of file vs. image size info in file's header */
5394 if (ucode_raw->size < sizeof(*ucode) +
5395 inst_size + data_size + init_size +
5396 init_data_size + boot_size) {
5397
5398 IWL_DEBUG_INFO("uCode file size %d too small\n",
5399 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005400 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005401 goto err_release;
5402 }
5403
5404 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005405 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005406 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5407 inst_size);
5408 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005409 goto err_release;
5410 }
5411
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005412 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005413 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5414 data_size);
5415 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005416 goto err_release;
5417 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005418 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005419 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5420 init_size);
5421 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005422 goto err_release;
5423 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005424 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005425 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5426 init_data_size);
5427 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005428 goto err_release;
5429 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005430 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005431 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5432 boot_size);
5433 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005434 goto err_release;
5435 }
5436
5437 /* Allocate ucode buffers for card's bus-master loading ... */
5438
5439 /* Runtime instructions and 2 copies of data:
5440 * 1) unmodified from disk
5441 * 2) backup cache for save/restore during power-downs */
5442 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005443 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005444
5445 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005446 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005447
5448 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005449 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005450
5451 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005452 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005453 goto err_pci_alloc;
5454
Tomas Winkler90e759d2007-11-29 11:09:41 +08005455 /* Initialization instructions and data */
5456 if (init_size && init_data_size) {
5457 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005458 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005459
5460 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005461 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005462
5463 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5464 goto err_pci_alloc;
5465 }
5466
5467 /* Bootstrap (instructions only, no data) */
5468 if (boot_size) {
5469 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005470 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005471
5472 if (!priv->ucode_boot.v_addr)
5473 goto err_pci_alloc;
5474 }
5475
Zhu Yib481de92007-09-25 17:54:57 -07005476 /* Copy images into buffers for card's bus-master reads ... */
5477
5478 /* Runtime instructions (first block of data in file) */
5479 src = &ucode->data[0];
5480 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005481 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005482 memcpy(priv->ucode_code.v_addr, src, len);
5483 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5484 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5485
5486 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005487 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005488 src = &ucode->data[inst_size];
5489 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005490 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005491 memcpy(priv->ucode_data.v_addr, src, len);
5492 memcpy(priv->ucode_data_backup.v_addr, src, len);
5493
5494 /* Initialization instructions (3rd block) */
5495 if (init_size) {
5496 src = &ucode->data[inst_size + data_size];
5497 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005498 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5499 len);
Zhu Yib481de92007-09-25 17:54:57 -07005500 memcpy(priv->ucode_init.v_addr, src, len);
5501 }
5502
5503 /* Initialization data (4th block) */
5504 if (init_data_size) {
5505 src = &ucode->data[inst_size + data_size + init_size];
5506 len = priv->ucode_init_data.len;
5507 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5508 (int)len);
5509 memcpy(priv->ucode_init_data.v_addr, src, len);
5510 }
5511
5512 /* Bootstrap instructions (5th block) */
5513 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5514 len = priv->ucode_boot.len;
5515 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5516 (int)len);
5517 memcpy(priv->ucode_boot.v_addr, src, len);
5518
5519 /* We have our copies now, allow OS release its copies */
5520 release_firmware(ucode_raw);
5521 return 0;
5522
5523 err_pci_alloc:
5524 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005525 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005526 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005527
5528 err_release:
5529 release_firmware(ucode_raw);
5530
5531 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005532 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005533}
5534
5535
5536/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005537 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005538 *
5539 * Tell initialization uCode where to find runtime uCode.
5540 *
5541 * BSM registers initially contain pointers to initialization uCode.
5542 * We need to replace them to load runtime uCode inst and data,
5543 * and to save runtime data when powering down.
5544 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005545static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005546{
5547 dma_addr_t pinst;
5548 dma_addr_t pdata;
5549 int rc = 0;
5550 unsigned long flags;
5551
5552 /* bits 31:0 for 3945 */
5553 pinst = priv->ucode_code.p_addr;
5554 pdata = priv->ucode_data_backup.p_addr;
5555
5556 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005557 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005558 if (rc) {
5559 spin_unlock_irqrestore(&priv->lock, flags);
5560 return rc;
5561 }
5562
5563 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005564 iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5565 iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5566 iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005567 priv->ucode_data.len);
5568
Tomas Winklera96a27f2008-10-23 23:48:56 -07005569 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005570 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005571 iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005572 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5573
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005574 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005575
5576 spin_unlock_irqrestore(&priv->lock, flags);
5577
5578 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5579
5580 return rc;
5581}
5582
5583/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005584 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005585 *
5586 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5587 *
Zhu Yib481de92007-09-25 17:54:57 -07005588 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005589 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005590static void iwl3945_init_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005591{
5592 /* Check alive response for "valid" sign from uCode */
5593 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5594 /* We had an error bringing up the hardware, so take it
5595 * all the way back down so we can try again */
5596 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5597 goto restart;
5598 }
5599
5600 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5601 * This is a paranoid check, because we would not have gotten the
5602 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005603 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005604 /* Runtime instruction load was bad;
5605 * take it all the way back down so we can try again */
5606 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5607 goto restart;
5608 }
5609
5610 /* Send pointers to protocol/runtime uCode image ... init code will
5611 * load and launch runtime uCode, which will send us another "Alive"
5612 * notification. */
5613 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005614 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005615 /* Runtime instruction load won't happen;
5616 * take it all the way back down so we can try again */
5617 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5618 goto restart;
5619 }
5620 return;
5621
5622 restart:
5623 queue_work(priv->workqueue, &priv->restart);
5624}
5625
5626
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005627/* temporary */
5628static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5629 struct sk_buff *skb);
5630
Zhu Yib481de92007-09-25 17:54:57 -07005631/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005632 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005633 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005634 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005635 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005636static void iwl3945_alive_start(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005637{
5638 int rc = 0;
5639 int thermal_spin = 0;
5640 u32 rfkill;
5641
5642 IWL_DEBUG_INFO("Runtime Alive received.\n");
5643
5644 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5645 /* We had an error bringing up the hardware, so take it
5646 * all the way back down so we can try again */
5647 IWL_DEBUG_INFO("Alive failed.\n");
5648 goto restart;
5649 }
5650
5651 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5652 * This is a paranoid check, because we would not have gotten the
5653 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005654 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005655 /* Runtime instruction load was bad;
5656 * take it all the way back down so we can try again */
5657 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5658 goto restart;
5659 }
5660
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005661 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005662
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005663 rc = iwl3945_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005664 if (rc) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005665 IWL_WARNING("Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005666 return;
5667 }
5668
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005669 rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005670 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005671 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005672
5673 if (rfkill & 0x1) {
5674 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005675 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005676 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005677 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005678 thermal_spin++;
5679 udelay(10);
5680 }
5681
5682 if (thermal_spin)
5683 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5684 thermal_spin * 10);
5685 } else
5686 set_bit(STATUS_RF_KILL_HW, &priv->status);
5687
Ben Cahill9fbab512007-11-29 11:09:47 +08005688 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005689 set_bit(STATUS_ALIVE, &priv->status);
5690
5691 /* Clear out the uCode error bit if it is set */
5692 clear_bit(STATUS_FW_ERROR, &priv->status);
5693
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005694 if (iwl3945_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005695 return;
5696
Johannes Berg36d68252008-05-15 12:55:26 +02005697 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005698
5699 priv->active_rate = priv->rates_mask;
5700 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5701
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005702 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005703
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005704 if (iwl3945_is_associated(priv)) {
5705 struct iwl3945_rxon_cmd *active_rxon =
5706 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005707
5708 memcpy(&priv->staging_rxon, &priv->active_rxon,
5709 sizeof(priv->staging_rxon));
5710 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5711 } else {
5712 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005713 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005714 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5715 }
5716
Ben Cahill9fbab512007-11-29 11:09:47 +08005717 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005718 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005719
5720 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005721 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005722
Zhu Yib481de92007-09-25 17:54:57 -07005723 iwl3945_reg_txpower_periodic(priv);
5724
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005725 iwl3945_led_register(priv);
5726
Zhu Yib481de92007-09-25 17:54:57 -07005727 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005728 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005729 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005730
5731 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005732 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005733
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005734 /* reassociate for ADHOC mode */
5735 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5736 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5737 priv->vif);
5738 if (beacon)
5739 iwl3945_mac_beacon_update(priv->hw, beacon);
5740 }
5741
Zhu Yib481de92007-09-25 17:54:57 -07005742 return;
5743
5744 restart:
5745 queue_work(priv->workqueue, &priv->restart);
5746}
5747
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005748static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005749
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005750static void __iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005751{
5752 unsigned long flags;
5753 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5754 struct ieee80211_conf *conf = NULL;
5755
5756 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5757
5758 conf = ieee80211_get_hw_conf(priv->hw);
5759
5760 if (!exit_pending)
5761 set_bit(STATUS_EXIT_PENDING, &priv->status);
5762
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005763 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005764 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005765
5766 /* Unblock any waiting calls */
5767 wake_up_interruptible_all(&priv->wait_command_queue);
5768
Zhu Yib481de92007-09-25 17:54:57 -07005769 /* Wipe out the EXIT_PENDING status bit if we are not actually
5770 * exiting the module */
5771 if (!exit_pending)
5772 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5773
5774 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005775 iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005776
5777 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005778 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005779 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005780 spin_unlock_irqrestore(&priv->lock, flags);
5781 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005782
5783 if (priv->mac80211_registered)
5784 ieee80211_stop_queues(priv->hw);
5785
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005786 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005787 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005788 if (!iwl3945_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005789 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5790 STATUS_RF_KILL_HW |
5791 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5792 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005793 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5794 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005795 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005796 STATUS_IN_SUSPEND |
5797 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5798 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005799 goto exit;
5800 }
5801
5802 /* ...otherwise clear out all the status bits but the RF Kill and
5803 * SUSPEND bits and continue taking the NIC down. */
5804 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5805 STATUS_RF_KILL_HW |
5806 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5807 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005808 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5809 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005810 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5811 STATUS_IN_SUSPEND |
5812 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005813 STATUS_FW_ERROR |
5814 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5815 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005816
5817 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005818 iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005819 spin_unlock_irqrestore(&priv->lock, flags);
5820
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005821 iwl3945_hw_txq_ctx_stop(priv);
5822 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005823
5824 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005825 if (!iwl3945_grab_nic_access(priv)) {
5826 iwl3945_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005827 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005828 iwl3945_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005829 }
5830 spin_unlock_irqrestore(&priv->lock, flags);
5831
5832 udelay(5);
5833
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005834 iwl3945_hw_nic_stop_master(priv);
5835 iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
5836 iwl3945_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005837
5838 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08005839 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005840
5841 if (priv->ibss_beacon)
5842 dev_kfree_skb(priv->ibss_beacon);
5843 priv->ibss_beacon = NULL;
5844
5845 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005846 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005847}
5848
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005849static void iwl3945_down(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005850{
5851 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005852 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005853 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005854
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005855 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005856}
5857
5858#define MAX_HW_RESTARTS 5
5859
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005860static int __iwl3945_up(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005861{
5862 int rc, i;
5863
5864 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5865 IWL_WARNING("Exit pending; will not bring the NIC up\n");
5866 return -EIO;
5867 }
5868
5869 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5870 IWL_WARNING("Radio disabled by SW RF kill (module "
5871 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005872 return -ENODEV;
5873 }
5874
Reinette Chatree903fbd2008-01-30 22:05:15 -08005875 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07005876 IWL_ERROR("ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005877 return -EIO;
5878 }
5879
Zhu Yie655b9f2008-01-24 02:19:38 -08005880 /* If platform's RF_KILL switch is NOT set to KILL */
5881 if (iwl3945_read32(priv, CSR_GP_CNTRL) &
5882 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5883 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5884 else {
5885 set_bit(STATUS_RF_KILL_HW, &priv->status);
5886 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5887 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
5888 return -ENODEV;
5889 }
Zhu Yib481de92007-09-25 17:54:57 -07005890 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005891
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005892 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005893
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005894 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005895 if (rc) {
5896 IWL_ERROR("Unable to int nic\n");
5897 return rc;
5898 }
5899
5900 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005901 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5902 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005903 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5904
5905 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005906 iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF);
5907 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005908
5909 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005910 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5911 iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005912
5913 /* Copy original ucode data image from disk into backup cache.
5914 * This will be used to initialize the on-board processor's
5915 * data SRAM for a clean start when the runtime program first loads. */
5916 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08005917 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005918
Zhu Yie655b9f2008-01-24 02:19:38 -08005919 /* We return success when we resume from suspend and rf_kill is on. */
5920 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5921 return 0;
5922
Zhu Yib481de92007-09-25 17:54:57 -07005923 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5924
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005925 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005926
5927 /* load bootstrap state machine,
5928 * load bootstrap program into processor's memory,
5929 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005930 rc = iwl3945_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005931
5932 if (rc) {
5933 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
5934 continue;
5935 }
5936
5937 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005938 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005939
Zhu Yib481de92007-09-25 17:54:57 -07005940 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5941
5942 return 0;
5943 }
5944
5945 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005946 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005947 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005948
5949 /* tried to restart and config the device for as long as our
5950 * patience could withstand */
5951 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
5952 return -EIO;
5953}
5954
5955
5956/*****************************************************************************
5957 *
5958 * Workqueue callbacks
5959 *
5960 *****************************************************************************/
5961
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005962static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005963{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005964 struct iwl3945_priv *priv =
5965 container_of(data, struct iwl3945_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005966
5967 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5968 return;
5969
5970 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005971 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005972 mutex_unlock(&priv->mutex);
5973}
5974
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005975static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005976{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005977 struct iwl3945_priv *priv =
5978 container_of(data, struct iwl3945_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005979
5980 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5981 return;
5982
5983 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005984 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005985 mutex_unlock(&priv->mutex);
5986}
5987
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005988static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005989{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005990 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005991
5992 wake_up_interruptible(&priv->wait_command_queue);
5993
5994 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5995 return;
5996
5997 mutex_lock(&priv->mutex);
5998
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005999 if (!iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006000 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
6001 "HW and/or SW RF Kill no longer active, restarting "
6002 "device\n");
6003 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
6004 queue_work(priv->workqueue, &priv->restart);
6005 } else {
6006
6007 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
6008 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
6009 "disabled by SW switch\n");
6010 else
6011 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
6012 "Kill switch must be turned off for "
6013 "wireless networking to work.\n");
6014 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08006015
Zhu Yib481de92007-09-25 17:54:57 -07006016 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006017 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006018}
6019
6020#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6021
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006022static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006023{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006024 struct iwl3945_priv *priv =
6025 container_of(data, struct iwl3945_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07006026
6027 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6028 return;
6029
6030 mutex_lock(&priv->mutex);
6031 if (test_bit(STATUS_SCANNING, &priv->status) ||
6032 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6033 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6034 "Scan completion watchdog resetting adapter (%dms)\n",
6035 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006036
Zhu Yib481de92007-09-25 17:54:57 -07006037 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006038 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006039 }
6040 mutex_unlock(&priv->mutex);
6041}
6042
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006043static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006044{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006045 struct iwl3945_priv *priv =
6046 container_of(data, struct iwl3945_priv, request_scan);
6047 struct iwl3945_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006048 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006049 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006050 .meta.flags = CMD_SIZE_HUGE,
6051 };
6052 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006053 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006054 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006055 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01006056 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04006057 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07006058
6059 conf = ieee80211_get_hw_conf(priv->hw);
6060
6061 mutex_lock(&priv->mutex);
6062
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006063 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006064 IWL_WARNING("request scan called when driver not ready.\n");
6065 goto done;
6066 }
6067
Tomas Winklera96a27f2008-10-23 23:48:56 -07006068 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07006069 * was given the chance to run... */
6070 if (!test_bit(STATUS_SCANNING, &priv->status))
6071 goto done;
6072
6073 /* This should never be called or scheduled if there is currently
6074 * a scan active in the hardware. */
6075 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6076 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6077 "Ignoring second request.\n");
6078 rc = -EIO;
6079 goto done;
6080 }
6081
6082 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6083 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6084 goto done;
6085 }
6086
6087 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6088 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6089 goto done;
6090 }
6091
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006092 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006093 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6094 goto done;
6095 }
6096
6097 if (!test_bit(STATUS_READY, &priv->status)) {
6098 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6099 goto done;
6100 }
6101
6102 if (!priv->scan_bands) {
6103 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6104 goto done;
6105 }
6106
6107 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006108 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006109 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6110 if (!priv->scan) {
6111 rc = -ENOMEM;
6112 goto done;
6113 }
6114 }
6115 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006116 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006117
6118 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6119 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6120
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006121 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006122 u16 interval = 0;
6123 u32 extra;
6124 u32 suspend_time = 100;
6125 u32 scan_suspend_time = 100;
6126 unsigned long flags;
6127
6128 IWL_DEBUG_INFO("Scanning while associated...\n");
6129
6130 spin_lock_irqsave(&priv->lock, flags);
6131 interval = priv->beacon_int;
6132 spin_unlock_irqrestore(&priv->lock, flags);
6133
6134 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006135 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006136 if (!interval)
6137 interval = suspend_time;
6138 /*
6139 * suspend time format:
6140 * 0-19: beacon interval in usec (time before exec.)
6141 * 20-23: 0
6142 * 24-31: number of beacons (suspend between channels)
6143 */
6144
6145 extra = (suspend_time / interval) << 24;
6146 scan_suspend_time = 0xFF0FFFFF &
6147 (extra | ((suspend_time % interval) * 1024));
6148
6149 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6150 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6151 scan_suspend_time, interval);
6152 }
6153
6154 /* We should add the ability for user to lock to PASSIVE ONLY */
6155 if (priv->one_direct_scan) {
6156 IWL_DEBUG_SCAN
6157 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006158 print_ssid(ssid, priv->direct_ssid,
6159 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07006160 scan->direct_scan[0].id = WLAN_EID_SSID;
6161 scan->direct_scan[0].len = priv->direct_ssid_len;
6162 memcpy(scan->direct_scan[0].ssid,
6163 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006164 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006165 } else
Bill Moss786b4552008-04-17 16:03:40 -07006166 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006167
6168 /* We don't build a direct scan probe request; the uCode will do
6169 * that based on the direct_mask added to each channel entry */
6170 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006171 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01006172 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07006173 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6174 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6175 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6176
6177 /* flags + rate selection */
6178
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006179 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006180 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6181 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
6182 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006183 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006184 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07006185 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
6186 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006187 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006188 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006189 IWL_WARNING("Invalid scan band count\n");
6190 goto done;
6191 }
6192
6193 /* select Rx antennas */
6194 scan->flags |= iwl3945_get_antenna_flags(priv);
6195
Johannes Berg05c914f2008-09-11 00:01:58 +02006196 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07006197 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6198
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08006199 scan->channel_count =
6200 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
6201 n_probes,
6202 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07006203
Reinette Chatre14b54332008-11-04 12:21:35 -08006204 if (scan->channel_count == 0) {
6205 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
6206 goto done;
6207 }
6208
Zhu Yib481de92007-09-25 17:54:57 -07006209 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006210 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006211 cmd.data = scan;
6212 scan->len = cpu_to_le16(cmd.len);
6213
6214 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006215 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07006216 if (rc)
6217 goto done;
6218
6219 queue_delayed_work(priv->workqueue, &priv->scan_check,
6220 IWL_SCAN_CHECK_WATCHDOG);
6221
6222 mutex_unlock(&priv->mutex);
6223 return;
6224
6225 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08006226 /* can not perform scan make sure we clear scanning
6227 * bits from status so next scan request can be performed.
6228 * if we dont clear scanning status bit here all next scan
6229 * will fail
6230 */
6231 clear_bit(STATUS_SCAN_HW, &priv->status);
6232 clear_bit(STATUS_SCANNING, &priv->status);
6233
Ian Schram01ebd062007-10-25 17:15:22 +08006234 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006235 queue_work(priv->workqueue, &priv->scan_completed);
6236 mutex_unlock(&priv->mutex);
6237}
6238
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006239static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006240{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006241 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006242
6243 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6244 return;
6245
6246 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006247 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006248 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006249 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006250}
6251
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006252static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006253{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006254 struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006255
6256 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6257 return;
6258
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006259 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006260 queue_work(priv->workqueue, &priv->up);
6261}
6262
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006263static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006264{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006265 struct iwl3945_priv *priv =
6266 container_of(data, struct iwl3945_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006267
6268 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6269 return;
6270
6271 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006272 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006273 mutex_unlock(&priv->mutex);
6274}
6275
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006276#define IWL_DELAY_NEXT_SCAN (HZ*2)
6277
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006278static void iwl3945_post_associate(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006279{
Zhu Yib481de92007-09-25 17:54:57 -07006280 int rc = 0;
6281 struct ieee80211_conf *conf = NULL;
6282
Johannes Berg05c914f2008-09-11 00:01:58 +02006283 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006284 IWL_ERROR("%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07006285 return;
6286 }
6287
6288
Johannes Berge1749612008-10-27 15:59:26 -07006289 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
6290 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07006291
6292 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6293 return;
6294
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006295 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006296 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08006297
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006298 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006299
Zhu Yib481de92007-09-25 17:54:57 -07006300 conf = ieee80211_get_hw_conf(priv->hw);
6301
6302 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006303 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006304
Tomas Winkler28afaf92008-12-19 10:37:06 +08006305 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006306 iwl3945_setup_rxon_timing(priv);
6307 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006308 sizeof(priv->rxon_timing), &priv->rxon_timing);
6309 if (rc)
6310 IWL_WARNING("REPLY_RXON_TIMING failed - "
6311 "Attempting to continue.\n");
6312
6313 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6314
6315 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6316
6317 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6318 priv->assoc_id, priv->beacon_int);
6319
6320 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6321 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6322 else
6323 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6324
6325 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6326 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6327 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6328 else
6329 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6330
Johannes Berg05c914f2008-09-11 00:01:58 +02006331 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006332 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6333
6334 }
6335
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006336 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006337
6338 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02006339 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006340 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006341 break;
6342
Johannes Berg05c914f2008-09-11 00:01:58 +02006343 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07006344
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08006345 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006346 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006347 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006348 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006349 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6350 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006351 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6352 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006353
6354 break;
6355
6356 default:
6357 IWL_ERROR("%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006358 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006359 break;
6360 }
6361
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006362 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006363
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006364 /* we have just associated, don't start scan too early */
6365 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006366}
6367
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006368static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006369{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006370 struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006371
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006372 if (!iwl3945_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006373 return;
6374
6375 mutex_lock(&priv->mutex);
6376
6377 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006378 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006379
6380 mutex_unlock(&priv->mutex);
6381}
6382
Johannes Berge8975582008-10-09 12:18:51 +02006383static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006384
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006385static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006386{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006387 struct iwl3945_priv *priv =
6388 container_of(work, struct iwl3945_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006389
6390 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6391
6392 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6393 return;
6394
Zhu Yia0646472007-12-20 14:10:01 +08006395 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02006396 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006397
Zhu Yib481de92007-09-25 17:54:57 -07006398 ieee80211_scan_completed(priv->hw);
6399
6400 /* Since setting the TXPOWER may have been deferred while
6401 * performing the scan, fire one off */
6402 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006403 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006404 mutex_unlock(&priv->mutex);
6405}
6406
6407/*****************************************************************************
6408 *
6409 * mac80211 entry point functions
6410 *
6411 *****************************************************************************/
6412
Zhu Yi5a66926a2008-01-14 17:46:18 -08006413#define UCODE_READY_TIMEOUT (2 * HZ)
6414
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006415static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006416{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006417 struct iwl3945_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006418 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006419
6420 IWL_DEBUG_MAC80211("enter\n");
6421
Zhu Yi5a66926a2008-01-14 17:46:18 -08006422 if (pci_enable_device(priv->pci_dev)) {
6423 IWL_ERROR("Fail to pci_enable_device\n");
6424 return -ENODEV;
6425 }
6426 pci_restore_state(priv->pci_dev);
6427 pci_enable_msi(priv->pci_dev);
6428
6429 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6430 DRV_NAME, priv);
6431 if (ret) {
6432 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6433 goto out_disable_msi;
6434 }
6435
Zhu Yib481de92007-09-25 17:54:57 -07006436 /* we should be verifying the device is ready to be opened */
6437 mutex_lock(&priv->mutex);
6438
Zhu Yi5a66926a2008-01-14 17:46:18 -08006439 memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
6440 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6441 * ucode filename and max sizes are card-specific. */
6442
6443 if (!priv->ucode_code.len) {
6444 ret = iwl3945_read_ucode(priv);
6445 if (ret) {
6446 IWL_ERROR("Could not read microcode: %d\n", ret);
6447 mutex_unlock(&priv->mutex);
6448 goto out_release_irq;
6449 }
6450 }
6451
Zhu Yie655b9f2008-01-24 02:19:38 -08006452 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006453
Zhu Yib481de92007-09-25 17:54:57 -07006454 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08006455
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006456 iwl3945_rfkill_set_hw_state(priv);
6457
Zhu Yie655b9f2008-01-24 02:19:38 -08006458 if (ret)
6459 goto out_release_irq;
6460
6461 IWL_DEBUG_INFO("Start UP work.\n");
6462
6463 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6464 return 0;
6465
Zhu Yi5a66926a2008-01-14 17:46:18 -08006466 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6467 * mac80211 will not be run successfully. */
6468 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6469 test_bit(STATUS_READY, &priv->status),
6470 UCODE_READY_TIMEOUT);
6471 if (!ret) {
6472 if (!test_bit(STATUS_READY, &priv->status)) {
6473 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6474 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6475 ret = -ETIMEDOUT;
6476 goto out_release_irq;
6477 }
6478 }
6479
Zhu Yie655b9f2008-01-24 02:19:38 -08006480 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006481 IWL_DEBUG_MAC80211("leave\n");
6482 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006483
6484out_release_irq:
6485 free_irq(priv->pci_dev->irq, priv);
6486out_disable_msi:
6487 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006488 pci_disable_device(priv->pci_dev);
6489 priv->is_open = 0;
6490 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08006491 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006492}
6493
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006494static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006495{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006496 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006497
6498 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006499
Zhu Yie655b9f2008-01-24 02:19:38 -08006500 if (!priv->is_open) {
6501 IWL_DEBUG_MAC80211("leave - skip\n");
6502 return;
6503 }
6504
Zhu Yib481de92007-09-25 17:54:57 -07006505 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006506
6507 if (iwl3945_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006508 /* stop mac, cancel any scan request and clear
6509 * RXON_FILTER_ASSOC_MSK BIT
6510 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08006511 mutex_lock(&priv->mutex);
6512 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006513 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006514 }
6515
Zhu Yi5a66926a2008-01-14 17:46:18 -08006516 iwl3945_down(priv);
6517
6518 flush_workqueue(priv->workqueue);
6519 free_irq(priv->pci_dev->irq, priv);
6520 pci_disable_msi(priv->pci_dev);
6521 pci_save_state(priv->pci_dev);
6522 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006523
Zhu Yib481de92007-09-25 17:54:57 -07006524 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006525}
6526
Johannes Berge039fa42008-05-15 12:55:29 +02006527static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006528{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006529 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006530
6531 IWL_DEBUG_MAC80211("enter\n");
6532
Zhu Yib481de92007-09-25 17:54:57 -07006533 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006534 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006535
Johannes Berge039fa42008-05-15 12:55:29 +02006536 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006537 dev_kfree_skb_any(skb);
6538
6539 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006540 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006541}
6542
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006543static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006544 struct ieee80211_if_init_conf *conf)
6545{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006546 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006547 unsigned long flags;
6548
Johannes Berg32bfd352007-12-19 01:31:26 +01006549 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006550
Johannes Berg32bfd352007-12-19 01:31:26 +01006551 if (priv->vif) {
6552 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006553 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006554 }
6555
6556 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006557 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006558 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006559
6560 spin_unlock_irqrestore(&priv->lock, flags);
6561
6562 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006563
6564 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006565 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006566 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6567 }
6568
Zhu Yi5a66926a2008-01-14 17:46:18 -08006569 if (iwl3945_is_ready(priv))
6570 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006571
Zhu Yib481de92007-09-25 17:54:57 -07006572 mutex_unlock(&priv->mutex);
6573
Zhu Yi5a66926a2008-01-14 17:46:18 -08006574 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006575 return 0;
6576}
6577
6578/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006579 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006580 *
6581 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6582 * be set inappropriately and the driver currently sets the hardware up to
6583 * use it whenever needed.
6584 */
Johannes Berge8975582008-10-09 12:18:51 +02006585static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006586{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006587 struct iwl3945_priv *priv = hw->priv;
6588 const struct iwl3945_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006589 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006590 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006591 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006592
6593 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006594 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006595
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006596 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006597 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006598 ret = -EIO;
6599 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006600 }
6601
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006602 if (unlikely(!iwl3945_param_disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006603 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006604 IWL_DEBUG_MAC80211("leave - scanning\n");
6605 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006606 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006607 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006608 }
6609
6610 spin_lock_irqsave(&priv->lock, flags);
6611
Johannes Berg8318d782008-01-24 19:38:38 +01006612 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6613 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006614 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006615 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006616 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006617 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6618 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006619 ret = -EINVAL;
6620 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006621 }
6622
Johannes Berg8318d782008-01-24 19:38:38 +01006623 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006624
Johannes Berg8318d782008-01-24 19:38:38 +01006625 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006626
6627 /* The list of supported rates and rate mask can be different
6628 * for each phymode; since the phymode may have changed, reset
6629 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006630 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006631
6632 spin_unlock_irqrestore(&priv->lock, flags);
6633
6634#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6635 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006636 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006637 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006638 }
6639#endif
6640
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006641 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006642
6643 if (!conf->radio_enabled) {
6644 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006645 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006646 }
6647
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006648 if (iwl3945_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006649 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006650 ret = -EIO;
6651 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006652 }
6653
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006654 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006655
6656 if (memcmp(&priv->active_rxon,
6657 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006658 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006659 else
6660 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6661
6662 IWL_DEBUG_MAC80211("leave\n");
6663
Zhu Yi76bb77e2007-11-22 10:53:22 +08006664out:
Zhu Yia0646472007-12-20 14:10:01 +08006665 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006666 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006667 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006668}
6669
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006670static void iwl3945_config_ap(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006671{
6672 int rc = 0;
6673
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006674 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006675 return;
6676
6677 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006678 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006679
6680 /* RXON - unassoc (to set timing command) */
6681 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006682 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006683
6684 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08006685 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006686 iwl3945_setup_rxon_timing(priv);
6687 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006688 sizeof(priv->rxon_timing), &priv->rxon_timing);
6689 if (rc)
6690 IWL_WARNING("REPLY_RXON_TIMING failed - "
6691 "Attempting to continue.\n");
6692
6693 /* FIXME: what should be the assoc_id for AP? */
6694 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6695 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6696 priv->staging_rxon.flags |=
6697 RXON_FLG_SHORT_PREAMBLE_MSK;
6698 else
6699 priv->staging_rxon.flags &=
6700 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6701
6702 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6703 if (priv->assoc_capability &
6704 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6705 priv->staging_rxon.flags |=
6706 RXON_FLG_SHORT_SLOT_MSK;
6707 else
6708 priv->staging_rxon.flags &=
6709 ~RXON_FLG_SHORT_SLOT_MSK;
6710
Johannes Berg05c914f2008-09-11 00:01:58 +02006711 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07006712 priv->staging_rxon.flags &=
6713 ~RXON_FLG_SHORT_SLOT_MSK;
6714 }
6715 /* restore RXON assoc */
6716 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006717 iwl3945_commit_rxon(priv);
6718 iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006719 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006720 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006721
6722 /* FIXME - we need to add code here to detect a totally new
6723 * configuration, reset the AP, unassoc, rxon timing, assoc,
6724 * clear sta table, add BCAST sta... */
6725}
6726
Johannes Berg32bfd352007-12-19 01:31:26 +01006727static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6728 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07006729 struct ieee80211_if_conf *conf)
6730{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006731 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006732 int rc;
6733
6734 if (conf == NULL)
6735 return -EIO;
6736
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006737 if (priv->vif != vif) {
6738 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006739 return 0;
6740 }
6741
Johannes Berg9d139c82008-07-09 14:40:37 +02006742 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006743 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006744 conf->changed & IEEE80211_IFCC_BEACON) {
6745 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6746 if (!beacon)
6747 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006748 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006749 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006750 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006751 if (rc)
6752 return rc;
6753 }
6754
Zhu Yi5a66926a2008-01-14 17:46:18 -08006755 if (!iwl3945_is_alive(priv))
6756 return -EAGAIN;
6757
Zhu Yib481de92007-09-25 17:54:57 -07006758 mutex_lock(&priv->mutex);
6759
Zhu Yib481de92007-09-25 17:54:57 -07006760 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006761 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006762
Johannes Berg4150c572007-09-17 01:29:23 -04006763/*
6764 * very dubious code was here; the probe filtering flag is never set:
6765 *
Zhu Yib481de92007-09-25 17:54:57 -07006766 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6767 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006768 */
Zhu Yib481de92007-09-25 17:54:57 -07006769
Johannes Berg05c914f2008-09-11 00:01:58 +02006770 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006771 if (!conf->bssid) {
6772 conf->bssid = priv->mac_addr;
6773 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006774 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6775 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006776 }
6777 if (priv->ibss_beacon)
6778 dev_kfree_skb(priv->ibss_beacon);
6779
Johannes Berg9d139c82008-07-09 14:40:37 +02006780 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006781 }
6782
Mohamed Abbasfde35712007-11-29 11:10:15 +08006783 if (iwl3945_is_rfkill(priv))
6784 goto done;
6785
Zhu Yib481de92007-09-25 17:54:57 -07006786 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6787 !is_multicast_ether_addr(conf->bssid)) {
6788 /* If there is currently a HW scan going on in the background
6789 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006790 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07006791 IWL_WARNING("Aborted scan still in progress "
6792 "after 100ms\n");
6793 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6794 mutex_unlock(&priv->mutex);
6795 return -EAGAIN;
6796 }
6797 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6798
6799 /* TODO: Audit driver for usage of these members and see
6800 * if mac80211 deprecates them (priv->bssid looks like it
6801 * shouldn't be there, but I haven't scanned the IBSS code
6802 * to verify) - jpk */
6803 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6804
Johannes Berg05c914f2008-09-11 00:01:58 +02006805 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006806 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006807 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006808 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006809 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006810 iwl3945_add_station(priv,
Zhu Yi556f8db2007-09-27 11:27:33 +08006811 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006812 }
6813
6814 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006815 iwl3945_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07006816 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006817 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006818 }
6819
Mohamed Abbasfde35712007-11-29 11:10:15 +08006820 done:
Zhu Yib481de92007-09-25 17:54:57 -07006821 IWL_DEBUG_MAC80211("leave\n");
6822 mutex_unlock(&priv->mutex);
6823
6824 return 0;
6825}
6826
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006827static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006828 unsigned int changed_flags,
6829 unsigned int *total_flags,
6830 int mc_count, struct dev_addr_list *mc_list)
6831{
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006832 struct iwl3945_priv *priv = hw->priv;
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006833 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006834
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006835 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6836 changed_flags, *total_flags);
6837
6838 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6839 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6840 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6841 else
6842 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006843 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006844 if (changed_flags & FIF_ALLMULTI) {
6845 if (*total_flags & FIF_ALLMULTI)
6846 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6847 else
6848 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6849 }
6850 if (changed_flags & FIF_CONTROL) {
6851 if (*total_flags & FIF_CONTROL)
6852 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6853 else
6854 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6855 }
6856 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6857 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6858 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6859 else
6860 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6861 }
6862
6863 /* We avoid iwl_commit_rxon here to commit the new filter flags
6864 * since mac80211 will call ieee80211_hw_config immediately.
6865 * (mc_list is not supported at this time). Otherwise, we need to
6866 * queue a background iwl_commit_rxon work.
6867 */
6868
6869 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006870 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006871}
6872
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006873static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006874 struct ieee80211_if_init_conf *conf)
6875{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006876 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006877
6878 IWL_DEBUG_MAC80211("enter\n");
6879
6880 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006881
Mohamed Abbasfde35712007-11-29 11:10:15 +08006882 if (iwl3945_is_ready_rf(priv)) {
6883 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006884 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6885 iwl3945_commit_rxon(priv);
6886 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006887 if (priv->vif == conf->vif) {
6888 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006889 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006890 }
6891 mutex_unlock(&priv->mutex);
6892
6893 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006894}
6895
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006896#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6897
6898static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6899 struct ieee80211_vif *vif,
6900 struct ieee80211_bss_conf *bss_conf,
6901 u32 changes)
6902{
6903 struct iwl3945_priv *priv = hw->priv;
6904
6905 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6906
6907 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6908 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6909 bss_conf->use_short_preamble);
6910 if (bss_conf->use_short_preamble)
6911 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6912 else
6913 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6914 }
6915
6916 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6917 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6918 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
6919 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6920 else
6921 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6922 }
6923
6924 if (changes & BSS_CHANGED_ASSOC) {
6925 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6926 /* This should never happen as this function should
6927 * never be called from interrupt context. */
6928 if (WARN_ON_ONCE(in_interrupt()))
6929 return;
6930 if (bss_conf->assoc) {
6931 priv->assoc_id = bss_conf->aid;
6932 priv->beacon_int = bss_conf->beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006933 priv->timestamp = bss_conf->timestamp;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006934 priv->assoc_capability = bss_conf->assoc_capability;
6935 priv->next_scan_jiffies = jiffies +
6936 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6937 mutex_lock(&priv->mutex);
6938 iwl3945_post_associate(priv);
6939 mutex_unlock(&priv->mutex);
6940 } else {
6941 priv->assoc_id = 0;
6942 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6943 }
6944 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6945 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6946 iwl3945_send_rxon_assoc(priv);
6947 }
6948
6949}
6950
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006951static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006952{
6953 int rc = 0;
6954 unsigned long flags;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006955 struct iwl3945_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006956 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006957
6958 IWL_DEBUG_MAC80211("enter\n");
6959
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006960 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006961 spin_lock_irqsave(&priv->lock, flags);
6962
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006963 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006964 rc = -EIO;
6965 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6966 goto out_unlock;
6967 }
6968
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006969 /* we don't schedule scan within next_scan_jiffies period */
6970 if (priv->next_scan_jiffies &&
6971 time_after(priv->next_scan_jiffies, jiffies)) {
6972 rc = -EAGAIN;
6973 goto out_unlock;
6974 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006975 /* if we just finished scan ask for delay for a broadcast scan */
6976 if ((len == 0) && priv->last_scan_jiffies &&
6977 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6978 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006979 rc = -EAGAIN;
6980 goto out_unlock;
6981 }
6982 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006983 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006984 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006985
6986 priv->one_direct_scan = 1;
6987 priv->direct_ssid_len = (u8)
6988 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6989 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006990 } else
6991 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006992
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006993 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006994
6995 IWL_DEBUG_MAC80211("leave\n");
6996
6997out_unlock:
6998 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006999 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07007000
7001 return rc;
7002}
7003
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007004static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07007005 const u8 *local_addr, const u8 *addr,
7006 struct ieee80211_key_conf *key)
7007{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007008 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007009 int rc = 0;
7010 u8 sta_id;
7011
7012 IWL_DEBUG_MAC80211("enter\n");
7013
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007014 if (!iwl3945_param_hwcrypto) {
Zhu Yib481de92007-09-25 17:54:57 -07007015 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7016 return -EOPNOTSUPP;
7017 }
7018
7019 if (is_zero_ether_addr(addr))
7020 /* only support pairwise keys */
7021 return -EOPNOTSUPP;
7022
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007023 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07007024 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07007025 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
7026 addr);
Zhu Yib481de92007-09-25 17:54:57 -07007027 return -EINVAL;
7028 }
7029
7030 mutex_lock(&priv->mutex);
7031
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007032 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007033
Zhu Yib481de92007-09-25 17:54:57 -07007034 switch (cmd) {
7035 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007036 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007037 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007038 iwl3945_set_rxon_hwcrypto(priv, 1);
7039 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007040 key->hw_key_idx = sta_id;
7041 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7042 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
7043 }
7044 break;
7045 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007046 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07007047 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007048 iwl3945_set_rxon_hwcrypto(priv, 0);
7049 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007050 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7051 }
7052 break;
7053 default:
7054 rc = -EINVAL;
7055 }
7056
7057 IWL_DEBUG_MAC80211("leave\n");
7058 mutex_unlock(&priv->mutex);
7059
7060 return rc;
7061}
7062
Johannes Berge100bb62008-04-30 18:51:21 +02007063static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07007064 const struct ieee80211_tx_queue_params *params)
7065{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007066 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007067 unsigned long flags;
7068 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007069
7070 IWL_DEBUG_MAC80211("enter\n");
7071
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007072 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007073 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7074 return -EIO;
7075 }
7076
7077 if (queue >= AC_NUM) {
7078 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7079 return 0;
7080 }
7081
Zhu Yib481de92007-09-25 17:54:57 -07007082 q = AC_NUM - 1 - queue;
7083
7084 spin_lock_irqsave(&priv->lock, flags);
7085
7086 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7087 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7088 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7089 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01007090 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007091
7092 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7093 priv->qos_data.qos_active = 1;
7094
7095 spin_unlock_irqrestore(&priv->lock, flags);
7096
7097 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02007098 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007099 iwl3945_activate_qos(priv, 1);
7100 else if (priv->assoc_id && iwl3945_is_associated(priv))
7101 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007102
7103 mutex_unlock(&priv->mutex);
7104
Zhu Yib481de92007-09-25 17:54:57 -07007105 IWL_DEBUG_MAC80211("leave\n");
7106 return 0;
7107}
7108
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007109static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007110 struct ieee80211_tx_queue_stats *stats)
7111{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007112 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007113 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007114 struct iwl3945_tx_queue *txq;
7115 struct iwl3945_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007116 unsigned long flags;
7117
7118 IWL_DEBUG_MAC80211("enter\n");
7119
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007120 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007121 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7122 return -EIO;
7123 }
7124
7125 spin_lock_irqsave(&priv->lock, flags);
7126
7127 for (i = 0; i < AC_NUM; i++) {
7128 txq = &priv->txq[i];
7129 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007130 avail = iwl3945_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007131
Johannes Berg57ffc582008-04-29 17:18:59 +02007132 stats[i].len = q->n_window - avail;
7133 stats[i].limit = q->n_window - q->high_mark;
7134 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07007135
7136 }
7137 spin_unlock_irqrestore(&priv->lock, flags);
7138
7139 IWL_DEBUG_MAC80211("leave\n");
7140
7141 return 0;
7142}
7143
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007144static int iwl3945_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007145 struct ieee80211_low_level_stats *stats)
7146{
Zhu Yib481de92007-09-25 17:54:57 -07007147 return 0;
7148}
7149
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007150static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007151{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007152 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007153 unsigned long flags;
7154
7155 mutex_lock(&priv->mutex);
7156 IWL_DEBUG_MAC80211("enter\n");
7157
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007158 iwl3945_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08007159
Zhu Yib481de92007-09-25 17:54:57 -07007160 spin_lock_irqsave(&priv->lock, flags);
7161 priv->assoc_id = 0;
7162 priv->assoc_capability = 0;
7163 priv->call_post_assoc_from_beacon = 0;
7164
7165 /* new association get rid of ibss beacon skb */
7166 if (priv->ibss_beacon)
7167 dev_kfree_skb(priv->ibss_beacon);
7168
7169 priv->ibss_beacon = NULL;
7170
7171 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08007172 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02007173 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07007174 priv->beacon_int = 0;
7175
7176 spin_unlock_irqrestore(&priv->lock, flags);
7177
Mohamed Abbasfde35712007-11-29 11:10:15 +08007178 if (!iwl3945_is_ready_rf(priv)) {
7179 IWL_DEBUG_MAC80211("leave - not ready\n");
7180 mutex_unlock(&priv->mutex);
7181 return;
7182 }
7183
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007184 /* we are restarting association process
7185 * clear RXON_FILTER_ASSOC_MSK bit
7186 */
Johannes Berg05c914f2008-09-11 00:01:58 +02007187 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007188 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007189 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007190 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007191 }
7192
Zhu Yib481de92007-09-25 17:54:57 -07007193 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02007194 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08007195
Zhu Yib481de92007-09-25 17:54:57 -07007196 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7197 mutex_unlock(&priv->mutex);
7198 return;
7199 }
7200
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007201 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007202
7203 mutex_unlock(&priv->mutex);
7204
7205 IWL_DEBUG_MAC80211("leave\n");
7206
7207}
7208
Johannes Berge039fa42008-05-15 12:55:29 +02007209static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07007210{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007211 struct iwl3945_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007212 unsigned long flags;
7213
Zhu Yib481de92007-09-25 17:54:57 -07007214 IWL_DEBUG_MAC80211("enter\n");
7215
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007216 if (!iwl3945_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007217 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07007218 return -EIO;
7219 }
7220
Johannes Berg05c914f2008-09-11 00:01:58 +02007221 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07007222 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07007223 return -EIO;
7224 }
7225
7226 spin_lock_irqsave(&priv->lock, flags);
7227
7228 if (priv->ibss_beacon)
7229 dev_kfree_skb(priv->ibss_beacon);
7230
7231 priv->ibss_beacon = skb;
7232
7233 priv->assoc_id = 0;
7234
7235 IWL_DEBUG_MAC80211("leave\n");
7236 spin_unlock_irqrestore(&priv->lock, flags);
7237
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007238 iwl3945_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007239
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08007240 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007241
Zhu Yib481de92007-09-25 17:54:57 -07007242
7243 return 0;
7244}
7245
7246/*****************************************************************************
7247 *
7248 * sysfs attributes
7249 *
7250 *****************************************************************************/
7251
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007252#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007253
7254/*
7255 * The following adds a new attribute to the sysfs representation
7256 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7257 * used for controlling the debug level.
7258 *
7259 * See the level definitions in iwl for details.
7260 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007261static ssize_t show_debug_level(struct device *d,
7262 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07007263{
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007264 struct iwl3945_priv *priv = d->driver_data;
7265
7266 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007267}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007268static ssize_t store_debug_level(struct device *d,
7269 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07007270 const char *buf, size_t count)
7271{
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007272 struct iwl3945_priv *priv = d->driver_data;
7273 unsigned long val;
7274 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07007275
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007276 ret = strict_strtoul(buf, 0, &val);
7277 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07007278 printk(KERN_INFO DRV_NAME
7279 ": %s is not in hex or decimal form.\n", buf);
7280 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007281 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007282
7283 return strnlen(buf, count);
7284}
7285
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007286static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
7287 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007288
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007289#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007290
Zhu Yib481de92007-09-25 17:54:57 -07007291static ssize_t show_temperature(struct device *d,
7292 struct device_attribute *attr, char *buf)
7293{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007294 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007295
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007296 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007297 return -EAGAIN;
7298
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007299 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007300}
7301
7302static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7303
Zhu Yib481de92007-09-25 17:54:57 -07007304static ssize_t show_tx_power(struct device *d,
7305 struct device_attribute *attr, char *buf)
7306{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007307 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007308 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7309}
7310
7311static ssize_t store_tx_power(struct device *d,
7312 struct device_attribute *attr,
7313 const char *buf, size_t count)
7314{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007315 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007316 char *p = (char *)buf;
7317 u32 val;
7318
7319 val = simple_strtoul(p, &p, 10);
7320 if (p == buf)
7321 printk(KERN_INFO DRV_NAME
7322 ": %s is not in decimal form.\n", buf);
7323 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007324 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007325
7326 return count;
7327}
7328
7329static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7330
7331static ssize_t show_flags(struct device *d,
7332 struct device_attribute *attr, char *buf)
7333{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007334 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007335
7336 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7337}
7338
7339static ssize_t store_flags(struct device *d,
7340 struct device_attribute *attr,
7341 const char *buf, size_t count)
7342{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007343 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007344 u32 flags = simple_strtoul(buf, NULL, 0);
7345
7346 mutex_lock(&priv->mutex);
7347 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7348 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007349 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007350 IWL_WARNING("Could not cancel scan.\n");
7351 else {
7352 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7353 flags);
7354 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007355 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007356 }
7357 }
7358 mutex_unlock(&priv->mutex);
7359
7360 return count;
7361}
7362
7363static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7364
7365static ssize_t show_filter_flags(struct device *d,
7366 struct device_attribute *attr, char *buf)
7367{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007368 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007369
7370 return sprintf(buf, "0x%04X\n",
7371 le32_to_cpu(priv->active_rxon.filter_flags));
7372}
7373
7374static ssize_t store_filter_flags(struct device *d,
7375 struct device_attribute *attr,
7376 const char *buf, size_t count)
7377{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007378 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007379 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7380
7381 mutex_lock(&priv->mutex);
7382 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7383 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007384 if (iwl3945_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007385 IWL_WARNING("Could not cancel scan.\n");
7386 else {
7387 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7388 "0x%04X\n", filter_flags);
7389 priv->staging_rxon.filter_flags =
7390 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007391 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007392 }
7393 }
7394 mutex_unlock(&priv->mutex);
7395
7396 return count;
7397}
7398
7399static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7400 store_filter_flags);
7401
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007402#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007403
7404static ssize_t show_measurement(struct device *d,
7405 struct device_attribute *attr, char *buf)
7406{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007407 struct iwl3945_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08007408 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007409 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007410 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007411 unsigned long flags;
7412
7413 spin_lock_irqsave(&priv->lock, flags);
7414 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7415 spin_unlock_irqrestore(&priv->lock, flags);
7416 return 0;
7417 }
7418 memcpy(&measure_report, &priv->measure_report, size);
7419 priv->measurement_status = 0;
7420 spin_unlock_irqrestore(&priv->lock, flags);
7421
7422 while (size && (PAGE_SIZE - len)) {
7423 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7424 PAGE_SIZE - len, 1);
7425 len = strlen(buf);
7426 if (PAGE_SIZE - len)
7427 buf[len++] = '\n';
7428
7429 ofs += 16;
7430 size -= min(size, 16U);
7431 }
7432
7433 return len;
7434}
7435
7436static ssize_t store_measurement(struct device *d,
7437 struct device_attribute *attr,
7438 const char *buf, size_t count)
7439{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007440 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007441 struct ieee80211_measurement_params params = {
7442 .channel = le16_to_cpu(priv->active_rxon.channel),
7443 .start_time = cpu_to_le64(priv->last_tsf),
7444 .duration = cpu_to_le16(1),
7445 };
7446 u8 type = IWL_MEASURE_BASIC;
7447 u8 buffer[32];
7448 u8 channel;
7449
7450 if (count) {
7451 char *p = buffer;
7452 strncpy(buffer, buf, min(sizeof(buffer), count));
7453 channel = simple_strtoul(p, NULL, 0);
7454 if (channel)
7455 params.channel = channel;
7456
7457 p = buffer;
7458 while (*p && *p != ' ')
7459 p++;
7460 if (*p)
7461 type = simple_strtoul(p + 1, NULL, 0);
7462 }
7463
7464 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7465 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007466 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007467
7468 return count;
7469}
7470
7471static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7472 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007473#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007474
Zhu Yib481de92007-09-25 17:54:57 -07007475static ssize_t store_retry_rate(struct device *d,
7476 struct device_attribute *attr,
7477 const char *buf, size_t count)
7478{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007479 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007480
7481 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7482 if (priv->retry_rate <= 0)
7483 priv->retry_rate = 1;
7484
7485 return count;
7486}
7487
7488static ssize_t show_retry_rate(struct device *d,
7489 struct device_attribute *attr, char *buf)
7490{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007491 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007492 return sprintf(buf, "%d", priv->retry_rate);
7493}
7494
7495static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7496 store_retry_rate);
7497
7498static ssize_t store_power_level(struct device *d,
7499 struct device_attribute *attr,
7500 const char *buf, size_t count)
7501{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007502 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007503 int rc;
7504 int mode;
7505
7506 mode = simple_strtoul(buf, NULL, 0);
7507 mutex_lock(&priv->mutex);
7508
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007509 if (!iwl3945_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007510 rc = -EAGAIN;
7511 goto out;
7512 }
7513
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007514 if ((mode < 1) || (mode > IWL39_POWER_LIMIT) ||
7515 (mode == IWL39_POWER_AC))
7516 mode = IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07007517 else
7518 mode |= IWL_POWER_ENABLED;
7519
7520 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007521 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007522 if (rc) {
7523 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7524 goto out;
7525 }
7526 priv->power_mode = mode;
7527 }
7528
7529 rc = count;
7530
7531 out:
7532 mutex_unlock(&priv->mutex);
7533 return rc;
7534}
7535
7536#define MAX_WX_STRING 80
7537
7538/* Values are in microsecond */
7539static const s32 timeout_duration[] = {
7540 350000,
7541 250000,
7542 75000,
7543 37000,
7544 25000,
7545};
7546static const s32 period_duration[] = {
7547 400000,
7548 700000,
7549 1000000,
7550 1000000,
7551 1000000
7552};
7553
7554static ssize_t show_power_level(struct device *d,
7555 struct device_attribute *attr, char *buf)
7556{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007557 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007558 int level = IWL_POWER_LEVEL(priv->power_mode);
7559 char *p = buf;
7560
7561 p += sprintf(p, "%d ", level);
7562 switch (level) {
7563 case IWL_POWER_MODE_CAM:
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007564 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07007565 p += sprintf(p, "(AC)");
7566 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007567 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07007568 p += sprintf(p, "(BATTERY)");
7569 break;
7570 default:
7571 p += sprintf(p,
7572 "(Timeout %dms, Period %dms)",
7573 timeout_duration[level - 1] / 1000,
7574 period_duration[level - 1] / 1000);
7575 }
7576
7577 if (!(priv->power_mode & IWL_POWER_ENABLED))
7578 p += sprintf(p, " OFF\n");
7579 else
7580 p += sprintf(p, " \n");
7581
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007582 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007583
7584}
7585
7586static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7587 store_power_level);
7588
7589static ssize_t show_channels(struct device *d,
7590 struct device_attribute *attr, char *buf)
7591{
Johannes Berg8318d782008-01-24 19:38:38 +01007592 /* all this shit doesn't belong into sysfs anyway */
7593 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007594}
7595
7596static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7597
7598static ssize_t show_statistics(struct device *d,
7599 struct device_attribute *attr, char *buf)
7600{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007601 struct iwl3945_priv *priv = dev_get_drvdata(d);
7602 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007603 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007604 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07007605 int rc = 0;
7606
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007607 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007608 return -EAGAIN;
7609
7610 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007611 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007612 mutex_unlock(&priv->mutex);
7613
7614 if (rc) {
7615 len = sprintf(buf,
7616 "Error sending statistics request: 0x%08X\n", rc);
7617 return len;
7618 }
7619
7620 while (size && (PAGE_SIZE - len)) {
7621 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7622 PAGE_SIZE - len, 1);
7623 len = strlen(buf);
7624 if (PAGE_SIZE - len)
7625 buf[len++] = '\n';
7626
7627 ofs += 16;
7628 size -= min(size, 16U);
7629 }
7630
7631 return len;
7632}
7633
7634static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7635
7636static ssize_t show_antenna(struct device *d,
7637 struct device_attribute *attr, char *buf)
7638{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007639 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007640
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007641 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007642 return -EAGAIN;
7643
7644 return sprintf(buf, "%d\n", priv->antenna);
7645}
7646
7647static ssize_t store_antenna(struct device *d,
7648 struct device_attribute *attr,
7649 const char *buf, size_t count)
7650{
7651 int ant;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007652 struct iwl3945_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007653
7654 if (count == 0)
7655 return 0;
7656
7657 if (sscanf(buf, "%1i", &ant) != 1) {
7658 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7659 return count;
7660 }
7661
7662 if ((ant >= 0) && (ant <= 2)) {
7663 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007664 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007665 } else
7666 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7667
7668
7669 return count;
7670}
7671
7672static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7673
7674static ssize_t show_status(struct device *d,
7675 struct device_attribute *attr, char *buf)
7676{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007677 struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data;
7678 if (!iwl3945_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007679 return -EAGAIN;
7680 return sprintf(buf, "0x%08x\n", (int)priv->status);
7681}
7682
7683static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7684
7685static ssize_t dump_error_log(struct device *d,
7686 struct device_attribute *attr,
7687 const char *buf, size_t count)
7688{
7689 char *p = (char *)buf;
7690
7691 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007692 iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007693
7694 return strnlen(buf, count);
7695}
7696
7697static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7698
7699static ssize_t dump_event_log(struct device *d,
7700 struct device_attribute *attr,
7701 const char *buf, size_t count)
7702{
7703 char *p = (char *)buf;
7704
7705 if (p[0] == '1')
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007706 iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007707
7708 return strnlen(buf, count);
7709}
7710
7711static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7712
7713/*****************************************************************************
7714 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007715 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007716 *
7717 *****************************************************************************/
7718
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007719static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007720{
7721 priv->workqueue = create_workqueue(DRV_NAME);
7722
7723 init_waitqueue_head(&priv->wait_command_queue);
7724
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007725 INIT_WORK(&priv->up, iwl3945_bg_up);
7726 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7727 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7728 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7729 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7730 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7731 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7732 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007733 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7734 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7735 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007736
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007737 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007738
7739 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007740 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007741}
7742
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007743static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007744{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007745 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007746
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007747 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007748 cancel_delayed_work(&priv->scan_check);
7749 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007750 cancel_work_sync(&priv->beacon_update);
7751}
7752
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007753static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007754 &dev_attr_antenna.attr,
7755 &dev_attr_channels.attr,
7756 &dev_attr_dump_errors.attr,
7757 &dev_attr_dump_events.attr,
7758 &dev_attr_flags.attr,
7759 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007760#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007761 &dev_attr_measurement.attr,
7762#endif
7763 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007764 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007765 &dev_attr_statistics.attr,
7766 &dev_attr_status.attr,
7767 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007768 &dev_attr_tx_power.attr,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007769#ifdef CONFIG_IWL3945_DEBUG
7770 &dev_attr_debug_level.attr,
7771#endif
Zhu Yib481de92007-09-25 17:54:57 -07007772 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
Zhu Yib481de92007-09-25 17:54:57 -07007810 /* mac80211 allocates memory for this device instance, including
7811 * space for this driver's private structure */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007812 hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007813 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007814 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07007815 err = -ENOMEM;
7816 goto out;
7817 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007818
Zhu Yib481de92007-09-25 17:54:57 -07007819 SET_IEEE80211_DEV(hw, &pdev->dev);
7820
Zhu Yib481de92007-09-25 17:54:57 -07007821 priv = hw->priv;
7822 priv->hw = hw;
Zhu Yib481de92007-09-25 17:54:57 -07007823 priv->pci_dev = pdev;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007824 priv->cfg = cfg;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007825
Samuel Ortiza3139c52008-12-19 10:37:09 +08007826 if ((iwl3945_param_queues_num > IWL39_MAX_NUM_QUEUES) ||
7827 (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) {
7828 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
7829 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
7830 err = -EINVAL;
7831 goto out;
7832 }
7833
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007834 /* Disabling hardware scan means that mac80211 will perform scans
7835 * "the hard way", rather than using device's scan. */
7836 if (iwl3945_param_disable_hw_scan) {
7837 IWL_DEBUG_INFO("Disabling hw_scan\n");
7838 iwl3945_hw_ops.hw_scan = NULL;
7839 }
7840
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
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007848 priv->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 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007972 priv->power_mode = IWL39_POWER_AC;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007973 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) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08008300 printk(KERN_ERR DRV_NAME
8301 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008302 return ret;
8303 }
8304
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008305 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008306 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08008307 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008308 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07008309 }
Zhu Yib481de92007-09-25 17:54:57 -07008310
8311 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008312
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008313error_register:
8314 iwl3945_rate_control_unregister();
8315 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07008316}
8317
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008318static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008319{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008320 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07008321 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07008322}
8323
Reinette Chatrea0987a82008-12-02 12:14:06 -08008324MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08008325
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008326module_param_named(antenna, iwl3945_param_antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008327MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008328module_param_named(disable, iwl3945_param_disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008329MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008330module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008331MODULE_PARM_DESC(hwcrypto,
8332 "using hardware crypto engine (default 0 [software])\n");
Wu, Fengguang95aa1942008-12-17 16:52:30 +08008333module_param_named(debug, iwl3945_param_debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008334MODULE_PARM_DESC(debug, "debug output mask");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008335module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008336MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
8337
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008338module_param_named(queues_num, iwl3945_param_queues_num, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07008339MODULE_PARM_DESC(queues_num, "number of hw queues.");
8340
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008341module_exit(iwl3945_exit);
8342module_init(iwl3945_init);