blob: e05a9d604b9bb5097a003ceb0bd76f3347ca8f59 [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
Winkler, Tomasdbb66542008-12-22 11:31:14 +080051#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080053#include "iwl-commands.h"
Zhu Yib481de92007-09-25 17:54:57 -070054#include "iwl-3945.h"
55#include "iwl-helpers.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080056#include "iwl-core.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080057#include "iwl-dev.h"
Zhu Yib481de92007-09-25 17:54:57 -070058
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +080059static int iwl3945_tx_queue_update_write_ptr(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +080060 struct iwl_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080061
Zhu Yib481de92007-09-25 17:54:57 -070062/*
63 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070064 */
65
66#define DRV_DESCRIPTION \
67"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
68
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080069#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070070#define VD "d"
71#else
72#define VD
73#endif
74
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080075#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070076#define VS "s"
77#else
78#define VS
79#endif
80
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080081#define IWL39_VERSION "1.2.26k" VD VS
Reinette Chatreeb7ae892008-03-11 16:17:17 -070082#define DRV_COPYRIGHT "Copyright(c) 2003-2008 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080083#define DRV_AUTHOR "<ilw@linux.intel.com>"
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080084#define DRV_VERSION IWL39_VERSION
Zhu Yib481de92007-09-25 17:54:57 -070085
Zhu Yib481de92007-09-25 17:54:57 -070086
87MODULE_DESCRIPTION(DRV_DESCRIPTION);
88MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080089MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070090MODULE_LICENSE("GPL");
91
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080092 /* module parameters */
93struct iwl_mod_params iwl3945_mod_params = {
94 .num_of_queues = IWL39_MAX_NUM_QUEUES,
95 /* the rest are 0 by default */
96};
97
Zhu Yib481de92007-09-25 17:54:57 -070098/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
99 * DMA services
100 *
101 * Theory of operation
102 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800103 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
104 * of buffer descriptors, each of which points to one or more data buffers for
105 * the device to read from or fill. Driver and device exchange status of each
106 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
107 * entries in each circular buffer, to protect against confusing empty and full
108 * queue states.
109 *
110 * The device reads or writes the data in the queues via the device's several
111 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700112 *
113 * For Tx queue, there are low mark and high mark limits. If, after queuing
114 * the packet for Tx, free space become < low mark, Tx queue stopped. When
115 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
116 * Tx queue resumed.
117 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800118 * The 3945 operates with six queues: One receive queue, one transmit queue
119 * (#4) for sending commands to the device firmware, and four transmit queues
120 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
Zhu Yib481de92007-09-25 17:54:57 -0700121 ***************************************************/
122
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800123/**
124 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
125 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800126static int iwl3945_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700127 int count, int slots_num, u32 id)
128{
129 q->n_bd = count;
130 q->n_window = slots_num;
131 q->id = id;
132
Tomas Winklerc54b6792008-03-06 17:36:53 -0800133 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
134 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700135 BUG_ON(!is_power_of_2(count));
136
137 /* slots_num must be power-of-two size, otherwise
138 * get_cmd_index is broken. */
139 BUG_ON(!is_power_of_2(slots_num));
140
141 q->low_mark = q->n_window / 4;
142 if (q->low_mark < 4)
143 q->low_mark = 4;
144
145 q->high_mark = q->n_window / 8;
146 if (q->high_mark < 2)
147 q->high_mark = 2;
148
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800149 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700150
151 return 0;
152}
153
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800154/**
155 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
156 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800157static int iwl3945_tx_queue_alloc(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800158 struct iwl_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700159{
160 struct pci_dev *dev = priv->pci_dev;
161
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800162 /* Driver private data, only for Tx (not command) queues,
163 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700164 if (id != IWL_CMD_QUEUE_NUM) {
165 txq->txb = kmalloc(sizeof(txq->txb[0]) *
166 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
167 if (!txq->txb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800168 IWL_ERR(priv, "kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700169 "structures failed\n");
170 goto error;
171 }
172 } else
173 txq->txb = NULL;
174
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800175 /* Circular buffer of transmit frame descriptors (TFDs),
176 * shared with device */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800177 txq->tfds39 = pci_alloc_consistent(dev,
178 sizeof(txq->tfds39[0]) * TFD_QUEUE_SIZE_MAX,
Zhu Yib481de92007-09-25 17:54:57 -0700179 &txq->q.dma_addr);
180
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800181 if (!txq->tfds39) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800182 IWL_ERR(priv, "pci_alloc_consistent(%zd) failed\n",
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800183 sizeof(txq->tfds39[0]) * TFD_QUEUE_SIZE_MAX);
Zhu Yib481de92007-09-25 17:54:57 -0700184 goto error;
185 }
186 txq->q.id = id;
187
188 return 0;
189
190 error:
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300191 kfree(txq->txb);
192 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700193
194 return -ENOMEM;
195}
196
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800197/**
198 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
199 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800200int iwl3945_tx_queue_init(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800201 struct iwl_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700202{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800203 int len, i;
Zhu Yib481de92007-09-25 17:54:57 -0700204 int rc = 0;
205
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800206 /*
207 * Alloc buffer array for commands (Tx or other types of commands).
208 * For the command queue (#4), allocate command space + one big
209 * command for scan, since scan command is very huge; the system will
210 * not have two scans at the same time, so only one is needed.
211 * For data Tx queues (all other queues), no super-size command
212 * space is needed.
213 */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800214 len = sizeof(struct iwl_cmd);
215 for (i = 0; i <= slots_num; i++) {
216 if (i == slots_num) {
217 if (txq_id == IWL_CMD_QUEUE_NUM)
218 len += IWL_MAX_SCAN_SIZE;
219 else
220 continue;
221 }
222
223 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
224 if (!txq->cmd[i])
225 goto err;
226 }
Zhu Yib481de92007-09-25 17:54:57 -0700227
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800228 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800229 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800230 if (rc)
231 goto err;
Zhu Yib481de92007-09-25 17:54:57 -0700232
Zhu Yib481de92007-09-25 17:54:57 -0700233 txq->need_update = 0;
234
235 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800236 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700237 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800238
239 /* Initialize queue high/low-water, head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800240 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700241
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800242 /* Tell device where to find queue, enable DMA channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800243 iwl3945_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700244
245 return 0;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800246err:
247 for (i = 0; i < slots_num; i++) {
248 kfree(txq->cmd[i]);
249 txq->cmd[i] = NULL;
250 }
251
252 if (txq_id == IWL_CMD_QUEUE_NUM) {
253 kfree(txq->cmd[slots_num]);
254 txq->cmd[slots_num] = NULL;
255 }
256 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -0700257}
258
259/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800260 * iwl3945_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700261 * @txq: Transmit queue to deallocate.
262 *
263 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800264 * Free all buffers.
265 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700266 */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800267void iwl3945_tx_queue_free(struct iwl_priv *priv, struct iwl_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700268{
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800269 struct iwl_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700270 struct pci_dev *dev = priv->pci_dev;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800271 int len, i;
Zhu Yib481de92007-09-25 17:54:57 -0700272
273 if (q->n_bd == 0)
274 return;
275
276 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800277 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800278 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800279 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700280
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800281 len = sizeof(struct iwl_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700282 if (q->id == IWL_CMD_QUEUE_NUM)
283 len += IWL_MAX_SCAN_SIZE;
284
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800285 /* De-alloc array of command/tx buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800286 for (i = 0; i < TFD_TX_CMD_SLOTS; i++)
287 kfree(txq->cmd[i]);
Zhu Yib481de92007-09-25 17:54:57 -0700288
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800289 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700290 if (txq->q.n_bd)
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800291 pci_free_consistent(dev, sizeof(struct iwl3945_tfd) *
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800292 txq->q.n_bd, txq->tfds39, txq->q.dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700293
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800294 /* De-alloc array of per-TFD driver data */
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300295 kfree(txq->txb);
296 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700297
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800298 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700299 memset(txq, 0, sizeof(*txq));
300}
301
Zhu Yib481de92007-09-25 17:54:57 -0700302/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800303 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700304 * the functionality provided here
305 */
306
307/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800308#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800309/**
310 * iwl3945_remove_station - Remove driver's knowledge of station.
311 *
312 * NOTE: This does not remove station from device's station table.
313 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800314static u8 iwl3945_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700315{
316 int index = IWL_INVALID_STATION;
317 int i;
318 unsigned long flags;
319
320 spin_lock_irqsave(&priv->sta_lock, flags);
321
322 if (is_ap)
323 index = IWL_AP_ID;
324 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800325 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700326 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800327 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800328 if (priv->stations_39[i].used &&
329 !compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700330 addr)) {
331 index = i;
332 break;
333 }
334
335 if (unlikely(index == IWL_INVALID_STATION))
336 goto out;
337
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800338 if (priv->stations_39[index].used) {
339 priv->stations_39[index].used = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700340 priv->num_stations--;
341 }
342
343 BUG_ON(priv->num_stations < 0);
344
345out:
346 spin_unlock_irqrestore(&priv->sta_lock, flags);
347 return 0;
348}
Zhu Yi556f8db2007-09-27 11:27:33 +0800349#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800350
351/**
352 * iwl3945_clear_stations_table - Clear the driver's station table
353 *
354 * NOTE: This does not clear or otherwise alter the device's station table.
355 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800356static void iwl3945_clear_stations_table(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700357{
358 unsigned long flags;
359
360 spin_lock_irqsave(&priv->sta_lock, flags);
361
362 priv->num_stations = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800363 memset(priv->stations_39, 0, sizeof(priv->stations_39));
Zhu Yib481de92007-09-25 17:54:57 -0700364
365 spin_unlock_irqrestore(&priv->sta_lock, flags);
366}
367
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800368/**
369 * iwl3945_add_station - Add station to station tables in driver and device
370 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800371u8 iwl3945_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700372{
373 int i;
374 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800375 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700376 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800377 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700378
379 spin_lock_irqsave(&priv->sta_lock, flags_spin);
380 if (is_ap)
381 index = IWL_AP_ID;
382 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800383 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700384 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800385 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800386 if (!compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700387 addr)) {
388 index = i;
389 break;
390 }
391
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800392 if (!priv->stations_39[i].used &&
Zhu Yib481de92007-09-25 17:54:57 -0700393 index == IWL_INVALID_STATION)
394 index = i;
395 }
396
Ian Schram01ebd062007-10-25 17:15:22 +0800397 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700398 since they have different meaning */
399 if (unlikely(index == IWL_INVALID_STATION)) {
400 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
401 return index;
402 }
403
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800404 if (priv->stations_39[index].used &&
405 !compare_ether_addr(priv->stations_39[index].sta.sta.addr, addr)) {
Zhu Yib481de92007-09-25 17:54:57 -0700406 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
407 return index;
408 }
409
Johannes Berge1749612008-10-27 15:59:26 -0700410 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800411 station = &priv->stations_39[index];
Zhu Yib481de92007-09-25 17:54:57 -0700412 station->used = 1;
413 priv->num_stations++;
414
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800415 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800416 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700417 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
418 station->sta.mode = 0;
419 station->sta.sta.sta_id = index;
420 station->sta.station_flags = 0;
421
Johannes Berg8318d782008-01-24 19:38:38 +0100422 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800423 rate = IWL_RATE_6M_PLCP;
424 else
425 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800426
427 /* Turn on both antennas for the station... */
428 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800429 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800430
Zhu Yib481de92007-09-25 17:54:57 -0700431 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800432
433 /* Add station to device's station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800434 iwl3945_send_add_station(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700435 return index;
436
437}
438
Zhu Yib481de92007-09-25 17:54:57 -0700439
440/*************** HOST COMMAND QUEUE FUNCTIONS *****/
441
Abhijeet Kolekarc3056062008-11-12 13:14:08 -0800442#define IWL_CMD(x) case x: return #x
Zhu Yib481de92007-09-25 17:54:57 -0700443#define HOST_COMPLETE_TIMEOUT (HZ / 2)
444
445/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800446 * iwl3945_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700447 * @priv: device private data point
448 * @cmd: a point to the ucode command structure
449 *
450 * The function returns < 0 values to indicate the operation is
451 * failed. On success, it turns the index (> 0) of command in the
452 * command queue.
453 */
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800454static int iwl3945_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700455{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800456 struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800457 struct iwl_queue *q = &txq->q;
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800458 struct iwl3945_tfd *tfd;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800459 struct iwl_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700460 u32 idx;
461 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
462 dma_addr_t phys_addr;
463 int pad;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800464 int ret, len;
Zhu Yib481de92007-09-25 17:54:57 -0700465 unsigned long flags;
466
467 /* If any of the command structures end up being larger than
468 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
469 * we will need to increase the size of the TFD entries */
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800470 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
Zhu Yib481de92007-09-25 17:54:57 -0700471 !(cmd->meta.flags & CMD_SIZE_HUGE));
472
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800473
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800474 if (iwl_is_rfkill(priv)) {
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800475 IWL_DEBUG_INFO("Not sending command - RF KILL");
476 return -EIO;
477 }
478
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800479 if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800480 IWL_ERR(priv, "No space for Tx\n");
Zhu Yib481de92007-09-25 17:54:57 -0700481 return -ENOSPC;
482 }
483
484 spin_lock_irqsave(&priv->hcmd_lock, flags);
485
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800486 tfd = &txq->tfds39[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700487 memset(tfd, 0, sizeof(*tfd));
488
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800489 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800490 out_cmd = txq->cmd[idx];
Zhu Yib481de92007-09-25 17:54:57 -0700491
492 out_cmd->hdr.cmd = cmd->id;
493 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
494 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
495
496 /* At this point, the out_cmd now has all of the incoming cmd
497 * information */
498
499 out_cmd->hdr.flags = 0;
500 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800501 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700502 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
Tomas Winkler600c0e12008-12-19 10:37:04 +0800503 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
Zhu Yib481de92007-09-25 17:54:57 -0700504
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800505 len = (idx == TFD_CMD_SLOTS) ?
506 IWL_MAX_SCAN_SIZE : sizeof(struct iwl_cmd);
507
508 phys_addr = pci_map_single(priv->pci_dev, out_cmd,
509 len, PCI_DMA_TODEVICE);
510 pci_unmap_addr_set(&out_cmd->meta, mapping, phys_addr);
511 pci_unmap_len_set(&out_cmd->meta, len, len);
512 phys_addr += offsetof(struct iwl_cmd, hdr);
513
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800514 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700515
516 pad = U32_PAD(cmd->len);
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800517 tfd->control_flags |= cpu_to_le32(TFD_CTL_PAD_SET(pad));
Zhu Yib481de92007-09-25 17:54:57 -0700518
519 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
520 "%d bytes at %d[%d]:%d\n",
521 get_cmd_string(out_cmd->hdr.cmd),
522 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800523 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700524
525 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800526
527 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800528 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800529 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700530
531 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
532 return ret ? ret : idx;
533}
534
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800535static int iwl3945_send_cmd_async(struct iwl_priv *priv,
536 struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700537{
538 int ret;
539
540 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
541
542 /* An asynchronous command can not expect an SKB to be set. */
543 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
544
545 /* An asynchronous command MUST have a callback. */
546 BUG_ON(!cmd->meta.u.callback);
547
548 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
549 return -EBUSY;
550
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800551 ret = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700552 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800553 IWL_ERR(priv,
554 "Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
555 get_cmd_string(cmd->id), ret);
Zhu Yib481de92007-09-25 17:54:57 -0700556 return ret;
557 }
558 return 0;
559}
560
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800561static int iwl3945_send_cmd_sync(struct iwl_priv *priv,
562 struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700563{
564 int cmd_idx;
565 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700566
567 BUG_ON(cmd->meta.flags & CMD_ASYNC);
568
569 /* A synchronous command can not have a callback set. */
570 BUG_ON(cmd->meta.u.callback != NULL);
571
Tomas Winklere5472972008-03-28 16:21:12 -0700572 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800573 IWL_ERR(priv,
574 "Error sending %s: Already sending a host command\n",
575 get_cmd_string(cmd->id));
Tomas Winklere5472972008-03-28 16:21:12 -0700576 ret = -EBUSY;
577 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700578 }
579
580 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
581
582 if (cmd->meta.flags & CMD_WANT_SKB)
583 cmd->meta.source = &cmd->meta;
584
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800585 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700586 if (cmd_idx < 0) {
587 ret = cmd_idx;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800588 IWL_ERR(priv,
589 "Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
590 get_cmd_string(cmd->id), ret);
Zhu Yib481de92007-09-25 17:54:57 -0700591 goto out;
592 }
593
594 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
595 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
596 HOST_COMPLETE_TIMEOUT);
597 if (!ret) {
598 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800599 IWL_ERR(priv, "Error sending %s: time out after %dms\n",
Zhu Yib481de92007-09-25 17:54:57 -0700600 get_cmd_string(cmd->id),
601 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
602
603 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
604 ret = -ETIMEDOUT;
605 goto cancel;
606 }
607 }
608
609 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
610 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
611 get_cmd_string(cmd->id));
612 ret = -ECANCELED;
613 goto fail;
614 }
615 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
616 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
617 get_cmd_string(cmd->id));
618 ret = -EIO;
619 goto fail;
620 }
621 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800622 IWL_ERR(priv, "Error: Response NULL in '%s'\n",
Zhu Yib481de92007-09-25 17:54:57 -0700623 get_cmd_string(cmd->id));
624 ret = -EIO;
Zhu Yi73e1a652009-01-08 10:19:58 -0800625 goto cancel;
Zhu Yib481de92007-09-25 17:54:57 -0700626 }
627
628 ret = 0;
629 goto out;
630
631cancel:
632 if (cmd->meta.flags & CMD_WANT_SKB) {
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800633 struct iwl_cmd *qcmd;
Zhu Yib481de92007-09-25 17:54:57 -0700634
635 /* Cancel the CMD_WANT_SKB flag for the cmd in the
636 * TX cmd queue. Otherwise in case the cmd comes
637 * in later, it will possibly set an invalid
638 * address (cmd->meta.source). */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800639 qcmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
Zhu Yib481de92007-09-25 17:54:57 -0700640 qcmd->meta.flags &= ~CMD_WANT_SKB;
641 }
642fail:
643 if (cmd->meta.u.skb) {
644 dev_kfree_skb_any(cmd->meta.u.skb);
645 cmd->meta.u.skb = NULL;
646 }
647out:
Tomas Winklere5472972008-03-28 16:21:12 -0700648 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -0700649 return ret;
650}
651
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800652int iwl3945_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700653{
Zhu Yib481de92007-09-25 17:54:57 -0700654 if (cmd->meta.flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800655 return iwl3945_send_cmd_async(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700656
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800657 return iwl3945_send_cmd_sync(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700658}
659
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800660int iwl3945_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
Zhu Yib481de92007-09-25 17:54:57 -0700661{
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800662 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700663 .id = id,
664 .len = len,
665 .data = data,
666 };
667
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800668 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700669}
670
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800671static int __must_check iwl3945_send_cmd_u32(struct iwl_priv *priv, u8 id, u32 val)
Zhu Yib481de92007-09-25 17:54:57 -0700672{
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800673 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700674 .id = id,
675 .len = sizeof(val),
676 .data = &val,
677 };
678
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800679 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700680}
681
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800682int iwl3945_send_statistics_request(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700683{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800684 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700685}
686
687/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800688 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
Johannes Berg8318d782008-01-24 19:38:38 +0100689 * @band: 2.4 or 5 GHz band
690 * @channel: Any channel valid for the requested band
Zhu Yib481de92007-09-25 17:54:57 -0700691
Johannes Berg8318d782008-01-24 19:38:38 +0100692 * In addition to setting the staging RXON, priv->band is also set.
Zhu Yib481de92007-09-25 17:54:57 -0700693 *
694 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Johannes Berg8318d782008-01-24 19:38:38 +0100695 * in the staging RXON flag structure based on the band
Zhu Yib481de92007-09-25 17:54:57 -0700696 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800697static int iwl3945_set_rxon_channel(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +0100698 enum ieee80211_band band,
699 u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -0700700{
Johannes Berg8318d782008-01-24 19:38:38 +0100701 if (!iwl3945_get_channel_info(priv, band, channel)) {
Zhu Yib481de92007-09-25 17:54:57 -0700702 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
Johannes Berg8318d782008-01-24 19:38:38 +0100703 channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700704 return -EINVAL;
705 }
706
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800707 if ((le16_to_cpu(priv->staging39_rxon.channel) == channel) &&
Johannes Berg8318d782008-01-24 19:38:38 +0100708 (priv->band == band))
Zhu Yib481de92007-09-25 17:54:57 -0700709 return 0;
710
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800711 priv->staging39_rxon.channel = cpu_to_le16(channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100712 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800713 priv->staging39_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700714 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800715 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700716
Johannes Berg8318d782008-01-24 19:38:38 +0100717 priv->band = band;
Zhu Yib481de92007-09-25 17:54:57 -0700718
Johannes Berg8318d782008-01-24 19:38:38 +0100719 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700720
721 return 0;
722}
723
724/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800725 * iwl3945_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700726 *
727 * NOTE: This is really only useful during development and can eventually
728 * be #ifdef'd out once the driver is stable and folks aren't actively
729 * making changes
730 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800731static int iwl3945_check_rxon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700732{
733 int error = 0;
734 int counter = 1;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800735 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700736
737 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
738 error |= le32_to_cpu(rxon->flags &
739 (RXON_FLG_TGJ_NARROW_BAND_MSK |
740 RXON_FLG_RADAR_DETECT_MSK));
741 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800742 IWL_WARN(priv, "check 24G fields %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700743 counter++, error);
744 } else {
745 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
746 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
747 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800748 IWL_WARN(priv, "check 52 fields %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700749 counter++, error);
750 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
751 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800752 IWL_WARN(priv, "check 52 CCK %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700753 counter++, error);
754 }
755 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
756 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800757 IWL_WARN(priv, "check mac addr %d | %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700758
759 /* make sure basic rates 6Mbps and 1Mbps are supported */
760 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
761 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
762 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800763 IWL_WARN(priv, "check basic rate %d | %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700764
765 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
766 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800767 IWL_WARN(priv, "check assoc id %d | %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700768
769 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
770 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
771 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800772 IWL_WARN(priv, "check CCK and short slot %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700773 counter++, error);
774
775 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
776 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
777 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800778 IWL_WARN(priv, "check CCK & auto detect %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700779 counter++, error);
780
781 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
782 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
783 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800784 IWL_WARN(priv, "check TGG and auto detect %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700785 counter++, error);
786
787 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
788 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
789 RXON_FLG_ANT_A_MSK)) == 0);
790 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800791 IWL_WARN(priv, "check antenna %d %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700792
793 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800794 IWL_WARN(priv, "Tuning to channel %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700795 le16_to_cpu(rxon->channel));
796
797 if (error) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800798 IWL_ERR(priv, "Not a valid rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700799 return -1;
800 }
801 return 0;
802}
803
804/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800805 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800806 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700807 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800808 * If the RXON structure is changing enough to require a new tune,
809 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
810 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700811 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800812static int iwl3945_full_rxon_required(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700813{
814
815 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800816 if (!(iwl3945_is_associated(priv)) ||
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800817 compare_ether_addr(priv->staging39_rxon.bssid_addr,
818 priv->active39_rxon.bssid_addr) ||
819 compare_ether_addr(priv->staging39_rxon.node_addr,
820 priv->active39_rxon.node_addr) ||
821 compare_ether_addr(priv->staging39_rxon.wlap_bssid_addr,
822 priv->active39_rxon.wlap_bssid_addr) ||
823 (priv->staging39_rxon.dev_type != priv->active39_rxon.dev_type) ||
824 (priv->staging39_rxon.channel != priv->active39_rxon.channel) ||
825 (priv->staging39_rxon.air_propagation !=
826 priv->active39_rxon.air_propagation) ||
827 (priv->staging39_rxon.assoc_id != priv->active39_rxon.assoc_id))
Zhu Yib481de92007-09-25 17:54:57 -0700828 return 1;
829
830 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
831 * be updated with the RXON_ASSOC command -- however only some
832 * flag transitions are allowed using RXON_ASSOC */
833
834 /* Check if we are not switching bands */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800835 if ((priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
836 (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK))
Zhu Yib481de92007-09-25 17:54:57 -0700837 return 1;
838
839 /* Check if we are switching association toggle */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800840 if ((priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
841 (priv->active39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
Zhu Yib481de92007-09-25 17:54:57 -0700842 return 1;
843
844 return 0;
845}
846
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800847static int iwl3945_send_rxon_assoc(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700848{
849 int rc = 0;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800850 struct iwl_rx_packet *res = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800851 struct iwl3945_rxon_assoc_cmd rxon_assoc;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800852 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700853 .id = REPLY_RXON_ASSOC,
854 .len = sizeof(rxon_assoc),
855 .meta.flags = CMD_WANT_SKB,
856 .data = &rxon_assoc,
857 };
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800858 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging39_rxon;
859 const struct iwl3945_rxon_cmd *rxon2 = &priv->active39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700860
861 if ((rxon1->flags == rxon2->flags) &&
862 (rxon1->filter_flags == rxon2->filter_flags) &&
863 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
864 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
865 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
866 return 0;
867 }
868
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800869 rxon_assoc.flags = priv->staging39_rxon.flags;
870 rxon_assoc.filter_flags = priv->staging39_rxon.filter_flags;
871 rxon_assoc.ofdm_basic_rates = priv->staging39_rxon.ofdm_basic_rates;
872 rxon_assoc.cck_basic_rates = priv->staging39_rxon.cck_basic_rates;
Zhu Yib481de92007-09-25 17:54:57 -0700873 rxon_assoc.reserved = 0;
874
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800875 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700876 if (rc)
877 return rc;
878
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800879 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700880 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800881 IWL_ERR(priv, "Bad return from REPLY_RXON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700882 rc = -EIO;
883 }
884
885 priv->alloc_rxb_skb--;
886 dev_kfree_skb_any(cmd.meta.u.skb);
887
888 return rc;
889}
890
891/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800892 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700893 *
Ian Schram01ebd062007-10-25 17:15:22 +0800894 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700895 * the active_rxon structure is updated with the new data. This
896 * function correctly transitions out of the RXON_ASSOC_MSK state if
897 * a HW tune is required based on the RXON structure changes.
898 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800899static int iwl3945_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700900{
901 /* cast away the const for active_rxon in this function */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800902 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700903 int rc = 0;
904
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800905 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700906 return -1;
907
908 /* always get timestamp with Rx frame */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800909 priv->staging39_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700910
911 /* select antenna */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800912 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -0700913 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800914 priv->staging39_rxon.flags |= iwl3945_get_antenna_flags(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700915
Samuel Ortiza3139c52008-12-19 10:37:09 +0800916 rc = iwl3945_check_rxon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700917 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800918 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700919 return -EINVAL;
920 }
921
922 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800923 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700924 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800925 if (!iwl3945_full_rxon_required(priv)) {
926 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700927 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800928 IWL_ERR(priv, "Error setting RXON_ASSOC "
Zhu Yib481de92007-09-25 17:54:57 -0700929 "configuration (%d).\n", rc);
930 return rc;
931 }
932
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800933 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700934
935 return 0;
936 }
937
938 /* If we are currently associated and the new config requires
939 * an RXON_ASSOC and the new config wants the associated mask enabled,
940 * we must clear the associated from the active configuration
941 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800942 if (iwl3945_is_associated(priv) &&
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800943 (priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700944 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
945 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
946
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800947 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
948 sizeof(struct iwl3945_rxon_cmd),
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800949 &priv->active39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700950
951 /* If the mask clearing failed then we set
952 * active_rxon back to what it was previously */
953 if (rc) {
954 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800955 IWL_ERR(priv, "Error clearing ASSOC_MSK on current "
Zhu Yib481de92007-09-25 17:54:57 -0700956 "configuration (%d).\n", rc);
957 return rc;
958 }
Zhu Yib481de92007-09-25 17:54:57 -0700959 }
960
961 IWL_DEBUG_INFO("Sending RXON\n"
962 "* with%s RXON_FILTER_ASSOC_MSK\n"
963 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700964 "* bssid = %pM\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800965 ((priv->staging39_rxon.filter_flags &
Zhu Yib481de92007-09-25 17:54:57 -0700966 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800967 le16_to_cpu(priv->staging39_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700968 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700969
970 /* Apply the new configuration */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800971 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800972 sizeof(struct iwl3945_rxon_cmd), &priv->staging39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700973 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800974 IWL_ERR(priv, "Error setting new configuration (%d).\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -0700975 return rc;
976 }
977
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800978 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700979
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800980 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800981
Zhu Yib481de92007-09-25 17:54:57 -0700982 /* If we issue a new RXON command which required a tune then we must
983 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800984 rc = iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700985 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800986 IWL_ERR(priv, "Error setting Tx power (%d).\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -0700987 return rc;
988 }
989
990 /* Add the broadcast address so we can send broadcast frames */
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +0800991 if (iwl3945_add_station(priv, iwl_bcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -0700992 IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800993 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700994 return -EIO;
995 }
996
997 /* If we have set the ASSOC_MSK and we are in BSS mode then
998 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800999 if (iwl3945_is_associated(priv) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001000 (priv->iw_mode == NL80211_IFTYPE_STATION))
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001001 if (iwl3945_add_station(priv, priv->active39_rxon.bssid_addr, 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -07001002 == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001003 IWL_ERR(priv, "Error adding AP address for transmit\n");
Zhu Yib481de92007-09-25 17:54:57 -07001004 return -EIO;
1005 }
1006
Johannes Berg8318d782008-01-24 19:38:38 +01001007 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -07001008 rc = iwl3945_init_hw_rate_table(priv);
1009 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001010 IWL_ERR(priv, "Error setting HW rate table: %02X\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07001011 return -EIO;
1012 }
1013
1014 return 0;
1015}
1016
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001017static int iwl3945_send_bt_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001018{
Tomas Winkler4c897252008-12-19 10:37:05 +08001019 struct iwl_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001020 .flags = 3,
1021 .lead_time = 0xAA,
1022 .max_kill = 1,
1023 .kill_ack_mask = 0,
1024 .kill_cts_mask = 0,
1025 };
1026
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001027 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Tomas Winkler4c897252008-12-19 10:37:05 +08001028 sizeof(bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001029}
1030
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001031static int iwl3945_send_scan_abort(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001032{
1033 int rc = 0;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001034 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08001035 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001036 .id = REPLY_SCAN_ABORT_CMD,
1037 .meta.flags = CMD_WANT_SKB,
1038 };
1039
1040 /* If there isn't a scan actively going on in the hardware
1041 * then we are in between scan bands and not actually
1042 * actively scanning, so don't send the abort command */
1043 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1044 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1045 return 0;
1046 }
1047
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001048 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001049 if (rc) {
1050 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1051 return rc;
1052 }
1053
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001054 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001055 if (res->u.status != CAN_ABORT_STATUS) {
1056 /* The scan abort will return 1 for success or
1057 * 2 for "failure". A failure condition can be
1058 * due to simply not being in an active scan which
1059 * can occur if we send the scan abort before we
1060 * the microcode has notified us that a scan is
1061 * completed. */
1062 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1063 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1064 clear_bit(STATUS_SCAN_HW, &priv->status);
1065 }
1066
1067 dev_kfree_skb_any(cmd.meta.u.skb);
1068
1069 return rc;
1070}
1071
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001072static int iwl3945_add_sta_sync_callback(struct iwl_priv *priv,
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08001073 struct iwl_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001074{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001075 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001076
1077 if (!skb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001078 IWL_ERR(priv, "Error: Response NULL in REPLY_ADD_STA.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001079 return 1;
1080 }
1081
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001082 res = (struct iwl_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001083 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001084 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
Zhu Yib481de92007-09-25 17:54:57 -07001085 res->hdr.flags);
1086 return 1;
1087 }
1088
1089 switch (res->u.add_sta.status) {
1090 case ADD_STA_SUCCESS_MSK:
1091 break;
1092 default:
1093 break;
1094 }
1095
1096 /* We didn't cache the SKB; let the caller free it */
1097 return 1;
1098}
1099
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001100int iwl3945_send_add_station(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001101 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001102{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001103 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001104 int rc = 0;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08001105 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001106 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001107 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001108 .meta.flags = flags,
1109 .data = sta,
1110 };
1111
1112 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001113 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001114 else
1115 cmd.meta.flags |= CMD_WANT_SKB;
1116
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001117 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001118
1119 if (rc || (flags & CMD_ASYNC))
1120 return rc;
1121
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001122 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001123 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001124 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
Zhu Yib481de92007-09-25 17:54:57 -07001125 res->hdr.flags);
1126 rc = -EIO;
1127 }
1128
1129 if (rc == 0) {
1130 switch (res->u.add_sta.status) {
1131 case ADD_STA_SUCCESS_MSK:
1132 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1133 break;
1134 default:
1135 rc = -EIO;
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001136 IWL_WARN(priv, "REPLY_ADD_STA failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001137 break;
1138 }
1139 }
1140
1141 priv->alloc_rxb_skb--;
1142 dev_kfree_skb_any(cmd.meta.u.skb);
1143
1144 return rc;
1145}
1146
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001147static int iwl3945_update_sta_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001148 struct ieee80211_key_conf *keyconf,
1149 u8 sta_id)
1150{
1151 unsigned long flags;
1152 __le16 key_flags = 0;
1153
1154 switch (keyconf->alg) {
1155 case ALG_CCMP:
1156 key_flags |= STA_KEY_FLG_CCMP;
1157 key_flags |= cpu_to_le16(
1158 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1159 key_flags &= ~STA_KEY_FLG_INVALID;
1160 break;
1161 case ALG_TKIP:
1162 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001163 default:
1164 return -EINVAL;
1165 }
1166 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001167 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
1168 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
1169 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -07001170 keyconf->keylen);
1171
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001172 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -07001173 keyconf->keylen);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001174 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
1175 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1176 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001177
1178 spin_unlock_irqrestore(&priv->sta_lock, flags);
1179
1180 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001181 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001182 return 0;
1183}
1184
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001185static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001186{
1187 unsigned long flags;
1188
1189 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001190 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1191 memset(&priv->stations_39[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +08001192 sizeof(struct iwl4965_keyinfo));
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001193 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1194 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1195 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001196 spin_unlock_irqrestore(&priv->sta_lock, flags);
1197
1198 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001199 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001200 return 0;
1201}
1202
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001203static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001204{
1205 struct list_head *element;
1206
1207 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1208 priv->frames_count);
1209
1210 while (!list_empty(&priv->free_frames)) {
1211 element = priv->free_frames.next;
1212 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001213 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001214 priv->frames_count--;
1215 }
1216
1217 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001218 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -07001219 priv->frames_count);
1220 priv->frames_count = 0;
1221 }
1222}
1223
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001224static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001225{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001226 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001227 struct list_head *element;
1228 if (list_empty(&priv->free_frames)) {
1229 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1230 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001231 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -07001232 return NULL;
1233 }
1234
1235 priv->frames_count++;
1236 return frame;
1237 }
1238
1239 element = priv->free_frames.next;
1240 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001241 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001242}
1243
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001244static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001245{
1246 memset(frame, 0, sizeof(*frame));
1247 list_add(&frame->list, &priv->free_frames);
1248}
1249
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001250unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001251 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +02001252 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001253{
1254
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001255 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001256 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1257 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001258 return 0;
1259
1260 if (priv->ibss_beacon->len > left)
1261 return 0;
1262
1263 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1264
1265 return priv->ibss_beacon->len;
1266}
1267
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001268static u8 iwl3945_rate_get_lowest_plcp(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001269{
1270 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001271 int rate_mask;
1272
1273 /* Set rate mask*/
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001274 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001275 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001276 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001277 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001278
1279 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001280 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001281 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001282 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001283 }
1284
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001285 /* No valid rate was found. Assign the lowest one */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001286 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001287 return IWL_RATE_1M_PLCP;
1288 else
1289 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001290}
1291
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001292static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001293{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001294 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001295 unsigned int frame_size;
1296 int rc;
1297 u8 rate;
1298
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001299 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001300
1301 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001302 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -07001303 "command.\n");
1304 return -ENOMEM;
1305 }
1306
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001307 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001308
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001309 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001310
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001311 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001312 &frame->u.cmd[0]);
1313
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001314 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001315
1316 return rc;
1317}
1318
1319/******************************************************************************
1320 *
1321 * EEPROM related functions
1322 *
1323 ******************************************************************************/
1324
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001325static void get_eeprom_mac(struct iwl_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001326{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001327 memcpy(mac, priv->eeprom39.mac_address, 6);
Zhu Yib481de92007-09-25 17:54:57 -07001328}
1329
Reinette Chatre74a3a252008-01-23 10:15:19 -08001330/*
1331 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1332 * embedded controller) as EEPROM reader; each read is a series of pulses
1333 * to/from the EEPROM chip, not a single event, so even reads could conflict
1334 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1335 * simply claims ownership, which should be safe when this function is called
1336 * (i.e. before loading uCode!).
1337 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001338static inline int iwl3945_eeprom_acquire_semaphore(struct iwl_priv *priv)
Reinette Chatre74a3a252008-01-23 10:15:19 -08001339{
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001340 _iwl_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
Reinette Chatre74a3a252008-01-23 10:15:19 -08001341 return 0;
1342}
1343
Zhu Yib481de92007-09-25 17:54:57 -07001344/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001345 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001346 *
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001347 * Load the EEPROM contents from adapter into priv->eeprom39
Zhu Yib481de92007-09-25 17:54:57 -07001348 *
1349 * NOTE: This routine uses the non-debug IO access functions.
1350 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001351int iwl3945_eeprom_init(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001352{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001353 u16 *e = (u16 *)&priv->eeprom39;
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001354 u32 gp = iwl_read32(priv, CSR_EEPROM_GP);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001355 int sz = sizeof(priv->eeprom39);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001356 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001357 u16 addr;
1358
1359 /* The EEPROM structure has several padding buffers within it
1360 * and when adding new EEPROM maps is subject to programmer errors
1361 * which may be very difficult to identify without explicitly
1362 * checking the resulting size of the eeprom map. */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001363 BUILD_BUG_ON(sizeof(priv->eeprom39) != IWL_EEPROM_IMAGE_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07001364
1365 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001366 IWL_ERR(priv, "EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001367 return -ENOENT;
1368 }
1369
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001370 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001371 ret = iwl3945_eeprom_acquire_semaphore(priv);
1372 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001373 IWL_ERR(priv, "Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001374 return -ENOENT;
1375 }
1376
1377 /* eeprom is an array of 16bit values */
1378 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001379 u32 r;
1380
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001381 _iwl_write32(priv, CSR_EEPROM_REG,
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001382 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001383 _iwl_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
1384 ret = iwl_poll_direct_bit(priv, CSR_EEPROM_REG,
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001385 CSR_EEPROM_REG_READ_VALID_MSK,
1386 IWL_EEPROM_ACCESS_TIMEOUT);
1387 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001388 IWL_ERR(priv, "Time out reading EEPROM[%d]\n", addr);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001389 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001390 }
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001391
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001392 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001393 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001394 }
1395
1396 return 0;
1397}
1398
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001399static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001400{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08001401 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -07001402 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001403 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08001404 priv->shared_virt,
1405 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -07001406}
1407
1408/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001409 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001410 *
1411 * return : set the bit for each supported rate insert in ie
1412 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001413static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001414 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001415{
1416 u16 ret_rates = 0, bit;
1417 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001418 u8 *cnt = ie;
1419 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001420
1421 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1422 if (bit & supported_rate) {
1423 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001424 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001425 ((bit & basic_rate) ? 0x80 : 0x00);
1426 (*cnt)++;
1427 (*left)--;
1428 if ((*left <= 0) ||
1429 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001430 break;
1431 }
1432 }
1433
1434 return ret_rates;
1435}
1436
1437/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001438 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001439 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001440static u16 iwl3945_fill_probe_req(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001441 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001442 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001443{
1444 int len = 0;
1445 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001446 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001447
1448 /* Make sure there is enough space for the probe request,
1449 * two mandatory IEs and the data */
1450 left -= 24;
1451 if (left < 0)
1452 return 0;
1453 len += 24;
1454
1455 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08001456 memcpy(frame->da, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001457 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08001458 memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001459 frame->seq_ctrl = 0;
1460
1461 /* fill in our indirect SSID IE */
1462 /* ...next IE... */
1463
1464 left -= 2;
1465 if (left < 0)
1466 return 0;
1467 len += 2;
1468 pos = &(frame->u.probe_req.variable[0]);
1469 *pos++ = WLAN_EID_SSID;
1470 *pos++ = 0;
1471
Zhu Yib481de92007-09-25 17:54:57 -07001472 /* fill in supported rate */
1473 /* ...next IE... */
1474 left -= 2;
1475 if (left < 0)
1476 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001477
Zhu Yib481de92007-09-25 17:54:57 -07001478 /* ... fill it in... */
1479 *pos++ = WLAN_EID_SUPP_RATES;
1480 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001481
1482 priv->active_rate = priv->rates_mask;
1483 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001484 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1485
Tomas Winklerc7c46672007-10-18 02:04:15 +02001486 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001487 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001488 priv->active_rate_basic, &left);
1489 active_rates &= ~ret_rates;
1490
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001491 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001492 priv->active_rate_basic, &left);
1493 active_rates &= ~ret_rates;
1494
Zhu Yib481de92007-09-25 17:54:57 -07001495 len += 2 + *pos;
1496 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001497 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001498 goto fill_end;
1499
1500 /* fill in supported extended rate */
1501 /* ...next IE... */
1502 left -= 2;
1503 if (left < 0)
1504 return 0;
1505 /* ... fill it in... */
1506 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1507 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001508 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001509 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001510 if (*pos > 0)
1511 len += 2 + *pos;
1512
1513 fill_end:
1514 return (u16)len;
1515}
1516
1517/*
1518 * QoS support
1519*/
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001520static int iwl3945_send_qos_params_command(struct iwl_priv *priv,
Tomas Winkler4c897252008-12-19 10:37:05 +08001521 struct iwl_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001522{
1523
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001524 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Tomas Winkler4c897252008-12-19 10:37:05 +08001525 sizeof(struct iwl_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001526}
1527
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001528static void iwl3945_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001529{
1530 unsigned long flags;
1531
Zhu Yib481de92007-09-25 17:54:57 -07001532 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1533 return;
1534
Zhu Yib481de92007-09-25 17:54:57 -07001535 spin_lock_irqsave(&priv->lock, flags);
1536 priv->qos_data.def_qos_parm.qos_flags = 0;
1537
1538 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1539 !priv->qos_data.qos_cap.q_AP.txop_request)
1540 priv->qos_data.def_qos_parm.qos_flags |=
1541 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1542
1543 if (priv->qos_data.qos_active)
1544 priv->qos_data.def_qos_parm.qos_flags |=
1545 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1546
1547 spin_unlock_irqrestore(&priv->lock, flags);
1548
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001549 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001550 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001551 priv->qos_data.qos_active);
1552
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001553 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001554 &(priv->qos_data.def_qos_parm));
1555 }
1556}
1557
Zhu Yib481de92007-09-25 17:54:57 -07001558/*
1559 * Power management (not Tx power!) functions
1560 */
1561#define MSEC_TO_USEC 1024
1562
Tomas Winkler600c0e12008-12-19 10:37:04 +08001563
1564#define NOSLP __constant_cpu_to_le16(0), 0, 0
1565#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -07001566#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1567#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1568 __constant_cpu_to_le32(X1), \
1569 __constant_cpu_to_le32(X2), \
1570 __constant_cpu_to_le32(X3), \
1571 __constant_cpu_to_le32(X4)}
1572
Zhu Yib481de92007-09-25 17:54:57 -07001573/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001574/* for TIM 0-10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001575static struct iwl_power_vec_entry range_0[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001576 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1577 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1578 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1579 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1580 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1581 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1582};
1583
Tomas Winklera96a27f2008-10-23 23:48:56 -07001584/* for TIM > 10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001585static struct iwl_power_vec_entry range_1[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001586 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1587 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1588 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1589 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1590 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1591 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1592 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1593 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1594 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1595 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1596};
1597
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001598int iwl3945_power_init_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001599{
1600 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001601 struct iwl3945_power_mgr *pow_data;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001602 int size = sizeof(struct iwl_power_vec_entry) * IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001603 u16 pci_pm;
1604
1605 IWL_DEBUG_POWER("Initialize power \n");
1606
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001607 pow_data = &(priv->power_data_39);
Zhu Yib481de92007-09-25 17:54:57 -07001608
1609 memset(pow_data, 0, sizeof(*pow_data));
1610
1611 pow_data->active_index = IWL_POWER_RANGE_0;
1612 pow_data->dtim_val = 0xffff;
1613
1614 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1615 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1616
1617 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1618 if (rc != 0)
1619 return 0;
1620 else {
Tomas Winkler600c0e12008-12-19 10:37:04 +08001621 struct iwl_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001622
1623 IWL_DEBUG_POWER("adjust power command flags\n");
1624
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001625 for (i = 0; i < IWL39_POWER_AC; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07001626 cmd = &pow_data->pwr_range_0[i].cmd;
1627
1628 if (pci_pm & 0x1)
1629 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1630 else
1631 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1632 }
1633 }
1634 return rc;
1635}
1636
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001637static int iwl3945_update_power_cmd(struct iwl_priv *priv,
Tomas Winkler600c0e12008-12-19 10:37:04 +08001638 struct iwl_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001639{
1640 int rc = 0, i;
1641 u8 skip;
1642 u32 max_sleep = 0;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001643 struct iwl_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001644 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001645 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001646
1647 if (mode > IWL_POWER_INDEX_5) {
1648 IWL_DEBUG_POWER("Error invalid power mode \n");
1649 return -1;
1650 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001651 pow_data = &(priv->power_data_39);
Zhu Yib481de92007-09-25 17:54:57 -07001652
1653 if (pow_data->active_index == IWL_POWER_RANGE_0)
1654 range = &pow_data->pwr_range_0[0];
1655 else
1656 range = &pow_data->pwr_range_1[1];
1657
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001658 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001659
1660#ifdef IWL_MAC80211_DISABLE
1661 if (priv->assoc_network != NULL) {
1662 unsigned long flags;
1663
1664 period = priv->assoc_network->tim.tim_period;
1665 }
1666#endif /*IWL_MAC80211_DISABLE */
1667 skip = range[mode].no_dtim;
1668
1669 if (period == 0) {
1670 period = 1;
1671 skip = 0;
1672 }
1673
1674 if (skip == 0) {
1675 max_sleep = period;
1676 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1677 } else {
1678 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1679 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1680 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1681 }
1682
1683 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1684 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1685 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1686 }
1687
1688 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1689 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1690 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1691 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1692 le32_to_cpu(cmd->sleep_interval[0]),
1693 le32_to_cpu(cmd->sleep_interval[1]),
1694 le32_to_cpu(cmd->sleep_interval[2]),
1695 le32_to_cpu(cmd->sleep_interval[3]),
1696 le32_to_cpu(cmd->sleep_interval[4]));
1697
1698 return rc;
1699}
1700
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001701static int iwl3945_send_power_mode(struct iwl_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001702{
John W. Linville9a62f732007-11-15 16:27:36 -05001703 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001704 int rc;
Tomas Winkler600c0e12008-12-19 10:37:04 +08001705 struct iwl_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001706
1707 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001708 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001709 * else user level */
1710 switch (mode) {
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001711 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07001712 final_mode = IWL_POWER_INDEX_3;
1713 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001714 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07001715 final_mode = IWL_POWER_MODE_CAM;
1716 break;
1717 default:
1718 final_mode = mode;
1719 break;
1720 }
1721
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001722 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001723
Tomas Winkler600c0e12008-12-19 10:37:04 +08001724 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
1725 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD,
1726 sizeof(struct iwl3945_powertable_cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001727
1728 if (final_mode == IWL_POWER_MODE_CAM)
1729 clear_bit(STATUS_POWER_PMI, &priv->status);
1730 else
1731 set_bit(STATUS_POWER_PMI, &priv->status);
1732
1733 return rc;
1734}
1735
Zhu Yib481de92007-09-25 17:54:57 -07001736/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001737 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001738 *
1739 * NOTE: priv->mutex is not required before calling this function
1740 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001741static int iwl3945_scan_cancel(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001742{
1743 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1744 clear_bit(STATUS_SCANNING, &priv->status);
1745 return 0;
1746 }
1747
1748 if (test_bit(STATUS_SCANNING, &priv->status)) {
1749 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1750 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1751 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1752 queue_work(priv->workqueue, &priv->abort_scan);
1753
1754 } else
1755 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
1756
1757 return test_bit(STATUS_SCANNING, &priv->status);
1758 }
1759
1760 return 0;
1761}
1762
1763/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001764 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001765 * @ms: amount of time to wait (in milliseconds) for scan to abort
1766 *
1767 * NOTE: priv->mutex must be held before calling this function
1768 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001769static int iwl3945_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07001770{
1771 unsigned long now = jiffies;
1772 int ret;
1773
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001774 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001775 if (ret && ms) {
1776 mutex_unlock(&priv->mutex);
1777 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
1778 test_bit(STATUS_SCANNING, &priv->status))
1779 msleep(1);
1780 mutex_lock(&priv->mutex);
1781
1782 return test_bit(STATUS_SCANNING, &priv->status);
1783 }
1784
1785 return ret;
1786}
1787
Zhu Yib481de92007-09-25 17:54:57 -07001788#define MAX_UCODE_BEACON_INTERVAL 1024
1789#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
1790
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001791static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07001792{
1793 u16 new_val = 0;
1794 u16 beacon_factor = 0;
1795
1796 beacon_factor =
1797 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
1798 / MAX_UCODE_BEACON_INTERVAL;
1799 new_val = beacon_val / beacon_factor;
1800
1801 return cpu_to_le16(new_val);
1802}
1803
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001804static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001805{
1806 u64 interval_tm_unit;
1807 u64 tsf, result;
1808 unsigned long flags;
1809 struct ieee80211_conf *conf = NULL;
1810 u16 beacon_int = 0;
1811
1812 conf = ieee80211_get_hw_conf(priv->hw);
1813
1814 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler28afaf92008-12-19 10:37:06 +08001815 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07001816 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1817
Tomas Winkler28afaf92008-12-19 10:37:06 +08001818 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07001819
1820 beacon_int = priv->beacon_int;
1821 spin_unlock_irqrestore(&priv->lock, flags);
1822
Johannes Berg05c914f2008-09-11 00:01:58 +02001823 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07001824 if (beacon_int == 0) {
1825 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1826 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1827 } else {
1828 priv->rxon_timing.beacon_interval =
1829 cpu_to_le16(beacon_int);
1830 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001831 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07001832 le16_to_cpu(priv->rxon_timing.beacon_interval));
1833 }
1834
1835 priv->rxon_timing.atim_window = 0;
1836 } else {
1837 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001838 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07001839 /* TODO: we need to get atim_window from upper stack
1840 * for now we set to 0 */
1841 priv->rxon_timing.atim_window = 0;
1842 }
1843
1844 interval_tm_unit =
1845 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1846 result = do_div(tsf, interval_tm_unit);
1847 priv->rxon_timing.beacon_init_val =
1848 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1849
1850 IWL_DEBUG_ASSOC
1851 ("beacon interval %d beacon timer %d beacon tim %d\n",
1852 le16_to_cpu(priv->rxon_timing.beacon_interval),
1853 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1854 le16_to_cpu(priv->rxon_timing.atim_window));
1855}
1856
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001857static int iwl3945_scan_initiate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001858{
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08001859 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001860 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1861 return -EIO;
1862 }
1863
1864 if (test_bit(STATUS_SCANNING, &priv->status)) {
1865 IWL_DEBUG_SCAN("Scan already in progress.\n");
1866 return -EAGAIN;
1867 }
1868
1869 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1870 IWL_DEBUG_SCAN("Scan request while abort pending. "
1871 "Queuing.\n");
1872 return -EAGAIN;
1873 }
1874
1875 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08001876 if (priv->cfg->sku & IWL_SKU_G)
1877 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
1878 if (priv->cfg->sku & IWL_SKU_A)
1879 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07001880 set_bit(STATUS_SCANNING, &priv->status);
1881 priv->scan_start = jiffies;
1882 priv->scan_pass_start = priv->scan_start;
1883
1884 queue_work(priv->workqueue, &priv->request_scan);
1885
1886 return 0;
1887}
1888
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001889static int iwl3945_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07001890{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001891 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001892
1893 if (hw_decrypt)
1894 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
1895 else
1896 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
1897
1898 return 0;
1899}
1900
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001901static void iwl3945_set_flags_for_phymode(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001902 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07001903{
Johannes Berg8318d782008-01-24 19:38:38 +01001904 if (band == IEEE80211_BAND_5GHZ) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001905 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07001906 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1907 | RXON_FLG_CCK_MSK);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001908 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001909 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001910 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07001911 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001912 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001913 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001914 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001915
Johannes Berg05c914f2008-09-11 00:01:58 +02001916 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001917 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001918
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001919 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1920 priv->staging39_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1921 priv->staging39_rxon.flags &= ~RXON_FLG_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001922 }
1923}
1924
1925/*
Ian Schram01ebd062007-10-25 17:15:22 +08001926 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001927 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001928static void iwl3945_connection_init_rx_config(struct iwl_priv *priv,
Zhu, Yi60294de2008-10-29 14:05:45 -07001929 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07001930{
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001931 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001932
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001933 memset(&priv->staging39_rxon, 0, sizeof(priv->staging39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07001934
Zhu, Yi60294de2008-10-29 14:05:45 -07001935 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001936 case NL80211_IFTYPE_AP:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001937 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_AP;
Zhu Yib481de92007-09-25 17:54:57 -07001938 break;
1939
Johannes Berg05c914f2008-09-11 00:01:58 +02001940 case NL80211_IFTYPE_STATION:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001941 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_ESS;
1942 priv->staging39_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001943 break;
1944
Johannes Berg05c914f2008-09-11 00:01:58 +02001945 case NL80211_IFTYPE_ADHOC:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001946 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1947 priv->staging39_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1948 priv->staging39_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
Zhu Yib481de92007-09-25 17:54:57 -07001949 RXON_FILTER_ACCEPT_GRP_MSK;
1950 break;
1951
Johannes Berg05c914f2008-09-11 00:01:58 +02001952 case NL80211_IFTYPE_MONITOR:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001953 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
1954 priv->staging39_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
Zhu Yib481de92007-09-25 17:54:57 -07001955 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
1956 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001957 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001958 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001959 break;
Zhu Yib481de92007-09-25 17:54:57 -07001960 }
1961
1962#if 0
1963 /* TODO: Figure out when short_preamble would be set and cache from
1964 * that */
1965 if (!hw_to_local(priv->hw)->short_preamble)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001966 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001967 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001968 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001969#endif
1970
Johannes Berg8318d782008-01-24 19:38:38 +01001971 ch_info = iwl3945_get_channel_info(priv, priv->band,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001972 le16_to_cpu(priv->active39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07001973
1974 if (!ch_info)
1975 ch_info = &priv->channel_info[0];
1976
1977 /*
1978 * in some case A channels are all non IBSS
1979 * in this case force B/G channel
1980 */
Zhu, Yi60294de2008-10-29 14:05:45 -07001981 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07001982 ch_info = &priv->channel_info[0];
1983
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001984 priv->staging39_rxon.channel = cpu_to_le16(ch_info->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001985 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01001986 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07001987 else
Johannes Berg8318d782008-01-24 19:38:38 +01001988 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07001989
Johannes Berg8318d782008-01-24 19:38:38 +01001990 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07001991
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001992 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07001993 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001994 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07001995 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1996}
1997
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001998static int iwl3945_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07001999{
Johannes Berg05c914f2008-09-11 00:01:58 +02002000 if (mode == NL80211_IFTYPE_ADHOC) {
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002001 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002002
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002003 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002004 priv->band,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002005 le16_to_cpu(priv->staging39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002006
2007 if (!ch_info || !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002008 IWL_ERR(priv, "channel %d not IBSS channel\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002009 le16_to_cpu(priv->staging39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002010 return -EINVAL;
2011 }
2012 }
2013
Zhu, Yi60294de2008-10-29 14:05:45 -07002014 iwl3945_connection_init_rx_config(priv, mode);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002015 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002016
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002017 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002018
Tomas Winklera96a27f2008-10-23 23:48:56 -07002019 /* don't commit rxon if rf-kill is on*/
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002020 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002021 return -EAGAIN;
2022
2023 cancel_delayed_work(&priv->scan_check);
2024 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002025 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002026 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2027 return -EAGAIN;
2028 }
2029
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002030 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002031
2032 return 0;
2033}
2034
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002035static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002036 struct ieee80211_tx_info *info,
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08002037 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002038 struct sk_buff *skb_frag,
2039 int last_frag)
2040{
Winkler, Tomase52119c2008-12-22 11:31:19 +08002041 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Ivo van Doorn1c014422008-04-17 19:41:02 +02002042 struct iwl3945_hw_key *keyinfo =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002043 &priv->stations_39[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002044
2045 switch (keyinfo->alg) {
2046 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +08002047 tx->sec_ctl = TX_CMD_SEC_CCM;
2048 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002049 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002050 break;
2051
2052 case ALG_TKIP:
2053#if 0
Winkler, Tomase52119c2008-12-22 11:31:19 +08002054 tx->sec_ctl = TX_CMD_SEC_TKIP;
Zhu Yib481de92007-09-25 17:54:57 -07002055
2056 if (last_frag)
Winkler, Tomase52119c2008-12-22 11:31:19 +08002057 memcpy(tx->tkip_mic.byte, skb_frag->tail - 8,
Zhu Yib481de92007-09-25 17:54:57 -07002058 8);
2059 else
Winkler, Tomase52119c2008-12-22 11:31:19 +08002060 memset(tx->tkip_mic.byte, 0, 8);
Zhu Yib481de92007-09-25 17:54:57 -07002061#endif
2062 break;
2063
2064 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +08002065 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002066 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002067
2068 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +08002069 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -07002070
Winkler, Tomase52119c2008-12-22 11:31:19 +08002071 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -07002072
2073 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002074 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002075 break;
2076
Zhu Yib481de92007-09-25 17:54:57 -07002077 default:
Tomas Winkler978785a2008-12-19 10:37:31 +08002078 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -07002079 break;
2080 }
2081}
2082
2083/*
2084 * handle build REPLY_TX command notification.
2085 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002086static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08002087 struct iwl_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002088 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +08002089 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -07002090{
Winkler, Tomase52119c2008-12-22 11:31:19 +08002091 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
2092 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002093 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +02002094 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002095
Winkler, Tomase52119c2008-12-22 11:31:19 +08002096 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002097 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002098 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002099 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002100 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002101 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002102 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2103 tx_flags |= TX_CMD_FLG_TSF_MSK;
2104 } else {
2105 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2106 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2107 }
2108
Winkler, Tomase52119c2008-12-22 11:31:19 +08002109 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002110 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002111 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2112
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002113 if (ieee80211_is_data_qos(fc)) {
2114 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +08002115 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002116 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002117 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002118 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002119 }
Zhu Yib481de92007-09-25 17:54:57 -07002120
Johannes Berge6a98542008-10-21 12:40:02 +02002121 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002122 tx_flags |= TX_CMD_FLG_RTS_MSK;
2123 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002124 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002125 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2126 tx_flags |= TX_CMD_FLG_CTS_MSK;
2127 }
2128
2129 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2130 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2131
2132 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002133 if (ieee80211_is_mgmt(fc)) {
2134 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +08002135 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002136 else
Winkler, Tomase52119c2008-12-22 11:31:19 +08002137 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002138 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +08002139 tx->timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002140#ifdef CONFIG_IWL3945_LEDS
2141 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2142#endif
2143 }
Zhu Yib481de92007-09-25 17:54:57 -07002144
Winkler, Tomase52119c2008-12-22 11:31:19 +08002145 tx->driver_txop = 0;
2146 tx->tx_flags = tx_flags;
2147 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002148}
2149
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002150/**
2151 * iwl3945_get_sta_id - Find station's index within station table
2152 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002153static int iwl3945_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002154{
2155 int sta_id;
2156 u16 fc = le16_to_cpu(hdr->frame_control);
2157
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002158 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002159 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2160 is_multicast_ether_addr(hdr->addr1))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002161 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002162
2163 switch (priv->iw_mode) {
2164
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002165 /* If we are a client station in a BSS network, use the special
2166 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002167 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002168 return IWL_AP_ID;
2169
2170 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002171 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002172 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002173 if (sta_id != IWL_INVALID_STATION)
2174 return sta_id;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002175 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002176
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002177 /* If this frame is going out to an IBSS network, find the station,
2178 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002179 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002180 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002181 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002182 if (sta_id != IWL_INVALID_STATION)
2183 return sta_id;
2184
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002185 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002186
2187 if (sta_id != IWL_INVALID_STATION)
2188 return sta_id;
2189
Johannes Berge1749612008-10-27 15:59:26 -07002190 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002191 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002192 hdr->addr1);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002193 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002194 return priv->hw_params.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002195 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002196 /* If we are in monitor mode, use BCAST. This is required for
2197 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002198 case NL80211_IFTYPE_MONITOR:
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002199 return priv->hw_params.bcast_sta_id;
Stefanik Gábor914233d2008-06-30 17:23:30 +08002200
Zhu Yib481de92007-09-25 17:54:57 -07002201 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002202 IWL_WARN(priv, "Unknown mode of operation: %d\n",
2203 priv->iw_mode);
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002204 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002205 }
2206}
2207
2208/*
2209 * start REPLY_TX command process
2210 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002211static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002212{
2213 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002214 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002215 struct iwl3945_tfd *tfd;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002216 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002217 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002218 struct iwl_queue *q = NULL;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002219 struct iwl_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002220 dma_addr_t phys_addr;
2221 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002222 int txq_id = skb_get_queue_mapping(skb);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002223 u16 len, idx, len_org, hdr_len;
2224 u8 id;
2225 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002226 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002227 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002228 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002229 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002230 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002231 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002232 unsigned long flags;
2233 int rc;
2234
2235 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002236 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002237 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2238 goto drop_unlock;
2239 }
2240
Johannes Berge039fa42008-05-15 12:55:29 +02002241 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002242 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002243 goto drop_unlock;
2244 }
2245
2246 unicast = !is_multicast_ether_addr(hdr->addr1);
2247 id = 0;
2248
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002249 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002250
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002251#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002252 if (ieee80211_is_auth(fc))
2253 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002254 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002255 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002256 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002257 IWL_DEBUG_TX("Sending REASSOC frame\n");
2258#endif
2259
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002260 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002261 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002262 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002263 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002264 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002265 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002266 goto drop_unlock;
2267 }
2268
2269 spin_unlock_irqrestore(&priv->lock, flags);
2270
Harvey Harrison7294ec92008-07-15 18:43:59 -07002271 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002272
2273 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002274 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002275 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002276 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2277 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002278 goto drop;
2279 }
2280
2281 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2282
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002283 if (ieee80211_is_data_qos(fc)) {
2284 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002285 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002286 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -07002287 IEEE80211_SCTL_SEQ;
2288 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2289 (hdr->seq_ctrl &
2290 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2291 seq_number += 0x10;
2292 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002293
2294 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002295 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -07002296 q = &txq->q;
2297
2298 spin_lock_irqsave(&priv->lock, flags);
2299
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002300 /* Set up first empty TFD within this queue's circular TFD buffer */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002301 tfd = &txq->tfds39[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002302 memset(tfd, 0, sizeof(*tfd));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002303 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002304
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002305 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002306 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002307 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002308
2309 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002310 out_cmd = txq->cmd[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +08002311 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -07002312 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +08002313 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002314
2315 /*
2316 * Set up the Tx-command (not MAC!) header.
2317 * Store the chosen Tx queue and TFD index within the sequence field;
2318 * after Tx, uCode's Tx response will return this value so driver can
2319 * locate the frame within the tx queue and do post-tx processing.
2320 */
Zhu Yib481de92007-09-25 17:54:57 -07002321 out_cmd->hdr.cmd = REPLY_TX;
2322 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002323 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002324
2325 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +08002326 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -07002327
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002328 /*
2329 * Use the first empty entry in this queue's command buffer array
2330 * to contain the Tx command and MAC header concatenated together
2331 * (payload data will be in another buffer).
2332 * Size of this varies, due to varying MAC header length.
2333 * If end is not dword aligned, we'll have 2 extra bytes at the end
2334 * of the MAC header (device reads on dword boundaries).
2335 * We'll tell device about this padding later.
2336 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002337 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +08002338 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002339
2340 len_org = len;
2341 len = (len + 3) & ~3;
2342
2343 if (len_org != len)
2344 len_org = 1;
2345 else
2346 len_org = 0;
2347
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002348 /* Physical address of this Tx command's header (not MAC header!),
2349 * within command buffer array. */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002350 txcmd_phys = pci_map_single(priv->pci_dev,
2351 out_cmd, sizeof(struct iwl_cmd),
2352 PCI_DMA_TODEVICE);
2353 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
2354 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
2355 /* Add buffer containing Tx command and MAC(!) header to TFD's
2356 * first entry */
2357 txcmd_phys += offsetof(struct iwl_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002358
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002359 /* Add buffer containing Tx command and MAC(!) header to TFD's
2360 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002361 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002362
Johannes Bergd0f09802008-07-29 11:32:07 +02002363 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002364 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002365
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002366 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2367 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002368 len = skb->len - hdr_len;
2369 if (len) {
2370 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2371 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002372 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002373 }
2374
Zhu Yib481de92007-09-25 17:54:57 -07002375 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002376 /* If there is no payload, then we use only one Tx buffer */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002377 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(1));
Zhu Yib481de92007-09-25 17:54:57 -07002378 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002379 /* Else use 2 buffers.
2380 * Tell 3945 about any padding after MAC header */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002381 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(2) |
2382 TFD_CTL_PAD_SET(U32_PAD(len)));
Zhu Yib481de92007-09-25 17:54:57 -07002383
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002384 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002385 len = (u16)skb->len;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002386 tx->len = cpu_to_le16(len);
Zhu Yib481de92007-09-25 17:54:57 -07002387
2388 /* TODO need this for burst mode later on */
Winkler, Tomase52119c2008-12-22 11:31:19 +08002389 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002390
2391 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002392 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002393
Winkler, Tomase52119c2008-12-22 11:31:19 +08002394 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2395 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002396
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002397 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002398 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002399 if (qc)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002400 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002401 } else {
2402 wait_write_ptr = 1;
2403 txq->need_update = 0;
2404 }
2405
Winkler, Tomase52119c2008-12-22 11:31:19 +08002406 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
Zhu Yib481de92007-09-25 17:54:57 -07002407
Winkler, Tomase52119c2008-12-22 11:31:19 +08002408 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002409 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002410
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002411 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002412 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002413 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002414 spin_unlock_irqrestore(&priv->lock, flags);
2415
2416 if (rc)
2417 return rc;
2418
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002419 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002420 && priv->mac80211_registered) {
2421 if (wait_write_ptr) {
2422 spin_lock_irqsave(&priv->lock, flags);
2423 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002424 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002425 spin_unlock_irqrestore(&priv->lock, flags);
2426 }
2427
Johannes Berge2530082008-05-17 00:57:14 +02002428 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002429 }
2430
2431 return 0;
2432
2433drop_unlock:
2434 spin_unlock_irqrestore(&priv->lock, flags);
2435drop:
2436 return -1;
2437}
2438
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002439static void iwl3945_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002440{
Johannes Berg8318d782008-01-24 19:38:38 +01002441 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002442 struct ieee80211_rate *rate;
2443 int i;
2444
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08002445 sband = iwl_get_hw_mode(priv, priv->band);
Johannes Berg8318d782008-01-24 19:38:38 +01002446 if (!sband) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002447 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002448 return;
2449 }
Zhu Yib481de92007-09-25 17:54:57 -07002450
2451 priv->active_rate = 0;
2452 priv->active_rate_basic = 0;
2453
Johannes Berg8318d782008-01-24 19:38:38 +01002454 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2455 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002456
Johannes Berg8318d782008-01-24 19:38:38 +01002457 for (i = 0; i < sband->n_bitrates; i++) {
2458 rate = &sband->bitrates[i];
2459 if ((rate->hw_value < IWL_RATE_COUNT) &&
2460 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2461 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2462 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2463 priv->active_rate |= (1 << rate->hw_value);
2464 }
Zhu Yib481de92007-09-25 17:54:57 -07002465 }
2466
2467 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2468 priv->active_rate, priv->active_rate_basic);
2469
2470 /*
2471 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2472 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2473 * OFDM
2474 */
2475 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002476 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002477 ((priv->active_rate_basic &
2478 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2479 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002480 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002481 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2482
2483 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002484 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002485 ((priv->active_rate_basic &
2486 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2487 IWL_FIRST_OFDM_RATE) & 0xFF;
2488 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002489 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002490 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2491}
2492
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002493static void iwl3945_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002494{
2495 unsigned long flags;
2496
2497 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2498 return;
2499
2500 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2501 disable_radio ? "OFF" : "ON");
2502
2503 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002504 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002505 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002506 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002507 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002508 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002509 CSR_UCODE_SW_BIT_RFKILL);
2510 spin_unlock_irqrestore(&priv->lock, flags);
Samuel Ortizc4962942008-12-22 11:31:18 +08002511 iwl_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002512 set_bit(STATUS_RF_KILL_SW, &priv->status);
2513 }
2514 return;
2515 }
2516
2517 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002518 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002519
2520 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2521 spin_unlock_irqrestore(&priv->lock, flags);
2522
2523 /* wake up ucode */
2524 msleep(10);
2525
2526 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002527 iwl_read32(priv, CSR_UCODE_DRV_GP1);
2528 if (!iwl_grab_nic_access(priv))
2529 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002530 spin_unlock_irqrestore(&priv->lock, flags);
2531
2532 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2533 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2534 "disabled by HW switch\n");
2535 return;
2536 }
2537
Zhu Yi808e72a2008-06-12 09:47:17 +08002538 if (priv->is_open)
2539 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002540 return;
2541}
2542
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002543void iwl3945_set_decrypted_flag(struct iwl_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002544 u32 decrypt_res, struct ieee80211_rx_status *stats)
2545{
2546 u16 fc =
2547 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2548
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002549 if (priv->active39_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07002550 return;
2551
2552 if (!(fc & IEEE80211_FCTL_PROTECTED))
2553 return;
2554
2555 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2556 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2557 case RX_RES_STATUS_SEC_TYPE_TKIP:
2558 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2559 RX_RES_STATUS_BAD_ICV_MIC)
2560 stats->flag |= RX_FLAG_MMIC_ERROR;
2561 case RX_RES_STATUS_SEC_TYPE_WEP:
2562 case RX_RES_STATUS_SEC_TYPE_CCMP:
2563 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2564 RX_RES_STATUS_DECRYPT_OK) {
2565 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2566 stats->flag |= RX_FLAG_DECRYPTED;
2567 }
2568 break;
2569
2570 default:
2571 break;
2572 }
2573}
2574
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002575#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002576
2577#include "iwl-spectrum.h"
2578
2579#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2580#define BEACON_TIME_MASK_HIGH 0xFF000000
2581#define TIME_UNIT 1024
2582
2583/*
2584 * extended beacon time format
2585 * time in usec will be changed into a 32-bit value in 8:24 format
2586 * the high 1 byte is the beacon counts
2587 * the lower 3 bytes is the time in usec within one beacon interval
2588 */
2589
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002590static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002591{
2592 u32 quot;
2593 u32 rem;
2594 u32 interval = beacon_interval * 1024;
2595
2596 if (!interval || !usec)
2597 return 0;
2598
2599 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2600 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2601
2602 return (quot << 24) + rem;
2603}
2604
2605/* base is usually what we get from ucode with each received frame,
2606 * the same as HW timer counter counting down
2607 */
2608
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002609static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002610{
2611 u32 base_low = base & BEACON_TIME_MASK_LOW;
2612 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2613 u32 interval = beacon_interval * TIME_UNIT;
2614 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2615 (addon & BEACON_TIME_MASK_HIGH);
2616
2617 if (base_low > addon_low)
2618 res += base_low - addon_low;
2619 else if (base_low < addon_low) {
2620 res += interval + base_low - addon_low;
2621 res += (1 << 24);
2622 } else
2623 res += (1 << 24);
2624
2625 return cpu_to_le32(res);
2626}
2627
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002628static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002629 struct ieee80211_measurement_params *params,
2630 u8 type)
2631{
Tomas Winkler600c0e12008-12-19 10:37:04 +08002632 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002633 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08002634 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002635 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2636 .data = (void *)&spectrum,
2637 .meta.flags = CMD_WANT_SKB,
2638 };
2639 u32 add_time = le64_to_cpu(params->start_time);
2640 int rc;
2641 int spectrum_resp_status;
2642 int duration = le16_to_cpu(params->duration);
2643
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002644 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002645 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002646 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002647 le64_to_cpu(params->start_time) - priv->last_tsf,
2648 le16_to_cpu(priv->rxon_timing.beacon_interval));
2649
2650 memset(&spectrum, 0, sizeof(spectrum));
2651
2652 spectrum.channel_count = cpu_to_le16(1);
2653 spectrum.flags =
2654 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2655 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2656 cmd.len = sizeof(spectrum);
2657 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2658
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002659 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002660 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002661 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002662 add_time,
2663 le16_to_cpu(priv->rxon_timing.beacon_interval));
2664 else
2665 spectrum.start_time = 0;
2666
2667 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2668 spectrum.channels[0].channel = params->channel;
2669 spectrum.channels[0].type = type;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002670 if (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07002671 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2672 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2673
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002674 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002675 if (rc)
2676 return rc;
2677
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002678 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002679 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002680 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -07002681 rc = -EIO;
2682 }
2683
2684 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2685 switch (spectrum_resp_status) {
2686 case 0: /* Command will be handled */
2687 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002688 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2689 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002690 priv->measurement_status &= ~MEASUREMENT_READY;
2691 }
2692 priv->measurement_status |= MEASUREMENT_ACTIVE;
2693 rc = 0;
2694 break;
2695
2696 case 1: /* Command will not be handled */
2697 rc = -EAGAIN;
2698 break;
2699 }
2700
2701 dev_kfree_skb_any(cmd.meta.u.skb);
2702
2703 return rc;
2704}
2705#endif
2706
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002707static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002708 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002709{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002710 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2711 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002712 struct delayed_work *pwork;
2713
2714 palive = &pkt->u.alive_frame;
2715
2716 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2717 "0x%01X 0x%01X\n",
2718 palive->is_valid, palive->ver_type,
2719 palive->ver_subtype);
2720
2721 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2722 IWL_DEBUG_INFO("Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002723 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
2724 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002725 pwork = &priv->init_alive_start;
2726 } else {
2727 IWL_DEBUG_INFO("Runtime Alive received.\n");
2728 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002729 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002730 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002731 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002732 }
2733
2734 /* We delay the ALIVE response by 5ms to
2735 * give the HW RF Kill time to activate... */
2736 if (palive->is_valid == UCODE_VALID_OK)
2737 queue_delayed_work(priv->workqueue, pwork,
2738 msecs_to_jiffies(5));
2739 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002740 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002741}
2742
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002743static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002744 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002745{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002746 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002747
2748 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2749 return;
2750}
2751
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002752static void iwl3945_rx_reply_error(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002753 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002754{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002755 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002756
Winkler, Tomas15b16872008-12-19 10:37:33 +08002757 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
Zhu Yib481de92007-09-25 17:54:57 -07002758 "seq 0x%04X ser 0x%08X\n",
2759 le32_to_cpu(pkt->u.err_resp.error_type),
2760 get_cmd_string(pkt->u.err_resp.cmd_id),
2761 pkt->u.err_resp.cmd_id,
2762 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2763 le32_to_cpu(pkt->u.err_resp.error_info));
2764}
2765
2766#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2767
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002768static void iwl3945_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002769{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002770 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002771 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active39_rxon;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002772 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002773 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
2774 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
2775 rxon->channel = csa->channel;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002776 priv->staging39_rxon.channel = csa->channel;
Zhu Yib481de92007-09-25 17:54:57 -07002777}
2778
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002779static void iwl3945_rx_spectrum_measure_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002780 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002781{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002782#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002783 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002784 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002785
2786 if (!report->state) {
2787 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
2788 "Spectrum Measure Notification: Start\n");
2789 return;
2790 }
2791
2792 memcpy(&priv->measure_report, report, sizeof(*report));
2793 priv->measurement_status |= MEASUREMENT_READY;
2794#endif
2795}
2796
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002797static void iwl3945_rx_pm_sleep_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002798 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002799{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002800#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002801 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002802 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002803 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
2804 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2805#endif
2806}
2807
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002808static void iwl3945_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002809 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002810{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002811 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002812 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
2813 "notification for %s:\n",
2814 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002815 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw,
2816 le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07002817}
2818
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002819static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07002820{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002821 struct iwl_priv *priv =
2822 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07002823 struct sk_buff *beacon;
2824
2825 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02002826 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07002827
2828 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002829 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07002830 return;
2831 }
2832
2833 mutex_lock(&priv->mutex);
2834 /* new beacon skb is allocated every time; dispose previous.*/
2835 if (priv->ibss_beacon)
2836 dev_kfree_skb(priv->ibss_beacon);
2837
2838 priv->ibss_beacon = beacon;
2839 mutex_unlock(&priv->mutex);
2840
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002841 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002842}
2843
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002844static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002845 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002846{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002847#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002848 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002849 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07002850 u8 rate = beacon->beacon_notify_hdr.rate;
2851
2852 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
2853 "tsf %d %d rate %d\n",
2854 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
2855 beacon->beacon_notify_hdr.failure_frame,
2856 le32_to_cpu(beacon->ibss_mgr_status),
2857 le32_to_cpu(beacon->high_tsf),
2858 le32_to_cpu(beacon->low_tsf), rate);
2859#endif
2860
Johannes Berg05c914f2008-09-11 00:01:58 +02002861 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07002862 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
2863 queue_work(priv->workqueue, &priv->beacon_update);
2864}
2865
2866/* Service response to REPLY_SCAN_CMD (0x80) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002867static void iwl3945_rx_reply_scan(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002868 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002869{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002870#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002871 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002872 struct iwl_scanreq_notification *notif =
2873 (struct iwl_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002874
2875 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
2876#endif
2877}
2878
2879/* Service SCAN_START_NOTIFICATION (0x82) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002880static void iwl3945_rx_scan_start_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002881 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002882{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002883 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002884 struct iwl_scanstart_notification *notif =
2885 (struct iwl_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002886 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
2887 IWL_DEBUG_SCAN("Scan start: "
2888 "%d [802.11%s] "
2889 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
2890 notif->channel,
2891 notif->band ? "bg" : "a",
2892 notif->tsf_high,
2893 notif->tsf_low, notif->status, notif->beacon_timer);
2894}
2895
2896/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002897static void iwl3945_rx_scan_results_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002898 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002899{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002900 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002901 struct iwl_scanresults_notification *notif =
2902 (struct iwl_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002903
2904 IWL_DEBUG_SCAN("Scan ch.res: "
2905 "%d [802.11%s] "
2906 "(TSF: 0x%08X:%08X) - %d "
2907 "elapsed=%lu usec (%dms since last)\n",
2908 notif->channel,
2909 notif->band ? "bg" : "a",
2910 le32_to_cpu(notif->tsf_high),
2911 le32_to_cpu(notif->tsf_low),
2912 le32_to_cpu(notif->statistics[0]),
2913 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
2914 jiffies_to_msecs(elapsed_jiffies
2915 (priv->last_scan_jiffies, jiffies)));
2916
2917 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002918 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002919}
2920
2921/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002922static void iwl3945_rx_scan_complete_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002923 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002924{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002925 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002926 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002927
2928 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
2929 scan_notif->scanned_channels,
2930 scan_notif->tsf_low,
2931 scan_notif->tsf_high, scan_notif->status);
2932
2933 /* The HW is no longer scanning */
2934 clear_bit(STATUS_SCAN_HW, &priv->status);
2935
2936 /* The scan completion notification came in, so kill that timer... */
2937 cancel_delayed_work(&priv->scan_check);
2938
2939 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002940 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
2941 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07002942 jiffies_to_msecs(elapsed_jiffies
2943 (priv->scan_pass_start, jiffies)));
2944
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002945 /* Remove this scanned band from the list of pending
2946 * bands to scan, band G precedes A in order of scanning
2947 * as seen in iwl3945_bg_request_scan */
2948 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
2949 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
2950 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
2951 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002952
2953 /* If a request to abort was given, or the scan did not succeed
2954 * then we reset the scan state machine and terminate,
2955 * re-queuing another scan if one has been requested */
2956 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2957 IWL_DEBUG_INFO("Aborted scan completed.\n");
2958 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
2959 } else {
2960 /* If there are more bands on this scan pass reschedule */
2961 if (priv->scan_bands > 0)
2962 goto reschedule;
2963 }
2964
2965 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002966 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002967 IWL_DEBUG_INFO("Setting scan to off\n");
2968
2969 clear_bit(STATUS_SCANNING, &priv->status);
2970
2971 IWL_DEBUG_INFO("Scan took %dms\n",
2972 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
2973
2974 queue_work(priv->workqueue, &priv->scan_completed);
2975
2976 return;
2977
2978reschedule:
2979 priv->scan_pass_start = jiffies;
2980 queue_work(priv->workqueue, &priv->request_scan);
2981}
2982
2983/* Handle notification from uCode that card's power state is changing
2984 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002985static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002986 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002987{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002988 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002989 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
2990 unsigned long status = priv->status;
2991
2992 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
2993 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
2994 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
2995
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002996 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002997 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2998
2999 if (flags & HW_CARD_DISABLED)
3000 set_bit(STATUS_RF_KILL_HW, &priv->status);
3001 else
3002 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3003
3004
3005 if (flags & SW_CARD_DISABLED)
3006 set_bit(STATUS_RF_KILL_SW, &priv->status);
3007 else
3008 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3009
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003010 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003011
3012 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3013 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3014 (test_bit(STATUS_RF_KILL_SW, &status) !=
3015 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3016 queue_work(priv->workqueue, &priv->rf_kill);
3017 else
3018 wake_up_interruptible(&priv->wait_command_queue);
3019}
3020
3021/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003022 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003023 *
3024 * Setup the RX handlers for each of the reply types sent from the uCode
3025 * to the host.
3026 *
3027 * This function chains into the hardware specific files for them to setup
3028 * any hardware specific handlers as well.
3029 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003030static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003031{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003032 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3033 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3034 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3035 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003036 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003037 iwl3945_rx_spectrum_measure_notif;
3038 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003039 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003040 iwl3945_rx_pm_debug_statistics_notif;
3041 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003042
Ben Cahill9fbab512007-11-29 11:09:47 +08003043 /*
3044 * The same handler is used for both the REPLY to a discrete
3045 * statistics request from the host as well as for the periodic
3046 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003047 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003048 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3049 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003050
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003051 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3052 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003053 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003054 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003055 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003056 iwl3945_rx_scan_complete_notif;
3057 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003058
Ben Cahill9fbab512007-11-29 11:09:47 +08003059 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003060 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003061}
3062
3063/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003064 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3065 * When FW advances 'R' index, all entries between old and new 'R' index
3066 * need to be reclaimed.
3067 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003068static void iwl3945_cmd_queue_reclaim(struct iwl_priv *priv,
Tomas Winkler91c066f2008-03-06 17:36:55 -08003069 int txq_id, int index)
3070{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003071 struct iwl_tx_queue *txq = &priv->txq[txq_id];
Samuel Ortizd20b3c62008-12-19 10:37:15 +08003072 struct iwl_queue *q = &txq->q;
Tomas Winkler91c066f2008-03-06 17:36:55 -08003073 int nfreed = 0;
3074
Winkler, Tomas625a3812009-01-08 10:19:55 -08003075 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003076 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
Tomas Winkler91c066f2008-03-06 17:36:55 -08003077 "is out of range [0-%d] %d %d.\n", txq_id,
3078 index, q->n_bd, q->write_ptr, q->read_ptr);
3079 return;
3080 }
3081
3082 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3083 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3084 if (nfreed > 1) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003085 IWL_ERR(priv, "HCMD skipped: index (%d) %d %d\n", index,
Tomas Winkler91c066f2008-03-06 17:36:55 -08003086 q->write_ptr, q->read_ptr);
3087 queue_work(priv->workqueue, &priv->restart);
3088 break;
3089 }
3090 nfreed++;
3091 }
3092}
3093
3094
3095/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003096 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003097 * @rxb: Rx buffer to reclaim
3098 *
3099 * If an Rx buffer has an async callback associated with it the callback
3100 * will be executed. The attached skb (if present) will only be freed
3101 * if the callback returns 1
3102 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003103static void iwl3945_tx_cmd_complete(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003104 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003105{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003106 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003107 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3108 int txq_id = SEQ_TO_QUEUE(sequence);
3109 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003110 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Zhu Yib481de92007-09-25 17:54:57 -07003111 int cmd_index;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08003112 struct iwl_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003113
Zhu Yib481de92007-09-25 17:54:57 -07003114 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3115
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003116 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3117 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
Zhu Yib481de92007-09-25 17:54:57 -07003118
3119 /* Input error checking is done when commands are added to queue. */
3120 if (cmd->meta.flags & CMD_WANT_SKB) {
3121 cmd->meta.source->u.skb = rxb->skb;
3122 rxb->skb = NULL;
3123 } else if (cmd->meta.u.callback &&
3124 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3125 rxb->skb = NULL;
3126
Tomas Winkler91c066f2008-03-06 17:36:55 -08003127 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003128
3129 if (!(cmd->meta.flags & CMD_ASYNC)) {
3130 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3131 wake_up_interruptible(&priv->wait_command_queue);
3132 }
3133}
3134
3135/************************** RX-FUNCTIONS ****************************/
3136/*
3137 * Rx theory of operation
3138 *
3139 * The host allocates 32 DMA target addresses and passes the host address
3140 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3141 * 0 to 31
3142 *
3143 * Rx Queue Indexes
3144 * The host/firmware share two index registers for managing the Rx buffers.
3145 *
3146 * The READ index maps to the first position that the firmware may be writing
3147 * to -- the driver can read up to (but not including) this position and get
3148 * good data.
3149 * The READ index is managed by the firmware once the card is enabled.
3150 *
3151 * The WRITE index maps to the last position the driver has read from -- the
3152 * position preceding WRITE is the last slot the firmware can place a packet.
3153 *
3154 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3155 * WRITE = READ.
3156 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003157 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003158 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3159 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003160 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003161 * and fire the RX interrupt. The driver can then query the READ index and
3162 * process as many packets as possible, moving the WRITE index forward as it
3163 * resets the Rx queue buffers with new memory.
3164 *
3165 * The management in the driver is as follows:
3166 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3167 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003168 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003169 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003170 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3171 * 'processed' and 'read' driver indexes as well)
3172 * + A received packet is processed and handed to the kernel network stack,
3173 * detached from the iwl->rxq. The driver 'processed' index is updated.
3174 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3175 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3176 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3177 * were enough free buffers and RX_STALLED is set it is cleared.
3178 *
3179 *
3180 * Driver sequence:
3181 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003182 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003183 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003184 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003185 * queue, updates firmware pointers, and updates
3186 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003187 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003188 *
3189 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003190 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003191 * READ INDEX, detaching the SKB from the pool.
3192 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003193 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003194 * slots.
3195 * ...
3196 *
3197 */
3198
3199/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003200 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003201 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003202static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003203 dma_addr_t dma_addr)
3204{
3205 return cpu_to_le32((u32)dma_addr);
3206}
3207
3208/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003209 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003210 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003211 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003212 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003213 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003214 *
3215 * This moves the 'write' index forward to catch up with 'processed', and
3216 * also updates the memory address in the firmware to reference the new
3217 * target buffer.
3218 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003219static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003220{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003221 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003222 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003223 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003224 unsigned long flags;
3225 int write, rc;
3226
3227 spin_lock_irqsave(&rxq->lock, flags);
3228 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08003229 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003230 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003231 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003232 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003233 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003234
3235 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003236 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003237 rxq->queue[rxq->write] = rxb;
3238 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3239 rxq->free_count--;
3240 }
3241 spin_unlock_irqrestore(&rxq->lock, flags);
3242 /* If the pre-allocated buffer pool is dropping low, schedule to
3243 * refill it */
3244 if (rxq->free_count <= RX_LOW_WATERMARK)
3245 queue_work(priv->workqueue, &priv->rx_replenish);
3246
3247
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003248 /* If we've added more space for the firmware to place data, tell it.
3249 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003250 if ((write != (rxq->write & ~0x7))
3251 || (abs(rxq->write - rxq->read) > 7)) {
3252 spin_lock_irqsave(&rxq->lock, flags);
3253 rxq->need_update = 1;
3254 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08003255 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003256 if (rc)
3257 return rc;
3258 }
3259
3260 return 0;
3261}
3262
3263/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003264 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003265 *
3266 * When moving to rx_free an SKB is allocated for the slot.
3267 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003268 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003269 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003270 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003271static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003272{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003273 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003274 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003275 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003276 unsigned long flags;
3277 spin_lock_irqsave(&rxq->lock, flags);
3278 while (!list_empty(&rxq->rx_used)) {
3279 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003280 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003281
3282 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003283 rxb->skb =
3284 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3285 if (!rxb->skb) {
3286 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08003287 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07003288 /* We don't reschedule replenish work here -- we will
3289 * call the restock method and if it still needs
3290 * more buffers it will schedule replenish */
3291 break;
3292 }
Zhu Yi12342c42007-12-20 11:27:32 +08003293
3294 /* If radiotap head is required, reserve some headroom here.
3295 * The physical head count is a variable rx_stats->phy_count.
3296 * We reserve 4 bytes here. Plus these extra bytes, the
3297 * headroom of the physical head should be enough for the
3298 * radiotap head that iwl3945 supported. See iwl3945_rt.
3299 */
3300 skb_reserve(rxb->skb, 4);
3301
Zhu Yib481de92007-09-25 17:54:57 -07003302 priv->alloc_rxb_skb++;
3303 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003304
3305 /* Get physical address of RB/SKB */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003306 rxb->real_dma_addr =
Zhu Yib481de92007-09-25 17:54:57 -07003307 pci_map_single(priv->pci_dev, rxb->skb->data,
3308 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3309 list_add_tail(&rxb->list, &rxq->rx_free);
3310 rxq->free_count++;
3311 }
3312 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003313}
3314
3315/*
3316 * this should be called while priv->lock is locked
3317 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003318static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003319{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003320 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003321
3322 iwl3945_rx_allocate(priv);
3323 iwl3945_rx_queue_restock(priv);
3324}
3325
3326
3327void iwl3945_rx_replenish(void *data)
3328{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003329 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003330 unsigned long flags;
3331
3332 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003333
3334 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003335 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003336 spin_unlock_irqrestore(&priv->lock, flags);
3337}
3338
Zhu Yib481de92007-09-25 17:54:57 -07003339/* Convert linear signal-to-noise ratio into dB */
3340static u8 ratio2dB[100] = {
3341/* 0 1 2 3 4 5 6 7 8 9 */
3342 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3343 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3344 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3345 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3346 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3347 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3348 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3349 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3350 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3351 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3352};
3353
3354/* Calculates a relative dB value from a ratio of linear
3355 * (i.e. not dB) signal levels.
3356 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003357int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003358{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003359 /* 1000:1 or higher just report as 60 dB */
3360 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003361 return 60;
3362
Adrian Bunk221c80c2008-02-02 23:19:01 +02003363 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003364 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003365 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003366 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003367
3368 /* We shouldn't see this */
3369 if (sig_ratio < 1)
3370 return 0;
3371
3372 /* Use table for ratios 1:1 - 99:1 */
3373 return (int)ratio2dB[sig_ratio];
3374}
3375
3376#define PERFECT_RSSI (-20) /* dBm */
3377#define WORST_RSSI (-95) /* dBm */
3378#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3379
3380/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3381 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3382 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003383int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003384{
3385 int sig_qual;
3386 int degradation = PERFECT_RSSI - rssi_dbm;
3387
3388 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3389 * as indicator; formula is (signal dbm - noise dbm).
3390 * SNR at or above 40 is a great signal (100%).
3391 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3392 * Weakest usable signal is usually 10 - 15 dB SNR. */
3393 if (noise_dbm) {
3394 if (rssi_dbm - noise_dbm >= 40)
3395 return 100;
3396 else if (rssi_dbm < noise_dbm)
3397 return 0;
3398 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3399
3400 /* Else use just the signal level.
3401 * This formula is a least squares fit of data points collected and
3402 * compared with a reference system that had a percentage (%) display
3403 * for signal quality. */
3404 } else
3405 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3406 (15 * RSSI_RANGE + 62 * degradation)) /
3407 (RSSI_RANGE * RSSI_RANGE);
3408
3409 if (sig_qual > 100)
3410 sig_qual = 100;
3411 else if (sig_qual < 1)
3412 sig_qual = 0;
3413
3414 return sig_qual;
3415}
3416
3417/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003418 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003419 *
3420 * Uses the priv->rx_handlers callback function array to invoke
3421 * the appropriate handlers, including command responses,
3422 * frame-received notifications, and other notifications.
3423 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003424static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003425{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003426 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003427 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003428 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003429 u32 r, i;
3430 int reclaim;
3431 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003432 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003433 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003434
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003435 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3436 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08003437 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07003438 i = rxq->read;
3439
Winkler, Tomas37d68312009-01-08 10:19:54 -08003440 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003441 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003442 /* Rx interrupt, but nothing sent from uCode */
3443 if (i == r)
3444 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3445
3446 while (i != r) {
3447 rxb = rxq->queue[i];
3448
Ben Cahill9fbab512007-11-29 11:09:47 +08003449 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003450 * then a bug has been introduced in the queue refilling
3451 * routines -- catch it here */
3452 BUG_ON(rxb == NULL);
3453
3454 rxq->queue[i] = NULL;
3455
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003456 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003457 IWL_RX_BUF_SIZE,
3458 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003459 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003460
3461 /* Reclaim a command buffer only if this packet is a response
3462 * to a (driver-originated) command.
3463 * If the packet (e.g. Rx frame) originated from uCode,
3464 * there is no command buffer to reclaim.
3465 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3466 * but apparently a few don't get set; catch them here. */
3467 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3468 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3469 (pkt->hdr.cmd != REPLY_TX);
3470
3471 /* Based on type of command response or notification,
3472 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003473 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003474 if (priv->rx_handlers[pkt->hdr.cmd]) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003475 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003476 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3477 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3478 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3479 } else {
3480 /* No handling needed */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003481 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003482 "r %d i %d No handler needed for %s, 0x%02x\n",
3483 r, i, get_cmd_string(pkt->hdr.cmd),
3484 pkt->hdr.cmd);
3485 }
3486
3487 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003488 /* Invoke any callbacks, transfer the skb to caller, and
3489 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003490 * as we reclaim the driver command queue */
3491 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003492 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003493 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003494 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07003495 }
3496
3497 /* For now we just don't re-use anything. We can tweak this
3498 * later to try and re-use notification packets and SKBs that
3499 * fail to Rx correctly */
3500 if (rxb->skb != NULL) {
3501 priv->alloc_rxb_skb--;
3502 dev_kfree_skb_any(rxb->skb);
3503 rxb->skb = NULL;
3504 }
3505
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003506 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003507 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3508 spin_lock_irqsave(&rxq->lock, flags);
3509 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3510 spin_unlock_irqrestore(&rxq->lock, flags);
3511 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003512 /* If there are a lot of unused frames,
3513 * restock the Rx queue so ucode won't assert. */
3514 if (fill_rx) {
3515 count++;
3516 if (count >= 8) {
3517 priv->rxq.read = i;
3518 __iwl3945_rx_replenish(priv);
3519 count = 0;
3520 }
3521 }
Zhu Yib481de92007-09-25 17:54:57 -07003522 }
3523
3524 /* Backtrack one entry */
3525 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003526 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003527}
3528
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003529/**
3530 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3531 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003532static int iwl3945_tx_queue_update_write_ptr(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003533 struct iwl_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003534{
3535 u32 reg = 0;
3536 int rc = 0;
3537 int txq_id = txq->q.id;
3538
3539 if (txq->need_update == 0)
3540 return rc;
3541
3542 /* if we're trying to save power */
3543 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3544 /* wake up nic if it's powered down ...
3545 * uCode will wake up, and interrupt us again, so next
3546 * time we'll skip this part. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003547 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003548
3549 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3550 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003551 iwl_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003552 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3553 return rc;
3554 }
3555
3556 /* restore this queue's parameters in nic hardware. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003557 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003558 if (rc)
3559 return rc;
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003560 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003561 txq->q.write_ptr | (txq_id << 8));
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003562 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003563
3564 /* else not in power-save mode, uCode will never sleep when we're
3565 * trying to tx (during RFKILL, we're not trying to tx). */
3566 } else
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003567 iwl_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003568 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003569
3570 txq->need_update = 0;
3571
3572 return rc;
3573}
3574
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003575#ifdef CONFIG_IWL3945_DEBUG
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003576static void iwl3945_print_rx_config_cmd(struct iwl_priv *priv,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003577 struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003578{
3579 IWL_DEBUG_RADIO("RX CONFIG:\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003580 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003581 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3582 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3583 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3584 le32_to_cpu(rxon->filter_flags));
3585 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3586 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3587 rxon->ofdm_basic_rates);
3588 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003589 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3590 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003591 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3592}
3593#endif
3594
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003595static void iwl3945_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003596{
3597 IWL_DEBUG_ISR("Enabling interrupts\n");
3598 set_bit(STATUS_INT_ENABLED, &priv->status);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003599 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003600}
3601
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003602
3603/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003604static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003605{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003606 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003607 synchronize_irq(priv->pci_dev->irq);
3608 tasklet_kill(&priv->irq_tasklet);
3609}
3610
3611
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003612static inline void iwl3945_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003613{
3614 clear_bit(STATUS_INT_ENABLED, &priv->status);
3615
3616 /* disable interrupts from uCode/NIC to host */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003617 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003618
3619 /* acknowledge/clear/reset any interrupts still pending
3620 * from uCode or flow handler (Rx/Tx DMA) */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003621 iwl_write32(priv, CSR_INT, 0xffffffff);
3622 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07003623 IWL_DEBUG_ISR("Disabled interrupts\n");
3624}
3625
3626static const char *desc_lookup(int i)
3627{
3628 switch (i) {
3629 case 1:
3630 return "FAIL";
3631 case 2:
3632 return "BAD_PARAM";
3633 case 3:
3634 return "BAD_CHECKSUM";
3635 case 4:
3636 return "NMI_INTERRUPT";
3637 case 5:
3638 return "SYSASSERT";
3639 case 6:
3640 return "FATAL_ERROR";
3641 }
3642
3643 return "UNKNOWN";
3644}
3645
3646#define ERROR_START_OFFSET (1 * sizeof(u32))
3647#define ERROR_ELEM_SIZE (7 * sizeof(u32))
3648
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003649static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003650{
3651 u32 i;
3652 u32 desc, time, count, base, data1;
3653 u32 blink1, blink2, ilink1, ilink2;
3654 int rc;
3655
3656 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
3657
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003658 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003659 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003660 return;
3661 }
3662
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003663 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003664 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003665 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003666 return;
3667 }
3668
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003669 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07003670
3671 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003672 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
3673 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
3674 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07003675 }
3676
Winkler, Tomas15b16872008-12-19 10:37:33 +08003677 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07003678 "ilink1 nmiPC Line\n");
3679 for (i = ERROR_START_OFFSET;
3680 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
3681 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003682 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07003683 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003684 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003685 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003686 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003687 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003688 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003689 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003690 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003691 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003692 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003693 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003694 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003695
Winkler, Tomas15b16872008-12-19 10:37:33 +08003696 IWL_ERR(priv,
3697 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
3698 desc_lookup(desc), desc, time, blink1, blink2,
3699 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07003700 }
3701
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003702 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003703
3704}
3705
Ben Cahillf58177b2007-11-29 11:09:43 +08003706#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07003707
3708/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003709 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07003710 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003711 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07003712 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003713static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07003714 u32 num_events, u32 mode)
3715{
3716 u32 i;
3717 u32 base; /* SRAM byte address of event log header */
3718 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
3719 u32 ptr; /* SRAM byte address of log data */
3720 u32 ev, time, data; /* event log data */
3721
3722 if (num_events == 0)
3723 return;
3724
3725 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
3726
3727 if (mode == 0)
3728 event_size = 2 * sizeof(u32);
3729 else
3730 event_size = 3 * sizeof(u32);
3731
3732 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
3733
3734 /* "time" is actually "data" for mode 0 (no timestamp).
3735 * place event id # at far right for easier visual parsing. */
3736 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003737 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003738 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003739 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003740 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003741 if (mode == 0) {
3742 /* data, ev */
3743 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
3744 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003745 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003746 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003747 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07003748 }
3749 }
3750}
3751
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003752static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003753{
3754 int rc;
3755 u32 base; /* SRAM byte address of event log header */
3756 u32 capacity; /* event log capacity in # entries */
3757 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
3758 u32 num_wraps; /* # times uCode wrapped to top of log */
3759 u32 next_entry; /* index of next entry to be written by uCode */
3760 u32 size; /* # entries that we'll print */
3761
3762 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003763 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003764 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003765 return;
3766 }
3767
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003768 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003769 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003770 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003771 return;
3772 }
3773
3774 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003775 capacity = iwl_read_targ_mem(priv, base);
3776 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
3777 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
3778 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07003779
3780 size = num_wraps ? capacity : next_entry;
3781
3782 /* bail out if nothing in log */
3783 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003784 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003785 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003786 return;
3787 }
3788
Winkler, Tomas15b16872008-12-19 10:37:33 +08003789 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003790 size, num_wraps);
3791
3792 /* if uCode has wrapped back to top of log, start at the oldest entry,
3793 * i.e the next one that uCode would fill. */
3794 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003795 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07003796 capacity - next_entry, mode);
3797
3798 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003799 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07003800
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003801 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003802}
3803
3804/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003805 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07003806 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003807static void iwl3945_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003808{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003809 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07003810 set_bit(STATUS_FW_ERROR, &priv->status);
3811
3812 /* Cancel currently queued command. */
3813 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3814
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003815#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003816 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003817 iwl3945_dump_nic_error_log(priv);
3818 iwl3945_dump_nic_event_log(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003819 iwl3945_print_rx_config_cmd(priv, &priv->staging39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07003820 }
3821#endif
3822
3823 wake_up_interruptible(&priv->wait_command_queue);
3824
3825 /* Keep the restart process from trying to send host
3826 * commands by clearing the INIT status bit */
3827 clear_bit(STATUS_READY, &priv->status);
3828
3829 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3830 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
3831 "Restarting adapter due to uCode error.\n");
3832
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003833 if (iwl3945_is_associated(priv)) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003834 memcpy(&priv->recovery39_rxon, &priv->active39_rxon,
3835 sizeof(priv->recovery39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003836 priv->error_recovering = 1;
3837 }
3838 queue_work(priv->workqueue, &priv->restart);
3839 }
3840}
3841
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003842static void iwl3945_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003843{
3844 unsigned long flags;
3845
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003846 memcpy(&priv->staging39_rxon, &priv->recovery39_rxon,
3847 sizeof(priv->staging39_rxon));
3848 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003849 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003850
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003851 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003852
3853 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003854 priv->assoc_id = le16_to_cpu(priv->staging39_rxon.assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003855 priv->error_recovering = 0;
3856 spin_unlock_irqrestore(&priv->lock, flags);
3857}
3858
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003859static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003860{
3861 u32 inta, handled = 0;
3862 u32 inta_fh;
3863 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003864#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003865 u32 inta_mask;
3866#endif
3867
3868 spin_lock_irqsave(&priv->lock, flags);
3869
3870 /* Ack/clear/reset pending uCode interrupts.
3871 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
3872 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003873 inta = iwl_read32(priv, CSR_INT);
3874 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07003875
3876 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
3877 * Any new interrupts that happen after this, either while we're
3878 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003879 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
3880 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07003881
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003882#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003883 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003884 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003885 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003886 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3887 inta, inta_mask, inta_fh);
3888 }
3889#endif
3890
3891 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
3892 * atomic, make sure that inta covers all the interrupts that
3893 * we've discovered, even if FH interrupt came in just after
3894 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003895 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003896 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003897 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003898 inta |= CSR_INT_BIT_FH_TX;
3899
3900 /* Now service all interrupt bits discovered above. */
3901 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003902 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003903
3904 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003905 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003906
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003907 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003908
3909 handled |= CSR_INT_BIT_HW_ERR;
3910
3911 spin_unlock_irqrestore(&priv->lock, flags);
3912
3913 return;
3914 }
3915
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003916#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003917 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07003918 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003919 if (inta & CSR_INT_BIT_SCD)
3920 IWL_DEBUG_ISR("Scheduler finished to transmit "
3921 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003922
3923 /* Alive notification via Rx interrupt will do the real work */
3924 if (inta & CSR_INT_BIT_ALIVE)
3925 IWL_DEBUG_ISR("Alive interrupt\n");
3926 }
3927#endif
3928 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003929 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07003930
Zhu Yib481de92007-09-25 17:54:57 -07003931 /* Error detected by uCode */
3932 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003933 IWL_ERR(priv, "Microcode SW error detected. "
3934 "Restarting 0x%X.\n", inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003935 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003936 handled |= CSR_INT_BIT_SW_ERR;
3937 }
3938
3939 /* uCode wakes up after power-down sleep */
3940 if (inta & CSR_INT_BIT_WAKEUP) {
3941 IWL_DEBUG_ISR("Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08003942 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003943 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
3944 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
3945 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
3946 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
3947 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
3948 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07003949
3950 handled |= CSR_INT_BIT_WAKEUP;
3951 }
3952
3953 /* All uCode command responses, including Tx command responses,
3954 * Rx "responses" (frame-received notification), and other
3955 * notifications from uCode come through here*/
3956 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003957 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003958 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
3959 }
3960
3961 if (inta & CSR_INT_BIT_FH_TX) {
3962 IWL_DEBUG_ISR("Tx interrupt\n");
3963
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003964 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
3965 if (!iwl_grab_nic_access(priv)) {
3966 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08003967 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003968 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003969 }
3970 handled |= CSR_INT_BIT_FH_TX;
3971 }
3972
3973 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003974 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07003975
3976 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003977 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07003978 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003979 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07003980 }
3981
3982 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003983 /* only Re-enable if disabled by irq */
3984 if (test_bit(STATUS_INT_ENABLED, &priv->status))
3985 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003986
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003987#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003988 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003989 inta = iwl_read32(priv, CSR_INT);
3990 inta_mask = iwl_read32(priv, CSR_INT_MASK);
3991 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07003992 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
3993 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
3994 }
3995#endif
3996 spin_unlock_irqrestore(&priv->lock, flags);
3997}
3998
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003999static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004000{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004001 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004002 u32 inta, inta_mask;
4003 u32 inta_fh;
4004 if (!priv)
4005 return IRQ_NONE;
4006
4007 spin_lock(&priv->lock);
4008
4009 /* Disable (but don't clear!) interrupts here to avoid
4010 * back-to-back ISRs and sporadic interrupts from our NIC.
4011 * If we have something to service, the tasklet will re-enable ints.
4012 * If we *don't* have something, we'll re-enable before leaving here. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004013 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
4014 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004015
4016 /* Discover which interrupts are active/pending */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004017 inta = iwl_read32(priv, CSR_INT);
4018 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004019
4020 /* Ignore interrupt if there's nothing in NIC to service.
4021 * This may be due to IRQ shared with another device,
4022 * or due to sporadic interrupts thrown from our NIC. */
4023 if (!inta && !inta_fh) {
4024 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4025 goto none;
4026 }
4027
4028 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4029 /* Hardware disappeared */
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004030 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004031 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004032 }
4033
4034 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4035 inta, inta_mask, inta_fh);
4036
Joonwoo Park25c03d82008-01-23 10:15:20 -08004037 inta &= ~CSR_INT_BIT_SCD;
4038
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004039 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004040 if (likely(inta || inta_fh))
4041 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004042unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004043 spin_unlock(&priv->lock);
4044
4045 return IRQ_HANDLED;
4046
4047 none:
4048 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004049 /* only Re-enable if disabled by irq */
4050 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4051 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004052 spin_unlock(&priv->lock);
4053 return IRQ_NONE;
4054}
4055
4056/************************** EEPROM BANDS ****************************
4057 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004058 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004059 * EEPROM contents to the specific channel number supported for each
4060 * band.
4061 *
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004062 * For example, iwl3945_priv->eeprom39.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004063 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4064 * The specific geography and calibration information for that channel
4065 * is contained in the eeprom map itself.
4066 *
4067 * During init, we copy the eeprom information and channel map
4068 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4069 *
4070 * channel_map_24/52 provides the index in the channel_info array for a
4071 * given channel. We have to have two separate maps as there is channel
4072 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4073 * band_2
4074 *
4075 * A value of 0xff stored in the channel_map indicates that the channel
4076 * is not supported by the hardware at all.
4077 *
4078 * A value of 0xfe in the channel_map indicates that the channel is not
4079 * valid for Tx with the current hardware. This means that
4080 * while the system can tune and receive on a given channel, it may not
4081 * be able to associate or transmit any frames on that
4082 * channel. There is no corresponding channel information for that
4083 * entry.
4084 *
4085 *********************************************************************/
4086
4087/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004088static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004089 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4090};
4091
4092/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004093static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004094 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4095};
4096
Ben Cahill9fbab512007-11-29 11:09:47 +08004097static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004098 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4099};
4100
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004101static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004102 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4103};
4104
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004105static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004106 145, 149, 153, 157, 161, 165
4107};
4108
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004109static void iwl3945_init_band_reference(const struct iwl_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004110 int *eeprom_ch_count,
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004111 const struct iwl_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004112 **eeprom_ch_info,
4113 const u8 **eeprom_ch_index)
4114{
4115 switch (band) {
4116 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004117 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004118 *eeprom_ch_info = priv->eeprom39.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004119 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004120 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004121 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004122 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004123 *eeprom_ch_info = priv->eeprom39.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004124 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004125 break;
4126 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004127 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004128 *eeprom_ch_info = priv->eeprom39.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004129 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004130 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004131 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004132 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004133 *eeprom_ch_info = priv->eeprom39.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004134 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004135 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004136 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004137 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004138 *eeprom_ch_info = priv->eeprom39.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004139 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004140 break;
4141 default:
4142 BUG();
4143 return;
4144 }
4145}
4146
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004147/**
4148 * iwl3945_get_channel_info - Find driver's private channel info
4149 *
4150 * Based on band and channel number.
4151 */
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004152const struct iwl_channel_info *
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004153iwl3945_get_channel_info(const struct iwl_priv *priv,
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004154 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004155{
4156 int i;
4157
Johannes Berg8318d782008-01-24 19:38:38 +01004158 switch (band) {
4159 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004160 for (i = 14; i < priv->channel_count; i++) {
4161 if (priv->channel_info[i].channel == channel)
4162 return &priv->channel_info[i];
4163 }
4164 break;
4165
Johannes Berg8318d782008-01-24 19:38:38 +01004166 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004167 if (channel >= 1 && channel <= 14)
4168 return &priv->channel_info[channel - 1];
4169 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004170 case IEEE80211_NUM_BANDS:
4171 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004172 }
4173
4174 return NULL;
4175}
4176
4177#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4178 ? # x " " : "")
4179
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004180/**
4181 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4182 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004183static int iwl3945_init_channel_map(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004184{
4185 int eeprom_ch_count = 0;
4186 const u8 *eeprom_ch_index = NULL;
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004187 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004188 int band, ch;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004189 struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004190
4191 if (priv->channel_count) {
4192 IWL_DEBUG_INFO("Channel map already initialized.\n");
4193 return 0;
4194 }
4195
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004196 if (priv->eeprom39.version < 0x2f) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004197 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004198 priv->eeprom39.version);
Zhu Yib481de92007-09-25 17:54:57 -07004199 return -EINVAL;
4200 }
4201
4202 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4203
4204 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004205 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4206 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4207 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4208 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4209 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004210
4211 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4212
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004213 priv->channel_info = kzalloc(sizeof(struct iwl_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004214 priv->channel_count, GFP_KERNEL);
4215 if (!priv->channel_info) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004216 IWL_ERR(priv, "Could not allocate channel_info\n");
Zhu Yib481de92007-09-25 17:54:57 -07004217 priv->channel_count = 0;
4218 return -ENOMEM;
4219 }
4220
4221 ch_info = priv->channel_info;
4222
4223 /* Loop through the 5 EEPROM bands adding them in order to the
4224 * channel map we maintain (that contains additional information than
4225 * what just in the EEPROM) */
4226 for (band = 1; band <= 5; band++) {
4227
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004228 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004229 &eeprom_ch_info, &eeprom_ch_index);
4230
4231 /* Loop through each band adding each of the channels */
4232 for (ch = 0; ch < eeprom_ch_count; ch++) {
4233 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004234 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4235 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004236
4237 /* permanently store EEPROM's channel regulatory flags
4238 * and max power in channel info database. */
4239 ch_info->eeprom = eeprom_ch_info[ch];
4240
4241 /* Copy the run-time flags so they are there even on
4242 * invalid channels */
4243 ch_info->flags = eeprom_ch_info[ch].flags;
4244
4245 if (!(is_channel_valid(ch_info))) {
4246 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4247 "No traffic\n",
4248 ch_info->channel,
4249 ch_info->flags,
4250 is_channel_a_band(ch_info) ?
4251 "5.2" : "2.4");
4252 ch_info++;
4253 continue;
4254 }
4255
4256 /* Initialize regulatory-based run-time data */
4257 ch_info->max_power_avg = ch_info->curr_txpow =
4258 eeprom_ch_info[ch].max_power_avg;
4259 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4260 ch_info->min_power = 0;
4261
Guy Cohenfe7c4042008-04-21 15:41:56 -07004262 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004263 " %ddBm): Ad-Hoc %ssupported\n",
4264 ch_info->channel,
4265 is_channel_a_band(ch_info) ?
4266 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004267 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004268 CHECK_AND_PRINT(IBSS),
4269 CHECK_AND_PRINT(ACTIVE),
4270 CHECK_AND_PRINT(RADAR),
4271 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004272 CHECK_AND_PRINT(DFS),
4273 eeprom_ch_info[ch].flags,
4274 eeprom_ch_info[ch].max_power_avg,
4275 ((eeprom_ch_info[ch].
4276 flags & EEPROM_CHANNEL_IBSS)
4277 && !(eeprom_ch_info[ch].
4278 flags & EEPROM_CHANNEL_RADAR))
4279 ? "" : "not ");
4280
4281 /* Set the user_txpower_limit to the highest power
4282 * supported by any channel */
4283 if (eeprom_ch_info[ch].max_power_avg >
4284 priv->user_txpower_limit)
4285 priv->user_txpower_limit =
4286 eeprom_ch_info[ch].max_power_avg;
4287
4288 ch_info++;
4289 }
4290 }
4291
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004292 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004293 if (iwl3945_txpower_set_from_eeprom(priv))
4294 return -EIO;
4295
4296 return 0;
4297}
4298
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004299/*
4300 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4301 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004302static void iwl3945_free_channel_map(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004303{
4304 kfree(priv->channel_info);
4305 priv->channel_count = 0;
4306}
4307
Zhu Yib481de92007-09-25 17:54:57 -07004308/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4309 * sending probe req. This should be set long enough to hear probe responses
4310 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004311#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4312#define IWL_ACTIVE_DWELL_TIME_52 (20)
4313
4314#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4315#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004316
4317/* For faster active scanning, scan will move to the next channel if fewer than
4318 * PLCP_QUIET_THRESH packets are heard on this channel within
4319 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4320 * time if it's a quiet channel (nothing responded to our probe, and there's
4321 * no other traffic).
4322 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4323#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004324#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004325
4326/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4327 * Must be set longer than active dwell time.
4328 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4329#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4330#define IWL_PASSIVE_DWELL_TIME_52 (10)
4331#define IWL_PASSIVE_DWELL_BASE (100)
4332#define IWL_CHANNEL_TUNE_TIME 5
4333
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004334#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004335
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004336static inline u16 iwl3945_get_active_dwell_time(struct iwl_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004337 enum ieee80211_band band,
4338 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004339{
Johannes Berg8318d782008-01-24 19:38:38 +01004340 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004341 return IWL_ACTIVE_DWELL_TIME_52 +
4342 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004343 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004344 return IWL_ACTIVE_DWELL_TIME_24 +
4345 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004346}
4347
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004348static u16 iwl3945_get_passive_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004349 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004350{
Johannes Berg8318d782008-01-24 19:38:38 +01004351 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004352 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4353 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4354
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004355 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004356 /* If we're associated, we clamp the maximum passive
4357 * dwell time to be 98% of the beacon interval (minus
4358 * 2 * channel tune time) */
4359 passive = priv->beacon_int;
4360 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4361 passive = IWL_PASSIVE_DWELL_BASE;
4362 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4363 }
4364
Zhu Yib481de92007-09-25 17:54:57 -07004365 return passive;
4366}
4367
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004368static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004369 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004370 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004371 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004372{
4373 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004374 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004375 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004376 u16 passive_dwell = 0;
4377 u16 active_dwell = 0;
4378 int added, i;
4379
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08004380 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01004381 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004382 return 0;
4383
Johannes Berg8318d782008-01-24 19:38:38 +01004384 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004385
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004386 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004387 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004388
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004389 if (passive_dwell <= active_dwell)
4390 passive_dwell = active_dwell + 1;
4391
Johannes Berg8318d782008-01-24 19:38:38 +01004392 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004393 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4394 continue;
4395
Johannes Berg8318d782008-01-24 19:38:38 +01004396 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004397
Johannes Berg8318d782008-01-24 19:38:38 +01004398 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004399 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004400 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004401 scan_ch->channel);
4402 continue;
4403 }
4404
Zhu Yib481de92007-09-25 17:54:57 -07004405 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4406 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004407 /* If passive , set up for auto-switch
4408 * and use long active_dwell time.
4409 */
4410 if (!is_active || is_channel_passive(ch_info) ||
4411 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4412 scan_ch->type = 0; /* passive */
4413 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4414 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4415 } else {
4416 scan_ch->type = 1; /* active */
4417 }
4418
4419 /* Set direct probe bits. These may be used both for active
4420 * scan channels (probes gets sent right away),
4421 * or for passive channels (probes get se sent only after
4422 * hearing clear Rx packet).*/
4423 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4424 if (n_probes)
4425 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4426 } else {
4427 /* uCode v1 does not allow setting direct probe bits on
4428 * passive channel. */
4429 if ((scan_ch->type & 1) && n_probes)
4430 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4431 }
Zhu Yib481de92007-09-25 17:54:57 -07004432
Ben Cahill9fbab512007-11-29 11:09:47 +08004433 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004434 scan_ch->tpc.dsp_atten = 110;
4435 /* scan_pwr_info->tpc.dsp_atten; */
4436
4437 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004438 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004439 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4440 else {
4441 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4442 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004443 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004444 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004445 */
4446 }
4447
4448 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4449 scan_ch->channel,
4450 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4451 (scan_ch->type & 1) ?
4452 active_dwell : passive_dwell);
4453
4454 scan_ch++;
4455 added++;
4456 }
4457
4458 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4459 return added;
4460}
4461
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004462static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004463 struct ieee80211_rate *rates)
4464{
4465 int i;
4466
4467 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004468 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4469 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4470 rates[i].hw_value_short = i;
4471 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08004472 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004473 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004474 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004475 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004476 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004477 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004478 }
Zhu Yib481de92007-09-25 17:54:57 -07004479 }
4480}
4481
4482/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004483 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004484 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004485static int iwl3945_init_geos(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004486{
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004487 struct iwl_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004488 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004489 struct ieee80211_channel *channels;
4490 struct ieee80211_channel *geo_ch;
4491 struct ieee80211_rate *rates;
4492 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004493
Johannes Berg8318d782008-01-24 19:38:38 +01004494 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4495 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004496 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4497 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4498 return 0;
4499 }
4500
Zhu Yib481de92007-09-25 17:54:57 -07004501 channels = kzalloc(sizeof(struct ieee80211_channel) *
4502 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004503 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004504 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004505
Tomas Winkler8211ef72008-03-02 01:36:04 +02004506 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004507 GFP_KERNEL);
4508 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004509 kfree(channels);
4510 return -ENOMEM;
4511 }
4512
Zhu Yib481de92007-09-25 17:54:57 -07004513 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004514 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4515 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4516 /* just OFDM */
4517 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4518 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004519
Tomas Winkler8211ef72008-03-02 01:36:04 +02004520 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4521 sband->channels = channels;
4522 /* OFDM & CCK */
4523 sband->bitrates = rates;
4524 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004525
4526 priv->ieee_channels = channels;
4527 priv->ieee_rates = rates;
4528
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004529 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004530
Tomas Winkler8211ef72008-03-02 01:36:04 +02004531 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004532 ch = &priv->channel_info[i];
4533
Tomas Winkler8211ef72008-03-02 01:36:04 +02004534 /* FIXME: might be removed if scan is OK*/
4535 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004536 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004537
4538 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004539 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004540 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004541 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004542
Tomas Winkler8211ef72008-03-02 01:36:04 +02004543 geo_ch = &sband->channels[sband->n_channels++];
4544
4545 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004546 geo_ch->max_power = ch->max_power_avg;
4547 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004548 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004549
4550 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004551 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4552 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004553
Johannes Berg8318d782008-01-24 19:38:38 +01004554 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4555 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004556
4557 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004558 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004559
4560 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4561 priv->max_channel_txpower_limit =
4562 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004563 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004564 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004565 }
4566
4567 /* Save flags for reg domain usage */
4568 geo_ch->orig_flags = geo_ch->flags;
4569
4570 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4571 ch->channel, geo_ch->center_freq,
4572 is_channel_a_band(ch) ? "5.2" : "2.4",
4573 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4574 "restricted" : "valid",
4575 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004576 }
4577
Tomas Winkler82b9a122008-03-04 18:09:30 -08004578 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4579 priv->cfg->sku & IWL_SKU_A) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004580 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
4581 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
4582 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004583 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004584 }
4585
Tomas Winkler978785a2008-12-19 10:37:31 +08004586 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004587 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4588 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004589
John W. Linvillee0e0a672008-03-25 15:58:40 -04004590 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4591 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4592 &priv->bands[IEEE80211_BAND_2GHZ];
4593 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4594 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4595 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004596
Zhu Yib481de92007-09-25 17:54:57 -07004597 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4598
4599 return 0;
4600}
4601
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004602/*
4603 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4604 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004605static void iwl3945_free_geos(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004606{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004607 kfree(priv->ieee_channels);
4608 kfree(priv->ieee_rates);
4609 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4610}
4611
Zhu Yib481de92007-09-25 17:54:57 -07004612/******************************************************************************
4613 *
4614 * uCode download functions
4615 *
4616 ******************************************************************************/
4617
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004618static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004619{
Tomas Winkler98c92212008-01-14 17:46:20 -08004620 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4621 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4622 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4623 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
4624 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
4625 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07004626}
4627
4628/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004629 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004630 * looking at all data.
4631 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004632static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004633{
4634 u32 val;
4635 u32 save_len = len;
4636 int rc = 0;
4637 u32 errcnt;
4638
4639 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4640
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004641 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004642 if (rc)
4643 return rc;
4644
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004645 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004646 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07004647
4648 errcnt = 0;
4649 for (; len > 0; len -= sizeof(u32), image++) {
4650 /* read data comes through single port, auto-incr addr */
4651 /* NOTE: Use the debugless read so we don't flood kernel log
4652 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004653 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004654 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004655 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004656 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4657 save_len - len, val, le32_to_cpu(*image));
4658 rc = -EIO;
4659 errcnt++;
4660 if (errcnt >= 20)
4661 break;
4662 }
4663 }
4664
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004665 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004666
4667 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08004668 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07004669
4670 return rc;
4671}
4672
4673
4674/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004675 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004676 * using sample data 100 bytes apart. If these sample points are good,
4677 * it's a pretty good bet that everything between them is good, too.
4678 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004679static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004680{
4681 u32 val;
4682 int rc = 0;
4683 u32 errcnt = 0;
4684 u32 i;
4685
4686 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4687
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004688 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004689 if (rc)
4690 return rc;
4691
4692 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
4693 /* read data comes through single port, auto-incr addr */
4694 /* NOTE: Use the debugless read so we don't flood kernel log
4695 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004696 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004697 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004698 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004699 if (val != le32_to_cpu(*image)) {
4700#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08004701 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004702 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4703 i, val, *image);
4704#endif
4705 rc = -EIO;
4706 errcnt++;
4707 if (errcnt >= 3)
4708 break;
4709 }
4710 }
4711
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004712 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004713
4714 return rc;
4715}
4716
4717
4718/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004719 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07004720 * and verify its contents
4721 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004722static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004723{
4724 __le32 *image;
4725 u32 len;
4726 int rc = 0;
4727
4728 /* Try bootstrap */
4729 image = (__le32 *)priv->ucode_boot.v_addr;
4730 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004731 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004732 if (rc == 0) {
4733 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
4734 return 0;
4735 }
4736
4737 /* Try initialize */
4738 image = (__le32 *)priv->ucode_init.v_addr;
4739 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004740 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004741 if (rc == 0) {
4742 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
4743 return 0;
4744 }
4745
4746 /* Try runtime/protocol */
4747 image = (__le32 *)priv->ucode_code.v_addr;
4748 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004749 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004750 if (rc == 0) {
4751 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
4752 return 0;
4753 }
4754
Winkler, Tomas15b16872008-12-19 10:37:33 +08004755 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07004756
Ben Cahill9fbab512007-11-29 11:09:47 +08004757 /* Since nothing seems to match, show first several data entries in
4758 * instruction SRAM, so maybe visual inspection will give a clue.
4759 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07004760 image = (__le32 *)priv->ucode_boot.v_addr;
4761 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004762 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004763
4764 return rc;
4765}
4766
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004767static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004768{
4769 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004770 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004771}
4772
4773/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004774 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07004775 *
4776 * Copy into buffers for card to fetch via bus-mastering
4777 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004778static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004779{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08004780 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004781 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07004782 const struct firmware *ucode_raw;
4783 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004784 const char *name_pre = priv->cfg->fw_name_pre;
4785 const unsigned int api_max = priv->cfg->ucode_api_max;
4786 const unsigned int api_min = priv->cfg->ucode_api_min;
4787 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07004788 u8 *src;
4789 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004790 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07004791
4792 /* Ask kernel firmware_class module to get the boot firmware off disk.
4793 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004794 for (index = api_max; index >= api_min; index--) {
4795 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
4796 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
4797 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004798 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004799 buf, ret);
4800 if (ret == -ENOENT)
4801 continue;
4802 else
4803 goto error;
4804 } else {
4805 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004806 IWL_ERR(priv, "Loaded firmware %s, "
4807 "which is deprecated. "
4808 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004809 buf, api_max);
4810 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
4811 buf, ucode_raw->size);
4812 break;
4813 }
Zhu Yib481de92007-09-25 17:54:57 -07004814 }
4815
Reinette Chatrea0987a82008-12-02 12:14:06 -08004816 if (ret < 0)
4817 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07004818
4819 /* Make sure that we got at least our header! */
4820 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004821 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08004822 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004823 goto err_release;
4824 }
4825
4826 /* Data from ucode file: header followed by uCode images */
4827 ucode = (void *)ucode_raw->data;
4828
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08004829 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08004830 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07004831 inst_size = le32_to_cpu(ucode->inst_size);
4832 data_size = le32_to_cpu(ucode->data_size);
4833 init_size = le32_to_cpu(ucode->init_size);
4834 init_data_size = le32_to_cpu(ucode->init_data_size);
4835 boot_size = le32_to_cpu(ucode->boot_size);
4836
Reinette Chatrea0987a82008-12-02 12:14:06 -08004837 /* api_ver should match the api version forming part of the
4838 * firmware filename ... but we don't check for that and only rely
4839 * on the API version read from firware header from here on forward */
4840
4841 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004842 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08004843 "Driver supports v%u, firmware is v%u.\n",
4844 api_max, api_ver);
4845 priv->ucode_ver = 0;
4846 ret = -EINVAL;
4847 goto err_release;
4848 }
4849 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004850 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08004851 "got %u. New firmware can be obtained "
4852 "from http://www.intellinuxwireless.org.\n",
4853 api_max, api_ver);
4854
Tomas Winkler978785a2008-12-19 10:37:31 +08004855 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
4856 IWL_UCODE_MAJOR(priv->ucode_ver),
4857 IWL_UCODE_MINOR(priv->ucode_ver),
4858 IWL_UCODE_API(priv->ucode_ver),
4859 IWL_UCODE_SERIAL(priv->ucode_ver));
4860
Reinette Chatrea0987a82008-12-02 12:14:06 -08004861 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
4862 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08004863 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
4864 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
4865 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
4866 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
4867 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07004868
Reinette Chatrea0987a82008-12-02 12:14:06 -08004869
Zhu Yib481de92007-09-25 17:54:57 -07004870 /* Verify size of file vs. image size info in file's header */
4871 if (ucode_raw->size < sizeof(*ucode) +
4872 inst_size + data_size + init_size +
4873 init_data_size + boot_size) {
4874
4875 IWL_DEBUG_INFO("uCode file size %d too small\n",
4876 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004877 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004878 goto err_release;
4879 }
4880
4881 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004882 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004883 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
4884 inst_size);
4885 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004886 goto err_release;
4887 }
4888
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004889 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004890 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
4891 data_size);
4892 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004893 goto err_release;
4894 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004895 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004896 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
4897 init_size);
4898 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004899 goto err_release;
4900 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004901 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004902 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
4903 init_data_size);
4904 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004905 goto err_release;
4906 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004907 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004908 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
4909 boot_size);
4910 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004911 goto err_release;
4912 }
4913
4914 /* Allocate ucode buffers for card's bus-master loading ... */
4915
4916 /* Runtime instructions and 2 copies of data:
4917 * 1) unmodified from disk
4918 * 2) backup cache for save/restore during power-downs */
4919 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004920 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07004921
4922 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004923 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07004924
4925 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004926 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07004927
4928 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08004929 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07004930 goto err_pci_alloc;
4931
Tomas Winkler90e759d2007-11-29 11:09:41 +08004932 /* Initialization instructions and data */
4933 if (init_size && init_data_size) {
4934 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004935 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004936
4937 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004938 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004939
4940 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
4941 goto err_pci_alloc;
4942 }
4943
4944 /* Bootstrap (instructions only, no data) */
4945 if (boot_size) {
4946 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004947 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004948
4949 if (!priv->ucode_boot.v_addr)
4950 goto err_pci_alloc;
4951 }
4952
Zhu Yib481de92007-09-25 17:54:57 -07004953 /* Copy images into buffers for card's bus-master reads ... */
4954
4955 /* Runtime instructions (first block of data in file) */
4956 src = &ucode->data[0];
4957 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004958 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07004959 memcpy(priv->ucode_code.v_addr, src, len);
4960 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
4961 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
4962
4963 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004964 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07004965 src = &ucode->data[inst_size];
4966 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004967 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07004968 memcpy(priv->ucode_data.v_addr, src, len);
4969 memcpy(priv->ucode_data_backup.v_addr, src, len);
4970
4971 /* Initialization instructions (3rd block) */
4972 if (init_size) {
4973 src = &ucode->data[inst_size + data_size];
4974 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004975 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
4976 len);
Zhu Yib481de92007-09-25 17:54:57 -07004977 memcpy(priv->ucode_init.v_addr, src, len);
4978 }
4979
4980 /* Initialization data (4th block) */
4981 if (init_data_size) {
4982 src = &ucode->data[inst_size + data_size + init_size];
4983 len = priv->ucode_init_data.len;
4984 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
4985 (int)len);
4986 memcpy(priv->ucode_init_data.v_addr, src, len);
4987 }
4988
4989 /* Bootstrap instructions (5th block) */
4990 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
4991 len = priv->ucode_boot.len;
4992 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
4993 (int)len);
4994 memcpy(priv->ucode_boot.v_addr, src, len);
4995
4996 /* We have our copies now, allow OS release its copies */
4997 release_firmware(ucode_raw);
4998 return 0;
4999
5000 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08005001 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005002 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005003 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005004
5005 err_release:
5006 release_firmware(ucode_raw);
5007
5008 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005009 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005010}
5011
5012
5013/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005014 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005015 *
5016 * Tell initialization uCode where to find runtime uCode.
5017 *
5018 * BSM registers initially contain pointers to initialization uCode.
5019 * We need to replace them to load runtime uCode inst and data,
5020 * and to save runtime data when powering down.
5021 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005022static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005023{
5024 dma_addr_t pinst;
5025 dma_addr_t pdata;
5026 int rc = 0;
5027 unsigned long flags;
5028
5029 /* bits 31:0 for 3945 */
5030 pinst = priv->ucode_code.p_addr;
5031 pdata = priv->ucode_data_backup.p_addr;
5032
5033 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005034 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005035 if (rc) {
5036 spin_unlock_irqrestore(&priv->lock, flags);
5037 return rc;
5038 }
5039
5040 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005041 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5042 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5043 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005044 priv->ucode_data.len);
5045
Tomas Winklera96a27f2008-10-23 23:48:56 -07005046 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005047 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005048 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005049 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5050
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005051 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005052
5053 spin_unlock_irqrestore(&priv->lock, flags);
5054
5055 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5056
5057 return rc;
5058}
5059
5060/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005061 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005062 *
5063 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5064 *
Zhu Yib481de92007-09-25 17:54:57 -07005065 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005066 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005067static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005068{
5069 /* Check alive response for "valid" sign from uCode */
5070 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5071 /* We had an error bringing up the hardware, so take it
5072 * all the way back down so we can try again */
5073 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5074 goto restart;
5075 }
5076
5077 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5078 * This is a paranoid check, because we would not have gotten the
5079 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005080 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005081 /* Runtime instruction load was bad;
5082 * take it all the way back down so we can try again */
5083 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5084 goto restart;
5085 }
5086
5087 /* Send pointers to protocol/runtime uCode image ... init code will
5088 * load and launch runtime uCode, which will send us another "Alive"
5089 * notification. */
5090 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005091 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005092 /* Runtime instruction load won't happen;
5093 * take it all the way back down so we can try again */
5094 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5095 goto restart;
5096 }
5097 return;
5098
5099 restart:
5100 queue_work(priv->workqueue, &priv->restart);
5101}
5102
5103
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005104/* temporary */
5105static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5106 struct sk_buff *skb);
5107
Zhu Yib481de92007-09-25 17:54:57 -07005108/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005109 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005110 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005111 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005112 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005113static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005114{
5115 int rc = 0;
5116 int thermal_spin = 0;
5117 u32 rfkill;
5118
5119 IWL_DEBUG_INFO("Runtime Alive received.\n");
5120
5121 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5122 /* We had an error bringing up the hardware, so take it
5123 * all the way back down so we can try again */
5124 IWL_DEBUG_INFO("Alive failed.\n");
5125 goto restart;
5126 }
5127
5128 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5129 * This is a paranoid check, because we would not have gotten the
5130 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005131 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005132 /* Runtime instruction load was bad;
5133 * take it all the way back down so we can try again */
5134 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5135 goto restart;
5136 }
5137
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005138 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005139
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005140 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005141 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005142 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005143 return;
5144 }
5145
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005146 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005147 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005148 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005149
5150 if (rfkill & 0x1) {
5151 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005152 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005153 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005154 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005155 thermal_spin++;
5156 udelay(10);
5157 }
5158
5159 if (thermal_spin)
5160 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5161 thermal_spin * 10);
5162 } else
5163 set_bit(STATUS_RF_KILL_HW, &priv->status);
5164
Ben Cahill9fbab512007-11-29 11:09:47 +08005165 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005166 set_bit(STATUS_ALIVE, &priv->status);
5167
5168 /* Clear out the uCode error bit if it is set */
5169 clear_bit(STATUS_FW_ERROR, &priv->status);
5170
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005171 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005172 return;
5173
Johannes Berg36d68252008-05-15 12:55:26 +02005174 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005175
5176 priv->active_rate = priv->rates_mask;
5177 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5178
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005179 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005180
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005181 if (iwl3945_is_associated(priv)) {
5182 struct iwl3945_rxon_cmd *active_rxon =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005183 (struct iwl3945_rxon_cmd *)(&priv->active39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005184
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005185 memcpy(&priv->staging39_rxon, &priv->active39_rxon,
5186 sizeof(priv->staging39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07005187 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5188 } else {
5189 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005190 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005191 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07005192 }
5193
Ben Cahill9fbab512007-11-29 11:09:47 +08005194 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005195 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005196
5197 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005198 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005199
Zhu Yib481de92007-09-25 17:54:57 -07005200 iwl3945_reg_txpower_periodic(priv);
5201
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005202 iwl3945_led_register(priv);
5203
Zhu Yib481de92007-09-25 17:54:57 -07005204 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005205 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005206 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005207
5208 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005209 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005210
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005211 /* reassociate for ADHOC mode */
5212 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5213 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5214 priv->vif);
5215 if (beacon)
5216 iwl3945_mac_beacon_update(priv->hw, beacon);
5217 }
5218
Zhu Yib481de92007-09-25 17:54:57 -07005219 return;
5220
5221 restart:
5222 queue_work(priv->workqueue, &priv->restart);
5223}
5224
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005225static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005226
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005227static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005228{
5229 unsigned long flags;
5230 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5231 struct ieee80211_conf *conf = NULL;
5232
5233 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5234
5235 conf = ieee80211_get_hw_conf(priv->hw);
5236
5237 if (!exit_pending)
5238 set_bit(STATUS_EXIT_PENDING, &priv->status);
5239
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005240 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005241 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005242
5243 /* Unblock any waiting calls */
5244 wake_up_interruptible_all(&priv->wait_command_queue);
5245
Zhu Yib481de92007-09-25 17:54:57 -07005246 /* Wipe out the EXIT_PENDING status bit if we are not actually
5247 * exiting the module */
5248 if (!exit_pending)
5249 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5250
5251 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005252 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005253
5254 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005255 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005256 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005257 spin_unlock_irqrestore(&priv->lock, flags);
5258 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005259
5260 if (priv->mac80211_registered)
5261 ieee80211_stop_queues(priv->hw);
5262
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005263 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005264 * clear all bits but the RF Kill and SUSPEND bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005265 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005266 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5267 STATUS_RF_KILL_HW |
5268 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5269 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005270 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5271 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005272 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005273 STATUS_IN_SUSPEND |
5274 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5275 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005276 goto exit;
5277 }
5278
5279 /* ...otherwise clear out all the status bits but the RF Kill and
5280 * SUSPEND bits and continue taking the NIC down. */
5281 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5282 STATUS_RF_KILL_HW |
5283 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5284 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005285 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5286 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005287 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5288 STATUS_IN_SUSPEND |
5289 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005290 STATUS_FW_ERROR |
5291 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5292 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005293
5294 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005295 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005296 spin_unlock_irqrestore(&priv->lock, flags);
5297
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005298 iwl3945_hw_txq_ctx_stop(priv);
5299 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005300
5301 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005302 if (!iwl_grab_nic_access(priv)) {
5303 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005304 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005305 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005306 }
5307 spin_unlock_irqrestore(&priv->lock, flags);
5308
5309 udelay(5);
5310
Kolekar, Abhijeet01ec6162008-12-19 10:37:38 +08005311 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005312 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08005313 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005314
5315 if (priv->ibss_beacon)
5316 dev_kfree_skb(priv->ibss_beacon);
5317 priv->ibss_beacon = NULL;
5318
5319 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005320 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005321}
5322
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005323static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005324{
5325 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005326 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005327 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005328
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005329 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005330}
5331
5332#define MAX_HW_RESTARTS 5
5333
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005334static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005335{
5336 int rc, i;
5337
5338 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005339 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07005340 return -EIO;
5341 }
5342
5343 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005344 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07005345 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005346 return -ENODEV;
5347 }
5348
Reinette Chatree903fbd2008-01-30 22:05:15 -08005349 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005350 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005351 return -EIO;
5352 }
5353
Zhu Yie655b9f2008-01-24 02:19:38 -08005354 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005355 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08005356 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5357 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5358 else {
5359 set_bit(STATUS_RF_KILL_HW, &priv->status);
5360 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005361 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005362 return -ENODEV;
5363 }
Zhu Yib481de92007-09-25 17:54:57 -07005364 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005365
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005366 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005367
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005368 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005369 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005370 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07005371 return rc;
5372 }
5373
5374 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005375 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5376 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005377 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5378
5379 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005380 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005381 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005382
5383 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005384 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5385 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005386
5387 /* Copy original ucode data image from disk into backup cache.
5388 * This will be used to initialize the on-board processor's
5389 * data SRAM for a clean start when the runtime program first loads. */
5390 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08005391 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005392
Zhu Yie655b9f2008-01-24 02:19:38 -08005393 /* We return success when we resume from suspend and rf_kill is on. */
5394 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5395 return 0;
5396
Zhu Yib481de92007-09-25 17:54:57 -07005397 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5398
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005399 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005400
5401 /* load bootstrap state machine,
5402 * load bootstrap program into processor's memory,
5403 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08005404 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005405
5406 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005407 IWL_ERR(priv,
5408 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07005409 continue;
5410 }
5411
5412 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005413 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005414
Zhu Yib481de92007-09-25 17:54:57 -07005415 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5416
5417 return 0;
5418 }
5419
5420 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005421 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005422 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005423
5424 /* tried to restart and config the device for as long as our
5425 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08005426 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07005427 return -EIO;
5428}
5429
5430
5431/*****************************************************************************
5432 *
5433 * Workqueue callbacks
5434 *
5435 *****************************************************************************/
5436
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005437static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005438{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005439 struct iwl_priv *priv =
5440 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005441
5442 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5443 return;
5444
5445 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005446 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005447 mutex_unlock(&priv->mutex);
5448}
5449
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005450static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005451{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005452 struct iwl_priv *priv =
5453 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005454
5455 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5456 return;
5457
5458 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005459 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005460 mutex_unlock(&priv->mutex);
5461}
5462
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005463static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005464{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005465 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005466
5467 wake_up_interruptible(&priv->wait_command_queue);
5468
5469 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5470 return;
5471
5472 mutex_lock(&priv->mutex);
5473
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005474 if (!iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005475 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5476 "HW and/or SW RF Kill no longer active, restarting "
5477 "device\n");
5478 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5479 queue_work(priv->workqueue, &priv->restart);
5480 } else {
5481
5482 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5483 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5484 "disabled by SW switch\n");
5485 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005486 IWL_WARN(priv, "Radio Frequency Kill Switch is On:\n"
Zhu Yib481de92007-09-25 17:54:57 -07005487 "Kill switch must be turned off for "
5488 "wireless networking to work.\n");
5489 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005490
Zhu Yib481de92007-09-25 17:54:57 -07005491 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005492 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005493}
5494
5495#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
5496
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005497static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005498{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005499 struct iwl_priv *priv =
5500 container_of(data, struct iwl_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07005501
5502 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5503 return;
5504
5505 mutex_lock(&priv->mutex);
5506 if (test_bit(STATUS_SCANNING, &priv->status) ||
5507 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5508 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
5509 "Scan completion watchdog resetting adapter (%dms)\n",
5510 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005511
Zhu Yib481de92007-09-25 17:54:57 -07005512 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005513 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005514 }
5515 mutex_unlock(&priv->mutex);
5516}
5517
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005518static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005519{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005520 struct iwl_priv *priv =
5521 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08005522 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07005523 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005524 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07005525 .meta.flags = CMD_SIZE_HUGE,
5526 };
5527 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005528 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07005529 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005530 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01005531 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04005532 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07005533
5534 conf = ieee80211_get_hw_conf(priv->hw);
5535
5536 mutex_lock(&priv->mutex);
5537
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005538 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005539 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005540 goto done;
5541 }
5542
Tomas Winklera96a27f2008-10-23 23:48:56 -07005543 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07005544 * was given the chance to run... */
5545 if (!test_bit(STATUS_SCANNING, &priv->status))
5546 goto done;
5547
5548 /* This should never be called or scheduled if there is currently
5549 * a scan active in the hardware. */
5550 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
5551 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
5552 "Ignoring second request.\n");
5553 rc = -EIO;
5554 goto done;
5555 }
5556
5557 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5558 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
5559 goto done;
5560 }
5561
5562 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5563 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
5564 goto done;
5565 }
5566
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005567 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005568 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
5569 goto done;
5570 }
5571
5572 if (!test_bit(STATUS_READY, &priv->status)) {
5573 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
5574 goto done;
5575 }
5576
5577 if (!priv->scan_bands) {
5578 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
5579 goto done;
5580 }
5581
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005582 if (!priv->scan39) {
5583 priv->scan39 = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07005584 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005585 if (!priv->scan39) {
Zhu Yib481de92007-09-25 17:54:57 -07005586 rc = -ENOMEM;
5587 goto done;
5588 }
5589 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005590 scan = priv->scan39;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005591 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07005592
5593 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
5594 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
5595
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005596 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005597 u16 interval = 0;
5598 u32 extra;
5599 u32 suspend_time = 100;
5600 u32 scan_suspend_time = 100;
5601 unsigned long flags;
5602
5603 IWL_DEBUG_INFO("Scanning while associated...\n");
5604
5605 spin_lock_irqsave(&priv->lock, flags);
5606 interval = priv->beacon_int;
5607 spin_unlock_irqrestore(&priv->lock, flags);
5608
5609 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005610 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07005611 if (!interval)
5612 interval = suspend_time;
5613 /*
5614 * suspend time format:
5615 * 0-19: beacon interval in usec (time before exec.)
5616 * 20-23: 0
5617 * 24-31: number of beacons (suspend between channels)
5618 */
5619
5620 extra = (suspend_time / interval) << 24;
5621 scan_suspend_time = 0xFF0FFFFF &
5622 (extra | ((suspend_time % interval) * 1024));
5623
5624 scan->suspend_time = cpu_to_le32(scan_suspend_time);
5625 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
5626 scan_suspend_time, interval);
5627 }
5628
5629 /* We should add the ability for user to lock to PASSIVE ONLY */
5630 if (priv->one_direct_scan) {
5631 IWL_DEBUG_SCAN
5632 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005633 print_ssid(ssid, priv->direct_ssid,
5634 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07005635 scan->direct_scan[0].id = WLAN_EID_SSID;
5636 scan->direct_scan[0].len = priv->direct_ssid_len;
5637 memcpy(scan->direct_scan[0].ssid,
5638 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005639 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005640 } else
Bill Moss786b4552008-04-17 16:03:40 -07005641 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005642
5643 /* We don't build a direct scan probe request; the uCode will do
5644 * that based on the direct_mask added to each channel entry */
5645 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005646 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01005647 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07005648 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08005649 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07005650 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
5651
5652 /* flags + rate selection */
5653
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005654 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005655 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
5656 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
5657 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01005658 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005659 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005660 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
5661 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01005662 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005663 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005664 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07005665 goto done;
5666 }
5667
5668 /* select Rx antennas */
5669 scan->flags |= iwl3945_get_antenna_flags(priv);
5670
Johannes Berg05c914f2008-09-11 00:01:58 +02005671 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07005672 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
5673
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005674 scan->channel_count =
5675 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
5676 n_probes,
5677 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07005678
Reinette Chatre14b54332008-11-04 12:21:35 -08005679 if (scan->channel_count == 0) {
5680 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
5681 goto done;
5682 }
5683
Zhu Yib481de92007-09-25 17:54:57 -07005684 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005685 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07005686 cmd.data = scan;
5687 scan->len = cpu_to_le16(cmd.len);
5688
5689 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005690 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07005691 if (rc)
5692 goto done;
5693
5694 queue_delayed_work(priv->workqueue, &priv->scan_check,
5695 IWL_SCAN_CHECK_WATCHDOG);
5696
5697 mutex_unlock(&priv->mutex);
5698 return;
5699
5700 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08005701 /* can not perform scan make sure we clear scanning
5702 * bits from status so next scan request can be performed.
5703 * if we dont clear scanning status bit here all next scan
5704 * will fail
5705 */
5706 clear_bit(STATUS_SCAN_HW, &priv->status);
5707 clear_bit(STATUS_SCANNING, &priv->status);
5708
Ian Schram01ebd062007-10-25 17:15:22 +08005709 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07005710 queue_work(priv->workqueue, &priv->scan_completed);
5711 mutex_unlock(&priv->mutex);
5712}
5713
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005714static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005715{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005716 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07005717
5718 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5719 return;
5720
5721 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005722 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005723 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005724 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005725}
5726
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005727static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005728{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005729 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07005730
5731 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5732 return;
5733
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005734 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005735 queue_work(priv->workqueue, &priv->up);
5736}
5737
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005738static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005739{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005740 struct iwl_priv *priv =
5741 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07005742
5743 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5744 return;
5745
5746 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005747 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005748 mutex_unlock(&priv->mutex);
5749}
5750
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005751#define IWL_DELAY_NEXT_SCAN (HZ*2)
5752
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005753static void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005754{
Zhu Yib481de92007-09-25 17:54:57 -07005755 int rc = 0;
5756 struct ieee80211_conf *conf = NULL;
5757
Johannes Berg05c914f2008-09-11 00:01:58 +02005758 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005759 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07005760 return;
5761 }
5762
5763
Johannes Berge1749612008-10-27 15:59:26 -07005764 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005765 priv->assoc_id, priv->active39_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07005766
5767 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5768 return;
5769
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005770 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005771 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005772
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005773 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005774
Zhu Yib481de92007-09-25 17:54:57 -07005775 conf = ieee80211_get_hw_conf(priv->hw);
5776
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005777 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005778 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005779
Tomas Winkler28afaf92008-12-19 10:37:06 +08005780 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005781 iwl3945_setup_rxon_timing(priv);
5782 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07005783 sizeof(priv->rxon_timing), &priv->rxon_timing);
5784 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005785 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07005786 "Attempting to continue.\n");
5787
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005788 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005789
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005790 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07005791
5792 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
5793 priv->assoc_id, priv->beacon_int);
5794
5795 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005796 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005797 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005798 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005799
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005800 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07005801 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005802 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005803 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005804 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005805
Johannes Berg05c914f2008-09-11 00:01:58 +02005806 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005807 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005808
5809 }
5810
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005811 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005812
5813 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02005814 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005815 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07005816 break;
5817
Johannes Berg05c914f2008-09-11 00:01:58 +02005818 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07005819
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08005820 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005821 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005822 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01005823 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07005824 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
5825 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005826 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
5827 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005828
5829 break;
5830
5831 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08005832 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005833 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005834 break;
5835 }
5836
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005837 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08005838
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005839 /* we have just associated, don't start scan too early */
5840 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08005841}
5842
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005843static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005844{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005845 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07005846
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005847 if (!iwl_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005848 return;
5849
5850 mutex_lock(&priv->mutex);
5851
5852 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005853 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005854
5855 mutex_unlock(&priv->mutex);
5856}
5857
Johannes Berge8975582008-10-09 12:18:51 +02005858static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005859
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005860static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005861{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005862 struct iwl_priv *priv =
5863 container_of(work, struct iwl_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07005864
5865 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
5866
5867 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5868 return;
5869
Zhu Yia0646472007-12-20 14:10:01 +08005870 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02005871 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005872
Zhu Yib481de92007-09-25 17:54:57 -07005873 ieee80211_scan_completed(priv->hw);
5874
5875 /* Since setting the TXPOWER may have been deferred while
5876 * performing the scan, fire one off */
5877 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005878 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005879 mutex_unlock(&priv->mutex);
5880}
5881
5882/*****************************************************************************
5883 *
5884 * mac80211 entry point functions
5885 *
5886 *****************************************************************************/
5887
Zhu Yi5a66926a2008-01-14 17:46:18 -08005888#define UCODE_READY_TIMEOUT (2 * HZ)
5889
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005890static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07005891{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005892 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08005893 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07005894
5895 IWL_DEBUG_MAC80211("enter\n");
5896
Zhu Yi5a66926a2008-01-14 17:46:18 -08005897 if (pci_enable_device(priv->pci_dev)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005898 IWL_ERR(priv, "Fail to pci_enable_device\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08005899 return -ENODEV;
5900 }
5901 pci_restore_state(priv->pci_dev);
5902 pci_enable_msi(priv->pci_dev);
5903
5904 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
5905 DRV_NAME, priv);
5906 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005907 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005908 goto out_disable_msi;
5909 }
5910
Zhu Yib481de92007-09-25 17:54:57 -07005911 /* we should be verifying the device is ready to be opened */
5912 mutex_lock(&priv->mutex);
5913
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005914 memset(&priv->staging39_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08005915 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
5916 * ucode filename and max sizes are card-specific. */
5917
5918 if (!priv->ucode_code.len) {
5919 ret = iwl3945_read_ucode(priv);
5920 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005921 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005922 mutex_unlock(&priv->mutex);
5923 goto out_release_irq;
5924 }
5925 }
5926
Zhu Yie655b9f2008-01-24 02:19:38 -08005927 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005928
Zhu Yib481de92007-09-25 17:54:57 -07005929 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005930
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005931 iwl3945_rfkill_set_hw_state(priv);
5932
Zhu Yie655b9f2008-01-24 02:19:38 -08005933 if (ret)
5934 goto out_release_irq;
5935
5936 IWL_DEBUG_INFO("Start UP work.\n");
5937
5938 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
5939 return 0;
5940
Zhu Yi5a66926a2008-01-14 17:46:18 -08005941 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
5942 * mac80211 will not be run successfully. */
5943 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
5944 test_bit(STATUS_READY, &priv->status),
5945 UCODE_READY_TIMEOUT);
5946 if (!ret) {
5947 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005948 IWL_ERR(priv,
5949 "Wait for START_ALIVE timeout after %dms.\n",
5950 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a66926a2008-01-14 17:46:18 -08005951 ret = -ETIMEDOUT;
5952 goto out_release_irq;
5953 }
5954 }
5955
Zhu Yie655b9f2008-01-24 02:19:38 -08005956 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07005957 IWL_DEBUG_MAC80211("leave\n");
5958 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08005959
5960out_release_irq:
5961 free_irq(priv->pci_dev->irq, priv);
5962out_disable_msi:
5963 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08005964 pci_disable_device(priv->pci_dev);
5965 priv->is_open = 0;
5966 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08005967 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005968}
5969
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005970static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07005971{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005972 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005973
5974 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005975
Zhu Yie655b9f2008-01-24 02:19:38 -08005976 if (!priv->is_open) {
5977 IWL_DEBUG_MAC80211("leave - skip\n");
5978 return;
5979 }
5980
Zhu Yib481de92007-09-25 17:54:57 -07005981 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08005982
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005983 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08005984 /* stop mac, cancel any scan request and clear
5985 * RXON_FILTER_ASSOC_MSK BIT
5986 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08005987 mutex_lock(&priv->mutex);
5988 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08005989 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08005990 }
5991
Zhu Yi5a66926a2008-01-14 17:46:18 -08005992 iwl3945_down(priv);
5993
5994 flush_workqueue(priv->workqueue);
5995 free_irq(priv->pci_dev->irq, priv);
5996 pci_disable_msi(priv->pci_dev);
5997 pci_save_state(priv->pci_dev);
5998 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005999
Zhu Yib481de92007-09-25 17:54:57 -07006000 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006001}
6002
Johannes Berge039fa42008-05-15 12:55:29 +02006003static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006004{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006005 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006006
6007 IWL_DEBUG_MAC80211("enter\n");
6008
Zhu Yib481de92007-09-25 17:54:57 -07006009 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006010 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006011
Johannes Berge039fa42008-05-15 12:55:29 +02006012 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006013 dev_kfree_skb_any(skb);
6014
6015 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006016 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006017}
6018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006019static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006020 struct ieee80211_if_init_conf *conf)
6021{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006022 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006023 unsigned long flags;
6024
Johannes Berg32bfd352007-12-19 01:31:26 +01006025 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006026
Johannes Berg32bfd352007-12-19 01:31:26 +01006027 if (priv->vif) {
6028 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006029 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006030 }
6031
6032 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006033 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006034 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006035
6036 spin_unlock_irqrestore(&priv->lock, flags);
6037
6038 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006039
6040 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006041 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006042 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6043 }
6044
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006045 if (iwl_is_ready(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08006046 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006047
Zhu Yib481de92007-09-25 17:54:57 -07006048 mutex_unlock(&priv->mutex);
6049
Zhu Yi5a66926a2008-01-14 17:46:18 -08006050 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006051 return 0;
6052}
6053
6054/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006055 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006056 *
6057 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6058 * be set inappropriately and the driver currently sets the hardware up to
6059 * use it whenever needed.
6060 */
Johannes Berge8975582008-10-09 12:18:51 +02006061static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006062{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006063 struct iwl_priv *priv = hw->priv;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006064 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006065 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006066 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006067 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006068
6069 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006070 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006071
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006072 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006073 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006074 ret = -EIO;
6075 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006076 }
6077
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006078 if (unlikely(!iwl3945_mod_params.disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006079 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006080 IWL_DEBUG_MAC80211("leave - scanning\n");
6081 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006082 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006083 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006084 }
6085
6086 spin_lock_irqsave(&priv->lock, flags);
6087
Johannes Berg8318d782008-01-24 19:38:38 +01006088 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6089 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006090 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006091 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006092 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006093 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6094 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006095 ret = -EINVAL;
6096 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006097 }
6098
Johannes Berg8318d782008-01-24 19:38:38 +01006099 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006100
Johannes Berg8318d782008-01-24 19:38:38 +01006101 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006102
6103 /* The list of supported rates and rate mask can be different
6104 * for each phymode; since the phymode may have changed, reset
6105 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006106 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006107
6108 spin_unlock_irqrestore(&priv->lock, flags);
6109
6110#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6111 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006112 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006113 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006114 }
6115#endif
6116
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006117 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006118
6119 if (!conf->radio_enabled) {
6120 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006121 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006122 }
6123
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006124 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006125 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006126 ret = -EIO;
6127 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006128 }
6129
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006130 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006131
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006132 if (memcmp(&priv->active39_rxon,
6133 &priv->staging39_rxon, sizeof(priv->staging39_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006134 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006135 else
6136 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6137
6138 IWL_DEBUG_MAC80211("leave\n");
6139
Zhu Yi76bb77e2007-11-22 10:53:22 +08006140out:
Zhu Yia0646472007-12-20 14:10:01 +08006141 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006142 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006143 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006144}
6145
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006146static void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006147{
6148 int rc = 0;
6149
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006150 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006151 return;
6152
6153 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006154 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006155
6156 /* RXON - unassoc (to set timing command) */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006157 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006158 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006159
6160 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08006161 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006162 iwl3945_setup_rxon_timing(priv);
6163 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006164 sizeof(priv->rxon_timing), &priv->rxon_timing);
6165 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006166 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07006167 "Attempting to continue.\n");
6168
6169 /* FIXME: what should be the assoc_id for AP? */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006170 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07006171 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006172 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006173 RXON_FLG_SHORT_PREAMBLE_MSK;
6174 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006175 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006176 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6177
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006178 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07006179 if (priv->assoc_capability &
6180 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006181 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006182 RXON_FLG_SHORT_SLOT_MSK;
6183 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006184 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006185 ~RXON_FLG_SHORT_SLOT_MSK;
6186
Johannes Berg05c914f2008-09-11 00:01:58 +02006187 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006188 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006189 ~RXON_FLG_SHORT_SLOT_MSK;
6190 }
6191 /* restore RXON assoc */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006192 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006193 iwl3945_commit_rxon(priv);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08006194 iwl3945_add_station(priv, iwl_bcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006195 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006196 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006197
6198 /* FIXME - we need to add code here to detect a totally new
6199 * configuration, reset the AP, unassoc, rxon timing, assoc,
6200 * clear sta table, add BCAST sta... */
6201}
6202
Johannes Berg32bfd352007-12-19 01:31:26 +01006203static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6204 struct ieee80211_vif *vif,
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006205 struct ieee80211_if_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07006206{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006207 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006208 int rc;
6209
6210 if (conf == NULL)
6211 return -EIO;
6212
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006213 if (priv->vif != vif) {
6214 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006215 return 0;
6216 }
6217
Johannes Berg9d139c82008-07-09 14:40:37 +02006218 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006219 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006220 conf->changed & IEEE80211_IFCC_BEACON) {
6221 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6222 if (!beacon)
6223 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006224 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006225 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006226 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006227 if (rc)
6228 return rc;
6229 }
6230
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006231 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08006232 return -EAGAIN;
6233
Zhu Yib481de92007-09-25 17:54:57 -07006234 mutex_lock(&priv->mutex);
6235
Zhu Yib481de92007-09-25 17:54:57 -07006236 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006237 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006238
Johannes Berg4150c572007-09-17 01:29:23 -04006239/*
6240 * very dubious code was here; the probe filtering flag is never set:
6241 *
Zhu Yib481de92007-09-25 17:54:57 -07006242 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6243 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006244 */
Zhu Yib481de92007-09-25 17:54:57 -07006245
Johannes Berg05c914f2008-09-11 00:01:58 +02006246 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006247 if (!conf->bssid) {
6248 conf->bssid = priv->mac_addr;
6249 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006250 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6251 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006252 }
6253 if (priv->ibss_beacon)
6254 dev_kfree_skb(priv->ibss_beacon);
6255
Johannes Berg9d139c82008-07-09 14:40:37 +02006256 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006257 }
6258
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006259 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08006260 goto done;
6261
Zhu Yib481de92007-09-25 17:54:57 -07006262 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6263 !is_multicast_ether_addr(conf->bssid)) {
6264 /* If there is currently a HW scan going on in the background
6265 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006266 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006267 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07006268 "after 100ms\n");
6269 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6270 mutex_unlock(&priv->mutex);
6271 return -EAGAIN;
6272 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006273 memcpy(priv->staging39_rxon.bssid_addr, conf->bssid, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006274
6275 /* TODO: Audit driver for usage of these members and see
6276 * if mac80211 deprecates them (priv->bssid looks like it
6277 * shouldn't be there, but I haven't scanned the IBSS code
6278 * to verify) - jpk */
6279 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6280
Johannes Berg05c914f2008-09-11 00:01:58 +02006281 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006282 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006283 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006284 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006285 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006286 iwl3945_add_station(priv,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006287 priv->active39_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006288 }
6289
6290 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006291 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006292 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006293 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006294 }
6295
Mohamed Abbasfde35712007-11-29 11:10:15 +08006296 done:
Zhu Yib481de92007-09-25 17:54:57 -07006297 IWL_DEBUG_MAC80211("leave\n");
6298 mutex_unlock(&priv->mutex);
6299
6300 return 0;
6301}
6302
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006303static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006304 unsigned int changed_flags,
6305 unsigned int *total_flags,
6306 int mc_count, struct dev_addr_list *mc_list)
6307{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006308 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006309 __le32 *filter_flags = &priv->staging39_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006310
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006311 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6312 changed_flags, *total_flags);
6313
6314 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6315 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6316 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6317 else
6318 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006319 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006320 if (changed_flags & FIF_ALLMULTI) {
6321 if (*total_flags & FIF_ALLMULTI)
6322 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6323 else
6324 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6325 }
6326 if (changed_flags & FIF_CONTROL) {
6327 if (*total_flags & FIF_CONTROL)
6328 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6329 else
6330 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6331 }
6332 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6333 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6334 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6335 else
6336 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6337 }
6338
6339 /* We avoid iwl_commit_rxon here to commit the new filter flags
6340 * since mac80211 will call ieee80211_hw_config immediately.
6341 * (mc_list is not supported at this time). Otherwise, we need to
6342 * queue a background iwl_commit_rxon work.
6343 */
6344
6345 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006346 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006347}
6348
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006349static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006350 struct ieee80211_if_init_conf *conf)
6351{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006352 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006353
6354 IWL_DEBUG_MAC80211("enter\n");
6355
6356 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006357
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006358 if (iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006359 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006360 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Mohamed Abbasfde35712007-11-29 11:10:15 +08006361 iwl3945_commit_rxon(priv);
6362 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006363 if (priv->vif == conf->vif) {
6364 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006365 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006366 }
6367 mutex_unlock(&priv->mutex);
6368
6369 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006370}
6371
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006372#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6373
6374static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6375 struct ieee80211_vif *vif,
6376 struct ieee80211_bss_conf *bss_conf,
6377 u32 changes)
6378{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006379 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006380
6381 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6382
6383 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6384 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6385 bss_conf->use_short_preamble);
6386 if (bss_conf->use_short_preamble)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006387 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006388 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006389 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006390 }
6391
6392 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6393 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6394 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006395 priv->staging39_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006396 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006397 priv->staging39_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006398 }
6399
6400 if (changes & BSS_CHANGED_ASSOC) {
6401 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6402 /* This should never happen as this function should
6403 * never be called from interrupt context. */
6404 if (WARN_ON_ONCE(in_interrupt()))
6405 return;
6406 if (bss_conf->assoc) {
6407 priv->assoc_id = bss_conf->aid;
6408 priv->beacon_int = bss_conf->beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006409 priv->timestamp = bss_conf->timestamp;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006410 priv->assoc_capability = bss_conf->assoc_capability;
6411 priv->next_scan_jiffies = jiffies +
6412 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6413 mutex_lock(&priv->mutex);
6414 iwl3945_post_associate(priv);
6415 mutex_unlock(&priv->mutex);
6416 } else {
6417 priv->assoc_id = 0;
6418 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6419 }
6420 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6421 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6422 iwl3945_send_rxon_assoc(priv);
6423 }
6424
6425}
6426
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006427static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006428{
6429 int rc = 0;
6430 unsigned long flags;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006431 struct iwl_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006432 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006433
6434 IWL_DEBUG_MAC80211("enter\n");
6435
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006436 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006437 spin_lock_irqsave(&priv->lock, flags);
6438
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006439 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006440 rc = -EIO;
6441 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6442 goto out_unlock;
6443 }
6444
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006445 /* we don't schedule scan within next_scan_jiffies period */
6446 if (priv->next_scan_jiffies &&
6447 time_after(priv->next_scan_jiffies, jiffies)) {
6448 rc = -EAGAIN;
6449 goto out_unlock;
6450 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006451 /* if we just finished scan ask for delay for a broadcast scan */
6452 if ((len == 0) && priv->last_scan_jiffies &&
6453 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6454 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006455 rc = -EAGAIN;
6456 goto out_unlock;
6457 }
6458 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006459 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006460 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006461
6462 priv->one_direct_scan = 1;
6463 priv->direct_ssid_len = (u8)
6464 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6465 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006466 } else
6467 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006468
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006469 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006470
6471 IWL_DEBUG_MAC80211("leave\n");
6472
6473out_unlock:
6474 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006475 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006476
6477 return rc;
6478}
6479
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006480static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01006481 struct ieee80211_vif *vif,
6482 struct ieee80211_sta *sta,
6483 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07006484{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006485 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01006486 const u8 *addr;
Zhu Yib481de92007-09-25 17:54:57 -07006487 int rc = 0;
6488 u8 sta_id;
Johannes Bergdc822b52008-12-29 12:55:09 +01006489 static const u8 bcast_addr[ETH_ALEN] =
6490 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Zhu Yib481de92007-09-25 17:54:57 -07006491
6492 IWL_DEBUG_MAC80211("enter\n");
6493
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006494 if (iwl3945_mod_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07006495 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
6496 return -EOPNOTSUPP;
6497 }
6498
Johannes Bergdc822b52008-12-29 12:55:09 +01006499 addr = sta ? sta->addr : bcast_addr;
Zhu Yib481de92007-09-25 17:54:57 -07006500
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006501 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07006502 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07006503 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
6504 addr);
Zhu Yib481de92007-09-25 17:54:57 -07006505 return -EINVAL;
6506 }
6507
6508 mutex_lock(&priv->mutex);
6509
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006510 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006511
Zhu Yib481de92007-09-25 17:54:57 -07006512 switch (cmd) {
6513 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006514 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006515 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006516 iwl3945_set_rxon_hwcrypto(priv, 1);
6517 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006518 key->hw_key_idx = sta_id;
6519 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
6520 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
6521 }
6522 break;
6523 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006524 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006525 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006526 iwl3945_set_rxon_hwcrypto(priv, 0);
6527 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006528 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
6529 }
6530 break;
6531 default:
6532 rc = -EINVAL;
6533 }
6534
6535 IWL_DEBUG_MAC80211("leave\n");
6536 mutex_unlock(&priv->mutex);
6537
6538 return rc;
6539}
6540
Johannes Berge100bb62008-04-30 18:51:21 +02006541static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07006542 const struct ieee80211_tx_queue_params *params)
6543{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006544 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006545 unsigned long flags;
6546 int q;
Zhu Yib481de92007-09-25 17:54:57 -07006547
6548 IWL_DEBUG_MAC80211("enter\n");
6549
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006550 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006551 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6552 return -EIO;
6553 }
6554
6555 if (queue >= AC_NUM) {
6556 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
6557 return 0;
6558 }
6559
Zhu Yib481de92007-09-25 17:54:57 -07006560 q = AC_NUM - 1 - queue;
6561
6562 spin_lock_irqsave(&priv->lock, flags);
6563
6564 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
6565 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
6566 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
6567 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01006568 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07006569
6570 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
6571 priv->qos_data.qos_active = 1;
6572
6573 spin_unlock_irqrestore(&priv->lock, flags);
6574
6575 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02006576 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006577 iwl3945_activate_qos(priv, 1);
6578 else if (priv->assoc_id && iwl3945_is_associated(priv))
6579 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006580
6581 mutex_unlock(&priv->mutex);
6582
Zhu Yib481de92007-09-25 17:54:57 -07006583 IWL_DEBUG_MAC80211("leave\n");
6584 return 0;
6585}
6586
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006587static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006588 struct ieee80211_tx_queue_stats *stats)
6589{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006590 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006591 int i, avail;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006592 struct iwl_tx_queue *txq;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006593 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07006594 unsigned long flags;
6595
6596 IWL_DEBUG_MAC80211("enter\n");
6597
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006598 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006599 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6600 return -EIO;
6601 }
6602
6603 spin_lock_irqsave(&priv->lock, flags);
6604
6605 for (i = 0; i < AC_NUM; i++) {
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006606 txq = &priv->txq[i];
Zhu Yib481de92007-09-25 17:54:57 -07006607 q = &txq->q;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006608 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07006609
Johannes Berg57ffc582008-04-29 17:18:59 +02006610 stats[i].len = q->n_window - avail;
6611 stats[i].limit = q->n_window - q->high_mark;
6612 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07006613
6614 }
6615 spin_unlock_irqrestore(&priv->lock, flags);
6616
6617 IWL_DEBUG_MAC80211("leave\n");
6618
6619 return 0;
6620}
6621
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006622static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006623{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006624 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006625 unsigned long flags;
6626
6627 mutex_lock(&priv->mutex);
6628 IWL_DEBUG_MAC80211("enter\n");
6629
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006630 iwl_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006631
Zhu Yib481de92007-09-25 17:54:57 -07006632 spin_lock_irqsave(&priv->lock, flags);
6633 priv->assoc_id = 0;
6634 priv->assoc_capability = 0;
6635 priv->call_post_assoc_from_beacon = 0;
6636
6637 /* new association get rid of ibss beacon skb */
6638 if (priv->ibss_beacon)
6639 dev_kfree_skb(priv->ibss_beacon);
6640
6641 priv->ibss_beacon = NULL;
6642
6643 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006644 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02006645 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07006646 priv->beacon_int = 0;
6647
6648 spin_unlock_irqrestore(&priv->lock, flags);
6649
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006650 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006651 IWL_DEBUG_MAC80211("leave - not ready\n");
6652 mutex_unlock(&priv->mutex);
6653 return;
6654 }
6655
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006656 /* we are restarting association process
6657 * clear RXON_FILTER_ASSOC_MSK bit
6658 */
Johannes Berg05c914f2008-09-11 00:01:58 +02006659 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006660 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006661 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006662 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006663 }
6664
Zhu Yib481de92007-09-25 17:54:57 -07006665 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02006666 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006667
Zhu Yib481de92007-09-25 17:54:57 -07006668 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
6669 mutex_unlock(&priv->mutex);
6670 return;
6671 }
6672
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006673 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006674
6675 mutex_unlock(&priv->mutex);
6676
6677 IWL_DEBUG_MAC80211("leave\n");
6678
6679}
6680
Johannes Berge039fa42008-05-15 12:55:29 +02006681static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006682{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006683 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006684 unsigned long flags;
6685
Zhu Yib481de92007-09-25 17:54:57 -07006686 IWL_DEBUG_MAC80211("enter\n");
6687
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006688 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006689 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07006690 return -EIO;
6691 }
6692
Johannes Berg05c914f2008-09-11 00:01:58 +02006693 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07006694 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07006695 return -EIO;
6696 }
6697
6698 spin_lock_irqsave(&priv->lock, flags);
6699
6700 if (priv->ibss_beacon)
6701 dev_kfree_skb(priv->ibss_beacon);
6702
6703 priv->ibss_beacon = skb;
6704
6705 priv->assoc_id = 0;
6706
6707 IWL_DEBUG_MAC80211("leave\n");
6708 spin_unlock_irqrestore(&priv->lock, flags);
6709
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006710 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006711
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08006712 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006713
Zhu Yib481de92007-09-25 17:54:57 -07006714
6715 return 0;
6716}
6717
6718/*****************************************************************************
6719 *
6720 * sysfs attributes
6721 *
6722 *****************************************************************************/
6723
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006724#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07006725
6726/*
6727 * The following adds a new attribute to the sysfs representation
6728 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
6729 * used for controlling the debug level.
6730 *
6731 * See the level definitions in iwl for details.
6732 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006733static ssize_t show_debug_level(struct device *d,
6734 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07006735{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006736 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006737
6738 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006739}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006740static ssize_t store_debug_level(struct device *d,
6741 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07006742 const char *buf, size_t count)
6743{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006744 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006745 unsigned long val;
6746 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006747
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006748 ret = strict_strtoul(buf, 0, &val);
6749 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08006750 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006751 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006752 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07006753
6754 return strnlen(buf, count);
6755}
6756
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006757static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
6758 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006759
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006760#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07006761
Zhu Yib481de92007-09-25 17:54:57 -07006762static ssize_t show_temperature(struct device *d,
6763 struct device_attribute *attr, char *buf)
6764{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006765 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006766
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006767 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006768 return -EAGAIN;
6769
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006770 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07006771}
6772
6773static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
6774
Zhu Yib481de92007-09-25 17:54:57 -07006775static ssize_t show_tx_power(struct device *d,
6776 struct device_attribute *attr, char *buf)
6777{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006778 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006779 return sprintf(buf, "%d\n", priv->user_txpower_limit);
6780}
6781
6782static ssize_t store_tx_power(struct device *d,
6783 struct device_attribute *attr,
6784 const char *buf, size_t count)
6785{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006786 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006787 char *p = (char *)buf;
6788 u32 val;
6789
6790 val = simple_strtoul(p, &p, 10);
6791 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08006792 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006793 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006794 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07006795
6796 return count;
6797}
6798
6799static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
6800
6801static ssize_t show_flags(struct device *d,
6802 struct device_attribute *attr, char *buf)
6803{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006804 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006805
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006806 return sprintf(buf, "0x%04X\n", priv->active39_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07006807}
6808
6809static ssize_t store_flags(struct device *d,
6810 struct device_attribute *attr,
6811 const char *buf, size_t count)
6812{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006813 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006814 u32 flags = simple_strtoul(buf, NULL, 0);
6815
6816 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006817 if (le32_to_cpu(priv->staging39_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07006818 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006819 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006820 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006821 else {
6822 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
6823 flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006824 priv->staging39_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006825 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006826 }
6827 }
6828 mutex_unlock(&priv->mutex);
6829
6830 return count;
6831}
6832
6833static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
6834
6835static ssize_t show_filter_flags(struct device *d,
6836 struct device_attribute *attr, char *buf)
6837{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006838 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006839
6840 return sprintf(buf, "0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006841 le32_to_cpu(priv->active39_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07006842}
6843
6844static ssize_t store_filter_flags(struct device *d,
6845 struct device_attribute *attr,
6846 const char *buf, size_t count)
6847{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006848 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006849 u32 filter_flags = simple_strtoul(buf, NULL, 0);
6850
6851 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006852 if (le32_to_cpu(priv->staging39_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07006853 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006854 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006855 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006856 else {
6857 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
6858 "0x%04X\n", filter_flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006859 priv->staging39_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07006860 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006861 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006862 }
6863 }
6864 mutex_unlock(&priv->mutex);
6865
6866 return count;
6867}
6868
6869static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
6870 store_filter_flags);
6871
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006872#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07006873
6874static ssize_t show_measurement(struct device *d,
6875 struct device_attribute *attr, char *buf)
6876{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006877 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08006878 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07006879 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006880 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07006881 unsigned long flags;
6882
6883 spin_lock_irqsave(&priv->lock, flags);
6884 if (!(priv->measurement_status & MEASUREMENT_READY)) {
6885 spin_unlock_irqrestore(&priv->lock, flags);
6886 return 0;
6887 }
6888 memcpy(&measure_report, &priv->measure_report, size);
6889 priv->measurement_status = 0;
6890 spin_unlock_irqrestore(&priv->lock, flags);
6891
6892 while (size && (PAGE_SIZE - len)) {
6893 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
6894 PAGE_SIZE - len, 1);
6895 len = strlen(buf);
6896 if (PAGE_SIZE - len)
6897 buf[len++] = '\n';
6898
6899 ofs += 16;
6900 size -= min(size, 16U);
6901 }
6902
6903 return len;
6904}
6905
6906static ssize_t store_measurement(struct device *d,
6907 struct device_attribute *attr,
6908 const char *buf, size_t count)
6909{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006910 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006911 struct ieee80211_measurement_params params = {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006912 .channel = le16_to_cpu(priv->active39_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07006913 .start_time = cpu_to_le64(priv->last_tsf),
6914 .duration = cpu_to_le16(1),
6915 };
6916 u8 type = IWL_MEASURE_BASIC;
6917 u8 buffer[32];
6918 u8 channel;
6919
6920 if (count) {
6921 char *p = buffer;
6922 strncpy(buffer, buf, min(sizeof(buffer), count));
6923 channel = simple_strtoul(p, NULL, 0);
6924 if (channel)
6925 params.channel = channel;
6926
6927 p = buffer;
6928 while (*p && *p != ' ')
6929 p++;
6930 if (*p)
6931 type = simple_strtoul(p + 1, NULL, 0);
6932 }
6933
6934 IWL_DEBUG_INFO("Invoking measurement of type %d on "
6935 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006936 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07006937
6938 return count;
6939}
6940
6941static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
6942 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006943#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07006944
Zhu Yib481de92007-09-25 17:54:57 -07006945static ssize_t store_retry_rate(struct device *d,
6946 struct device_attribute *attr,
6947 const char *buf, size_t count)
6948{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006949 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006950
6951 priv->retry_rate = simple_strtoul(buf, NULL, 0);
6952 if (priv->retry_rate <= 0)
6953 priv->retry_rate = 1;
6954
6955 return count;
6956}
6957
6958static ssize_t show_retry_rate(struct device *d,
6959 struct device_attribute *attr, char *buf)
6960{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006961 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006962 return sprintf(buf, "%d", priv->retry_rate);
6963}
6964
6965static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
6966 store_retry_rate);
6967
6968static ssize_t store_power_level(struct device *d,
6969 struct device_attribute *attr,
6970 const char *buf, size_t count)
6971{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006972 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006973 int rc;
6974 int mode;
6975
6976 mode = simple_strtoul(buf, NULL, 0);
6977 mutex_lock(&priv->mutex);
6978
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006979 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006980 rc = -EAGAIN;
6981 goto out;
6982 }
6983
Samuel Ortiz1125eff2008-12-19 10:37:14 +08006984 if ((mode < 1) || (mode > IWL39_POWER_LIMIT) ||
6985 (mode == IWL39_POWER_AC))
6986 mode = IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07006987 else
6988 mode |= IWL_POWER_ENABLED;
6989
6990 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006991 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07006992 if (rc) {
6993 IWL_DEBUG_MAC80211("failed setting power mode.\n");
6994 goto out;
6995 }
6996 priv->power_mode = mode;
6997 }
6998
6999 rc = count;
7000
7001 out:
7002 mutex_unlock(&priv->mutex);
7003 return rc;
7004}
7005
7006#define MAX_WX_STRING 80
7007
7008/* Values are in microsecond */
7009static const s32 timeout_duration[] = {
7010 350000,
7011 250000,
7012 75000,
7013 37000,
7014 25000,
7015};
7016static const s32 period_duration[] = {
7017 400000,
7018 700000,
7019 1000000,
7020 1000000,
7021 1000000
7022};
7023
7024static ssize_t show_power_level(struct device *d,
7025 struct device_attribute *attr, char *buf)
7026{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007027 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007028 int level = IWL_POWER_LEVEL(priv->power_mode);
7029 char *p = buf;
7030
7031 p += sprintf(p, "%d ", level);
7032 switch (level) {
7033 case IWL_POWER_MODE_CAM:
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007034 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07007035 p += sprintf(p, "(AC)");
7036 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007037 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07007038 p += sprintf(p, "(BATTERY)");
7039 break;
7040 default:
7041 p += sprintf(p,
7042 "(Timeout %dms, Period %dms)",
7043 timeout_duration[level - 1] / 1000,
7044 period_duration[level - 1] / 1000);
7045 }
7046
7047 if (!(priv->power_mode & IWL_POWER_ENABLED))
7048 p += sprintf(p, " OFF\n");
7049 else
7050 p += sprintf(p, " \n");
7051
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007052 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007053
7054}
7055
7056static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7057 store_power_level);
7058
7059static ssize_t show_channels(struct device *d,
7060 struct device_attribute *attr, char *buf)
7061{
Johannes Berg8318d782008-01-24 19:38:38 +01007062 /* all this shit doesn't belong into sysfs anyway */
7063 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007064}
7065
7066static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7067
7068static ssize_t show_statistics(struct device *d,
7069 struct device_attribute *attr, char *buf)
7070{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007071 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007072 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007073 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007074 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07007075 int rc = 0;
7076
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007077 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007078 return -EAGAIN;
7079
7080 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007081 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007082 mutex_unlock(&priv->mutex);
7083
7084 if (rc) {
7085 len = sprintf(buf,
7086 "Error sending statistics request: 0x%08X\n", rc);
7087 return len;
7088 }
7089
7090 while (size && (PAGE_SIZE - len)) {
7091 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7092 PAGE_SIZE - len, 1);
7093 len = strlen(buf);
7094 if (PAGE_SIZE - len)
7095 buf[len++] = '\n';
7096
7097 ofs += 16;
7098 size -= min(size, 16U);
7099 }
7100
7101 return len;
7102}
7103
7104static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7105
7106static ssize_t show_antenna(struct device *d,
7107 struct device_attribute *attr, char *buf)
7108{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007109 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007110
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007111 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007112 return -EAGAIN;
7113
7114 return sprintf(buf, "%d\n", priv->antenna);
7115}
7116
7117static ssize_t store_antenna(struct device *d,
7118 struct device_attribute *attr,
7119 const char *buf, size_t count)
7120{
7121 int ant;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007122 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007123
7124 if (count == 0)
7125 return 0;
7126
7127 if (sscanf(buf, "%1i", &ant) != 1) {
7128 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7129 return count;
7130 }
7131
7132 if ((ant >= 0) && (ant <= 2)) {
7133 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007134 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007135 } else
7136 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7137
7138
7139 return count;
7140}
7141
7142static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7143
7144static ssize_t show_status(struct device *d,
7145 struct device_attribute *attr, char *buf)
7146{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007147 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007148 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007149 return -EAGAIN;
7150 return sprintf(buf, "0x%08x\n", (int)priv->status);
7151}
7152
7153static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7154
7155static ssize_t dump_error_log(struct device *d,
7156 struct device_attribute *attr,
7157 const char *buf, size_t count)
7158{
7159 char *p = (char *)buf;
7160
7161 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007162 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007163
7164 return strnlen(buf, count);
7165}
7166
7167static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7168
7169static ssize_t dump_event_log(struct device *d,
7170 struct device_attribute *attr,
7171 const char *buf, size_t count)
7172{
7173 char *p = (char *)buf;
7174
7175 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007176 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007177
7178 return strnlen(buf, count);
7179}
7180
7181static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7182
7183/*****************************************************************************
7184 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007185 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007186 *
7187 *****************************************************************************/
7188
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007189static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007190{
7191 priv->workqueue = create_workqueue(DRV_NAME);
7192
7193 init_waitqueue_head(&priv->wait_command_queue);
7194
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007195 INIT_WORK(&priv->up, iwl3945_bg_up);
7196 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7197 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7198 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7199 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7200 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7201 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7202 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007203 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7204 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7205 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007206
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007207 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007208
7209 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007210 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007211}
7212
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007213static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007214{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007215 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007216
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007217 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007218 cancel_delayed_work(&priv->scan_check);
7219 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007220 cancel_work_sync(&priv->beacon_update);
7221}
7222
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007223static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007224 &dev_attr_antenna.attr,
7225 &dev_attr_channels.attr,
7226 &dev_attr_dump_errors.attr,
7227 &dev_attr_dump_events.attr,
7228 &dev_attr_flags.attr,
7229 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007230#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007231 &dev_attr_measurement.attr,
7232#endif
7233 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007234 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007235 &dev_attr_statistics.attr,
7236 &dev_attr_status.attr,
7237 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007238 &dev_attr_tx_power.attr,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007239#ifdef CONFIG_IWL3945_DEBUG
7240 &dev_attr_debug_level.attr,
7241#endif
Zhu Yib481de92007-09-25 17:54:57 -07007242 NULL
7243};
7244
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007245static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007246 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007247 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007248};
7249
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007250static struct ieee80211_ops iwl3945_hw_ops = {
7251 .tx = iwl3945_mac_tx,
7252 .start = iwl3945_mac_start,
7253 .stop = iwl3945_mac_stop,
7254 .add_interface = iwl3945_mac_add_interface,
7255 .remove_interface = iwl3945_mac_remove_interface,
7256 .config = iwl3945_mac_config,
7257 .config_interface = iwl3945_mac_config_interface,
7258 .configure_filter = iwl3945_configure_filter,
7259 .set_key = iwl3945_mac_set_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007260 .get_tx_stats = iwl3945_mac_get_tx_stats,
7261 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007262 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007263 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007264 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007265};
7266
Winkler, Tomase52119c2008-12-22 11:31:19 +08007267static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007268{
7269 int ret;
7270
7271 priv->retry_rate = 1;
7272 priv->ibss_beacon = NULL;
7273
7274 spin_lock_init(&priv->lock);
7275 spin_lock_init(&priv->power_data.lock);
7276 spin_lock_init(&priv->sta_lock);
7277 spin_lock_init(&priv->hcmd_lock);
7278
7279 INIT_LIST_HEAD(&priv->free_frames);
7280
7281 mutex_init(&priv->mutex);
7282
7283 /* Clear the driver's (not device's) station table */
7284 iwl3945_clear_stations_table(priv);
7285
7286 priv->data_retry_limit = -1;
7287 priv->ieee_channels = NULL;
7288 priv->ieee_rates = NULL;
7289 priv->band = IEEE80211_BAND_2GHZ;
7290
7291 priv->iw_mode = NL80211_IFTYPE_STATION;
7292
7293 iwl_reset_qos(priv);
7294
7295 priv->qos_data.qos_active = 0;
7296 priv->qos_data.qos_cap.val = 0;
7297
7298 priv->rates_mask = IWL_RATES_MASK;
7299 /* If power management is turned on, default to AC mode */
7300 priv->power_mode = IWL_POWER_AC;
7301 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7302
7303 ret = iwl3945_init_channel_map(priv);
7304 if (ret) {
7305 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
7306 goto err;
7307 }
7308
7309 ret = iwl3945_init_geos(priv);
7310 if (ret) {
7311 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
7312 goto err_free_channel_map;
7313 }
7314
7315 return 0;
7316
7317err_free_channel_map:
7318 iwl3945_free_channel_map(priv);
7319err:
7320 return ret;
7321}
7322
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007323static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007324{
7325 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007326 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007327 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08007328 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007329 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007330
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007331 /***********************
7332 * 1. Allocating HW data
7333 * ********************/
7334
Zhu Yib481de92007-09-25 17:54:57 -07007335 /* mac80211 allocates memory for this device instance, including
7336 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007337 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007338 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007339 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07007340 err = -ENOMEM;
7341 goto out;
7342 }
Zhu Yib481de92007-09-25 17:54:57 -07007343 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007344 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007345
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007346 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
7347 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007348 IWL_ERR(priv,
7349 "invalid queues_num, should be between %d and %d\n",
7350 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08007351 err = -EINVAL;
7352 goto out;
7353 }
7354
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007355 /*
7356 * Disabling hardware scan means that mac80211 will perform scans
7357 * "the hard way", rather than using device's scan.
7358 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007359 if (iwl3945_mod_params.disable_hw_scan) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007360 IWL_DEBUG_INFO("Disabling hw_scan\n");
7361 iwl3945_hw_ops.hw_scan = NULL;
7362 }
7363
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007364
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007365 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007366 priv->cfg = cfg;
7367 priv->pci_dev = pdev;
7368
7369#ifdef CONFIG_IWL3945_DEBUG
7370 priv->debug_level = iwl3945_mod_params.debug;
7371 atomic_set(&priv->restrict_refcnt, 0);
7372#endif
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007373 hw->rate_control_algorithm = "iwl-3945-rs";
7374 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7375
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007376 /* Select antenna (may be helpful if only one antenna is connected) */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007377 priv->antenna = (enum iwl3945_antenna)iwl3945_mod_params.antenna;
Zhu Yib481de92007-09-25 17:54:57 -07007378
Bruno Randolf566bfe52008-05-08 19:15:40 +02007379 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007380 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007381 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007382
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007383 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007384 BIT(NL80211_IFTYPE_STATION) |
7385 BIT(NL80211_IFTYPE_ADHOC);
7386
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007387 hw->wiphy->fw_handles_regulatory = true;
7388
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007389 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007390 hw->queues = 4;
7391
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007392 /***************************
7393 * 2. Initializing PCI bus
7394 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007395 if (pci_enable_device(pdev)) {
7396 err = -ENODEV;
7397 goto out_ieee80211_free_hw;
7398 }
7399
7400 pci_set_master(pdev);
7401
Zhu Yib481de92007-09-25 17:54:57 -07007402 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7403 if (!err)
7404 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7405 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08007406 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07007407 goto out_pci_disable_device;
7408 }
7409
7410 pci_set_drvdata(pdev, priv);
7411 err = pci_request_regions(pdev, DRV_NAME);
7412 if (err)
7413 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007414
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007415 /***********************
7416 * 3. Read REV Register
7417 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007418 priv->hw_base = pci_iomap(pdev, 0, 0);
7419 if (!priv->hw_base) {
7420 err = -ENODEV;
7421 goto out_pci_release_regions;
7422 }
7423
7424 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7425 (unsigned long long) pci_resource_len(pdev, 0));
7426 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7427
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007428 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7429 * PCI Tx retries from interfering with C3 CPU state */
7430 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007431
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007432 /* amp init */
7433 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007434 if (err < 0) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007435 IWL_DEBUG_INFO("Failed to init APMG\n");
7436 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007437 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007438
7439 /***********************
7440 * 4. Read EEPROM
7441 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007442
Zhu Yi5a66926a2008-01-14 17:46:18 -08007443 /* Read the EEPROM */
7444 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007445 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007446 IWL_ERR(priv, "Unable to init EEPROM\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08007447 goto out_remove_sysfs;
7448 }
7449 /* MAC Address location in EEPROM same for 3945/4965 */
7450 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007451 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a66926a2008-01-14 17:46:18 -08007452 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7453
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007454 /***********************
7455 * 5. Setup HW Constants
7456 * ********************/
7457 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007458 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007459 IWL_ERR(priv, "failed to set hw settings\n");
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007460 goto out_iounmap;
7461 }
7462
7463 /***********************
7464 * 6. Setup priv
7465 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007466
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007467 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007468 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007469 IWL_ERR(priv, "initializing driver failed\n");
7470 goto out_free_geos;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007471 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007472
Tomas Winkler978785a2008-12-19 10:37:31 +08007473 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
7474 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007475
7476 /***********************************
7477 * 7. Initialize Module Parameters
7478 * **********************************/
7479
7480 /* Initialize module parameter values here */
7481 /* Disable radio (SW RF KILL) via parameter when loading driver */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007482 if (iwl3945_mod_params.disable) {
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007483 set_bit(STATUS_RF_KILL_SW, &priv->status);
7484 IWL_DEBUG_INFO("Radio disabled.\n");
7485 }
7486
7487
7488 /***********************
7489 * 8. Setup Services
7490 * ********************/
7491
7492 spin_lock_irqsave(&priv->lock, flags);
7493 iwl3945_disable_interrupts(priv);
7494 spin_unlock_irqrestore(&priv->lock, flags);
7495
7496 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7497 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007498 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007499 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007500 }
7501
7502 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
7503 iwl3945_setup_deferred_work(priv);
7504 iwl3945_setup_rx_handlers(priv);
7505
7506 /***********************
7507 * 9. Conclude
7508 * ********************/
7509 pci_save_state(pdev);
7510 pci_disable_device(pdev);
7511
7512 /*********************************
7513 * 10. Setup and Register mac80211
7514 * *******************************/
7515
Zhu Yi5a66926a2008-01-14 17:46:18 -08007516 err = ieee80211_register_hw(priv->hw);
7517 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007518 IWL_ERR(priv, "Failed to register network device: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007519 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07007520 }
7521
Zhu Yi5a66926a2008-01-14 17:46:18 -08007522 priv->hw->conf.beacon_int = 100;
7523 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007524
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007525 err = iwl3945_rfkill_init(priv);
7526 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08007527 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007528 "Ignoring error: %d\n", err);
7529
Zhu Yib481de92007-09-25 17:54:57 -07007530 return 0;
7531
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007532 out_remove_sysfs:
7533 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007534 out_free_geos:
7535 iwl3945_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007536
7537 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07007538 destroy_workqueue(priv->workqueue);
7539 priv->workqueue = NULL;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007540 iwl3945_unset_hw_params(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007541
7542 out_iounmap:
7543 pci_iounmap(pdev, priv->hw_base);
7544 out_pci_release_regions:
7545 pci_release_regions(pdev);
7546 out_pci_disable_device:
7547 pci_disable_device(pdev);
7548 pci_set_drvdata(pdev, NULL);
7549 out_ieee80211_free_hw:
7550 ieee80211_free_hw(priv->hw);
7551 out:
7552 return err;
7553}
7554
Reinette Chatrec83dbf62008-03-21 13:53:41 -07007555static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007556{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007557 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007558 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007559
7560 if (!priv)
7561 return;
7562
7563 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
7564
Zhu Yib481de92007-09-25 17:54:57 -07007565 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08007566
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08007567 if (priv->mac80211_registered) {
7568 ieee80211_unregister_hw(priv->hw);
7569 priv->mac80211_registered = 0;
7570 } else {
7571 iwl3945_down(priv);
7572 }
Zhu Yib481de92007-09-25 17:54:57 -07007573
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007574 /* make sure we flush any pending irq or
7575 * tasklet for the driver
7576 */
7577 spin_lock_irqsave(&priv->lock, flags);
7578 iwl3945_disable_interrupts(priv);
7579 spin_unlock_irqrestore(&priv->lock, flags);
7580
7581 iwl_synchronize_irq(priv);
7582
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007583 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07007584
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007585 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007586 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007587
7588 if (priv->rxq.bd)
Winkler, Tomas51af3d32008-12-22 11:31:23 +08007589 iwl_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007590 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007591
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007592 iwl3945_unset_hw_params(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007593 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007594
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08007595 /*netif_stop_queue(dev); */
7596 flush_workqueue(priv->workqueue);
7597
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007598 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07007599 * priv->workqueue... so we can't take down the workqueue
7600 * until now... */
7601 destroy_workqueue(priv->workqueue);
7602 priv->workqueue = NULL;
7603
Zhu Yib481de92007-09-25 17:54:57 -07007604 pci_iounmap(pdev, priv->hw_base);
7605 pci_release_regions(pdev);
7606 pci_disable_device(pdev);
7607 pci_set_drvdata(pdev, NULL);
7608
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007609 iwl3945_free_channel_map(priv);
7610 iwl3945_free_geos(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007611 kfree(priv->scan39);
Zhu Yib481de92007-09-25 17:54:57 -07007612 if (priv->ibss_beacon)
7613 dev_kfree_skb(priv->ibss_beacon);
7614
7615 ieee80211_free_hw(priv->hw);
7616}
7617
7618#ifdef CONFIG_PM
7619
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007620static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07007621{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007622 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007623
Zhu Yie655b9f2008-01-24 02:19:38 -08007624 if (priv->is_open) {
7625 set_bit(STATUS_IN_SUSPEND, &priv->status);
7626 iwl3945_mac_stop(priv->hw);
7627 priv->is_open = 1;
7628 }
Zhu Yib481de92007-09-25 17:54:57 -07007629
Zhu Yib481de92007-09-25 17:54:57 -07007630 pci_set_power_state(pdev, PCI_D3hot);
7631
Zhu Yib481de92007-09-25 17:54:57 -07007632 return 0;
7633}
7634
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007635static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007636{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007637 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007638
Zhu Yib481de92007-09-25 17:54:57 -07007639 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07007640
Zhu Yie655b9f2008-01-24 02:19:38 -08007641 if (priv->is_open)
7642 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07007643
Zhu Yie655b9f2008-01-24 02:19:38 -08007644 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07007645 return 0;
7646}
7647
7648#endif /* CONFIG_PM */
7649
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007650/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007651#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007652/* software rf-kill from user */
7653static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
7654{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007655 struct iwl_priv *priv = data;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007656 int err = 0;
7657
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007658 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007659 return 0;
7660
7661 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
7662 return 0;
7663
Tomas Winklera96a27f2008-10-23 23:48:56 -07007664 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007665 mutex_lock(&priv->mutex);
7666
7667 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007668 case RFKILL_STATE_UNBLOCKED:
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007669 if (iwl_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007670 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007671 goto out_unlock;
7672 }
7673 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007674 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007675 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007676 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007677 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007678 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +08007679 IWL_WARN(priv, "received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007680 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007681 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007682out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007683 mutex_unlock(&priv->mutex);
7684
7685 return err;
7686}
7687
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007688int iwl3945_rfkill_init(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007689{
7690 struct device *device = wiphy_dev(priv->hw->wiphy);
7691 int ret = 0;
7692
7693 BUG_ON(device == NULL);
7694
7695 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007696 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
7697 if (!priv->rfkill) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007698 IWL_ERR(priv, "Unable to allocate rfkill device.\n");
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007699 ret = -ENOMEM;
7700 goto error;
7701 }
7702
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007703 priv->rfkill->name = priv->cfg->name;
7704 priv->rfkill->data = priv;
7705 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
7706 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
7707 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007708
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007709 priv->rfkill->dev.class->suspend = NULL;
7710 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007711
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007712 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007713 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007714 IWL_ERR(priv, "Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007715 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007716 }
7717
7718 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7719 return ret;
7720
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007721freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007722 if (priv->rfkill != NULL)
7723 rfkill_free(priv->rfkill);
7724 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007725
7726error:
7727 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7728 return ret;
7729}
7730
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007731void iwl3945_rfkill_unregister(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007732{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007733 if (priv->rfkill)
7734 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007735
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007736 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007737}
7738
7739/* set rf-kill to the right state. */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007740void iwl3945_rfkill_set_hw_state(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007741{
7742
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007743 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007744 return;
7745
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007746 if (iwl_is_rfkill_hw(priv)) {
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007747 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
7748 return;
7749 }
7750
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007751 if (!iwl_is_rfkill_sw(priv))
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007752 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007753 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007754 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007755}
7756#endif
7757
Zhu Yib481de92007-09-25 17:54:57 -07007758/*****************************************************************************
7759 *
7760 * driver and module entry point
7761 *
7762 *****************************************************************************/
7763
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007764static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07007765 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007766 .id_table = iwl3945_hw_card_ids,
7767 .probe = iwl3945_pci_probe,
7768 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07007769#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007770 .suspend = iwl3945_pci_suspend,
7771 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07007772#endif
7773};
7774
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007775static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07007776{
7777
7778 int ret;
7779 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
7780 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007781
7782 ret = iwl3945_rate_control_register();
7783 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007784 printk(KERN_ERR DRV_NAME
7785 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007786 return ret;
7787 }
7788
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007789 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07007790 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007791 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007792 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07007793 }
Zhu Yib481de92007-09-25 17:54:57 -07007794
7795 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007796
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007797error_register:
7798 iwl3945_rate_control_unregister();
7799 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07007800}
7801
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007802static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07007803{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007804 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007805 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07007806}
7807
Reinette Chatrea0987a82008-12-02 12:14:06 -08007808MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08007809
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007810module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007811MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007812module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007813MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007814module_param_named(hwcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007815MODULE_PARM_DESC(hwcrypto,
7816 "using hardware crypto engine (default 0 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007817module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007818MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007819module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007820MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
7821
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007822module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007823MODULE_PARM_DESC(queues_num, "number of hw queues.");
7824
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007825module_exit(iwl3945_exit);
7826module_init(iwl3945_init);