blob: 43cfc6ec51634b439899d5fbecce36b28dc64517 [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
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800123int iwl3945_x2_queue_used(const struct iwl_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700124{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800125 return q->write_ptr > q->read_ptr ?
126 (i >= q->read_ptr && i < q->write_ptr) :
127 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700128}
129
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800130/**
131 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
132 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800133static int iwl3945_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700134 int count, int slots_num, u32 id)
135{
136 q->n_bd = count;
137 q->n_window = slots_num;
138 q->id = id;
139
Tomas Winklerc54b6792008-03-06 17:36:53 -0800140 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
141 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700142 BUG_ON(!is_power_of_2(count));
143
144 /* slots_num must be power-of-two size, otherwise
145 * get_cmd_index is broken. */
146 BUG_ON(!is_power_of_2(slots_num));
147
148 q->low_mark = q->n_window / 4;
149 if (q->low_mark < 4)
150 q->low_mark = 4;
151
152 q->high_mark = q->n_window / 8;
153 if (q->high_mark < 2)
154 q->high_mark = 2;
155
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800156 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700157
158 return 0;
159}
160
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800161/**
162 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
163 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800164static int iwl3945_tx_queue_alloc(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800165 struct iwl_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700166{
167 struct pci_dev *dev = priv->pci_dev;
168
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800169 /* Driver private data, only for Tx (not command) queues,
170 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700171 if (id != IWL_CMD_QUEUE_NUM) {
172 txq->txb = kmalloc(sizeof(txq->txb[0]) *
173 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
174 if (!txq->txb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800175 IWL_ERR(priv, "kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700176 "structures failed\n");
177 goto error;
178 }
179 } else
180 txq->txb = NULL;
181
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800182 /* Circular buffer of transmit frame descriptors (TFDs),
183 * shared with device */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800184 txq->tfds39 = pci_alloc_consistent(dev,
185 sizeof(txq->tfds39[0]) * TFD_QUEUE_SIZE_MAX,
Zhu Yib481de92007-09-25 17:54:57 -0700186 &txq->q.dma_addr);
187
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800188 if (!txq->tfds39) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800189 IWL_ERR(priv, "pci_alloc_consistent(%zd) failed\n",
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800190 sizeof(txq->tfds39[0]) * TFD_QUEUE_SIZE_MAX);
Zhu Yib481de92007-09-25 17:54:57 -0700191 goto error;
192 }
193 txq->q.id = id;
194
195 return 0;
196
197 error:
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300198 kfree(txq->txb);
199 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700200
201 return -ENOMEM;
202}
203
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800204/**
205 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
206 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800207int iwl3945_tx_queue_init(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800208 struct iwl_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700209{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800210 int len, i;
Zhu Yib481de92007-09-25 17:54:57 -0700211 int rc = 0;
212
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800213 /*
214 * Alloc buffer array for commands (Tx or other types of commands).
215 * For the command queue (#4), allocate command space + one big
216 * command for scan, since scan command is very huge; the system will
217 * not have two scans at the same time, so only one is needed.
218 * For data Tx queues (all other queues), no super-size command
219 * space is needed.
220 */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800221 len = sizeof(struct iwl_cmd);
222 for (i = 0; i <= slots_num; i++) {
223 if (i == slots_num) {
224 if (txq_id == IWL_CMD_QUEUE_NUM)
225 len += IWL_MAX_SCAN_SIZE;
226 else
227 continue;
228 }
229
230 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
231 if (!txq->cmd[i])
232 goto err;
233 }
Zhu Yib481de92007-09-25 17:54:57 -0700234
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800235 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800236 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800237 if (rc)
238 goto err;
Zhu Yib481de92007-09-25 17:54:57 -0700239
Zhu Yib481de92007-09-25 17:54:57 -0700240 txq->need_update = 0;
241
242 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800243 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700244 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800245
246 /* Initialize queue high/low-water, head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800247 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700248
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800249 /* Tell device where to find queue, enable DMA channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800250 iwl3945_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700251
252 return 0;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800253err:
254 for (i = 0; i < slots_num; i++) {
255 kfree(txq->cmd[i]);
256 txq->cmd[i] = NULL;
257 }
258
259 if (txq_id == IWL_CMD_QUEUE_NUM) {
260 kfree(txq->cmd[slots_num]);
261 txq->cmd[slots_num] = NULL;
262 }
263 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -0700264}
265
266/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800267 * iwl3945_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700268 * @txq: Transmit queue to deallocate.
269 *
270 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800271 * Free all buffers.
272 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700273 */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800274void iwl3945_tx_queue_free(struct iwl_priv *priv, struct iwl_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700275{
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800276 struct iwl_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700277 struct pci_dev *dev = priv->pci_dev;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800278 int len, i;
Zhu Yib481de92007-09-25 17:54:57 -0700279
280 if (q->n_bd == 0)
281 return;
282
283 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800284 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800285 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800286 iwl3945_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700287
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800288 len = sizeof(struct iwl_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700289 if (q->id == IWL_CMD_QUEUE_NUM)
290 len += IWL_MAX_SCAN_SIZE;
291
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800292 /* De-alloc array of command/tx buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800293 for (i = 0; i < TFD_TX_CMD_SLOTS; i++)
294 kfree(txq->cmd[i]);
Zhu Yib481de92007-09-25 17:54:57 -0700295
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800296 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700297 if (txq->q.n_bd)
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800298 pci_free_consistent(dev, sizeof(struct iwl3945_tfd) *
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800299 txq->q.n_bd, txq->tfds39, txq->q.dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700300
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800301 /* De-alloc array of per-TFD driver data */
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300302 kfree(txq->txb);
303 txq->txb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700304
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800305 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700306 memset(txq, 0, sizeof(*txq));
307}
308
Zhu Yib481de92007-09-25 17:54:57 -0700309/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800310 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700311 * the functionality provided here
312 */
313
314/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800315#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800316/**
317 * iwl3945_remove_station - Remove driver's knowledge of station.
318 *
319 * NOTE: This does not remove station from device's station table.
320 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800321static u8 iwl3945_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700322{
323 int index = IWL_INVALID_STATION;
324 int i;
325 unsigned long flags;
326
327 spin_lock_irqsave(&priv->sta_lock, flags);
328
329 if (is_ap)
330 index = IWL_AP_ID;
331 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800332 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700333 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800334 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800335 if (priv->stations_39[i].used &&
336 !compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700337 addr)) {
338 index = i;
339 break;
340 }
341
342 if (unlikely(index == IWL_INVALID_STATION))
343 goto out;
344
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800345 if (priv->stations_39[index].used) {
346 priv->stations_39[index].used = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700347 priv->num_stations--;
348 }
349
350 BUG_ON(priv->num_stations < 0);
351
352out:
353 spin_unlock_irqrestore(&priv->sta_lock, flags);
354 return 0;
355}
Zhu Yi556f8db2007-09-27 11:27:33 +0800356#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800357
358/**
359 * iwl3945_clear_stations_table - Clear the driver's station table
360 *
361 * NOTE: This does not clear or otherwise alter the device's station table.
362 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800363static void iwl3945_clear_stations_table(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700364{
365 unsigned long flags;
366
367 spin_lock_irqsave(&priv->sta_lock, flags);
368
369 priv->num_stations = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800370 memset(priv->stations_39, 0, sizeof(priv->stations_39));
Zhu Yib481de92007-09-25 17:54:57 -0700371
372 spin_unlock_irqrestore(&priv->sta_lock, flags);
373}
374
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800375/**
376 * iwl3945_add_station - Add station to station tables in driver and device
377 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800378u8 iwl3945_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700379{
380 int i;
381 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800382 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700383 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800384 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700385
386 spin_lock_irqsave(&priv->sta_lock, flags_spin);
387 if (is_ap)
388 index = IWL_AP_ID;
389 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800390 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700391 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800392 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800393 if (!compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700394 addr)) {
395 index = i;
396 break;
397 }
398
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800399 if (!priv->stations_39[i].used &&
Zhu Yib481de92007-09-25 17:54:57 -0700400 index == IWL_INVALID_STATION)
401 index = i;
402 }
403
Ian Schram01ebd062007-10-25 17:15:22 +0800404 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700405 since they have different meaning */
406 if (unlikely(index == IWL_INVALID_STATION)) {
407 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
408 return index;
409 }
410
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800411 if (priv->stations_39[index].used &&
412 !compare_ether_addr(priv->stations_39[index].sta.sta.addr, addr)) {
Zhu Yib481de92007-09-25 17:54:57 -0700413 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
414 return index;
415 }
416
Johannes Berge1749612008-10-27 15:59:26 -0700417 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800418 station = &priv->stations_39[index];
Zhu Yib481de92007-09-25 17:54:57 -0700419 station->used = 1;
420 priv->num_stations++;
421
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800422 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800423 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700424 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
425 station->sta.mode = 0;
426 station->sta.sta.sta_id = index;
427 station->sta.station_flags = 0;
428
Johannes Berg8318d782008-01-24 19:38:38 +0100429 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800430 rate = IWL_RATE_6M_PLCP;
431 else
432 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800433
434 /* Turn on both antennas for the station... */
435 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800436 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800437
Zhu Yib481de92007-09-25 17:54:57 -0700438 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800439
440 /* Add station to device's station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800441 iwl3945_send_add_station(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700442 return index;
443
444}
445
Zhu Yib481de92007-09-25 17:54:57 -0700446
447/*************** HOST COMMAND QUEUE FUNCTIONS *****/
448
Abhijeet Kolekarc3056062008-11-12 13:14:08 -0800449#define IWL_CMD(x) case x: return #x
Zhu Yib481de92007-09-25 17:54:57 -0700450#define HOST_COMPLETE_TIMEOUT (HZ / 2)
451
452/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800453 * iwl3945_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700454 * @priv: device private data point
455 * @cmd: a point to the ucode command structure
456 *
457 * The function returns < 0 values to indicate the operation is
458 * failed. On success, it turns the index (> 0) of command in the
459 * command queue.
460 */
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800461static int iwl3945_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700462{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800463 struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800464 struct iwl_queue *q = &txq->q;
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800465 struct iwl3945_tfd *tfd;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800466 struct iwl_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700467 u32 idx;
468 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
469 dma_addr_t phys_addr;
470 int pad;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800471 int ret, len;
Zhu Yib481de92007-09-25 17:54:57 -0700472 unsigned long flags;
473
474 /* If any of the command structures end up being larger than
475 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
476 * we will need to increase the size of the TFD entries */
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800477 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
Zhu Yib481de92007-09-25 17:54:57 -0700478 !(cmd->meta.flags & CMD_SIZE_HUGE));
479
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800480
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800481 if (iwl_is_rfkill(priv)) {
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800482 IWL_DEBUG_INFO("Not sending command - RF KILL");
483 return -EIO;
484 }
485
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800486 if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800487 IWL_ERR(priv, "No space for Tx\n");
Zhu Yib481de92007-09-25 17:54:57 -0700488 return -ENOSPC;
489 }
490
491 spin_lock_irqsave(&priv->hcmd_lock, flags);
492
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800493 tfd = &txq->tfds39[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700494 memset(tfd, 0, sizeof(*tfd));
495
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800496 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800497 out_cmd = txq->cmd[idx];
Zhu Yib481de92007-09-25 17:54:57 -0700498
499 out_cmd->hdr.cmd = cmd->id;
500 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
501 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
502
503 /* At this point, the out_cmd now has all of the incoming cmd
504 * information */
505
506 out_cmd->hdr.flags = 0;
507 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800508 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700509 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
Tomas Winkler600c0e12008-12-19 10:37:04 +0800510 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
Zhu Yib481de92007-09-25 17:54:57 -0700511
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800512 len = (idx == TFD_CMD_SLOTS) ?
513 IWL_MAX_SCAN_SIZE : sizeof(struct iwl_cmd);
514
515 phys_addr = pci_map_single(priv->pci_dev, out_cmd,
516 len, PCI_DMA_TODEVICE);
517 pci_unmap_addr_set(&out_cmd->meta, mapping, phys_addr);
518 pci_unmap_len_set(&out_cmd->meta, len, len);
519 phys_addr += offsetof(struct iwl_cmd, hdr);
520
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800521 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700522
523 pad = U32_PAD(cmd->len);
Winkler, Tomasdbb66542008-12-22 11:31:14 +0800524 tfd->control_flags |= cpu_to_le32(TFD_CTL_PAD_SET(pad));
Zhu Yib481de92007-09-25 17:54:57 -0700525
526 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
527 "%d bytes at %d[%d]:%d\n",
528 get_cmd_string(out_cmd->hdr.cmd),
529 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800530 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700531
532 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800533
534 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800535 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800536 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700537
538 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
539 return ret ? ret : idx;
540}
541
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800542static int iwl3945_send_cmd_async(struct iwl_priv *priv,
543 struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700544{
545 int ret;
546
547 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
548
549 /* An asynchronous command can not expect an SKB to be set. */
550 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
551
552 /* An asynchronous command MUST have a callback. */
553 BUG_ON(!cmd->meta.u.callback);
554
555 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
556 return -EBUSY;
557
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800558 ret = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700559 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800560 IWL_ERR(priv,
561 "Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
562 get_cmd_string(cmd->id), ret);
Zhu Yib481de92007-09-25 17:54:57 -0700563 return ret;
564 }
565 return 0;
566}
567
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800568static int iwl3945_send_cmd_sync(struct iwl_priv *priv,
569 struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700570{
571 int cmd_idx;
572 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700573
574 BUG_ON(cmd->meta.flags & CMD_ASYNC);
575
576 /* A synchronous command can not have a callback set. */
577 BUG_ON(cmd->meta.u.callback != NULL);
578
Tomas Winklere5472972008-03-28 16:21:12 -0700579 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800580 IWL_ERR(priv,
581 "Error sending %s: Already sending a host command\n",
582 get_cmd_string(cmd->id));
Tomas Winklere5472972008-03-28 16:21:12 -0700583 ret = -EBUSY;
584 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700585 }
586
587 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
588
589 if (cmd->meta.flags & CMD_WANT_SKB)
590 cmd->meta.source = &cmd->meta;
591
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800592 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700593 if (cmd_idx < 0) {
594 ret = cmd_idx;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800595 IWL_ERR(priv,
596 "Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
597 get_cmd_string(cmd->id), ret);
Zhu Yib481de92007-09-25 17:54:57 -0700598 goto out;
599 }
600
601 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
602 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
603 HOST_COMPLETE_TIMEOUT);
604 if (!ret) {
605 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800606 IWL_ERR(priv, "Error sending %s: time out after %dms\n",
Zhu Yib481de92007-09-25 17:54:57 -0700607 get_cmd_string(cmd->id),
608 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
609
610 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
611 ret = -ETIMEDOUT;
612 goto cancel;
613 }
614 }
615
616 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
617 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
618 get_cmd_string(cmd->id));
619 ret = -ECANCELED;
620 goto fail;
621 }
622 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
623 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
624 get_cmd_string(cmd->id));
625 ret = -EIO;
626 goto fail;
627 }
628 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800629 IWL_ERR(priv, "Error: Response NULL in '%s'\n",
Zhu Yib481de92007-09-25 17:54:57 -0700630 get_cmd_string(cmd->id));
631 ret = -EIO;
Zhu Yi73e1a652009-01-08 10:19:58 -0800632 goto cancel;
Zhu Yib481de92007-09-25 17:54:57 -0700633 }
634
635 ret = 0;
636 goto out;
637
638cancel:
639 if (cmd->meta.flags & CMD_WANT_SKB) {
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800640 struct iwl_cmd *qcmd;
Zhu Yib481de92007-09-25 17:54:57 -0700641
642 /* Cancel the CMD_WANT_SKB flag for the cmd in the
643 * TX cmd queue. Otherwise in case the cmd comes
644 * in later, it will possibly set an invalid
645 * address (cmd->meta.source). */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800646 qcmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
Zhu Yib481de92007-09-25 17:54:57 -0700647 qcmd->meta.flags &= ~CMD_WANT_SKB;
648 }
649fail:
650 if (cmd->meta.u.skb) {
651 dev_kfree_skb_any(cmd->meta.u.skb);
652 cmd->meta.u.skb = NULL;
653 }
654out:
Tomas Winklere5472972008-03-28 16:21:12 -0700655 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -0700656 return ret;
657}
658
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800659int iwl3945_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700660{
Zhu Yib481de92007-09-25 17:54:57 -0700661 if (cmd->meta.flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800662 return iwl3945_send_cmd_async(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800664 return iwl3945_send_cmd_sync(priv, cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700665}
666
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800667int iwl3945_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
Zhu Yib481de92007-09-25 17:54:57 -0700668{
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800669 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700670 .id = id,
671 .len = len,
672 .data = data,
673 };
674
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800675 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700676}
677
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800678static int __must_check iwl3945_send_cmd_u32(struct iwl_priv *priv, u8 id, u32 val)
Zhu Yib481de92007-09-25 17:54:57 -0700679{
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800680 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700681 .id = id,
682 .len = sizeof(val),
683 .data = &val,
684 };
685
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800686 return iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700687}
688
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800689int iwl3945_send_statistics_request(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700690{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800691 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700692}
693
694/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800695 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
Johannes Berg8318d782008-01-24 19:38:38 +0100696 * @band: 2.4 or 5 GHz band
697 * @channel: Any channel valid for the requested band
Zhu Yib481de92007-09-25 17:54:57 -0700698
Johannes Berg8318d782008-01-24 19:38:38 +0100699 * In addition to setting the staging RXON, priv->band is also set.
Zhu Yib481de92007-09-25 17:54:57 -0700700 *
701 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Johannes Berg8318d782008-01-24 19:38:38 +0100702 * in the staging RXON flag structure based on the band
Zhu Yib481de92007-09-25 17:54:57 -0700703 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800704static int iwl3945_set_rxon_channel(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +0100705 enum ieee80211_band band,
706 u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -0700707{
Johannes Berg8318d782008-01-24 19:38:38 +0100708 if (!iwl3945_get_channel_info(priv, band, channel)) {
Zhu Yib481de92007-09-25 17:54:57 -0700709 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
Johannes Berg8318d782008-01-24 19:38:38 +0100710 channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700711 return -EINVAL;
712 }
713
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800714 if ((le16_to_cpu(priv->staging39_rxon.channel) == channel) &&
Johannes Berg8318d782008-01-24 19:38:38 +0100715 (priv->band == band))
Zhu Yib481de92007-09-25 17:54:57 -0700716 return 0;
717
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800718 priv->staging39_rxon.channel = cpu_to_le16(channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100719 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800720 priv->staging39_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700721 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800722 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700723
Johannes Berg8318d782008-01-24 19:38:38 +0100724 priv->band = band;
Zhu Yib481de92007-09-25 17:54:57 -0700725
Johannes Berg8318d782008-01-24 19:38:38 +0100726 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
Zhu Yib481de92007-09-25 17:54:57 -0700727
728 return 0;
729}
730
731/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800732 * iwl3945_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700733 *
734 * NOTE: This is really only useful during development and can eventually
735 * be #ifdef'd out once the driver is stable and folks aren't actively
736 * making changes
737 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800738static int iwl3945_check_rxon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700739{
740 int error = 0;
741 int counter = 1;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800742 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700743
744 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
745 error |= le32_to_cpu(rxon->flags &
746 (RXON_FLG_TGJ_NARROW_BAND_MSK |
747 RXON_FLG_RADAR_DETECT_MSK));
748 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800749 IWL_WARN(priv, "check 24G fields %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700750 counter++, error);
751 } else {
752 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
753 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
754 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800755 IWL_WARN(priv, "check 52 fields %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700756 counter++, error);
757 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
758 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800759 IWL_WARN(priv, "check 52 CCK %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700760 counter++, error);
761 }
762 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
763 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800764 IWL_WARN(priv, "check mac addr %d | %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700765
766 /* make sure basic rates 6Mbps and 1Mbps are supported */
767 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
768 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
769 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800770 IWL_WARN(priv, "check basic rate %d | %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700771
772 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
773 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800774 IWL_WARN(priv, "check assoc id %d | %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700775
776 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
777 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
778 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800779 IWL_WARN(priv, "check CCK and short slot %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700780 counter++, error);
781
782 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
783 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
784 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800785 IWL_WARN(priv, "check CCK & auto detect %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700786 counter++, error);
787
788 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
789 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
790 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800791 IWL_WARN(priv, "check TGG and auto detect %d | %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700792 counter++, error);
793
794 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
795 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
796 RXON_FLG_ANT_A_MSK)) == 0);
797 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800798 IWL_WARN(priv, "check antenna %d %d\n", counter++, error);
Zhu Yib481de92007-09-25 17:54:57 -0700799
800 if (error)
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800801 IWL_WARN(priv, "Tuning to channel %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700802 le16_to_cpu(rxon->channel));
803
804 if (error) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800805 IWL_ERR(priv, "Not a valid rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700806 return -1;
807 }
808 return 0;
809}
810
811/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800812 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800813 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700814 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800815 * If the RXON structure is changing enough to require a new tune,
816 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
817 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700818 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800819static int iwl3945_full_rxon_required(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700820{
821
822 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800823 if (!(iwl3945_is_associated(priv)) ||
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800824 compare_ether_addr(priv->staging39_rxon.bssid_addr,
825 priv->active39_rxon.bssid_addr) ||
826 compare_ether_addr(priv->staging39_rxon.node_addr,
827 priv->active39_rxon.node_addr) ||
828 compare_ether_addr(priv->staging39_rxon.wlap_bssid_addr,
829 priv->active39_rxon.wlap_bssid_addr) ||
830 (priv->staging39_rxon.dev_type != priv->active39_rxon.dev_type) ||
831 (priv->staging39_rxon.channel != priv->active39_rxon.channel) ||
832 (priv->staging39_rxon.air_propagation !=
833 priv->active39_rxon.air_propagation) ||
834 (priv->staging39_rxon.assoc_id != priv->active39_rxon.assoc_id))
Zhu Yib481de92007-09-25 17:54:57 -0700835 return 1;
836
837 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
838 * be updated with the RXON_ASSOC command -- however only some
839 * flag transitions are allowed using RXON_ASSOC */
840
841 /* Check if we are not switching bands */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800842 if ((priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
843 (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK))
Zhu Yib481de92007-09-25 17:54:57 -0700844 return 1;
845
846 /* Check if we are switching association toggle */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800847 if ((priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
848 (priv->active39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
Zhu Yib481de92007-09-25 17:54:57 -0700849 return 1;
850
851 return 0;
852}
853
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800854static int iwl3945_send_rxon_assoc(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700855{
856 int rc = 0;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800857 struct iwl_rx_packet *res = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800858 struct iwl3945_rxon_assoc_cmd rxon_assoc;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +0800859 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700860 .id = REPLY_RXON_ASSOC,
861 .len = sizeof(rxon_assoc),
862 .meta.flags = CMD_WANT_SKB,
863 .data = &rxon_assoc,
864 };
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800865 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging39_rxon;
866 const struct iwl3945_rxon_cmd *rxon2 = &priv->active39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700867
868 if ((rxon1->flags == rxon2->flags) &&
869 (rxon1->filter_flags == rxon2->filter_flags) &&
870 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
871 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
872 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
873 return 0;
874 }
875
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800876 rxon_assoc.flags = priv->staging39_rxon.flags;
877 rxon_assoc.filter_flags = priv->staging39_rxon.filter_flags;
878 rxon_assoc.ofdm_basic_rates = priv->staging39_rxon.ofdm_basic_rates;
879 rxon_assoc.cck_basic_rates = priv->staging39_rxon.cck_basic_rates;
Zhu Yib481de92007-09-25 17:54:57 -0700880 rxon_assoc.reserved = 0;
881
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800882 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700883 if (rc)
884 return rc;
885
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800886 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700887 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800888 IWL_ERR(priv, "Bad return from REPLY_RXON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700889 rc = -EIO;
890 }
891
892 priv->alloc_rxb_skb--;
893 dev_kfree_skb_any(cmd.meta.u.skb);
894
895 return rc;
896}
897
898/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800899 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700900 *
Ian Schram01ebd062007-10-25 17:15:22 +0800901 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700902 * the active_rxon structure is updated with the new data. This
903 * function correctly transitions out of the RXON_ASSOC_MSK state if
904 * a HW tune is required based on the RXON structure changes.
905 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800906static int iwl3945_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700907{
908 /* cast away the const for active_rxon in this function */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800909 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700910 int rc = 0;
911
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800912 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700913 return -1;
914
915 /* always get timestamp with Rx frame */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800916 priv->staging39_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700917
918 /* select antenna */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800919 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -0700920 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800921 priv->staging39_rxon.flags |= iwl3945_get_antenna_flags(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700922
Samuel Ortiza3139c52008-12-19 10:37:09 +0800923 rc = iwl3945_check_rxon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700924 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800925 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700926 return -EINVAL;
927 }
928
929 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800930 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700931 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800932 if (!iwl3945_full_rxon_required(priv)) {
933 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700934 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800935 IWL_ERR(priv, "Error setting RXON_ASSOC "
Zhu Yib481de92007-09-25 17:54:57 -0700936 "configuration (%d).\n", rc);
937 return rc;
938 }
939
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800940 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700941
942 return 0;
943 }
944
945 /* If we are currently associated and the new config requires
946 * an RXON_ASSOC and the new config wants the associated mask enabled,
947 * we must clear the associated from the active configuration
948 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800949 if (iwl3945_is_associated(priv) &&
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800950 (priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700951 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
952 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
953
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800954 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
955 sizeof(struct iwl3945_rxon_cmd),
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800956 &priv->active39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700957
958 /* If the mask clearing failed then we set
959 * active_rxon back to what it was previously */
960 if (rc) {
961 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800962 IWL_ERR(priv, "Error clearing ASSOC_MSK on current "
Zhu Yib481de92007-09-25 17:54:57 -0700963 "configuration (%d).\n", rc);
964 return rc;
965 }
Zhu Yib481de92007-09-25 17:54:57 -0700966 }
967
968 IWL_DEBUG_INFO("Sending RXON\n"
969 "* with%s RXON_FILTER_ASSOC_MSK\n"
970 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700971 "* bssid = %pM\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800972 ((priv->staging39_rxon.filter_flags &
Zhu Yib481de92007-09-25 17:54:57 -0700973 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800974 le16_to_cpu(priv->staging39_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700975 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700976
977 /* Apply the new configuration */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800978 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800979 sizeof(struct iwl3945_rxon_cmd), &priv->staging39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700980 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800981 IWL_ERR(priv, "Error setting new configuration (%d).\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -0700982 return rc;
983 }
984
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800985 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700986
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800987 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800988
Zhu Yib481de92007-09-25 17:54:57 -0700989 /* If we issue a new RXON command which required a tune then we must
990 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800991 rc = iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700992 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800993 IWL_ERR(priv, "Error setting Tx power (%d).\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -0700994 return rc;
995 }
996
997 /* Add the broadcast address so we can send broadcast frames */
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +0800998 if (iwl3945_add_station(priv, iwl_bcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -0700999 IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001000 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001001 return -EIO;
1002 }
1003
1004 /* If we have set the ASSOC_MSK and we are in BSS mode then
1005 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001006 if (iwl3945_is_associated(priv) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001007 (priv->iw_mode == NL80211_IFTYPE_STATION))
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001008 if (iwl3945_add_station(priv, priv->active39_rxon.bssid_addr, 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -07001009 == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001010 IWL_ERR(priv, "Error adding AP address for transmit\n");
Zhu Yib481de92007-09-25 17:54:57 -07001011 return -EIO;
1012 }
1013
Johannes Berg8318d782008-01-24 19:38:38 +01001014 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -07001015 rc = iwl3945_init_hw_rate_table(priv);
1016 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001017 IWL_ERR(priv, "Error setting HW rate table: %02X\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07001018 return -EIO;
1019 }
1020
1021 return 0;
1022}
1023
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001024static int iwl3945_send_bt_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001025{
Tomas Winkler4c897252008-12-19 10:37:05 +08001026 struct iwl_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001027 .flags = 3,
1028 .lead_time = 0xAA,
1029 .max_kill = 1,
1030 .kill_ack_mask = 0,
1031 .kill_cts_mask = 0,
1032 };
1033
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001034 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Tomas Winkler4c897252008-12-19 10:37:05 +08001035 sizeof(bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001036}
1037
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001038static int iwl3945_send_scan_abort(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001039{
1040 int rc = 0;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001041 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08001042 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001043 .id = REPLY_SCAN_ABORT_CMD,
1044 .meta.flags = CMD_WANT_SKB,
1045 };
1046
1047 /* If there isn't a scan actively going on in the hardware
1048 * then we are in between scan bands and not actually
1049 * actively scanning, so don't send the abort command */
1050 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1051 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1052 return 0;
1053 }
1054
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001055 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001056 if (rc) {
1057 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1058 return rc;
1059 }
1060
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001061 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001062 if (res->u.status != CAN_ABORT_STATUS) {
1063 /* The scan abort will return 1 for success or
1064 * 2 for "failure". A failure condition can be
1065 * due to simply not being in an active scan which
1066 * can occur if we send the scan abort before we
1067 * the microcode has notified us that a scan is
1068 * completed. */
1069 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1070 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1071 clear_bit(STATUS_SCAN_HW, &priv->status);
1072 }
1073
1074 dev_kfree_skb_any(cmd.meta.u.skb);
1075
1076 return rc;
1077}
1078
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001079static int iwl3945_add_sta_sync_callback(struct iwl_priv *priv,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08001080 struct iwl_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001081{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001082 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001083
1084 if (!skb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001085 IWL_ERR(priv, "Error: Response NULL in REPLY_ADD_STA.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001086 return 1;
1087 }
1088
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001089 res = (struct iwl_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001090 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001091 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
Zhu Yib481de92007-09-25 17:54:57 -07001092 res->hdr.flags);
1093 return 1;
1094 }
1095
1096 switch (res->u.add_sta.status) {
1097 case ADD_STA_SUCCESS_MSK:
1098 break;
1099 default:
1100 break;
1101 }
1102
1103 /* We didn't cache the SKB; let the caller free it */
1104 return 1;
1105}
1106
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001107int iwl3945_send_add_station(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001108 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001109{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001110 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001111 int rc = 0;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08001112 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001113 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001114 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001115 .meta.flags = flags,
1116 .data = sta,
1117 };
1118
1119 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001120 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001121 else
1122 cmd.meta.flags |= CMD_WANT_SKB;
1123
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001124 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001125
1126 if (rc || (flags & CMD_ASYNC))
1127 return rc;
1128
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001129 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001130 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001131 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
Zhu Yib481de92007-09-25 17:54:57 -07001132 res->hdr.flags);
1133 rc = -EIO;
1134 }
1135
1136 if (rc == 0) {
1137 switch (res->u.add_sta.status) {
1138 case ADD_STA_SUCCESS_MSK:
1139 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1140 break;
1141 default:
1142 rc = -EIO;
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001143 IWL_WARN(priv, "REPLY_ADD_STA failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001144 break;
1145 }
1146 }
1147
1148 priv->alloc_rxb_skb--;
1149 dev_kfree_skb_any(cmd.meta.u.skb);
1150
1151 return rc;
1152}
1153
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001154static int iwl3945_update_sta_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001155 struct ieee80211_key_conf *keyconf,
1156 u8 sta_id)
1157{
1158 unsigned long flags;
1159 __le16 key_flags = 0;
1160
1161 switch (keyconf->alg) {
1162 case ALG_CCMP:
1163 key_flags |= STA_KEY_FLG_CCMP;
1164 key_flags |= cpu_to_le16(
1165 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1166 key_flags &= ~STA_KEY_FLG_INVALID;
1167 break;
1168 case ALG_TKIP:
1169 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001170 default:
1171 return -EINVAL;
1172 }
1173 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001174 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
1175 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
1176 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -07001177 keyconf->keylen);
1178
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001179 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -07001180 keyconf->keylen);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001181 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
1182 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1183 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001184
1185 spin_unlock_irqrestore(&priv->sta_lock, flags);
1186
1187 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001188 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001189 return 0;
1190}
1191
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001192static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001193{
1194 unsigned long flags;
1195
1196 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001197 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1198 memset(&priv->stations_39[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +08001199 sizeof(struct iwl4965_keyinfo));
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001200 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1201 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1202 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001203 spin_unlock_irqrestore(&priv->sta_lock, flags);
1204
1205 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001206 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001207 return 0;
1208}
1209
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001210static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001211{
1212 struct list_head *element;
1213
1214 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1215 priv->frames_count);
1216
1217 while (!list_empty(&priv->free_frames)) {
1218 element = priv->free_frames.next;
1219 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001220 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001221 priv->frames_count--;
1222 }
1223
1224 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001225 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -07001226 priv->frames_count);
1227 priv->frames_count = 0;
1228 }
1229}
1230
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001231static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001232{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001233 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001234 struct list_head *element;
1235 if (list_empty(&priv->free_frames)) {
1236 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1237 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001238 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -07001239 return NULL;
1240 }
1241
1242 priv->frames_count++;
1243 return frame;
1244 }
1245
1246 element = priv->free_frames.next;
1247 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001248 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001249}
1250
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001251static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001252{
1253 memset(frame, 0, sizeof(*frame));
1254 list_add(&frame->list, &priv->free_frames);
1255}
1256
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001257unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001258 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +02001259 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001260{
1261
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001262 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001263 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1264 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001265 return 0;
1266
1267 if (priv->ibss_beacon->len > left)
1268 return 0;
1269
1270 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1271
1272 return priv->ibss_beacon->len;
1273}
1274
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001275static u8 iwl3945_rate_get_lowest_plcp(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001276{
1277 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001278 int rate_mask;
1279
1280 /* Set rate mask*/
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001281 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001282 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001283 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001284 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001285
1286 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001287 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001288 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001289 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001290 }
1291
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001292 /* No valid rate was found. Assign the lowest one */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001293 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001294 return IWL_RATE_1M_PLCP;
1295 else
1296 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001297}
1298
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001299static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001300{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001301 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001302 unsigned int frame_size;
1303 int rc;
1304 u8 rate;
1305
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001306 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001307
1308 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001309 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -07001310 "command.\n");
1311 return -ENOMEM;
1312 }
1313
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001314 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001315
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001316 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001317
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001318 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001319 &frame->u.cmd[0]);
1320
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001321 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001322
1323 return rc;
1324}
1325
1326/******************************************************************************
1327 *
1328 * EEPROM related functions
1329 *
1330 ******************************************************************************/
1331
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001332static void get_eeprom_mac(struct iwl_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001333{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001334 memcpy(mac, priv->eeprom39.mac_address, 6);
Zhu Yib481de92007-09-25 17:54:57 -07001335}
1336
Reinette Chatre74a3a252008-01-23 10:15:19 -08001337/*
1338 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1339 * embedded controller) as EEPROM reader; each read is a series of pulses
1340 * to/from the EEPROM chip, not a single event, so even reads could conflict
1341 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1342 * simply claims ownership, which should be safe when this function is called
1343 * (i.e. before loading uCode!).
1344 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001345static inline int iwl3945_eeprom_acquire_semaphore(struct iwl_priv *priv)
Reinette Chatre74a3a252008-01-23 10:15:19 -08001346{
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001347 _iwl_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
Reinette Chatre74a3a252008-01-23 10:15:19 -08001348 return 0;
1349}
1350
Zhu Yib481de92007-09-25 17:54:57 -07001351/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001352 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001353 *
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001354 * Load the EEPROM contents from adapter into priv->eeprom39
Zhu Yib481de92007-09-25 17:54:57 -07001355 *
1356 * NOTE: This routine uses the non-debug IO access functions.
1357 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001358int iwl3945_eeprom_init(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001359{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001360 u16 *e = (u16 *)&priv->eeprom39;
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001361 u32 gp = iwl_read32(priv, CSR_EEPROM_GP);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001362 int sz = sizeof(priv->eeprom39);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001363 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001364 u16 addr;
1365
1366 /* The EEPROM structure has several padding buffers within it
1367 * and when adding new EEPROM maps is subject to programmer errors
1368 * which may be very difficult to identify without explicitly
1369 * checking the resulting size of the eeprom map. */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001370 BUILD_BUG_ON(sizeof(priv->eeprom39) != IWL_EEPROM_IMAGE_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07001371
1372 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001373 IWL_ERR(priv, "EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001374 return -ENOENT;
1375 }
1376
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001377 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001378 ret = iwl3945_eeprom_acquire_semaphore(priv);
1379 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001380 IWL_ERR(priv, "Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001381 return -ENOENT;
1382 }
1383
1384 /* eeprom is an array of 16bit values */
1385 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001386 u32 r;
1387
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001388 _iwl_write32(priv, CSR_EEPROM_REG,
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001389 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001390 _iwl_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
1391 ret = iwl_poll_direct_bit(priv, CSR_EEPROM_REG,
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001392 CSR_EEPROM_REG_READ_VALID_MSK,
1393 IWL_EEPROM_ACCESS_TIMEOUT);
1394 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001395 IWL_ERR(priv, "Time out reading EEPROM[%d]\n", addr);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001396 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001397 }
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001398
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001399 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001400 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001401 }
1402
1403 return 0;
1404}
1405
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001406static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001407{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08001408 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -07001409 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001410 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08001411 priv->shared_virt,
1412 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -07001413}
1414
1415/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001416 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001417 *
1418 * return : set the bit for each supported rate insert in ie
1419 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001420static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001421 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001422{
1423 u16 ret_rates = 0, bit;
1424 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001425 u8 *cnt = ie;
1426 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001427
1428 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1429 if (bit & supported_rate) {
1430 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001431 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001432 ((bit & basic_rate) ? 0x80 : 0x00);
1433 (*cnt)++;
1434 (*left)--;
1435 if ((*left <= 0) ||
1436 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001437 break;
1438 }
1439 }
1440
1441 return ret_rates;
1442}
1443
1444/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001445 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001446 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001447static u16 iwl3945_fill_probe_req(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001448 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001449 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001450{
1451 int len = 0;
1452 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001453 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001454
1455 /* Make sure there is enough space for the probe request,
1456 * two mandatory IEs and the data */
1457 left -= 24;
1458 if (left < 0)
1459 return 0;
1460 len += 24;
1461
1462 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08001463 memcpy(frame->da, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001464 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08001465 memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001466 frame->seq_ctrl = 0;
1467
1468 /* fill in our indirect SSID IE */
1469 /* ...next IE... */
1470
1471 left -= 2;
1472 if (left < 0)
1473 return 0;
1474 len += 2;
1475 pos = &(frame->u.probe_req.variable[0]);
1476 *pos++ = WLAN_EID_SSID;
1477 *pos++ = 0;
1478
Zhu Yib481de92007-09-25 17:54:57 -07001479 /* fill in supported rate */
1480 /* ...next IE... */
1481 left -= 2;
1482 if (left < 0)
1483 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001484
Zhu Yib481de92007-09-25 17:54:57 -07001485 /* ... fill it in... */
1486 *pos++ = WLAN_EID_SUPP_RATES;
1487 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001488
1489 priv->active_rate = priv->rates_mask;
1490 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001491 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1492
Tomas Winklerc7c46672007-10-18 02:04:15 +02001493 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001494 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001495 priv->active_rate_basic, &left);
1496 active_rates &= ~ret_rates;
1497
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001498 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001499 priv->active_rate_basic, &left);
1500 active_rates &= ~ret_rates;
1501
Zhu Yib481de92007-09-25 17:54:57 -07001502 len += 2 + *pos;
1503 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001504 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001505 goto fill_end;
1506
1507 /* fill in supported extended rate */
1508 /* ...next IE... */
1509 left -= 2;
1510 if (left < 0)
1511 return 0;
1512 /* ... fill it in... */
1513 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1514 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001515 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001516 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001517 if (*pos > 0)
1518 len += 2 + *pos;
1519
1520 fill_end:
1521 return (u16)len;
1522}
1523
1524/*
1525 * QoS support
1526*/
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001527static int iwl3945_send_qos_params_command(struct iwl_priv *priv,
Tomas Winkler4c897252008-12-19 10:37:05 +08001528 struct iwl_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001529{
1530
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001531 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Tomas Winkler4c897252008-12-19 10:37:05 +08001532 sizeof(struct iwl_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001533}
1534
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001535static void iwl3945_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001536{
1537 unsigned long flags;
1538
Zhu Yib481de92007-09-25 17:54:57 -07001539 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1540 return;
1541
Zhu Yib481de92007-09-25 17:54:57 -07001542 spin_lock_irqsave(&priv->lock, flags);
1543 priv->qos_data.def_qos_parm.qos_flags = 0;
1544
1545 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1546 !priv->qos_data.qos_cap.q_AP.txop_request)
1547 priv->qos_data.def_qos_parm.qos_flags |=
1548 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1549
1550 if (priv->qos_data.qos_active)
1551 priv->qos_data.def_qos_parm.qos_flags |=
1552 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1553
1554 spin_unlock_irqrestore(&priv->lock, flags);
1555
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001556 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001557 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001558 priv->qos_data.qos_active);
1559
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001560 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001561 &(priv->qos_data.def_qos_parm));
1562 }
1563}
1564
Zhu Yib481de92007-09-25 17:54:57 -07001565/*
1566 * Power management (not Tx power!) functions
1567 */
1568#define MSEC_TO_USEC 1024
1569
Tomas Winkler600c0e12008-12-19 10:37:04 +08001570
1571#define NOSLP __constant_cpu_to_le16(0), 0, 0
1572#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -07001573#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1574#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1575 __constant_cpu_to_le32(X1), \
1576 __constant_cpu_to_le32(X2), \
1577 __constant_cpu_to_le32(X3), \
1578 __constant_cpu_to_le32(X4)}
1579
Zhu Yib481de92007-09-25 17:54:57 -07001580/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001581/* for TIM 0-10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001582static struct iwl_power_vec_entry range_0[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001583 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1584 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1585 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1586 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1587 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1588 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1589};
1590
Tomas Winklera96a27f2008-10-23 23:48:56 -07001591/* for TIM > 10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001592static struct iwl_power_vec_entry range_1[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001593 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1594 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1595 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1596 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1597 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1598 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1599 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1600 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1601 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1602 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1603};
1604
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001605int iwl3945_power_init_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001606{
1607 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001608 struct iwl3945_power_mgr *pow_data;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001609 int size = sizeof(struct iwl_power_vec_entry) * IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001610 u16 pci_pm;
1611
1612 IWL_DEBUG_POWER("Initialize power \n");
1613
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001614 pow_data = &(priv->power_data_39);
Zhu Yib481de92007-09-25 17:54:57 -07001615
1616 memset(pow_data, 0, sizeof(*pow_data));
1617
1618 pow_data->active_index = IWL_POWER_RANGE_0;
1619 pow_data->dtim_val = 0xffff;
1620
1621 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1622 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1623
1624 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1625 if (rc != 0)
1626 return 0;
1627 else {
Tomas Winkler600c0e12008-12-19 10:37:04 +08001628 struct iwl_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001629
1630 IWL_DEBUG_POWER("adjust power command flags\n");
1631
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001632 for (i = 0; i < IWL39_POWER_AC; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07001633 cmd = &pow_data->pwr_range_0[i].cmd;
1634
1635 if (pci_pm & 0x1)
1636 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1637 else
1638 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1639 }
1640 }
1641 return rc;
1642}
1643
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001644static int iwl3945_update_power_cmd(struct iwl_priv *priv,
Tomas Winkler600c0e12008-12-19 10:37:04 +08001645 struct iwl_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001646{
1647 int rc = 0, i;
1648 u8 skip;
1649 u32 max_sleep = 0;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001650 struct iwl_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001651 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001652 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001653
1654 if (mode > IWL_POWER_INDEX_5) {
1655 IWL_DEBUG_POWER("Error invalid power mode \n");
1656 return -1;
1657 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001658 pow_data = &(priv->power_data_39);
Zhu Yib481de92007-09-25 17:54:57 -07001659
1660 if (pow_data->active_index == IWL_POWER_RANGE_0)
1661 range = &pow_data->pwr_range_0[0];
1662 else
1663 range = &pow_data->pwr_range_1[1];
1664
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001665 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001666
1667#ifdef IWL_MAC80211_DISABLE
1668 if (priv->assoc_network != NULL) {
1669 unsigned long flags;
1670
1671 period = priv->assoc_network->tim.tim_period;
1672 }
1673#endif /*IWL_MAC80211_DISABLE */
1674 skip = range[mode].no_dtim;
1675
1676 if (period == 0) {
1677 period = 1;
1678 skip = 0;
1679 }
1680
1681 if (skip == 0) {
1682 max_sleep = period;
1683 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1684 } else {
1685 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1686 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1687 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1688 }
1689
1690 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1691 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1692 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1693 }
1694
1695 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1696 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1697 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1698 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1699 le32_to_cpu(cmd->sleep_interval[0]),
1700 le32_to_cpu(cmd->sleep_interval[1]),
1701 le32_to_cpu(cmd->sleep_interval[2]),
1702 le32_to_cpu(cmd->sleep_interval[3]),
1703 le32_to_cpu(cmd->sleep_interval[4]));
1704
1705 return rc;
1706}
1707
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001708static int iwl3945_send_power_mode(struct iwl_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001709{
John W. Linville9a62f732007-11-15 16:27:36 -05001710 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001711 int rc;
Tomas Winkler600c0e12008-12-19 10:37:04 +08001712 struct iwl_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001713
1714 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001715 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001716 * else user level */
1717 switch (mode) {
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001718 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07001719 final_mode = IWL_POWER_INDEX_3;
1720 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001721 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07001722 final_mode = IWL_POWER_MODE_CAM;
1723 break;
1724 default:
1725 final_mode = mode;
1726 break;
1727 }
1728
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001729 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001730
Tomas Winkler600c0e12008-12-19 10:37:04 +08001731 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
1732 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD,
1733 sizeof(struct iwl3945_powertable_cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001734
1735 if (final_mode == IWL_POWER_MODE_CAM)
1736 clear_bit(STATUS_POWER_PMI, &priv->status);
1737 else
1738 set_bit(STATUS_POWER_PMI, &priv->status);
1739
1740 return rc;
1741}
1742
Zhu Yib481de92007-09-25 17:54:57 -07001743/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001744 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001745 *
1746 * NOTE: priv->mutex is not required before calling this function
1747 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001748static int iwl3945_scan_cancel(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001749{
1750 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1751 clear_bit(STATUS_SCANNING, &priv->status);
1752 return 0;
1753 }
1754
1755 if (test_bit(STATUS_SCANNING, &priv->status)) {
1756 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1757 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1758 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1759 queue_work(priv->workqueue, &priv->abort_scan);
1760
1761 } else
1762 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
1763
1764 return test_bit(STATUS_SCANNING, &priv->status);
1765 }
1766
1767 return 0;
1768}
1769
1770/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001771 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001772 * @ms: amount of time to wait (in milliseconds) for scan to abort
1773 *
1774 * NOTE: priv->mutex must be held before calling this function
1775 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001776static int iwl3945_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07001777{
1778 unsigned long now = jiffies;
1779 int ret;
1780
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001781 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001782 if (ret && ms) {
1783 mutex_unlock(&priv->mutex);
1784 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
1785 test_bit(STATUS_SCANNING, &priv->status))
1786 msleep(1);
1787 mutex_lock(&priv->mutex);
1788
1789 return test_bit(STATUS_SCANNING, &priv->status);
1790 }
1791
1792 return ret;
1793}
1794
Zhu Yib481de92007-09-25 17:54:57 -07001795#define MAX_UCODE_BEACON_INTERVAL 1024
1796#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
1797
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001798static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07001799{
1800 u16 new_val = 0;
1801 u16 beacon_factor = 0;
1802
1803 beacon_factor =
1804 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
1805 / MAX_UCODE_BEACON_INTERVAL;
1806 new_val = beacon_val / beacon_factor;
1807
1808 return cpu_to_le16(new_val);
1809}
1810
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001811static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001812{
1813 u64 interval_tm_unit;
1814 u64 tsf, result;
1815 unsigned long flags;
1816 struct ieee80211_conf *conf = NULL;
1817 u16 beacon_int = 0;
1818
1819 conf = ieee80211_get_hw_conf(priv->hw);
1820
1821 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler28afaf92008-12-19 10:37:06 +08001822 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07001823 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1824
Tomas Winkler28afaf92008-12-19 10:37:06 +08001825 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07001826
1827 beacon_int = priv->beacon_int;
1828 spin_unlock_irqrestore(&priv->lock, flags);
1829
Johannes Berg05c914f2008-09-11 00:01:58 +02001830 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07001831 if (beacon_int == 0) {
1832 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1833 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1834 } else {
1835 priv->rxon_timing.beacon_interval =
1836 cpu_to_le16(beacon_int);
1837 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001838 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07001839 le16_to_cpu(priv->rxon_timing.beacon_interval));
1840 }
1841
1842 priv->rxon_timing.atim_window = 0;
1843 } else {
1844 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001845 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07001846 /* TODO: we need to get atim_window from upper stack
1847 * for now we set to 0 */
1848 priv->rxon_timing.atim_window = 0;
1849 }
1850
1851 interval_tm_unit =
1852 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1853 result = do_div(tsf, interval_tm_unit);
1854 priv->rxon_timing.beacon_init_val =
1855 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1856
1857 IWL_DEBUG_ASSOC
1858 ("beacon interval %d beacon timer %d beacon tim %d\n",
1859 le16_to_cpu(priv->rxon_timing.beacon_interval),
1860 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1861 le16_to_cpu(priv->rxon_timing.atim_window));
1862}
1863
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001864static int iwl3945_scan_initiate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001865{
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08001866 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001867 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1868 return -EIO;
1869 }
1870
1871 if (test_bit(STATUS_SCANNING, &priv->status)) {
1872 IWL_DEBUG_SCAN("Scan already in progress.\n");
1873 return -EAGAIN;
1874 }
1875
1876 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1877 IWL_DEBUG_SCAN("Scan request while abort pending. "
1878 "Queuing.\n");
1879 return -EAGAIN;
1880 }
1881
1882 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08001883 if (priv->cfg->sku & IWL_SKU_G)
1884 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
1885 if (priv->cfg->sku & IWL_SKU_A)
1886 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07001887 set_bit(STATUS_SCANNING, &priv->status);
1888 priv->scan_start = jiffies;
1889 priv->scan_pass_start = priv->scan_start;
1890
1891 queue_work(priv->workqueue, &priv->request_scan);
1892
1893 return 0;
1894}
1895
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001896static int iwl3945_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07001897{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001898 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001899
1900 if (hw_decrypt)
1901 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
1902 else
1903 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
1904
1905 return 0;
1906}
1907
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001908static void iwl3945_set_flags_for_phymode(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001909 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07001910{
Johannes Berg8318d782008-01-24 19:38:38 +01001911 if (band == IEEE80211_BAND_5GHZ) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001912 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07001913 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1914 | RXON_FLG_CCK_MSK);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001915 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001916 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001917 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07001918 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001919 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001920 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001921 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001922
Johannes Berg05c914f2008-09-11 00:01:58 +02001923 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001924 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001925
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001926 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1927 priv->staging39_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1928 priv->staging39_rxon.flags &= ~RXON_FLG_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001929 }
1930}
1931
1932/*
Ian Schram01ebd062007-10-25 17:15:22 +08001933 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001934 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001935static void iwl3945_connection_init_rx_config(struct iwl_priv *priv,
Zhu, Yi60294de2008-10-29 14:05:45 -07001936 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07001937{
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001938 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001939
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001940 memset(&priv->staging39_rxon, 0, sizeof(priv->staging39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07001941
Zhu, Yi60294de2008-10-29 14:05:45 -07001942 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001943 case NL80211_IFTYPE_AP:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001944 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_AP;
Zhu Yib481de92007-09-25 17:54:57 -07001945 break;
1946
Johannes Berg05c914f2008-09-11 00:01:58 +02001947 case NL80211_IFTYPE_STATION:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001948 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_ESS;
1949 priv->staging39_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001950 break;
1951
Johannes Berg05c914f2008-09-11 00:01:58 +02001952 case NL80211_IFTYPE_ADHOC:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001953 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1954 priv->staging39_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1955 priv->staging39_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
Zhu Yib481de92007-09-25 17:54:57 -07001956 RXON_FILTER_ACCEPT_GRP_MSK;
1957 break;
1958
Johannes Berg05c914f2008-09-11 00:01:58 +02001959 case NL80211_IFTYPE_MONITOR:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001960 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
1961 priv->staging39_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
Zhu Yib481de92007-09-25 17:54:57 -07001962 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
1963 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001964 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001965 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001966 break;
Zhu Yib481de92007-09-25 17:54:57 -07001967 }
1968
1969#if 0
1970 /* TODO: Figure out when short_preamble would be set and cache from
1971 * that */
1972 if (!hw_to_local(priv->hw)->short_preamble)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001973 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001974 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001975 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001976#endif
1977
Johannes Berg8318d782008-01-24 19:38:38 +01001978 ch_info = iwl3945_get_channel_info(priv, priv->band,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001979 le16_to_cpu(priv->active39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07001980
1981 if (!ch_info)
1982 ch_info = &priv->channel_info[0];
1983
1984 /*
1985 * in some case A channels are all non IBSS
1986 * in this case force B/G channel
1987 */
Zhu, Yi60294de2008-10-29 14:05:45 -07001988 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07001989 ch_info = &priv->channel_info[0];
1990
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001991 priv->staging39_rxon.channel = cpu_to_le16(ch_info->channel);
Zhu Yib481de92007-09-25 17:54:57 -07001992 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01001993 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07001994 else
Johannes Berg8318d782008-01-24 19:38:38 +01001995 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07001996
Johannes Berg8318d782008-01-24 19:38:38 +01001997 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07001998
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001999 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002000 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002001 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002002 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2003}
2004
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002005static int iwl3945_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002006{
Johannes Berg05c914f2008-09-11 00:01:58 +02002007 if (mode == NL80211_IFTYPE_ADHOC) {
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002008 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002009
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002010 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002011 priv->band,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002012 le16_to_cpu(priv->staging39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002013
2014 if (!ch_info || !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002015 IWL_ERR(priv, "channel %d not IBSS channel\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002016 le16_to_cpu(priv->staging39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002017 return -EINVAL;
2018 }
2019 }
2020
Zhu, Yi60294de2008-10-29 14:05:45 -07002021 iwl3945_connection_init_rx_config(priv, mode);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002022 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002023
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002024 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002025
Tomas Winklera96a27f2008-10-23 23:48:56 -07002026 /* don't commit rxon if rf-kill is on*/
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002027 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002028 return -EAGAIN;
2029
2030 cancel_delayed_work(&priv->scan_check);
2031 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002032 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002033 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2034 return -EAGAIN;
2035 }
2036
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002037 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002038
2039 return 0;
2040}
2041
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002042static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002043 struct ieee80211_tx_info *info,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002044 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002045 struct sk_buff *skb_frag,
2046 int last_frag)
2047{
Winkler, Tomase52119c2008-12-22 11:31:19 +08002048 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Ivo van Doorn1c014422008-04-17 19:41:02 +02002049 struct iwl3945_hw_key *keyinfo =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002050 &priv->stations_39[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002051
2052 switch (keyinfo->alg) {
2053 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +08002054 tx->sec_ctl = TX_CMD_SEC_CCM;
2055 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002056 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002057 break;
2058
2059 case ALG_TKIP:
2060#if 0
Winkler, Tomase52119c2008-12-22 11:31:19 +08002061 tx->sec_ctl = TX_CMD_SEC_TKIP;
Zhu Yib481de92007-09-25 17:54:57 -07002062
2063 if (last_frag)
Winkler, Tomase52119c2008-12-22 11:31:19 +08002064 memcpy(tx->tkip_mic.byte, skb_frag->tail - 8,
Zhu Yib481de92007-09-25 17:54:57 -07002065 8);
2066 else
Winkler, Tomase52119c2008-12-22 11:31:19 +08002067 memset(tx->tkip_mic.byte, 0, 8);
Zhu Yib481de92007-09-25 17:54:57 -07002068#endif
2069 break;
2070
2071 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +08002072 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002073 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002074
2075 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +08002076 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -07002077
Winkler, Tomase52119c2008-12-22 11:31:19 +08002078 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -07002079
2080 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002081 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002082 break;
2083
Zhu Yib481de92007-09-25 17:54:57 -07002084 default:
Tomas Winkler978785a2008-12-19 10:37:31 +08002085 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -07002086 break;
2087 }
2088}
2089
2090/*
2091 * handle build REPLY_TX command notification.
2092 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002093static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002094 struct iwl_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002095 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +08002096 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -07002097{
Winkler, Tomase52119c2008-12-22 11:31:19 +08002098 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
2099 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002100 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +02002101 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002102
Winkler, Tomase52119c2008-12-22 11:31:19 +08002103 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002104 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002105 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002106 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002107 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002108 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002109 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2110 tx_flags |= TX_CMD_FLG_TSF_MSK;
2111 } else {
2112 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2113 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2114 }
2115
Winkler, Tomase52119c2008-12-22 11:31:19 +08002116 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002117 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002118 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2119
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002120 if (ieee80211_is_data_qos(fc)) {
2121 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +08002122 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002123 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002124 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002125 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002126 }
Zhu Yib481de92007-09-25 17:54:57 -07002127
Johannes Berge6a98542008-10-21 12:40:02 +02002128 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002129 tx_flags |= TX_CMD_FLG_RTS_MSK;
2130 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002131 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002132 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2133 tx_flags |= TX_CMD_FLG_CTS_MSK;
2134 }
2135
2136 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2137 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2138
2139 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002140 if (ieee80211_is_mgmt(fc)) {
2141 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +08002142 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002143 else
Winkler, Tomase52119c2008-12-22 11:31:19 +08002144 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002145 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +08002146 tx->timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002147#ifdef CONFIG_IWL3945_LEDS
2148 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2149#endif
2150 }
Zhu Yib481de92007-09-25 17:54:57 -07002151
Winkler, Tomase52119c2008-12-22 11:31:19 +08002152 tx->driver_txop = 0;
2153 tx->tx_flags = tx_flags;
2154 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002155}
2156
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002157/**
2158 * iwl3945_get_sta_id - Find station's index within station table
2159 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002160static int iwl3945_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002161{
2162 int sta_id;
2163 u16 fc = le16_to_cpu(hdr->frame_control);
2164
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002165 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002166 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2167 is_multicast_ether_addr(hdr->addr1))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002168 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002169
2170 switch (priv->iw_mode) {
2171
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002172 /* If we are a client station in a BSS network, use the special
2173 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002174 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002175 return IWL_AP_ID;
2176
2177 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002178 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002179 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002180 if (sta_id != IWL_INVALID_STATION)
2181 return sta_id;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002182 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002183
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002184 /* If this frame is going out to an IBSS network, find the station,
2185 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002186 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002187 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002188 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002189 if (sta_id != IWL_INVALID_STATION)
2190 return sta_id;
2191
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002192 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002193
2194 if (sta_id != IWL_INVALID_STATION)
2195 return sta_id;
2196
Johannes Berge1749612008-10-27 15:59:26 -07002197 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002198 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002199 hdr->addr1);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002200 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002201 return priv->hw_params.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002202 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002203 /* If we are in monitor mode, use BCAST. This is required for
2204 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002205 case NL80211_IFTYPE_MONITOR:
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002206 return priv->hw_params.bcast_sta_id;
Stefanik Gábor914233d2008-06-30 17:23:30 +08002207
Zhu Yib481de92007-09-25 17:54:57 -07002208 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002209 IWL_WARN(priv, "Unknown mode of operation: %d\n",
2210 priv->iw_mode);
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002211 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002212 }
2213}
2214
2215/*
2216 * start REPLY_TX command process
2217 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002218static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002219{
2220 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002221 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002222 struct iwl3945_tfd *tfd;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002223 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002224 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002225 struct iwl_queue *q = NULL;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002226 struct iwl_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002227 dma_addr_t phys_addr;
2228 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002229 int txq_id = skb_get_queue_mapping(skb);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002230 u16 len, idx, len_org, hdr_len;
2231 u8 id;
2232 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002233 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002234 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002235 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002236 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002237 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002238 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002239 unsigned long flags;
2240 int rc;
2241
2242 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002243 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002244 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2245 goto drop_unlock;
2246 }
2247
Johannes Berge039fa42008-05-15 12:55:29 +02002248 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002249 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002250 goto drop_unlock;
2251 }
2252
2253 unicast = !is_multicast_ether_addr(hdr->addr1);
2254 id = 0;
2255
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002256 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002257
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002258#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002259 if (ieee80211_is_auth(fc))
2260 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002261 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002262 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002263 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002264 IWL_DEBUG_TX("Sending REASSOC frame\n");
2265#endif
2266
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002267 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002268 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002269 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002270 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002271 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002272 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002273 goto drop_unlock;
2274 }
2275
2276 spin_unlock_irqrestore(&priv->lock, flags);
2277
Harvey Harrison7294ec92008-07-15 18:43:59 -07002278 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002279
2280 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002281 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002282 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002283 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2284 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002285 goto drop;
2286 }
2287
2288 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2289
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002290 if (ieee80211_is_data_qos(fc)) {
2291 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002292 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002293 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -07002294 IEEE80211_SCTL_SEQ;
2295 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2296 (hdr->seq_ctrl &
2297 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2298 seq_number += 0x10;
2299 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002300
2301 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002302 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -07002303 q = &txq->q;
2304
2305 spin_lock_irqsave(&priv->lock, flags);
2306
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002307 /* Set up first empty TFD within this queue's circular TFD buffer */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002308 tfd = &txq->tfds39[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002309 memset(tfd, 0, sizeof(*tfd));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002310 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002311
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002312 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002313 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002314 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002315
2316 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002317 out_cmd = txq->cmd[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +08002318 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -07002319 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +08002320 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002321
2322 /*
2323 * Set up the Tx-command (not MAC!) header.
2324 * Store the chosen Tx queue and TFD index within the sequence field;
2325 * after Tx, uCode's Tx response will return this value so driver can
2326 * locate the frame within the tx queue and do post-tx processing.
2327 */
Zhu Yib481de92007-09-25 17:54:57 -07002328 out_cmd->hdr.cmd = REPLY_TX;
2329 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002330 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002331
2332 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +08002333 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -07002334
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002335 /*
2336 * Use the first empty entry in this queue's command buffer array
2337 * to contain the Tx command and MAC header concatenated together
2338 * (payload data will be in another buffer).
2339 * Size of this varies, due to varying MAC header length.
2340 * If end is not dword aligned, we'll have 2 extra bytes at the end
2341 * of the MAC header (device reads on dword boundaries).
2342 * We'll tell device about this padding later.
2343 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002344 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +08002345 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002346
2347 len_org = len;
2348 len = (len + 3) & ~3;
2349
2350 if (len_org != len)
2351 len_org = 1;
2352 else
2353 len_org = 0;
2354
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002355 /* Physical address of this Tx command's header (not MAC header!),
2356 * within command buffer array. */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002357 txcmd_phys = pci_map_single(priv->pci_dev,
2358 out_cmd, sizeof(struct iwl_cmd),
2359 PCI_DMA_TODEVICE);
2360 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
2361 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
2362 /* Add buffer containing Tx command and MAC(!) header to TFD's
2363 * first entry */
2364 txcmd_phys += offsetof(struct iwl_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002365
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002366 /* Add buffer containing Tx command and MAC(!) header to TFD's
2367 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002368 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002369
Johannes Bergd0f09802008-07-29 11:32:07 +02002370 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002371 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002372
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002373 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2374 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002375 len = skb->len - hdr_len;
2376 if (len) {
2377 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2378 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002379 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002380 }
2381
Zhu Yib481de92007-09-25 17:54:57 -07002382 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002383 /* If there is no payload, then we use only one Tx buffer */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002384 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(1));
Zhu Yib481de92007-09-25 17:54:57 -07002385 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002386 /* Else use 2 buffers.
2387 * Tell 3945 about any padding after MAC header */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002388 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(2) |
2389 TFD_CTL_PAD_SET(U32_PAD(len)));
Zhu Yib481de92007-09-25 17:54:57 -07002390
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002391 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002392 len = (u16)skb->len;
Winkler, Tomase52119c2008-12-22 11:31:19 +08002393 tx->len = cpu_to_le16(len);
Zhu Yib481de92007-09-25 17:54:57 -07002394
2395 /* TODO need this for burst mode later on */
Winkler, Tomase52119c2008-12-22 11:31:19 +08002396 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002397
2398 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002399 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002400
Winkler, Tomase52119c2008-12-22 11:31:19 +08002401 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2402 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002403
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002404 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002405 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002406 if (qc)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002407 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002408 } else {
2409 wait_write_ptr = 1;
2410 txq->need_update = 0;
2411 }
2412
Winkler, Tomase52119c2008-12-22 11:31:19 +08002413 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
Zhu Yib481de92007-09-25 17:54:57 -07002414
Winkler, Tomase52119c2008-12-22 11:31:19 +08002415 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002416 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002417
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002418 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002419 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002420 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002421 spin_unlock_irqrestore(&priv->lock, flags);
2422
2423 if (rc)
2424 return rc;
2425
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002426 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002427 && priv->mac80211_registered) {
2428 if (wait_write_ptr) {
2429 spin_lock_irqsave(&priv->lock, flags);
2430 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002431 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002432 spin_unlock_irqrestore(&priv->lock, flags);
2433 }
2434
Johannes Berge2530082008-05-17 00:57:14 +02002435 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002436 }
2437
2438 return 0;
2439
2440drop_unlock:
2441 spin_unlock_irqrestore(&priv->lock, flags);
2442drop:
2443 return -1;
2444}
2445
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002446static void iwl3945_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002447{
Johannes Berg8318d782008-01-24 19:38:38 +01002448 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002449 struct ieee80211_rate *rate;
2450 int i;
2451
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08002452 sband = iwl_get_hw_mode(priv, priv->band);
Johannes Berg8318d782008-01-24 19:38:38 +01002453 if (!sband) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002454 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002455 return;
2456 }
Zhu Yib481de92007-09-25 17:54:57 -07002457
2458 priv->active_rate = 0;
2459 priv->active_rate_basic = 0;
2460
Johannes Berg8318d782008-01-24 19:38:38 +01002461 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2462 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002463
Johannes Berg8318d782008-01-24 19:38:38 +01002464 for (i = 0; i < sband->n_bitrates; i++) {
2465 rate = &sband->bitrates[i];
2466 if ((rate->hw_value < IWL_RATE_COUNT) &&
2467 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2468 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2469 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2470 priv->active_rate |= (1 << rate->hw_value);
2471 }
Zhu Yib481de92007-09-25 17:54:57 -07002472 }
2473
2474 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2475 priv->active_rate, priv->active_rate_basic);
2476
2477 /*
2478 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2479 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2480 * OFDM
2481 */
2482 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002483 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002484 ((priv->active_rate_basic &
2485 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2486 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002487 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002488 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2489
2490 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002491 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002492 ((priv->active_rate_basic &
2493 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2494 IWL_FIRST_OFDM_RATE) & 0xFF;
2495 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002496 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002497 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2498}
2499
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002500static void iwl3945_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002501{
2502 unsigned long flags;
2503
2504 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2505 return;
2506
2507 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2508 disable_radio ? "OFF" : "ON");
2509
2510 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002511 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002512 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002513 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002514 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002515 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002516 CSR_UCODE_SW_BIT_RFKILL);
2517 spin_unlock_irqrestore(&priv->lock, flags);
Samuel Ortizc4962942008-12-22 11:31:18 +08002518 iwl_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002519 set_bit(STATUS_RF_KILL_SW, &priv->status);
2520 }
2521 return;
2522 }
2523
2524 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002525 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002526
2527 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2528 spin_unlock_irqrestore(&priv->lock, flags);
2529
2530 /* wake up ucode */
2531 msleep(10);
2532
2533 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002534 iwl_read32(priv, CSR_UCODE_DRV_GP1);
2535 if (!iwl_grab_nic_access(priv))
2536 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002537 spin_unlock_irqrestore(&priv->lock, flags);
2538
2539 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2540 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2541 "disabled by HW switch\n");
2542 return;
2543 }
2544
Zhu Yi808e72a2008-06-12 09:47:17 +08002545 if (priv->is_open)
2546 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002547 return;
2548}
2549
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002550void iwl3945_set_decrypted_flag(struct iwl_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002551 u32 decrypt_res, struct ieee80211_rx_status *stats)
2552{
2553 u16 fc =
2554 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2555
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002556 if (priv->active39_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07002557 return;
2558
2559 if (!(fc & IEEE80211_FCTL_PROTECTED))
2560 return;
2561
2562 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2563 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2564 case RX_RES_STATUS_SEC_TYPE_TKIP:
2565 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2566 RX_RES_STATUS_BAD_ICV_MIC)
2567 stats->flag |= RX_FLAG_MMIC_ERROR;
2568 case RX_RES_STATUS_SEC_TYPE_WEP:
2569 case RX_RES_STATUS_SEC_TYPE_CCMP:
2570 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2571 RX_RES_STATUS_DECRYPT_OK) {
2572 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2573 stats->flag |= RX_FLAG_DECRYPTED;
2574 }
2575 break;
2576
2577 default:
2578 break;
2579 }
2580}
2581
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002582#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002583
2584#include "iwl-spectrum.h"
2585
2586#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2587#define BEACON_TIME_MASK_HIGH 0xFF000000
2588#define TIME_UNIT 1024
2589
2590/*
2591 * extended beacon time format
2592 * time in usec will be changed into a 32-bit value in 8:24 format
2593 * the high 1 byte is the beacon counts
2594 * the lower 3 bytes is the time in usec within one beacon interval
2595 */
2596
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002597static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002598{
2599 u32 quot;
2600 u32 rem;
2601 u32 interval = beacon_interval * 1024;
2602
2603 if (!interval || !usec)
2604 return 0;
2605
2606 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2607 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2608
2609 return (quot << 24) + rem;
2610}
2611
2612/* base is usually what we get from ucode with each received frame,
2613 * the same as HW timer counter counting down
2614 */
2615
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002616static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002617{
2618 u32 base_low = base & BEACON_TIME_MASK_LOW;
2619 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2620 u32 interval = beacon_interval * TIME_UNIT;
2621 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2622 (addon & BEACON_TIME_MASK_HIGH);
2623
2624 if (base_low > addon_low)
2625 res += base_low - addon_low;
2626 else if (base_low < addon_low) {
2627 res += interval + base_low - addon_low;
2628 res += (1 << 24);
2629 } else
2630 res += (1 << 24);
2631
2632 return cpu_to_le32(res);
2633}
2634
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002635static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002636 struct ieee80211_measurement_params *params,
2637 u8 type)
2638{
Tomas Winkler600c0e12008-12-19 10:37:04 +08002639 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002640 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002641 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002642 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2643 .data = (void *)&spectrum,
2644 .meta.flags = CMD_WANT_SKB,
2645 };
2646 u32 add_time = le64_to_cpu(params->start_time);
2647 int rc;
2648 int spectrum_resp_status;
2649 int duration = le16_to_cpu(params->duration);
2650
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002651 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002652 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002653 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002654 le64_to_cpu(params->start_time) - priv->last_tsf,
2655 le16_to_cpu(priv->rxon_timing.beacon_interval));
2656
2657 memset(&spectrum, 0, sizeof(spectrum));
2658
2659 spectrum.channel_count = cpu_to_le16(1);
2660 spectrum.flags =
2661 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2662 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2663 cmd.len = sizeof(spectrum);
2664 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2665
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002666 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002667 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002668 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002669 add_time,
2670 le16_to_cpu(priv->rxon_timing.beacon_interval));
2671 else
2672 spectrum.start_time = 0;
2673
2674 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2675 spectrum.channels[0].channel = params->channel;
2676 spectrum.channels[0].type = type;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002677 if (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07002678 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2679 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2680
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002681 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002682 if (rc)
2683 return rc;
2684
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002685 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002686 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002687 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -07002688 rc = -EIO;
2689 }
2690
2691 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2692 switch (spectrum_resp_status) {
2693 case 0: /* Command will be handled */
2694 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002695 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2696 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002697 priv->measurement_status &= ~MEASUREMENT_READY;
2698 }
2699 priv->measurement_status |= MEASUREMENT_ACTIVE;
2700 rc = 0;
2701 break;
2702
2703 case 1: /* Command will not be handled */
2704 rc = -EAGAIN;
2705 break;
2706 }
2707
2708 dev_kfree_skb_any(cmd.meta.u.skb);
2709
2710 return rc;
2711}
2712#endif
2713
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002714static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002715 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002716{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002717 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2718 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002719 struct delayed_work *pwork;
2720
2721 palive = &pkt->u.alive_frame;
2722
2723 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2724 "0x%01X 0x%01X\n",
2725 palive->is_valid, palive->ver_type,
2726 palive->ver_subtype);
2727
2728 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2729 IWL_DEBUG_INFO("Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002730 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
2731 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002732 pwork = &priv->init_alive_start;
2733 } else {
2734 IWL_DEBUG_INFO("Runtime Alive received.\n");
2735 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002736 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002737 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002738 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002739 }
2740
2741 /* We delay the ALIVE response by 5ms to
2742 * give the HW RF Kill time to activate... */
2743 if (palive->is_valid == UCODE_VALID_OK)
2744 queue_delayed_work(priv->workqueue, pwork,
2745 msecs_to_jiffies(5));
2746 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002747 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002748}
2749
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002750static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002751 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002752{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002753 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002754
2755 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2756 return;
2757}
2758
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002759static void iwl3945_rx_reply_error(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002760 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002761{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002762 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002763
Winkler, Tomas15b16872008-12-19 10:37:33 +08002764 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
Zhu Yib481de92007-09-25 17:54:57 -07002765 "seq 0x%04X ser 0x%08X\n",
2766 le32_to_cpu(pkt->u.err_resp.error_type),
2767 get_cmd_string(pkt->u.err_resp.cmd_id),
2768 pkt->u.err_resp.cmd_id,
2769 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2770 le32_to_cpu(pkt->u.err_resp.error_info));
2771}
2772
2773#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2774
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002775static void iwl3945_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002776{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002777 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002778 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active39_rxon;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002779 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002780 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
2781 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
2782 rxon->channel = csa->channel;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002783 priv->staging39_rxon.channel = csa->channel;
Zhu Yib481de92007-09-25 17:54:57 -07002784}
2785
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002786static void iwl3945_rx_spectrum_measure_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002787 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002788{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002789#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002790 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002791 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002792
2793 if (!report->state) {
2794 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
2795 "Spectrum Measure Notification: Start\n");
2796 return;
2797 }
2798
2799 memcpy(&priv->measure_report, report, sizeof(*report));
2800 priv->measurement_status |= MEASUREMENT_READY;
2801#endif
2802}
2803
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002804static void iwl3945_rx_pm_sleep_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002805 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002806{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002807#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002808 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002809 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002810 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
2811 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2812#endif
2813}
2814
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002815static void iwl3945_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002816 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002817{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002818 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002819 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
2820 "notification for %s:\n",
2821 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002822 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw,
2823 le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07002824}
2825
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002826static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07002827{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002828 struct iwl_priv *priv =
2829 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07002830 struct sk_buff *beacon;
2831
2832 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02002833 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07002834
2835 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002836 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07002837 return;
2838 }
2839
2840 mutex_lock(&priv->mutex);
2841 /* new beacon skb is allocated every time; dispose previous.*/
2842 if (priv->ibss_beacon)
2843 dev_kfree_skb(priv->ibss_beacon);
2844
2845 priv->ibss_beacon = beacon;
2846 mutex_unlock(&priv->mutex);
2847
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002848 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002849}
2850
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002851static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002852 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002853{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002854#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002855 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002856 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07002857 u8 rate = beacon->beacon_notify_hdr.rate;
2858
2859 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
2860 "tsf %d %d rate %d\n",
2861 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
2862 beacon->beacon_notify_hdr.failure_frame,
2863 le32_to_cpu(beacon->ibss_mgr_status),
2864 le32_to_cpu(beacon->high_tsf),
2865 le32_to_cpu(beacon->low_tsf), rate);
2866#endif
2867
Johannes Berg05c914f2008-09-11 00:01:58 +02002868 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07002869 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
2870 queue_work(priv->workqueue, &priv->beacon_update);
2871}
2872
2873/* Service response to REPLY_SCAN_CMD (0x80) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002874static void iwl3945_rx_reply_scan(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002875 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002876{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002877#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002878 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002879 struct iwl_scanreq_notification *notif =
2880 (struct iwl_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002881
2882 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
2883#endif
2884}
2885
2886/* Service SCAN_START_NOTIFICATION (0x82) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002887static void iwl3945_rx_scan_start_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002888 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002889{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002890 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002891 struct iwl_scanstart_notification *notif =
2892 (struct iwl_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002893 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
2894 IWL_DEBUG_SCAN("Scan start: "
2895 "%d [802.11%s] "
2896 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
2897 notif->channel,
2898 notif->band ? "bg" : "a",
2899 notif->tsf_high,
2900 notif->tsf_low, notif->status, notif->beacon_timer);
2901}
2902
2903/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002904static void iwl3945_rx_scan_results_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002905 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002906{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002907 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002908 struct iwl_scanresults_notification *notif =
2909 (struct iwl_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002910
2911 IWL_DEBUG_SCAN("Scan ch.res: "
2912 "%d [802.11%s] "
2913 "(TSF: 0x%08X:%08X) - %d "
2914 "elapsed=%lu usec (%dms since last)\n",
2915 notif->channel,
2916 notif->band ? "bg" : "a",
2917 le32_to_cpu(notif->tsf_high),
2918 le32_to_cpu(notif->tsf_low),
2919 le32_to_cpu(notif->statistics[0]),
2920 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
2921 jiffies_to_msecs(elapsed_jiffies
2922 (priv->last_scan_jiffies, jiffies)));
2923
2924 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002925 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002926}
2927
2928/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002929static void iwl3945_rx_scan_complete_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002930 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002931{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002932 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002933 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002934
2935 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
2936 scan_notif->scanned_channels,
2937 scan_notif->tsf_low,
2938 scan_notif->tsf_high, scan_notif->status);
2939
2940 /* The HW is no longer scanning */
2941 clear_bit(STATUS_SCAN_HW, &priv->status);
2942
2943 /* The scan completion notification came in, so kill that timer... */
2944 cancel_delayed_work(&priv->scan_check);
2945
2946 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002947 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
2948 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07002949 jiffies_to_msecs(elapsed_jiffies
2950 (priv->scan_pass_start, jiffies)));
2951
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002952 /* Remove this scanned band from the list of pending
2953 * bands to scan, band G precedes A in order of scanning
2954 * as seen in iwl3945_bg_request_scan */
2955 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
2956 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
2957 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
2958 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002959
2960 /* If a request to abort was given, or the scan did not succeed
2961 * then we reset the scan state machine and terminate,
2962 * re-queuing another scan if one has been requested */
2963 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2964 IWL_DEBUG_INFO("Aborted scan completed.\n");
2965 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
2966 } else {
2967 /* If there are more bands on this scan pass reschedule */
2968 if (priv->scan_bands > 0)
2969 goto reschedule;
2970 }
2971
2972 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002973 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002974 IWL_DEBUG_INFO("Setting scan to off\n");
2975
2976 clear_bit(STATUS_SCANNING, &priv->status);
2977
2978 IWL_DEBUG_INFO("Scan took %dms\n",
2979 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
2980
2981 queue_work(priv->workqueue, &priv->scan_completed);
2982
2983 return;
2984
2985reschedule:
2986 priv->scan_pass_start = jiffies;
2987 queue_work(priv->workqueue, &priv->request_scan);
2988}
2989
2990/* Handle notification from uCode that card's power state is changing
2991 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002992static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002993 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002994{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002995 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002996 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
2997 unsigned long status = priv->status;
2998
2999 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3000 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3001 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3002
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003003 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003004 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3005
3006 if (flags & HW_CARD_DISABLED)
3007 set_bit(STATUS_RF_KILL_HW, &priv->status);
3008 else
3009 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3010
3011
3012 if (flags & SW_CARD_DISABLED)
3013 set_bit(STATUS_RF_KILL_SW, &priv->status);
3014 else
3015 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3016
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003017 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003018
3019 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3020 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3021 (test_bit(STATUS_RF_KILL_SW, &status) !=
3022 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3023 queue_work(priv->workqueue, &priv->rf_kill);
3024 else
3025 wake_up_interruptible(&priv->wait_command_queue);
3026}
3027
3028/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003029 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003030 *
3031 * Setup the RX handlers for each of the reply types sent from the uCode
3032 * to the host.
3033 *
3034 * This function chains into the hardware specific files for them to setup
3035 * any hardware specific handlers as well.
3036 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003037static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003038{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003039 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3040 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3041 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3042 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003043 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003044 iwl3945_rx_spectrum_measure_notif;
3045 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003046 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003047 iwl3945_rx_pm_debug_statistics_notif;
3048 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003049
Ben Cahill9fbab512007-11-29 11:09:47 +08003050 /*
3051 * The same handler is used for both the REPLY to a discrete
3052 * statistics request from the host as well as for the periodic
3053 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003054 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003055 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3056 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003057
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003058 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3059 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003060 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003061 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003062 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003063 iwl3945_rx_scan_complete_notif;
3064 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003065
Ben Cahill9fbab512007-11-29 11:09:47 +08003066 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003067 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003068}
3069
3070/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003071 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3072 * When FW advances 'R' index, all entries between old and new 'R' index
3073 * need to be reclaimed.
3074 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003075static void iwl3945_cmd_queue_reclaim(struct iwl_priv *priv,
Tomas Winkler91c066f2008-03-06 17:36:55 -08003076 int txq_id, int index)
3077{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003078 struct iwl_tx_queue *txq = &priv->txq[txq_id];
Samuel Ortizd20b3c62008-12-19 10:37:15 +08003079 struct iwl_queue *q = &txq->q;
Tomas Winkler91c066f2008-03-06 17:36:55 -08003080 int nfreed = 0;
3081
3082 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003083 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
Tomas Winkler91c066f2008-03-06 17:36:55 -08003084 "is out of range [0-%d] %d %d.\n", txq_id,
3085 index, q->n_bd, q->write_ptr, q->read_ptr);
3086 return;
3087 }
3088
3089 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3090 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3091 if (nfreed > 1) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003092 IWL_ERR(priv, "HCMD skipped: index (%d) %d %d\n", index,
Tomas Winkler91c066f2008-03-06 17:36:55 -08003093 q->write_ptr, q->read_ptr);
3094 queue_work(priv->workqueue, &priv->restart);
3095 break;
3096 }
3097 nfreed++;
3098 }
3099}
3100
3101
3102/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003103 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003104 * @rxb: Rx buffer to reclaim
3105 *
3106 * If an Rx buffer has an async callback associated with it the callback
3107 * will be executed. The attached skb (if present) will only be freed
3108 * if the callback returns 1
3109 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003110static void iwl3945_tx_cmd_complete(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003111 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003112{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003113 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003114 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3115 int txq_id = SEQ_TO_QUEUE(sequence);
3116 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003117 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Zhu Yib481de92007-09-25 17:54:57 -07003118 int cmd_index;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08003119 struct iwl_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003120
Zhu Yib481de92007-09-25 17:54:57 -07003121 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3122
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003123 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3124 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
Zhu Yib481de92007-09-25 17:54:57 -07003125
3126 /* Input error checking is done when commands are added to queue. */
3127 if (cmd->meta.flags & CMD_WANT_SKB) {
3128 cmd->meta.source->u.skb = rxb->skb;
3129 rxb->skb = NULL;
3130 } else if (cmd->meta.u.callback &&
3131 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3132 rxb->skb = NULL;
3133
Tomas Winkler91c066f2008-03-06 17:36:55 -08003134 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003135
3136 if (!(cmd->meta.flags & CMD_ASYNC)) {
3137 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3138 wake_up_interruptible(&priv->wait_command_queue);
3139 }
3140}
3141
3142/************************** RX-FUNCTIONS ****************************/
3143/*
3144 * Rx theory of operation
3145 *
3146 * The host allocates 32 DMA target addresses and passes the host address
3147 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3148 * 0 to 31
3149 *
3150 * Rx Queue Indexes
3151 * The host/firmware share two index registers for managing the Rx buffers.
3152 *
3153 * The READ index maps to the first position that the firmware may be writing
3154 * to -- the driver can read up to (but not including) this position and get
3155 * good data.
3156 * The READ index is managed by the firmware once the card is enabled.
3157 *
3158 * The WRITE index maps to the last position the driver has read from -- the
3159 * position preceding WRITE is the last slot the firmware can place a packet.
3160 *
3161 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3162 * WRITE = READ.
3163 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003164 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003165 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3166 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003167 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003168 * and fire the RX interrupt. The driver can then query the READ index and
3169 * process as many packets as possible, moving the WRITE index forward as it
3170 * resets the Rx queue buffers with new memory.
3171 *
3172 * The management in the driver is as follows:
3173 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3174 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003175 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003176 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003177 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3178 * 'processed' and 'read' driver indexes as well)
3179 * + A received packet is processed and handed to the kernel network stack,
3180 * detached from the iwl->rxq. The driver 'processed' index is updated.
3181 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3182 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3183 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3184 * were enough free buffers and RX_STALLED is set it is cleared.
3185 *
3186 *
3187 * Driver sequence:
3188 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003189 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003190 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003191 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003192 * queue, updates firmware pointers, and updates
3193 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003194 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003195 *
3196 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003197 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003198 * READ INDEX, detaching the SKB from the pool.
3199 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003200 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003201 * slots.
3202 * ...
3203 *
3204 */
3205
3206/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003207 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003208 */
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003209static int iwl3945_rx_queue_space(const struct iwl_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003210{
3211 int s = q->read - q->write;
3212 if (s <= 0)
3213 s += RX_QUEUE_SIZE;
3214 /* keep some buffer to not confuse full and empty queue */
3215 s -= 2;
3216 if (s < 0)
3217 s = 0;
3218 return s;
3219}
3220
3221/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003222 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003223 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003224int iwl3945_rx_queue_update_write_ptr(struct iwl_priv *priv, struct iwl_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003225{
3226 u32 reg = 0;
3227 int rc = 0;
3228 unsigned long flags;
3229
3230 spin_lock_irqsave(&q->lock, flags);
3231
3232 if (q->need_update == 0)
3233 goto exit_unlock;
3234
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003235 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003236 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003237 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003238
3239 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003240 iwl_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003241 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3242 goto exit_unlock;
3243 }
3244
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003245 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003246 if (rc)
3247 goto exit_unlock;
3248
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003249 /* Device expects a multiple of 8 */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003250 iwl_write_direct32(priv, FH39_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003251 q->write & ~0x7);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003252 iwl_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003253
3254 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003255 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003256 /* Device expects a multiple of 8 */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003257 iwl_write32(priv, FH39_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003258
3259
3260 q->need_update = 0;
3261
3262 exit_unlock:
3263 spin_unlock_irqrestore(&q->lock, flags);
3264 return rc;
3265}
3266
3267/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003268 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003269 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003270static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003271 dma_addr_t dma_addr)
3272{
3273 return cpu_to_le32((u32)dma_addr);
3274}
3275
3276/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003277 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003278 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003279 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003280 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003281 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003282 *
3283 * This moves the 'write' index forward to catch up with 'processed', and
3284 * also updates the memory address in the firmware to reference the new
3285 * target buffer.
3286 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003287static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003288{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003289 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003290 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003291 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003292 unsigned long flags;
3293 int write, rc;
3294
3295 spin_lock_irqsave(&rxq->lock, flags);
3296 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003297 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003298 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003299 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003300 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003301 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003302
3303 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003304 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003305 rxq->queue[rxq->write] = rxb;
3306 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3307 rxq->free_count--;
3308 }
3309 spin_unlock_irqrestore(&rxq->lock, flags);
3310 /* If the pre-allocated buffer pool is dropping low, schedule to
3311 * refill it */
3312 if (rxq->free_count <= RX_LOW_WATERMARK)
3313 queue_work(priv->workqueue, &priv->rx_replenish);
3314
3315
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003316 /* If we've added more space for the firmware to place data, tell it.
3317 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003318 if ((write != (rxq->write & ~0x7))
3319 || (abs(rxq->write - rxq->read) > 7)) {
3320 spin_lock_irqsave(&rxq->lock, flags);
3321 rxq->need_update = 1;
3322 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003323 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003324 if (rc)
3325 return rc;
3326 }
3327
3328 return 0;
3329}
3330
3331/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003332 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003333 *
3334 * When moving to rx_free an SKB is allocated for the slot.
3335 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003336 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003337 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003338 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003339static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003340{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003341 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003342 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003343 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003344 unsigned long flags;
3345 spin_lock_irqsave(&rxq->lock, flags);
3346 while (!list_empty(&rxq->rx_used)) {
3347 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003348 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003349
3350 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003351 rxb->skb =
3352 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3353 if (!rxb->skb) {
3354 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08003355 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07003356 /* We don't reschedule replenish work here -- we will
3357 * call the restock method and if it still needs
3358 * more buffers it will schedule replenish */
3359 break;
3360 }
Zhu Yi12342c42007-12-20 11:27:32 +08003361
3362 /* If radiotap head is required, reserve some headroom here.
3363 * The physical head count is a variable rx_stats->phy_count.
3364 * We reserve 4 bytes here. Plus these extra bytes, the
3365 * headroom of the physical head should be enough for the
3366 * radiotap head that iwl3945 supported. See iwl3945_rt.
3367 */
3368 skb_reserve(rxb->skb, 4);
3369
Zhu Yib481de92007-09-25 17:54:57 -07003370 priv->alloc_rxb_skb++;
3371 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003372
3373 /* Get physical address of RB/SKB */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003374 rxb->real_dma_addr =
Zhu Yib481de92007-09-25 17:54:57 -07003375 pci_map_single(priv->pci_dev, rxb->skb->data,
3376 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3377 list_add_tail(&rxb->list, &rxq->rx_free);
3378 rxq->free_count++;
3379 }
3380 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003381}
3382
3383/*
3384 * this should be called while priv->lock is locked
3385 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003386static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003387{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003388 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003389
3390 iwl3945_rx_allocate(priv);
3391 iwl3945_rx_queue_restock(priv);
3392}
3393
3394
3395void iwl3945_rx_replenish(void *data)
3396{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003397 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003398 unsigned long flags;
3399
3400 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003401
3402 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003403 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003404 spin_unlock_irqrestore(&priv->lock, flags);
3405}
3406
Zhu Yib481de92007-09-25 17:54:57 -07003407/* Convert linear signal-to-noise ratio into dB */
3408static u8 ratio2dB[100] = {
3409/* 0 1 2 3 4 5 6 7 8 9 */
3410 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3411 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3412 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3413 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3414 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3415 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3416 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3417 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3418 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3419 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3420};
3421
3422/* Calculates a relative dB value from a ratio of linear
3423 * (i.e. not dB) signal levels.
3424 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003425int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003426{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003427 /* 1000:1 or higher just report as 60 dB */
3428 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003429 return 60;
3430
Adrian Bunk221c80c2008-02-02 23:19:01 +02003431 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003432 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003433 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003434 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003435
3436 /* We shouldn't see this */
3437 if (sig_ratio < 1)
3438 return 0;
3439
3440 /* Use table for ratios 1:1 - 99:1 */
3441 return (int)ratio2dB[sig_ratio];
3442}
3443
3444#define PERFECT_RSSI (-20) /* dBm */
3445#define WORST_RSSI (-95) /* dBm */
3446#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3447
3448/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3449 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3450 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003451int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003452{
3453 int sig_qual;
3454 int degradation = PERFECT_RSSI - rssi_dbm;
3455
3456 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3457 * as indicator; formula is (signal dbm - noise dbm).
3458 * SNR at or above 40 is a great signal (100%).
3459 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3460 * Weakest usable signal is usually 10 - 15 dB SNR. */
3461 if (noise_dbm) {
3462 if (rssi_dbm - noise_dbm >= 40)
3463 return 100;
3464 else if (rssi_dbm < noise_dbm)
3465 return 0;
3466 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3467
3468 /* Else use just the signal level.
3469 * This formula is a least squares fit of data points collected and
3470 * compared with a reference system that had a percentage (%) display
3471 * for signal quality. */
3472 } else
3473 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3474 (15 * RSSI_RANGE + 62 * degradation)) /
3475 (RSSI_RANGE * RSSI_RANGE);
3476
3477 if (sig_qual > 100)
3478 sig_qual = 100;
3479 else if (sig_qual < 1)
3480 sig_qual = 0;
3481
3482 return sig_qual;
3483}
3484
3485/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003486 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003487 *
3488 * Uses the priv->rx_handlers callback function array to invoke
3489 * the appropriate handlers, including command responses,
3490 * frame-received notifications, and other notifications.
3491 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003492static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003493{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003494 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003495 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003496 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003497 u32 r, i;
3498 int reclaim;
3499 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003500 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003501 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003502
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003503 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3504 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08003505 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07003506 i = rxq->read;
3507
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003508 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3509 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003510 /* Rx interrupt, but nothing sent from uCode */
3511 if (i == r)
3512 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3513
3514 while (i != r) {
3515 rxb = rxq->queue[i];
3516
Ben Cahill9fbab512007-11-29 11:09:47 +08003517 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003518 * then a bug has been introduced in the queue refilling
3519 * routines -- catch it here */
3520 BUG_ON(rxb == NULL);
3521
3522 rxq->queue[i] = NULL;
3523
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003524 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003525 IWL_RX_BUF_SIZE,
3526 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003527 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003528
3529 /* Reclaim a command buffer only if this packet is a response
3530 * to a (driver-originated) command.
3531 * If the packet (e.g. Rx frame) originated from uCode,
3532 * there is no command buffer to reclaim.
3533 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3534 * but apparently a few don't get set; catch them here. */
3535 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3536 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3537 (pkt->hdr.cmd != REPLY_TX);
3538
3539 /* Based on type of command response or notification,
3540 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003541 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003542 if (priv->rx_handlers[pkt->hdr.cmd]) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003543 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003544 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3545 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3546 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3547 } else {
3548 /* No handling needed */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003549 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003550 "r %d i %d No handler needed for %s, 0x%02x\n",
3551 r, i, get_cmd_string(pkt->hdr.cmd),
3552 pkt->hdr.cmd);
3553 }
3554
3555 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003556 /* Invoke any callbacks, transfer the skb to caller, and
3557 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003558 * as we reclaim the driver command queue */
3559 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003560 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003561 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003562 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07003563 }
3564
3565 /* For now we just don't re-use anything. We can tweak this
3566 * later to try and re-use notification packets and SKBs that
3567 * fail to Rx correctly */
3568 if (rxb->skb != NULL) {
3569 priv->alloc_rxb_skb--;
3570 dev_kfree_skb_any(rxb->skb);
3571 rxb->skb = NULL;
3572 }
3573
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003574 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003575 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3576 spin_lock_irqsave(&rxq->lock, flags);
3577 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3578 spin_unlock_irqrestore(&rxq->lock, flags);
3579 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003580 /* If there are a lot of unused frames,
3581 * restock the Rx queue so ucode won't assert. */
3582 if (fill_rx) {
3583 count++;
3584 if (count >= 8) {
3585 priv->rxq.read = i;
3586 __iwl3945_rx_replenish(priv);
3587 count = 0;
3588 }
3589 }
Zhu Yib481de92007-09-25 17:54:57 -07003590 }
3591
3592 /* Backtrack one entry */
3593 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003594 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003595}
3596
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003597/**
3598 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3599 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003600static int iwl3945_tx_queue_update_write_ptr(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003601 struct iwl_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003602{
3603 u32 reg = 0;
3604 int rc = 0;
3605 int txq_id = txq->q.id;
3606
3607 if (txq->need_update == 0)
3608 return rc;
3609
3610 /* if we're trying to save power */
3611 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3612 /* wake up nic if it's powered down ...
3613 * uCode will wake up, and interrupt us again, so next
3614 * time we'll skip this part. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003615 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003616
3617 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3618 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003619 iwl_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003620 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3621 return rc;
3622 }
3623
3624 /* restore this queue's parameters in nic hardware. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003625 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003626 if (rc)
3627 return rc;
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003628 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003629 txq->q.write_ptr | (txq_id << 8));
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003630 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003631
3632 /* else not in power-save mode, uCode will never sleep when we're
3633 * trying to tx (during RFKILL, we're not trying to tx). */
3634 } else
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003635 iwl_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003636 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003637
3638 txq->need_update = 0;
3639
3640 return rc;
3641}
3642
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003643#ifdef CONFIG_IWL3945_DEBUG
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003644static void iwl3945_print_rx_config_cmd(struct iwl_priv *priv,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003645 struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003646{
3647 IWL_DEBUG_RADIO("RX CONFIG:\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003648 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003649 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3650 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3651 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3652 le32_to_cpu(rxon->filter_flags));
3653 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3654 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3655 rxon->ofdm_basic_rates);
3656 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003657 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3658 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003659 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3660}
3661#endif
3662
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003663static void iwl3945_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003664{
3665 IWL_DEBUG_ISR("Enabling interrupts\n");
3666 set_bit(STATUS_INT_ENABLED, &priv->status);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003667 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003668}
3669
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003670
3671/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003672static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003673{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003674 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003675 synchronize_irq(priv->pci_dev->irq);
3676 tasklet_kill(&priv->irq_tasklet);
3677}
3678
3679
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003680static inline void iwl3945_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003681{
3682 clear_bit(STATUS_INT_ENABLED, &priv->status);
3683
3684 /* disable interrupts from uCode/NIC to host */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003685 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003686
3687 /* acknowledge/clear/reset any interrupts still pending
3688 * from uCode or flow handler (Rx/Tx DMA) */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003689 iwl_write32(priv, CSR_INT, 0xffffffff);
3690 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07003691 IWL_DEBUG_ISR("Disabled interrupts\n");
3692}
3693
3694static const char *desc_lookup(int i)
3695{
3696 switch (i) {
3697 case 1:
3698 return "FAIL";
3699 case 2:
3700 return "BAD_PARAM";
3701 case 3:
3702 return "BAD_CHECKSUM";
3703 case 4:
3704 return "NMI_INTERRUPT";
3705 case 5:
3706 return "SYSASSERT";
3707 case 6:
3708 return "FATAL_ERROR";
3709 }
3710
3711 return "UNKNOWN";
3712}
3713
3714#define ERROR_START_OFFSET (1 * sizeof(u32))
3715#define ERROR_ELEM_SIZE (7 * sizeof(u32))
3716
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003717static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003718{
3719 u32 i;
3720 u32 desc, time, count, base, data1;
3721 u32 blink1, blink2, ilink1, ilink2;
3722 int rc;
3723
3724 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
3725
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003726 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003727 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003728 return;
3729 }
3730
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003731 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003732 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003733 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003734 return;
3735 }
3736
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003737 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07003738
3739 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003740 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
3741 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
3742 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07003743 }
3744
Winkler, Tomas15b16872008-12-19 10:37:33 +08003745 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07003746 "ilink1 nmiPC Line\n");
3747 for (i = ERROR_START_OFFSET;
3748 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
3749 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003750 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07003751 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003752 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003753 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003754 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003755 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003756 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003757 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003758 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003759 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003760 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003761 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003762 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003763
Winkler, Tomas15b16872008-12-19 10:37:33 +08003764 IWL_ERR(priv,
3765 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
3766 desc_lookup(desc), desc, time, blink1, blink2,
3767 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07003768 }
3769
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003770 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003771
3772}
3773
Ben Cahillf58177b2007-11-29 11:09:43 +08003774#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07003775
3776/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003777 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07003778 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003779 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07003780 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003781static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07003782 u32 num_events, u32 mode)
3783{
3784 u32 i;
3785 u32 base; /* SRAM byte address of event log header */
3786 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
3787 u32 ptr; /* SRAM byte address of log data */
3788 u32 ev, time, data; /* event log data */
3789
3790 if (num_events == 0)
3791 return;
3792
3793 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
3794
3795 if (mode == 0)
3796 event_size = 2 * sizeof(u32);
3797 else
3798 event_size = 3 * sizeof(u32);
3799
3800 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
3801
3802 /* "time" is actually "data" for mode 0 (no timestamp).
3803 * place event id # at far right for easier visual parsing. */
3804 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003805 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003806 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003807 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003808 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003809 if (mode == 0) {
3810 /* data, ev */
3811 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
3812 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003813 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003814 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003815 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07003816 }
3817 }
3818}
3819
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003820static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003821{
3822 int rc;
3823 u32 base; /* SRAM byte address of event log header */
3824 u32 capacity; /* event log capacity in # entries */
3825 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
3826 u32 num_wraps; /* # times uCode wrapped to top of log */
3827 u32 next_entry; /* index of next entry to be written by uCode */
3828 u32 size; /* # entries that we'll print */
3829
3830 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003831 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003832 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003833 return;
3834 }
3835
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003836 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003837 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003838 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003839 return;
3840 }
3841
3842 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003843 capacity = iwl_read_targ_mem(priv, base);
3844 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
3845 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
3846 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07003847
3848 size = num_wraps ? capacity : next_entry;
3849
3850 /* bail out if nothing in log */
3851 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003852 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003853 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003854 return;
3855 }
3856
Winkler, Tomas15b16872008-12-19 10:37:33 +08003857 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003858 size, num_wraps);
3859
3860 /* if uCode has wrapped back to top of log, start at the oldest entry,
3861 * i.e the next one that uCode would fill. */
3862 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003863 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07003864 capacity - next_entry, mode);
3865
3866 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003867 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07003868
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003869 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003870}
3871
3872/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003873 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07003874 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003875static void iwl3945_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003876{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003877 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07003878 set_bit(STATUS_FW_ERROR, &priv->status);
3879
3880 /* Cancel currently queued command. */
3881 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3882
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003883#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003884 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003885 iwl3945_dump_nic_error_log(priv);
3886 iwl3945_dump_nic_event_log(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003887 iwl3945_print_rx_config_cmd(priv, &priv->staging39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07003888 }
3889#endif
3890
3891 wake_up_interruptible(&priv->wait_command_queue);
3892
3893 /* Keep the restart process from trying to send host
3894 * commands by clearing the INIT status bit */
3895 clear_bit(STATUS_READY, &priv->status);
3896
3897 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3898 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
3899 "Restarting adapter due to uCode error.\n");
3900
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003901 if (iwl3945_is_associated(priv)) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003902 memcpy(&priv->recovery39_rxon, &priv->active39_rxon,
3903 sizeof(priv->recovery39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003904 priv->error_recovering = 1;
3905 }
3906 queue_work(priv->workqueue, &priv->restart);
3907 }
3908}
3909
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003910static void iwl3945_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003911{
3912 unsigned long flags;
3913
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003914 memcpy(&priv->staging39_rxon, &priv->recovery39_rxon,
3915 sizeof(priv->staging39_rxon));
3916 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003917 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003918
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003919 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003920
3921 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003922 priv->assoc_id = le16_to_cpu(priv->staging39_rxon.assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003923 priv->error_recovering = 0;
3924 spin_unlock_irqrestore(&priv->lock, flags);
3925}
3926
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003927static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003928{
3929 u32 inta, handled = 0;
3930 u32 inta_fh;
3931 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003932#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003933 u32 inta_mask;
3934#endif
3935
3936 spin_lock_irqsave(&priv->lock, flags);
3937
3938 /* Ack/clear/reset pending uCode interrupts.
3939 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
3940 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003941 inta = iwl_read32(priv, CSR_INT);
3942 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07003943
3944 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
3945 * Any new interrupts that happen after this, either while we're
3946 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003947 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
3948 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07003949
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003950#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003951 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003952 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003953 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003954 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3955 inta, inta_mask, inta_fh);
3956 }
3957#endif
3958
3959 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
3960 * atomic, make sure that inta covers all the interrupts that
3961 * we've discovered, even if FH interrupt came in just after
3962 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003963 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003964 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003965 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003966 inta |= CSR_INT_BIT_FH_TX;
3967
3968 /* Now service all interrupt bits discovered above. */
3969 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003970 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003971
3972 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003973 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003974
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003975 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003976
3977 handled |= CSR_INT_BIT_HW_ERR;
3978
3979 spin_unlock_irqrestore(&priv->lock, flags);
3980
3981 return;
3982 }
3983
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003984#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003985 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07003986 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003987 if (inta & CSR_INT_BIT_SCD)
3988 IWL_DEBUG_ISR("Scheduler finished to transmit "
3989 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003990
3991 /* Alive notification via Rx interrupt will do the real work */
3992 if (inta & CSR_INT_BIT_ALIVE)
3993 IWL_DEBUG_ISR("Alive interrupt\n");
3994 }
3995#endif
3996 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003997 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07003998
Zhu Yib481de92007-09-25 17:54:57 -07003999 /* Error detected by uCode */
4000 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004001 IWL_ERR(priv, "Microcode SW error detected. "
4002 "Restarting 0x%X.\n", inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004003 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004004 handled |= CSR_INT_BIT_SW_ERR;
4005 }
4006
4007 /* uCode wakes up after power-down sleep */
4008 if (inta & CSR_INT_BIT_WAKEUP) {
4009 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004010 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08004011 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4012 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4013 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4014 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4015 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4016 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004017
4018 handled |= CSR_INT_BIT_WAKEUP;
4019 }
4020
4021 /* All uCode command responses, including Tx command responses,
4022 * Rx "responses" (frame-received notification), and other
4023 * notifications from uCode come through here*/
4024 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004025 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004026 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4027 }
4028
4029 if (inta & CSR_INT_BIT_FH_TX) {
4030 IWL_DEBUG_ISR("Tx interrupt\n");
4031
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004032 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4033 if (!iwl_grab_nic_access(priv)) {
4034 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08004035 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004036 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004037 }
4038 handled |= CSR_INT_BIT_FH_TX;
4039 }
4040
4041 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004042 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07004043
4044 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004045 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07004046 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004047 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004048 }
4049
4050 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004051 /* only Re-enable if disabled by irq */
4052 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4053 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004054
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004055#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004056 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004057 inta = iwl_read32(priv, CSR_INT);
4058 inta_mask = iwl_read32(priv, CSR_INT_MASK);
4059 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004060 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4061 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4062 }
4063#endif
4064 spin_unlock_irqrestore(&priv->lock, flags);
4065}
4066
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004067static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004068{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004069 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004070 u32 inta, inta_mask;
4071 u32 inta_fh;
4072 if (!priv)
4073 return IRQ_NONE;
4074
4075 spin_lock(&priv->lock);
4076
4077 /* Disable (but don't clear!) interrupts here to avoid
4078 * back-to-back ISRs and sporadic interrupts from our NIC.
4079 * If we have something to service, the tasklet will re-enable ints.
4080 * If we *don't* have something, we'll re-enable before leaving here. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004081 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
4082 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004083
4084 /* Discover which interrupts are active/pending */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004085 inta = iwl_read32(priv, CSR_INT);
4086 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004087
4088 /* Ignore interrupt if there's nothing in NIC to service.
4089 * This may be due to IRQ shared with another device,
4090 * or due to sporadic interrupts thrown from our NIC. */
4091 if (!inta && !inta_fh) {
4092 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4093 goto none;
4094 }
4095
4096 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4097 /* Hardware disappeared */
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004098 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004099 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004100 }
4101
4102 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4103 inta, inta_mask, inta_fh);
4104
Joonwoo Park25c03d82008-01-23 10:15:20 -08004105 inta &= ~CSR_INT_BIT_SCD;
4106
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004107 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004108 if (likely(inta || inta_fh))
4109 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004110unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004111 spin_unlock(&priv->lock);
4112
4113 return IRQ_HANDLED;
4114
4115 none:
4116 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004117 /* only Re-enable if disabled by irq */
4118 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4119 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004120 spin_unlock(&priv->lock);
4121 return IRQ_NONE;
4122}
4123
4124/************************** EEPROM BANDS ****************************
4125 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004126 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004127 * EEPROM contents to the specific channel number supported for each
4128 * band.
4129 *
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004130 * For example, iwl3945_priv->eeprom39.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004131 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4132 * The specific geography and calibration information for that channel
4133 * is contained in the eeprom map itself.
4134 *
4135 * During init, we copy the eeprom information and channel map
4136 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4137 *
4138 * channel_map_24/52 provides the index in the channel_info array for a
4139 * given channel. We have to have two separate maps as there is channel
4140 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4141 * band_2
4142 *
4143 * A value of 0xff stored in the channel_map indicates that the channel
4144 * is not supported by the hardware at all.
4145 *
4146 * A value of 0xfe in the channel_map indicates that the channel is not
4147 * valid for Tx with the current hardware. This means that
4148 * while the system can tune and receive on a given channel, it may not
4149 * be able to associate or transmit any frames on that
4150 * channel. There is no corresponding channel information for that
4151 * entry.
4152 *
4153 *********************************************************************/
4154
4155/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004156static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004157 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4158};
4159
4160/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004161static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004162 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4163};
4164
Ben Cahill9fbab512007-11-29 11:09:47 +08004165static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004166 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4167};
4168
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004169static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004170 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4171};
4172
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004173static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004174 145, 149, 153, 157, 161, 165
4175};
4176
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004177static void iwl3945_init_band_reference(const struct iwl_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004178 int *eeprom_ch_count,
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004179 const struct iwl_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004180 **eeprom_ch_info,
4181 const u8 **eeprom_ch_index)
4182{
4183 switch (band) {
4184 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004185 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004186 *eeprom_ch_info = priv->eeprom39.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004187 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004188 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004189 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004190 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004191 *eeprom_ch_info = priv->eeprom39.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004192 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004193 break;
4194 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004195 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004196 *eeprom_ch_info = priv->eeprom39.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004197 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004198 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004199 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004200 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004201 *eeprom_ch_info = priv->eeprom39.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004202 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004203 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004204 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004205 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004206 *eeprom_ch_info = priv->eeprom39.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004207 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004208 break;
4209 default:
4210 BUG();
4211 return;
4212 }
4213}
4214
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004215/**
4216 * iwl3945_get_channel_info - Find driver's private channel info
4217 *
4218 * Based on band and channel number.
4219 */
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004220const struct iwl_channel_info *
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004221iwl3945_get_channel_info(const struct iwl_priv *priv,
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004222 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004223{
4224 int i;
4225
Johannes Berg8318d782008-01-24 19:38:38 +01004226 switch (band) {
4227 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004228 for (i = 14; i < priv->channel_count; i++) {
4229 if (priv->channel_info[i].channel == channel)
4230 return &priv->channel_info[i];
4231 }
4232 break;
4233
Johannes Berg8318d782008-01-24 19:38:38 +01004234 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004235 if (channel >= 1 && channel <= 14)
4236 return &priv->channel_info[channel - 1];
4237 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004238 case IEEE80211_NUM_BANDS:
4239 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004240 }
4241
4242 return NULL;
4243}
4244
4245#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4246 ? # x " " : "")
4247
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004248/**
4249 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4250 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004251static int iwl3945_init_channel_map(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004252{
4253 int eeprom_ch_count = 0;
4254 const u8 *eeprom_ch_index = NULL;
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004255 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004256 int band, ch;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004257 struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004258
4259 if (priv->channel_count) {
4260 IWL_DEBUG_INFO("Channel map already initialized.\n");
4261 return 0;
4262 }
4263
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004264 if (priv->eeprom39.version < 0x2f) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004265 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004266 priv->eeprom39.version);
Zhu Yib481de92007-09-25 17:54:57 -07004267 return -EINVAL;
4268 }
4269
4270 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4271
4272 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004273 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4274 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4275 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4276 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4277 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004278
4279 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4280
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004281 priv->channel_info = kzalloc(sizeof(struct iwl_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004282 priv->channel_count, GFP_KERNEL);
4283 if (!priv->channel_info) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004284 IWL_ERR(priv, "Could not allocate channel_info\n");
Zhu Yib481de92007-09-25 17:54:57 -07004285 priv->channel_count = 0;
4286 return -ENOMEM;
4287 }
4288
4289 ch_info = priv->channel_info;
4290
4291 /* Loop through the 5 EEPROM bands adding them in order to the
4292 * channel map we maintain (that contains additional information than
4293 * what just in the EEPROM) */
4294 for (band = 1; band <= 5; band++) {
4295
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004296 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004297 &eeprom_ch_info, &eeprom_ch_index);
4298
4299 /* Loop through each band adding each of the channels */
4300 for (ch = 0; ch < eeprom_ch_count; ch++) {
4301 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004302 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4303 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004304
4305 /* permanently store EEPROM's channel regulatory flags
4306 * and max power in channel info database. */
4307 ch_info->eeprom = eeprom_ch_info[ch];
4308
4309 /* Copy the run-time flags so they are there even on
4310 * invalid channels */
4311 ch_info->flags = eeprom_ch_info[ch].flags;
4312
4313 if (!(is_channel_valid(ch_info))) {
4314 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4315 "No traffic\n",
4316 ch_info->channel,
4317 ch_info->flags,
4318 is_channel_a_band(ch_info) ?
4319 "5.2" : "2.4");
4320 ch_info++;
4321 continue;
4322 }
4323
4324 /* Initialize regulatory-based run-time data */
4325 ch_info->max_power_avg = ch_info->curr_txpow =
4326 eeprom_ch_info[ch].max_power_avg;
4327 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4328 ch_info->min_power = 0;
4329
Guy Cohenfe7c4042008-04-21 15:41:56 -07004330 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004331 " %ddBm): Ad-Hoc %ssupported\n",
4332 ch_info->channel,
4333 is_channel_a_band(ch_info) ?
4334 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004335 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004336 CHECK_AND_PRINT(IBSS),
4337 CHECK_AND_PRINT(ACTIVE),
4338 CHECK_AND_PRINT(RADAR),
4339 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004340 CHECK_AND_PRINT(DFS),
4341 eeprom_ch_info[ch].flags,
4342 eeprom_ch_info[ch].max_power_avg,
4343 ((eeprom_ch_info[ch].
4344 flags & EEPROM_CHANNEL_IBSS)
4345 && !(eeprom_ch_info[ch].
4346 flags & EEPROM_CHANNEL_RADAR))
4347 ? "" : "not ");
4348
4349 /* Set the user_txpower_limit to the highest power
4350 * supported by any channel */
4351 if (eeprom_ch_info[ch].max_power_avg >
4352 priv->user_txpower_limit)
4353 priv->user_txpower_limit =
4354 eeprom_ch_info[ch].max_power_avg;
4355
4356 ch_info++;
4357 }
4358 }
4359
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004360 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004361 if (iwl3945_txpower_set_from_eeprom(priv))
4362 return -EIO;
4363
4364 return 0;
4365}
4366
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004367/*
4368 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4369 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004370static void iwl3945_free_channel_map(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004371{
4372 kfree(priv->channel_info);
4373 priv->channel_count = 0;
4374}
4375
Zhu Yib481de92007-09-25 17:54:57 -07004376/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4377 * sending probe req. This should be set long enough to hear probe responses
4378 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004379#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4380#define IWL_ACTIVE_DWELL_TIME_52 (20)
4381
4382#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4383#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004384
4385/* For faster active scanning, scan will move to the next channel if fewer than
4386 * PLCP_QUIET_THRESH packets are heard on this channel within
4387 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4388 * time if it's a quiet channel (nothing responded to our probe, and there's
4389 * no other traffic).
4390 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4391#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004392#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004393
4394/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4395 * Must be set longer than active dwell time.
4396 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4397#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4398#define IWL_PASSIVE_DWELL_TIME_52 (10)
4399#define IWL_PASSIVE_DWELL_BASE (100)
4400#define IWL_CHANNEL_TUNE_TIME 5
4401
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004402#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004403
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004404static inline u16 iwl3945_get_active_dwell_time(struct iwl_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004405 enum ieee80211_band band,
4406 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004407{
Johannes Berg8318d782008-01-24 19:38:38 +01004408 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004409 return IWL_ACTIVE_DWELL_TIME_52 +
4410 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004411 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004412 return IWL_ACTIVE_DWELL_TIME_24 +
4413 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004414}
4415
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004416static u16 iwl3945_get_passive_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004417 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004418{
Johannes Berg8318d782008-01-24 19:38:38 +01004419 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004420 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4421 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4422
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004423 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004424 /* If we're associated, we clamp the maximum passive
4425 * dwell time to be 98% of the beacon interval (minus
4426 * 2 * channel tune time) */
4427 passive = priv->beacon_int;
4428 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4429 passive = IWL_PASSIVE_DWELL_BASE;
4430 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4431 }
4432
Zhu Yib481de92007-09-25 17:54:57 -07004433 return passive;
4434}
4435
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004436static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004437 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004438 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004439 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004440{
4441 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004442 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004443 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004444 u16 passive_dwell = 0;
4445 u16 active_dwell = 0;
4446 int added, i;
4447
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08004448 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01004449 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004450 return 0;
4451
Johannes Berg8318d782008-01-24 19:38:38 +01004452 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004453
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004454 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004455 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004456
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004457 if (passive_dwell <= active_dwell)
4458 passive_dwell = active_dwell + 1;
4459
Johannes Berg8318d782008-01-24 19:38:38 +01004460 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004461 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4462 continue;
4463
Johannes Berg8318d782008-01-24 19:38:38 +01004464 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004465
Johannes Berg8318d782008-01-24 19:38:38 +01004466 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004467 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004468 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004469 scan_ch->channel);
4470 continue;
4471 }
4472
Zhu Yib481de92007-09-25 17:54:57 -07004473 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4474 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004475 /* If passive , set up for auto-switch
4476 * and use long active_dwell time.
4477 */
4478 if (!is_active || is_channel_passive(ch_info) ||
4479 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4480 scan_ch->type = 0; /* passive */
4481 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4482 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4483 } else {
4484 scan_ch->type = 1; /* active */
4485 }
4486
4487 /* Set direct probe bits. These may be used both for active
4488 * scan channels (probes gets sent right away),
4489 * or for passive channels (probes get se sent only after
4490 * hearing clear Rx packet).*/
4491 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4492 if (n_probes)
4493 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4494 } else {
4495 /* uCode v1 does not allow setting direct probe bits on
4496 * passive channel. */
4497 if ((scan_ch->type & 1) && n_probes)
4498 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4499 }
Zhu Yib481de92007-09-25 17:54:57 -07004500
Ben Cahill9fbab512007-11-29 11:09:47 +08004501 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004502 scan_ch->tpc.dsp_atten = 110;
4503 /* scan_pwr_info->tpc.dsp_atten; */
4504
4505 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004506 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004507 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4508 else {
4509 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4510 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004511 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004512 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004513 */
4514 }
4515
4516 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4517 scan_ch->channel,
4518 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4519 (scan_ch->type & 1) ?
4520 active_dwell : passive_dwell);
4521
4522 scan_ch++;
4523 added++;
4524 }
4525
4526 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4527 return added;
4528}
4529
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004530static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004531 struct ieee80211_rate *rates)
4532{
4533 int i;
4534
4535 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004536 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4537 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4538 rates[i].hw_value_short = i;
4539 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08004540 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004541 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004542 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004543 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004544 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004545 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004546 }
Zhu Yib481de92007-09-25 17:54:57 -07004547 }
4548}
4549
4550/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004551 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004552 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004553static int iwl3945_init_geos(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004554{
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004555 struct iwl_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004556 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004557 struct ieee80211_channel *channels;
4558 struct ieee80211_channel *geo_ch;
4559 struct ieee80211_rate *rates;
4560 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004561
Johannes Berg8318d782008-01-24 19:38:38 +01004562 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4563 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004564 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4565 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4566 return 0;
4567 }
4568
Zhu Yib481de92007-09-25 17:54:57 -07004569 channels = kzalloc(sizeof(struct ieee80211_channel) *
4570 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004571 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004572 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004573
Tomas Winkler8211ef72008-03-02 01:36:04 +02004574 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004575 GFP_KERNEL);
4576 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004577 kfree(channels);
4578 return -ENOMEM;
4579 }
4580
Zhu Yib481de92007-09-25 17:54:57 -07004581 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004582 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4583 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4584 /* just OFDM */
4585 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4586 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004587
Tomas Winkler8211ef72008-03-02 01:36:04 +02004588 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4589 sband->channels = channels;
4590 /* OFDM & CCK */
4591 sband->bitrates = rates;
4592 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004593
4594 priv->ieee_channels = channels;
4595 priv->ieee_rates = rates;
4596
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004597 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004598
Tomas Winkler8211ef72008-03-02 01:36:04 +02004599 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004600 ch = &priv->channel_info[i];
4601
Tomas Winkler8211ef72008-03-02 01:36:04 +02004602 /* FIXME: might be removed if scan is OK*/
4603 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004604 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004605
4606 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004607 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004608 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004609 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004610
Tomas Winkler8211ef72008-03-02 01:36:04 +02004611 geo_ch = &sband->channels[sband->n_channels++];
4612
4613 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004614 geo_ch->max_power = ch->max_power_avg;
4615 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004616 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004617
4618 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004619 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4620 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004621
Johannes Berg8318d782008-01-24 19:38:38 +01004622 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4623 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004624
4625 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004626 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004627
4628 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4629 priv->max_channel_txpower_limit =
4630 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004631 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004632 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004633 }
4634
4635 /* Save flags for reg domain usage */
4636 geo_ch->orig_flags = geo_ch->flags;
4637
4638 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4639 ch->channel, geo_ch->center_freq,
4640 is_channel_a_band(ch) ? "5.2" : "2.4",
4641 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4642 "restricted" : "valid",
4643 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004644 }
4645
Tomas Winkler82b9a122008-03-04 18:09:30 -08004646 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4647 priv->cfg->sku & IWL_SKU_A) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004648 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
4649 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
4650 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004651 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004652 }
4653
Tomas Winkler978785a2008-12-19 10:37:31 +08004654 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004655 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4656 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004657
John W. Linvillee0e0a672008-03-25 15:58:40 -04004658 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4659 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4660 &priv->bands[IEEE80211_BAND_2GHZ];
4661 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4662 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4663 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004664
Zhu Yib481de92007-09-25 17:54:57 -07004665 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4666
4667 return 0;
4668}
4669
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004670/*
4671 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4672 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004673static void iwl3945_free_geos(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004674{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004675 kfree(priv->ieee_channels);
4676 kfree(priv->ieee_rates);
4677 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4678}
4679
Zhu Yib481de92007-09-25 17:54:57 -07004680/******************************************************************************
4681 *
4682 * uCode download functions
4683 *
4684 ******************************************************************************/
4685
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004686static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004687{
Tomas Winkler98c92212008-01-14 17:46:20 -08004688 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4689 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4690 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4691 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
4692 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
4693 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07004694}
4695
4696/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004697 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004698 * looking at all data.
4699 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004700static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004701{
4702 u32 val;
4703 u32 save_len = len;
4704 int rc = 0;
4705 u32 errcnt;
4706
4707 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4708
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004709 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004710 if (rc)
4711 return rc;
4712
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004713 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004714 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07004715
4716 errcnt = 0;
4717 for (; len > 0; len -= sizeof(u32), image++) {
4718 /* read data comes through single port, auto-incr addr */
4719 /* NOTE: Use the debugless read so we don't flood kernel log
4720 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004721 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004722 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004723 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004724 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4725 save_len - len, val, le32_to_cpu(*image));
4726 rc = -EIO;
4727 errcnt++;
4728 if (errcnt >= 20)
4729 break;
4730 }
4731 }
4732
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004733 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004734
4735 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08004736 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07004737
4738 return rc;
4739}
4740
4741
4742/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004743 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004744 * using sample data 100 bytes apart. If these sample points are good,
4745 * it's a pretty good bet that everything between them is good, too.
4746 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004747static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004748{
4749 u32 val;
4750 int rc = 0;
4751 u32 errcnt = 0;
4752 u32 i;
4753
4754 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4755
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004756 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004757 if (rc)
4758 return rc;
4759
4760 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
4761 /* read data comes through single port, auto-incr addr */
4762 /* NOTE: Use the debugless read so we don't flood kernel log
4763 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004764 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004765 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004766 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004767 if (val != le32_to_cpu(*image)) {
4768#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08004769 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004770 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4771 i, val, *image);
4772#endif
4773 rc = -EIO;
4774 errcnt++;
4775 if (errcnt >= 3)
4776 break;
4777 }
4778 }
4779
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004780 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004781
4782 return rc;
4783}
4784
4785
4786/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004787 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07004788 * and verify its contents
4789 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004790static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004791{
4792 __le32 *image;
4793 u32 len;
4794 int rc = 0;
4795
4796 /* Try bootstrap */
4797 image = (__le32 *)priv->ucode_boot.v_addr;
4798 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004799 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004800 if (rc == 0) {
4801 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
4802 return 0;
4803 }
4804
4805 /* Try initialize */
4806 image = (__le32 *)priv->ucode_init.v_addr;
4807 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004808 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004809 if (rc == 0) {
4810 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
4811 return 0;
4812 }
4813
4814 /* Try runtime/protocol */
4815 image = (__le32 *)priv->ucode_code.v_addr;
4816 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004817 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004818 if (rc == 0) {
4819 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
4820 return 0;
4821 }
4822
Winkler, Tomas15b16872008-12-19 10:37:33 +08004823 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07004824
Ben Cahill9fbab512007-11-29 11:09:47 +08004825 /* Since nothing seems to match, show first several data entries in
4826 * instruction SRAM, so maybe visual inspection will give a clue.
4827 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07004828 image = (__le32 *)priv->ucode_boot.v_addr;
4829 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004830 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004831
4832 return rc;
4833}
4834
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004835static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004836{
4837 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004838 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004839}
4840
4841/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004842 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07004843 *
4844 * Copy into buffers for card to fetch via bus-mastering
4845 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004846static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004847{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08004848 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004849 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07004850 const struct firmware *ucode_raw;
4851 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004852 const char *name_pre = priv->cfg->fw_name_pre;
4853 const unsigned int api_max = priv->cfg->ucode_api_max;
4854 const unsigned int api_min = priv->cfg->ucode_api_min;
4855 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07004856 u8 *src;
4857 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004858 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07004859
4860 /* Ask kernel firmware_class module to get the boot firmware off disk.
4861 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004862 for (index = api_max; index >= api_min; index--) {
4863 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
4864 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
4865 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004866 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004867 buf, ret);
4868 if (ret == -ENOENT)
4869 continue;
4870 else
4871 goto error;
4872 } else {
4873 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004874 IWL_ERR(priv, "Loaded firmware %s, "
4875 "which is deprecated. "
4876 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004877 buf, api_max);
4878 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
4879 buf, ucode_raw->size);
4880 break;
4881 }
Zhu Yib481de92007-09-25 17:54:57 -07004882 }
4883
Reinette Chatrea0987a82008-12-02 12:14:06 -08004884 if (ret < 0)
4885 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07004886
4887 /* Make sure that we got at least our header! */
4888 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004889 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08004890 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004891 goto err_release;
4892 }
4893
4894 /* Data from ucode file: header followed by uCode images */
4895 ucode = (void *)ucode_raw->data;
4896
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08004897 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08004898 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07004899 inst_size = le32_to_cpu(ucode->inst_size);
4900 data_size = le32_to_cpu(ucode->data_size);
4901 init_size = le32_to_cpu(ucode->init_size);
4902 init_data_size = le32_to_cpu(ucode->init_data_size);
4903 boot_size = le32_to_cpu(ucode->boot_size);
4904
Reinette Chatrea0987a82008-12-02 12:14:06 -08004905 /* api_ver should match the api version forming part of the
4906 * firmware filename ... but we don't check for that and only rely
4907 * on the API version read from firware header from here on forward */
4908
4909 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004910 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08004911 "Driver supports v%u, firmware is v%u.\n",
4912 api_max, api_ver);
4913 priv->ucode_ver = 0;
4914 ret = -EINVAL;
4915 goto err_release;
4916 }
4917 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004918 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08004919 "got %u. New firmware can be obtained "
4920 "from http://www.intellinuxwireless.org.\n",
4921 api_max, api_ver);
4922
Tomas Winkler978785a2008-12-19 10:37:31 +08004923 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
4924 IWL_UCODE_MAJOR(priv->ucode_ver),
4925 IWL_UCODE_MINOR(priv->ucode_ver),
4926 IWL_UCODE_API(priv->ucode_ver),
4927 IWL_UCODE_SERIAL(priv->ucode_ver));
4928
Reinette Chatrea0987a82008-12-02 12:14:06 -08004929 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
4930 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08004931 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
4932 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
4933 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
4934 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
4935 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07004936
Reinette Chatrea0987a82008-12-02 12:14:06 -08004937
Zhu Yib481de92007-09-25 17:54:57 -07004938 /* Verify size of file vs. image size info in file's header */
4939 if (ucode_raw->size < sizeof(*ucode) +
4940 inst_size + data_size + init_size +
4941 init_data_size + boot_size) {
4942
4943 IWL_DEBUG_INFO("uCode file size %d too small\n",
4944 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004945 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004946 goto err_release;
4947 }
4948
4949 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004950 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004951 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
4952 inst_size);
4953 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004954 goto err_release;
4955 }
4956
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004957 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004958 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
4959 data_size);
4960 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004961 goto err_release;
4962 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004963 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004964 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
4965 init_size);
4966 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004967 goto err_release;
4968 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004969 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004970 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
4971 init_data_size);
4972 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004973 goto err_release;
4974 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004975 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004976 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
4977 boot_size);
4978 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004979 goto err_release;
4980 }
4981
4982 /* Allocate ucode buffers for card's bus-master loading ... */
4983
4984 /* Runtime instructions and 2 copies of data:
4985 * 1) unmodified from disk
4986 * 2) backup cache for save/restore during power-downs */
4987 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004988 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07004989
4990 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004991 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07004992
4993 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004994 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07004995
4996 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08004997 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07004998 goto err_pci_alloc;
4999
Tomas Winkler90e759d2007-11-29 11:09:41 +08005000 /* Initialization instructions and data */
5001 if (init_size && init_data_size) {
5002 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005003 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005004
5005 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005006 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005007
5008 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5009 goto err_pci_alloc;
5010 }
5011
5012 /* Bootstrap (instructions only, no data) */
5013 if (boot_size) {
5014 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005015 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005016
5017 if (!priv->ucode_boot.v_addr)
5018 goto err_pci_alloc;
5019 }
5020
Zhu Yib481de92007-09-25 17:54:57 -07005021 /* Copy images into buffers for card's bus-master reads ... */
5022
5023 /* Runtime instructions (first block of data in file) */
5024 src = &ucode->data[0];
5025 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005026 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005027 memcpy(priv->ucode_code.v_addr, src, len);
5028 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5029 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5030
5031 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005032 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005033 src = &ucode->data[inst_size];
5034 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005035 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005036 memcpy(priv->ucode_data.v_addr, src, len);
5037 memcpy(priv->ucode_data_backup.v_addr, src, len);
5038
5039 /* Initialization instructions (3rd block) */
5040 if (init_size) {
5041 src = &ucode->data[inst_size + data_size];
5042 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005043 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5044 len);
Zhu Yib481de92007-09-25 17:54:57 -07005045 memcpy(priv->ucode_init.v_addr, src, len);
5046 }
5047
5048 /* Initialization data (4th block) */
5049 if (init_data_size) {
5050 src = &ucode->data[inst_size + data_size + init_size];
5051 len = priv->ucode_init_data.len;
5052 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5053 (int)len);
5054 memcpy(priv->ucode_init_data.v_addr, src, len);
5055 }
5056
5057 /* Bootstrap instructions (5th block) */
5058 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5059 len = priv->ucode_boot.len;
5060 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5061 (int)len);
5062 memcpy(priv->ucode_boot.v_addr, src, len);
5063
5064 /* We have our copies now, allow OS release its copies */
5065 release_firmware(ucode_raw);
5066 return 0;
5067
5068 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08005069 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005070 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005071 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005072
5073 err_release:
5074 release_firmware(ucode_raw);
5075
5076 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005077 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005078}
5079
5080
5081/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005082 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005083 *
5084 * Tell initialization uCode where to find runtime uCode.
5085 *
5086 * BSM registers initially contain pointers to initialization uCode.
5087 * We need to replace them to load runtime uCode inst and data,
5088 * and to save runtime data when powering down.
5089 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005090static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005091{
5092 dma_addr_t pinst;
5093 dma_addr_t pdata;
5094 int rc = 0;
5095 unsigned long flags;
5096
5097 /* bits 31:0 for 3945 */
5098 pinst = priv->ucode_code.p_addr;
5099 pdata = priv->ucode_data_backup.p_addr;
5100
5101 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005102 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005103 if (rc) {
5104 spin_unlock_irqrestore(&priv->lock, flags);
5105 return rc;
5106 }
5107
5108 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005109 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5110 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5111 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005112 priv->ucode_data.len);
5113
Tomas Winklera96a27f2008-10-23 23:48:56 -07005114 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005115 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005116 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005117 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5118
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005119 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005120
5121 spin_unlock_irqrestore(&priv->lock, flags);
5122
5123 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5124
5125 return rc;
5126}
5127
5128/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005129 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005130 *
5131 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5132 *
Zhu Yib481de92007-09-25 17:54:57 -07005133 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005134 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005135static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005136{
5137 /* Check alive response for "valid" sign from uCode */
5138 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5139 /* We had an error bringing up the hardware, so take it
5140 * all the way back down so we can try again */
5141 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5142 goto restart;
5143 }
5144
5145 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5146 * This is a paranoid check, because we would not have gotten the
5147 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005148 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005149 /* Runtime instruction load was bad;
5150 * take it all the way back down so we can try again */
5151 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5152 goto restart;
5153 }
5154
5155 /* Send pointers to protocol/runtime uCode image ... init code will
5156 * load and launch runtime uCode, which will send us another "Alive"
5157 * notification. */
5158 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005159 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005160 /* Runtime instruction load won't happen;
5161 * take it all the way back down so we can try again */
5162 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5163 goto restart;
5164 }
5165 return;
5166
5167 restart:
5168 queue_work(priv->workqueue, &priv->restart);
5169}
5170
5171
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005172/* temporary */
5173static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5174 struct sk_buff *skb);
5175
Zhu Yib481de92007-09-25 17:54:57 -07005176/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005177 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005178 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005179 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005180 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005181static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005182{
5183 int rc = 0;
5184 int thermal_spin = 0;
5185 u32 rfkill;
5186
5187 IWL_DEBUG_INFO("Runtime Alive received.\n");
5188
5189 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5190 /* We had an error bringing up the hardware, so take it
5191 * all the way back down so we can try again */
5192 IWL_DEBUG_INFO("Alive failed.\n");
5193 goto restart;
5194 }
5195
5196 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5197 * This is a paranoid check, because we would not have gotten the
5198 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005199 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005200 /* Runtime instruction load was bad;
5201 * take it all the way back down so we can try again */
5202 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5203 goto restart;
5204 }
5205
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005206 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005207
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005208 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005209 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005210 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005211 return;
5212 }
5213
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005214 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005215 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005216 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005217
5218 if (rfkill & 0x1) {
5219 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005220 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005221 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005222 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005223 thermal_spin++;
5224 udelay(10);
5225 }
5226
5227 if (thermal_spin)
5228 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5229 thermal_spin * 10);
5230 } else
5231 set_bit(STATUS_RF_KILL_HW, &priv->status);
5232
Ben Cahill9fbab512007-11-29 11:09:47 +08005233 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005234 set_bit(STATUS_ALIVE, &priv->status);
5235
5236 /* Clear out the uCode error bit if it is set */
5237 clear_bit(STATUS_FW_ERROR, &priv->status);
5238
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005239 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005240 return;
5241
Johannes Berg36d68252008-05-15 12:55:26 +02005242 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005243
5244 priv->active_rate = priv->rates_mask;
5245 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5246
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005247 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005248
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005249 if (iwl3945_is_associated(priv)) {
5250 struct iwl3945_rxon_cmd *active_rxon =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005251 (struct iwl3945_rxon_cmd *)(&priv->active39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005252
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005253 memcpy(&priv->staging39_rxon, &priv->active39_rxon,
5254 sizeof(priv->staging39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07005255 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5256 } else {
5257 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005258 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005259 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07005260 }
5261
Ben Cahill9fbab512007-11-29 11:09:47 +08005262 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005263 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005264
5265 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005266 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005267
Zhu Yib481de92007-09-25 17:54:57 -07005268 iwl3945_reg_txpower_periodic(priv);
5269
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005270 iwl3945_led_register(priv);
5271
Zhu Yib481de92007-09-25 17:54:57 -07005272 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005273 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08005274 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005275
5276 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005277 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005278
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005279 /* reassociate for ADHOC mode */
5280 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5281 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5282 priv->vif);
5283 if (beacon)
5284 iwl3945_mac_beacon_update(priv->hw, beacon);
5285 }
5286
Zhu Yib481de92007-09-25 17:54:57 -07005287 return;
5288
5289 restart:
5290 queue_work(priv->workqueue, &priv->restart);
5291}
5292
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005293static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005294
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005295static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005296{
5297 unsigned long flags;
5298 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5299 struct ieee80211_conf *conf = NULL;
5300
5301 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5302
5303 conf = ieee80211_get_hw_conf(priv->hw);
5304
5305 if (!exit_pending)
5306 set_bit(STATUS_EXIT_PENDING, &priv->status);
5307
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005308 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005309 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005310
5311 /* Unblock any waiting calls */
5312 wake_up_interruptible_all(&priv->wait_command_queue);
5313
Zhu Yib481de92007-09-25 17:54:57 -07005314 /* Wipe out the EXIT_PENDING status bit if we are not actually
5315 * exiting the module */
5316 if (!exit_pending)
5317 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5318
5319 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005320 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005321
5322 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005323 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005324 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005325 spin_unlock_irqrestore(&priv->lock, flags);
5326 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005327
5328 if (priv->mac80211_registered)
5329 ieee80211_stop_queues(priv->hw);
5330
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005331 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005332 * clear all bits but the RF Kill and SUSPEND bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005333 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005334 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5335 STATUS_RF_KILL_HW |
5336 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5337 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005338 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5339 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005340 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005341 STATUS_IN_SUSPEND |
5342 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5343 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005344 goto exit;
5345 }
5346
5347 /* ...otherwise clear out all the status bits but the RF Kill and
5348 * SUSPEND bits and continue taking the NIC down. */
5349 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5350 STATUS_RF_KILL_HW |
5351 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5352 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005353 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5354 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005355 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5356 STATUS_IN_SUSPEND |
5357 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005358 STATUS_FW_ERROR |
5359 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5360 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005361
5362 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005363 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005364 spin_unlock_irqrestore(&priv->lock, flags);
5365
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005366 iwl3945_hw_txq_ctx_stop(priv);
5367 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005368
5369 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005370 if (!iwl_grab_nic_access(priv)) {
5371 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005372 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005373 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005374 }
5375 spin_unlock_irqrestore(&priv->lock, flags);
5376
5377 udelay(5);
5378
Kolekar, Abhijeet01ec6162008-12-19 10:37:38 +08005379 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005380 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08005381 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005382
5383 if (priv->ibss_beacon)
5384 dev_kfree_skb(priv->ibss_beacon);
5385 priv->ibss_beacon = NULL;
5386
5387 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005388 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005389}
5390
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005391static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005392{
5393 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005394 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005395 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005396
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005397 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005398}
5399
5400#define MAX_HW_RESTARTS 5
5401
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005402static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005403{
5404 int rc, i;
5405
5406 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005407 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07005408 return -EIO;
5409 }
5410
5411 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005412 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07005413 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005414 return -ENODEV;
5415 }
5416
Reinette Chatree903fbd2008-01-30 22:05:15 -08005417 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005418 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005419 return -EIO;
5420 }
5421
Zhu Yie655b9f2008-01-24 02:19:38 -08005422 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005423 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08005424 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5425 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5426 else {
5427 set_bit(STATUS_RF_KILL_HW, &priv->status);
5428 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005429 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005430 return -ENODEV;
5431 }
Zhu Yib481de92007-09-25 17:54:57 -07005432 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005433
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005434 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005435
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005436 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005437 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005438 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07005439 return rc;
5440 }
5441
5442 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005443 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5444 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005445 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5446
5447 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005448 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005449 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005450
5451 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005452 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5453 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005454
5455 /* Copy original ucode data image from disk into backup cache.
5456 * This will be used to initialize the on-board processor's
5457 * data SRAM for a clean start when the runtime program first loads. */
5458 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08005459 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005460
Zhu Yie655b9f2008-01-24 02:19:38 -08005461 /* We return success when we resume from suspend and rf_kill is on. */
5462 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5463 return 0;
5464
Zhu Yib481de92007-09-25 17:54:57 -07005465 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5466
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005467 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005468
5469 /* load bootstrap state machine,
5470 * load bootstrap program into processor's memory,
5471 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08005472 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005473
5474 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005475 IWL_ERR(priv,
5476 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07005477 continue;
5478 }
5479
5480 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005481 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005482
Zhu Yib481de92007-09-25 17:54:57 -07005483 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5484
5485 return 0;
5486 }
5487
5488 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005489 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005490 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005491
5492 /* tried to restart and config the device for as long as our
5493 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08005494 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07005495 return -EIO;
5496}
5497
5498
5499/*****************************************************************************
5500 *
5501 * Workqueue callbacks
5502 *
5503 *****************************************************************************/
5504
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005505static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005506{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005507 struct iwl_priv *priv =
5508 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005509
5510 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5511 return;
5512
5513 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005514 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005515 mutex_unlock(&priv->mutex);
5516}
5517
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005518static void iwl3945_bg_alive_start(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, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005522
5523 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5524 return;
5525
5526 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005527 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005528 mutex_unlock(&priv->mutex);
5529}
5530
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005531static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005532{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005533 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005534
5535 wake_up_interruptible(&priv->wait_command_queue);
5536
5537 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5538 return;
5539
5540 mutex_lock(&priv->mutex);
5541
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005542 if (!iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005543 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5544 "HW and/or SW RF Kill no longer active, restarting "
5545 "device\n");
5546 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5547 queue_work(priv->workqueue, &priv->restart);
5548 } else {
5549
5550 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5551 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5552 "disabled by SW switch\n");
5553 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005554 IWL_WARN(priv, "Radio Frequency Kill Switch is On:\n"
Zhu Yib481de92007-09-25 17:54:57 -07005555 "Kill switch must be turned off for "
5556 "wireless networking to work.\n");
5557 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005558
Zhu Yib481de92007-09-25 17:54:57 -07005559 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005560 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005561}
5562
5563#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
5564
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005565static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005566{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005567 struct iwl_priv *priv =
5568 container_of(data, struct iwl_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07005569
5570 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5571 return;
5572
5573 mutex_lock(&priv->mutex);
5574 if (test_bit(STATUS_SCANNING, &priv->status) ||
5575 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5576 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
5577 "Scan completion watchdog resetting adapter (%dms)\n",
5578 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005579
Zhu Yib481de92007-09-25 17:54:57 -07005580 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005581 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005582 }
5583 mutex_unlock(&priv->mutex);
5584}
5585
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005586static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005587{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005588 struct iwl_priv *priv =
5589 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08005590 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07005591 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005592 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07005593 .meta.flags = CMD_SIZE_HUGE,
5594 };
5595 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005596 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07005597 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005598 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01005599 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04005600 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07005601
5602 conf = ieee80211_get_hw_conf(priv->hw);
5603
5604 mutex_lock(&priv->mutex);
5605
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005606 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005607 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005608 goto done;
5609 }
5610
Tomas Winklera96a27f2008-10-23 23:48:56 -07005611 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07005612 * was given the chance to run... */
5613 if (!test_bit(STATUS_SCANNING, &priv->status))
5614 goto done;
5615
5616 /* This should never be called or scheduled if there is currently
5617 * a scan active in the hardware. */
5618 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
5619 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
5620 "Ignoring second request.\n");
5621 rc = -EIO;
5622 goto done;
5623 }
5624
5625 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5626 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
5627 goto done;
5628 }
5629
5630 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5631 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
5632 goto done;
5633 }
5634
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005635 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005636 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
5637 goto done;
5638 }
5639
5640 if (!test_bit(STATUS_READY, &priv->status)) {
5641 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
5642 goto done;
5643 }
5644
5645 if (!priv->scan_bands) {
5646 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
5647 goto done;
5648 }
5649
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005650 if (!priv->scan39) {
5651 priv->scan39 = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07005652 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005653 if (!priv->scan39) {
Zhu Yib481de92007-09-25 17:54:57 -07005654 rc = -ENOMEM;
5655 goto done;
5656 }
5657 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005658 scan = priv->scan39;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005659 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07005660
5661 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
5662 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
5663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005664 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005665 u16 interval = 0;
5666 u32 extra;
5667 u32 suspend_time = 100;
5668 u32 scan_suspend_time = 100;
5669 unsigned long flags;
5670
5671 IWL_DEBUG_INFO("Scanning while associated...\n");
5672
5673 spin_lock_irqsave(&priv->lock, flags);
5674 interval = priv->beacon_int;
5675 spin_unlock_irqrestore(&priv->lock, flags);
5676
5677 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005678 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07005679 if (!interval)
5680 interval = suspend_time;
5681 /*
5682 * suspend time format:
5683 * 0-19: beacon interval in usec (time before exec.)
5684 * 20-23: 0
5685 * 24-31: number of beacons (suspend between channels)
5686 */
5687
5688 extra = (suspend_time / interval) << 24;
5689 scan_suspend_time = 0xFF0FFFFF &
5690 (extra | ((suspend_time % interval) * 1024));
5691
5692 scan->suspend_time = cpu_to_le32(scan_suspend_time);
5693 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
5694 scan_suspend_time, interval);
5695 }
5696
5697 /* We should add the ability for user to lock to PASSIVE ONLY */
5698 if (priv->one_direct_scan) {
5699 IWL_DEBUG_SCAN
5700 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005701 print_ssid(ssid, priv->direct_ssid,
5702 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07005703 scan->direct_scan[0].id = WLAN_EID_SSID;
5704 scan->direct_scan[0].len = priv->direct_ssid_len;
5705 memcpy(scan->direct_scan[0].ssid,
5706 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005707 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005708 } else
Bill Moss786b4552008-04-17 16:03:40 -07005709 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005710
5711 /* We don't build a direct scan probe request; the uCode will do
5712 * that based on the direct_mask added to each channel entry */
5713 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005714 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01005715 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07005716 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08005717 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07005718 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
5719
5720 /* flags + rate selection */
5721
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005722 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005723 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
5724 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
5725 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01005726 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005727 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005728 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
5729 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01005730 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005731 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005732 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07005733 goto done;
5734 }
5735
5736 /* select Rx antennas */
5737 scan->flags |= iwl3945_get_antenna_flags(priv);
5738
Johannes Berg05c914f2008-09-11 00:01:58 +02005739 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07005740 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
5741
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005742 scan->channel_count =
5743 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
5744 n_probes,
5745 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07005746
Reinette Chatre14b54332008-11-04 12:21:35 -08005747 if (scan->channel_count == 0) {
5748 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
5749 goto done;
5750 }
5751
Zhu Yib481de92007-09-25 17:54:57 -07005752 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005753 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07005754 cmd.data = scan;
5755 scan->len = cpu_to_le16(cmd.len);
5756
5757 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005758 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07005759 if (rc)
5760 goto done;
5761
5762 queue_delayed_work(priv->workqueue, &priv->scan_check,
5763 IWL_SCAN_CHECK_WATCHDOG);
5764
5765 mutex_unlock(&priv->mutex);
5766 return;
5767
5768 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08005769 /* can not perform scan make sure we clear scanning
5770 * bits from status so next scan request can be performed.
5771 * if we dont clear scanning status bit here all next scan
5772 * will fail
5773 */
5774 clear_bit(STATUS_SCAN_HW, &priv->status);
5775 clear_bit(STATUS_SCANNING, &priv->status);
5776
Ian Schram01ebd062007-10-25 17:15:22 +08005777 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07005778 queue_work(priv->workqueue, &priv->scan_completed);
5779 mutex_unlock(&priv->mutex);
5780}
5781
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005782static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005783{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005784 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07005785
5786 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5787 return;
5788
5789 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005790 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005791 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005792 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005793}
5794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005795static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005796{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005797 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07005798
5799 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5800 return;
5801
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005802 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005803 queue_work(priv->workqueue, &priv->up);
5804}
5805
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005806static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005807{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005808 struct iwl_priv *priv =
5809 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07005810
5811 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5812 return;
5813
5814 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005815 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005816 mutex_unlock(&priv->mutex);
5817}
5818
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005819#define IWL_DELAY_NEXT_SCAN (HZ*2)
5820
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005821static void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005822{
Zhu Yib481de92007-09-25 17:54:57 -07005823 int rc = 0;
5824 struct ieee80211_conf *conf = NULL;
5825
Johannes Berg05c914f2008-09-11 00:01:58 +02005826 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005827 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07005828 return;
5829 }
5830
5831
Johannes Berge1749612008-10-27 15:59:26 -07005832 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005833 priv->assoc_id, priv->active39_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07005834
5835 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5836 return;
5837
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005838 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005839 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005840
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005841 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005842
Zhu Yib481de92007-09-25 17:54:57 -07005843 conf = ieee80211_get_hw_conf(priv->hw);
5844
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005845 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005846 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005847
Tomas Winkler28afaf92008-12-19 10:37:06 +08005848 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005849 iwl3945_setup_rxon_timing(priv);
5850 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07005851 sizeof(priv->rxon_timing), &priv->rxon_timing);
5852 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005853 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07005854 "Attempting to continue.\n");
5855
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005856 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005857
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005858 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07005859
5860 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
5861 priv->assoc_id, priv->beacon_int);
5862
5863 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005864 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005865 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005866 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005867
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005868 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07005869 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005870 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005871 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005872 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005873
Johannes Berg05c914f2008-09-11 00:01:58 +02005874 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005875 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005876
5877 }
5878
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005879 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005880
5881 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02005882 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005883 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07005884 break;
5885
Johannes Berg05c914f2008-09-11 00:01:58 +02005886 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07005887
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08005888 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005889 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005890 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01005891 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07005892 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
5893 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005894 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
5895 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005896
5897 break;
5898
5899 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08005900 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005901 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005902 break;
5903 }
5904
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005905 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08005906
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005907 /* we have just associated, don't start scan too early */
5908 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08005909}
5910
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005911static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005912{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005913 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07005914
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005915 if (!iwl_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005916 return;
5917
5918 mutex_lock(&priv->mutex);
5919
5920 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005921 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005922
5923 mutex_unlock(&priv->mutex);
5924}
5925
Johannes Berge8975582008-10-09 12:18:51 +02005926static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005927
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005928static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005929{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005930 struct iwl_priv *priv =
5931 container_of(work, struct iwl_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07005932
5933 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
5934
5935 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5936 return;
5937
Zhu Yia0646472007-12-20 14:10:01 +08005938 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02005939 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005940
Zhu Yib481de92007-09-25 17:54:57 -07005941 ieee80211_scan_completed(priv->hw);
5942
5943 /* Since setting the TXPOWER may have been deferred while
5944 * performing the scan, fire one off */
5945 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005946 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005947 mutex_unlock(&priv->mutex);
5948}
5949
5950/*****************************************************************************
5951 *
5952 * mac80211 entry point functions
5953 *
5954 *****************************************************************************/
5955
Zhu Yi5a669262008-01-14 17:46:18 -08005956#define UCODE_READY_TIMEOUT (2 * HZ)
5957
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005958static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07005959{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005960 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08005961 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07005962
5963 IWL_DEBUG_MAC80211("enter\n");
5964
Zhu Yi5a669262008-01-14 17:46:18 -08005965 if (pci_enable_device(priv->pci_dev)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005966 IWL_ERR(priv, "Fail to pci_enable_device\n");
Zhu Yi5a669262008-01-14 17:46:18 -08005967 return -ENODEV;
5968 }
5969 pci_restore_state(priv->pci_dev);
5970 pci_enable_msi(priv->pci_dev);
5971
5972 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
5973 DRV_NAME, priv);
5974 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005975 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
Zhu Yi5a669262008-01-14 17:46:18 -08005976 goto out_disable_msi;
5977 }
5978
Zhu Yib481de92007-09-25 17:54:57 -07005979 /* we should be verifying the device is ready to be opened */
5980 mutex_lock(&priv->mutex);
5981
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005982 memset(&priv->staging39_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
Zhu Yi5a669262008-01-14 17:46:18 -08005983 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
5984 * ucode filename and max sizes are card-specific. */
5985
5986 if (!priv->ucode_code.len) {
5987 ret = iwl3945_read_ucode(priv);
5988 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005989 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08005990 mutex_unlock(&priv->mutex);
5991 goto out_release_irq;
5992 }
5993 }
5994
Zhu Yie655b9f2008-01-24 02:19:38 -08005995 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08005996
Zhu Yib481de92007-09-25 17:54:57 -07005997 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08005998
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005999 iwl3945_rfkill_set_hw_state(priv);
6000
Zhu Yie655b9f2008-01-24 02:19:38 -08006001 if (ret)
6002 goto out_release_irq;
6003
6004 IWL_DEBUG_INFO("Start UP work.\n");
6005
6006 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6007 return 0;
6008
Zhu Yi5a669262008-01-14 17:46:18 -08006009 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6010 * mac80211 will not be run successfully. */
6011 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6012 test_bit(STATUS_READY, &priv->status),
6013 UCODE_READY_TIMEOUT);
6014 if (!ret) {
6015 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08006016 IWL_ERR(priv,
6017 "Wait for START_ALIVE timeout after %dms.\n",
6018 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08006019 ret = -ETIMEDOUT;
6020 goto out_release_irq;
6021 }
6022 }
6023
Zhu Yie655b9f2008-01-24 02:19:38 -08006024 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006025 IWL_DEBUG_MAC80211("leave\n");
6026 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006027
6028out_release_irq:
6029 free_irq(priv->pci_dev->irq, priv);
6030out_disable_msi:
6031 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006032 pci_disable_device(priv->pci_dev);
6033 priv->is_open = 0;
6034 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006035 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006036}
6037
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006038static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006039{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006040 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006041
6042 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006043
Zhu Yie655b9f2008-01-24 02:19:38 -08006044 if (!priv->is_open) {
6045 IWL_DEBUG_MAC80211("leave - skip\n");
6046 return;
6047 }
6048
Zhu Yib481de92007-09-25 17:54:57 -07006049 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006050
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006051 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006052 /* stop mac, cancel any scan request and clear
6053 * RXON_FILTER_ASSOC_MSK BIT
6054 */
Zhu Yi5a669262008-01-14 17:46:18 -08006055 mutex_lock(&priv->mutex);
6056 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006057 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006058 }
6059
Zhu Yi5a669262008-01-14 17:46:18 -08006060 iwl3945_down(priv);
6061
6062 flush_workqueue(priv->workqueue);
6063 free_irq(priv->pci_dev->irq, priv);
6064 pci_disable_msi(priv->pci_dev);
6065 pci_save_state(priv->pci_dev);
6066 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006067
Zhu Yib481de92007-09-25 17:54:57 -07006068 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006069}
6070
Johannes Berge039fa42008-05-15 12:55:29 +02006071static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006072{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006073 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006074
6075 IWL_DEBUG_MAC80211("enter\n");
6076
Zhu Yib481de92007-09-25 17:54:57 -07006077 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006078 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006079
Johannes Berge039fa42008-05-15 12:55:29 +02006080 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006081 dev_kfree_skb_any(skb);
6082
6083 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006084 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006085}
6086
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006087static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006088 struct ieee80211_if_init_conf *conf)
6089{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006090 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006091 unsigned long flags;
6092
Johannes Berg32bfd352007-12-19 01:31:26 +01006093 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006094
Johannes Berg32bfd352007-12-19 01:31:26 +01006095 if (priv->vif) {
6096 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006097 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006098 }
6099
6100 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006101 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006102 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006103
6104 spin_unlock_irqrestore(&priv->lock, flags);
6105
6106 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006107
6108 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006109 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006110 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6111 }
6112
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006113 if (iwl_is_ready(priv))
Zhu Yi5a669262008-01-14 17:46:18 -08006114 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006115
Zhu Yib481de92007-09-25 17:54:57 -07006116 mutex_unlock(&priv->mutex);
6117
Zhu Yi5a669262008-01-14 17:46:18 -08006118 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006119 return 0;
6120}
6121
6122/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006123 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006124 *
6125 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6126 * be set inappropriately and the driver currently sets the hardware up to
6127 * use it whenever needed.
6128 */
Johannes Berge8975582008-10-09 12:18:51 +02006129static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006130{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006131 struct iwl_priv *priv = hw->priv;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006132 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006133 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006134 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006135 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006136
6137 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006138 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006139
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006140 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006141 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006142 ret = -EIO;
6143 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006144 }
6145
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006146 if (unlikely(!iwl3945_mod_params.disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006147 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006148 IWL_DEBUG_MAC80211("leave - scanning\n");
6149 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006150 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006151 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006152 }
6153
6154 spin_lock_irqsave(&priv->lock, flags);
6155
Johannes Berg8318d782008-01-24 19:38:38 +01006156 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6157 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006158 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006159 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006160 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006161 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6162 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006163 ret = -EINVAL;
6164 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006165 }
6166
Johannes Berg8318d782008-01-24 19:38:38 +01006167 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006168
Johannes Berg8318d782008-01-24 19:38:38 +01006169 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006170
6171 /* The list of supported rates and rate mask can be different
6172 * for each phymode; since the phymode may have changed, reset
6173 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006174 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006175
6176 spin_unlock_irqrestore(&priv->lock, flags);
6177
6178#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6179 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006180 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006181 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006182 }
6183#endif
6184
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006185 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006186
6187 if (!conf->radio_enabled) {
6188 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006189 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006190 }
6191
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006192 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006193 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006194 ret = -EIO;
6195 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006196 }
6197
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006198 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006199
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006200 if (memcmp(&priv->active39_rxon,
6201 &priv->staging39_rxon, sizeof(priv->staging39_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006202 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006203 else
6204 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6205
6206 IWL_DEBUG_MAC80211("leave\n");
6207
Zhu Yi76bb77e2007-11-22 10:53:22 +08006208out:
Zhu Yia0646472007-12-20 14:10:01 +08006209 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006210 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006211 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006212}
6213
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006214static void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006215{
6216 int rc = 0;
6217
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006218 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006219 return;
6220
6221 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006222 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006223
6224 /* RXON - unassoc (to set timing command) */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006225 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006226 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006227
6228 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08006229 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006230 iwl3945_setup_rxon_timing(priv);
6231 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006232 sizeof(priv->rxon_timing), &priv->rxon_timing);
6233 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006234 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07006235 "Attempting to continue.\n");
6236
6237 /* FIXME: what should be the assoc_id for AP? */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006238 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07006239 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006240 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006241 RXON_FLG_SHORT_PREAMBLE_MSK;
6242 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006243 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006244 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6245
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006246 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07006247 if (priv->assoc_capability &
6248 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006249 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006250 RXON_FLG_SHORT_SLOT_MSK;
6251 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006252 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006253 ~RXON_FLG_SHORT_SLOT_MSK;
6254
Johannes Berg05c914f2008-09-11 00:01:58 +02006255 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006256 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006257 ~RXON_FLG_SHORT_SLOT_MSK;
6258 }
6259 /* restore RXON assoc */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006260 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006261 iwl3945_commit_rxon(priv);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08006262 iwl3945_add_station(priv, iwl_bcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006263 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006264 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006265
6266 /* FIXME - we need to add code here to detect a totally new
6267 * configuration, reset the AP, unassoc, rxon timing, assoc,
6268 * clear sta table, add BCAST sta... */
6269}
6270
Johannes Berg32bfd352007-12-19 01:31:26 +01006271static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6272 struct ieee80211_vif *vif,
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006273 struct ieee80211_if_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07006274{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006275 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006276 int rc;
6277
6278 if (conf == NULL)
6279 return -EIO;
6280
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006281 if (priv->vif != vif) {
6282 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006283 return 0;
6284 }
6285
Johannes Berg9d139c82008-07-09 14:40:37 +02006286 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006287 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006288 conf->changed & IEEE80211_IFCC_BEACON) {
6289 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6290 if (!beacon)
6291 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006292 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006293 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006294 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006295 if (rc)
6296 return rc;
6297 }
6298
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006299 if (!iwl_is_alive(priv))
Zhu Yi5a669262008-01-14 17:46:18 -08006300 return -EAGAIN;
6301
Zhu Yib481de92007-09-25 17:54:57 -07006302 mutex_lock(&priv->mutex);
6303
Zhu Yib481de92007-09-25 17:54:57 -07006304 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006305 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006306
Johannes Berg4150c572007-09-17 01:29:23 -04006307/*
6308 * very dubious code was here; the probe filtering flag is never set:
6309 *
Zhu Yib481de92007-09-25 17:54:57 -07006310 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6311 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006312 */
Zhu Yib481de92007-09-25 17:54:57 -07006313
Johannes Berg05c914f2008-09-11 00:01:58 +02006314 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006315 if (!conf->bssid) {
6316 conf->bssid = priv->mac_addr;
6317 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006318 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6319 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006320 }
6321 if (priv->ibss_beacon)
6322 dev_kfree_skb(priv->ibss_beacon);
6323
Johannes Berg9d139c82008-07-09 14:40:37 +02006324 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006325 }
6326
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006327 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08006328 goto done;
6329
Zhu Yib481de92007-09-25 17:54:57 -07006330 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6331 !is_multicast_ether_addr(conf->bssid)) {
6332 /* If there is currently a HW scan going on in the background
6333 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006334 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006335 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07006336 "after 100ms\n");
6337 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6338 mutex_unlock(&priv->mutex);
6339 return -EAGAIN;
6340 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006341 memcpy(priv->staging39_rxon.bssid_addr, conf->bssid, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006342
6343 /* TODO: Audit driver for usage of these members and see
6344 * if mac80211 deprecates them (priv->bssid looks like it
6345 * shouldn't be there, but I haven't scanned the IBSS code
6346 * to verify) - jpk */
6347 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6348
Johannes Berg05c914f2008-09-11 00:01:58 +02006349 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006350 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006351 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006352 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006353 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006354 iwl3945_add_station(priv,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006355 priv->active39_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006356 }
6357
6358 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006359 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006360 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006361 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006362 }
6363
Mohamed Abbasfde35712007-11-29 11:10:15 +08006364 done:
Zhu Yib481de92007-09-25 17:54:57 -07006365 IWL_DEBUG_MAC80211("leave\n");
6366 mutex_unlock(&priv->mutex);
6367
6368 return 0;
6369}
6370
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006371static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006372 unsigned int changed_flags,
6373 unsigned int *total_flags,
6374 int mc_count, struct dev_addr_list *mc_list)
6375{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006376 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006377 __le32 *filter_flags = &priv->staging39_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006378
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006379 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6380 changed_flags, *total_flags);
6381
6382 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6383 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6384 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6385 else
6386 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006387 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006388 if (changed_flags & FIF_ALLMULTI) {
6389 if (*total_flags & FIF_ALLMULTI)
6390 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6391 else
6392 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6393 }
6394 if (changed_flags & FIF_CONTROL) {
6395 if (*total_flags & FIF_CONTROL)
6396 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6397 else
6398 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6399 }
6400 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6401 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6402 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6403 else
6404 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6405 }
6406
6407 /* We avoid iwl_commit_rxon here to commit the new filter flags
6408 * since mac80211 will call ieee80211_hw_config immediately.
6409 * (mc_list is not supported at this time). Otherwise, we need to
6410 * queue a background iwl_commit_rxon work.
6411 */
6412
6413 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006414 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006415}
6416
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006417static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006418 struct ieee80211_if_init_conf *conf)
6419{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006420 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006421
6422 IWL_DEBUG_MAC80211("enter\n");
6423
6424 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006425
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006426 if (iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006427 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006428 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Mohamed Abbasfde35712007-11-29 11:10:15 +08006429 iwl3945_commit_rxon(priv);
6430 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006431 if (priv->vif == conf->vif) {
6432 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006433 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006434 }
6435 mutex_unlock(&priv->mutex);
6436
6437 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006438}
6439
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006440#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6441
6442static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6443 struct ieee80211_vif *vif,
6444 struct ieee80211_bss_conf *bss_conf,
6445 u32 changes)
6446{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006447 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006448
6449 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6450
6451 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6452 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6453 bss_conf->use_short_preamble);
6454 if (bss_conf->use_short_preamble)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006455 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006456 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006457 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006458 }
6459
6460 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6461 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6462 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006463 priv->staging39_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006464 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006465 priv->staging39_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006466 }
6467
6468 if (changes & BSS_CHANGED_ASSOC) {
6469 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6470 /* This should never happen as this function should
6471 * never be called from interrupt context. */
6472 if (WARN_ON_ONCE(in_interrupt()))
6473 return;
6474 if (bss_conf->assoc) {
6475 priv->assoc_id = bss_conf->aid;
6476 priv->beacon_int = bss_conf->beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006477 priv->timestamp = bss_conf->timestamp;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006478 priv->assoc_capability = bss_conf->assoc_capability;
6479 priv->next_scan_jiffies = jiffies +
6480 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6481 mutex_lock(&priv->mutex);
6482 iwl3945_post_associate(priv);
6483 mutex_unlock(&priv->mutex);
6484 } else {
6485 priv->assoc_id = 0;
6486 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6487 }
6488 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6489 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6490 iwl3945_send_rxon_assoc(priv);
6491 }
6492
6493}
6494
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006495static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006496{
6497 int rc = 0;
6498 unsigned long flags;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006499 struct iwl_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006500 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006501
6502 IWL_DEBUG_MAC80211("enter\n");
6503
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006504 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006505 spin_lock_irqsave(&priv->lock, flags);
6506
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006507 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006508 rc = -EIO;
6509 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6510 goto out_unlock;
6511 }
6512
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006513 /* we don't schedule scan within next_scan_jiffies period */
6514 if (priv->next_scan_jiffies &&
6515 time_after(priv->next_scan_jiffies, jiffies)) {
6516 rc = -EAGAIN;
6517 goto out_unlock;
6518 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006519 /* if we just finished scan ask for delay for a broadcast scan */
6520 if ((len == 0) && priv->last_scan_jiffies &&
6521 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6522 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006523 rc = -EAGAIN;
6524 goto out_unlock;
6525 }
6526 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006527 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006528 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006529
6530 priv->one_direct_scan = 1;
6531 priv->direct_ssid_len = (u8)
6532 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6533 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006534 } else
6535 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006536
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006537 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006538
6539 IWL_DEBUG_MAC80211("leave\n");
6540
6541out_unlock:
6542 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006543 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006544
6545 return rc;
6546}
6547
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006548static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01006549 struct ieee80211_vif *vif,
6550 struct ieee80211_sta *sta,
6551 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07006552{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006553 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01006554 const u8 *addr;
Zhu Yib481de92007-09-25 17:54:57 -07006555 int rc = 0;
6556 u8 sta_id;
Johannes Bergdc822b52008-12-29 12:55:09 +01006557 static const u8 bcast_addr[ETH_ALEN] =
6558 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Zhu Yib481de92007-09-25 17:54:57 -07006559
6560 IWL_DEBUG_MAC80211("enter\n");
6561
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006562 if (iwl3945_mod_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07006563 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
6564 return -EOPNOTSUPP;
6565 }
6566
Johannes Bergdc822b52008-12-29 12:55:09 +01006567 addr = sta ? sta->addr : bcast_addr;
Zhu Yib481de92007-09-25 17:54:57 -07006568
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006569 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07006570 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07006571 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
6572 addr);
Zhu Yib481de92007-09-25 17:54:57 -07006573 return -EINVAL;
6574 }
6575
6576 mutex_lock(&priv->mutex);
6577
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006578 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006579
Zhu Yib481de92007-09-25 17:54:57 -07006580 switch (cmd) {
6581 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006582 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006583 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006584 iwl3945_set_rxon_hwcrypto(priv, 1);
6585 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006586 key->hw_key_idx = sta_id;
6587 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
6588 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
6589 }
6590 break;
6591 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006592 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006593 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006594 iwl3945_set_rxon_hwcrypto(priv, 0);
6595 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006596 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
6597 }
6598 break;
6599 default:
6600 rc = -EINVAL;
6601 }
6602
6603 IWL_DEBUG_MAC80211("leave\n");
6604 mutex_unlock(&priv->mutex);
6605
6606 return rc;
6607}
6608
Johannes Berge100bb62008-04-30 18:51:21 +02006609static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07006610 const struct ieee80211_tx_queue_params *params)
6611{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006612 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006613 unsigned long flags;
6614 int q;
Zhu Yib481de92007-09-25 17:54:57 -07006615
6616 IWL_DEBUG_MAC80211("enter\n");
6617
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006618 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006619 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6620 return -EIO;
6621 }
6622
6623 if (queue >= AC_NUM) {
6624 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
6625 return 0;
6626 }
6627
Zhu Yib481de92007-09-25 17:54:57 -07006628 q = AC_NUM - 1 - queue;
6629
6630 spin_lock_irqsave(&priv->lock, flags);
6631
6632 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
6633 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
6634 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
6635 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01006636 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07006637
6638 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
6639 priv->qos_data.qos_active = 1;
6640
6641 spin_unlock_irqrestore(&priv->lock, flags);
6642
6643 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02006644 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006645 iwl3945_activate_qos(priv, 1);
6646 else if (priv->assoc_id && iwl3945_is_associated(priv))
6647 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006648
6649 mutex_unlock(&priv->mutex);
6650
Zhu Yib481de92007-09-25 17:54:57 -07006651 IWL_DEBUG_MAC80211("leave\n");
6652 return 0;
6653}
6654
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006655static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006656 struct ieee80211_tx_queue_stats *stats)
6657{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006658 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006659 int i, avail;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006660 struct iwl_tx_queue *txq;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006661 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07006662 unsigned long flags;
6663
6664 IWL_DEBUG_MAC80211("enter\n");
6665
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006666 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006667 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6668 return -EIO;
6669 }
6670
6671 spin_lock_irqsave(&priv->lock, flags);
6672
6673 for (i = 0; i < AC_NUM; i++) {
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006674 txq = &priv->txq[i];
Zhu Yib481de92007-09-25 17:54:57 -07006675 q = &txq->q;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006676 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07006677
Johannes Berg57ffc582008-04-29 17:18:59 +02006678 stats[i].len = q->n_window - avail;
6679 stats[i].limit = q->n_window - q->high_mark;
6680 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07006681
6682 }
6683 spin_unlock_irqrestore(&priv->lock, flags);
6684
6685 IWL_DEBUG_MAC80211("leave\n");
6686
6687 return 0;
6688}
6689
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006690static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006691{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006692 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006693 unsigned long flags;
6694
6695 mutex_lock(&priv->mutex);
6696 IWL_DEBUG_MAC80211("enter\n");
6697
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006698 iwl_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006699
Zhu Yib481de92007-09-25 17:54:57 -07006700 spin_lock_irqsave(&priv->lock, flags);
6701 priv->assoc_id = 0;
6702 priv->assoc_capability = 0;
6703 priv->call_post_assoc_from_beacon = 0;
6704
6705 /* new association get rid of ibss beacon skb */
6706 if (priv->ibss_beacon)
6707 dev_kfree_skb(priv->ibss_beacon);
6708
6709 priv->ibss_beacon = NULL;
6710
6711 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006712 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02006713 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07006714 priv->beacon_int = 0;
6715
6716 spin_unlock_irqrestore(&priv->lock, flags);
6717
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006718 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006719 IWL_DEBUG_MAC80211("leave - not ready\n");
6720 mutex_unlock(&priv->mutex);
6721 return;
6722 }
6723
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006724 /* we are restarting association process
6725 * clear RXON_FILTER_ASSOC_MSK bit
6726 */
Johannes Berg05c914f2008-09-11 00:01:58 +02006727 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006728 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006729 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006730 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006731 }
6732
Zhu Yib481de92007-09-25 17:54:57 -07006733 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02006734 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006735
Zhu Yib481de92007-09-25 17:54:57 -07006736 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
6737 mutex_unlock(&priv->mutex);
6738 return;
6739 }
6740
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006741 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006742
6743 mutex_unlock(&priv->mutex);
6744
6745 IWL_DEBUG_MAC80211("leave\n");
6746
6747}
6748
Johannes Berge039fa42008-05-15 12:55:29 +02006749static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006750{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006751 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006752 unsigned long flags;
6753
Zhu Yib481de92007-09-25 17:54:57 -07006754 IWL_DEBUG_MAC80211("enter\n");
6755
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006756 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006757 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07006758 return -EIO;
6759 }
6760
Johannes Berg05c914f2008-09-11 00:01:58 +02006761 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07006762 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07006763 return -EIO;
6764 }
6765
6766 spin_lock_irqsave(&priv->lock, flags);
6767
6768 if (priv->ibss_beacon)
6769 dev_kfree_skb(priv->ibss_beacon);
6770
6771 priv->ibss_beacon = skb;
6772
6773 priv->assoc_id = 0;
6774
6775 IWL_DEBUG_MAC80211("leave\n");
6776 spin_unlock_irqrestore(&priv->lock, flags);
6777
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006778 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006779
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08006780 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006781
Zhu Yib481de92007-09-25 17:54:57 -07006782
6783 return 0;
6784}
6785
6786/*****************************************************************************
6787 *
6788 * sysfs attributes
6789 *
6790 *****************************************************************************/
6791
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006792#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07006793
6794/*
6795 * The following adds a new attribute to the sysfs representation
6796 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
6797 * used for controlling the debug level.
6798 *
6799 * See the level definitions in iwl for details.
6800 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006801static ssize_t show_debug_level(struct device *d,
6802 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07006803{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006804 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006805
6806 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006807}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006808static ssize_t store_debug_level(struct device *d,
6809 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07006810 const char *buf, size_t count)
6811{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006812 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006813 unsigned long val;
6814 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006815
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006816 ret = strict_strtoul(buf, 0, &val);
6817 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08006818 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006819 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006820 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07006821
6822 return strnlen(buf, count);
6823}
6824
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006825static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
6826 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006827
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006828#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07006829
Zhu Yib481de92007-09-25 17:54:57 -07006830static ssize_t show_temperature(struct device *d,
6831 struct device_attribute *attr, char *buf)
6832{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006833 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006834
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006835 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006836 return -EAGAIN;
6837
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006838 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07006839}
6840
6841static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
6842
Zhu Yib481de92007-09-25 17:54:57 -07006843static ssize_t show_tx_power(struct device *d,
6844 struct device_attribute *attr, char *buf)
6845{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006846 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006847 return sprintf(buf, "%d\n", priv->user_txpower_limit);
6848}
6849
6850static ssize_t store_tx_power(struct device *d,
6851 struct device_attribute *attr,
6852 const char *buf, size_t count)
6853{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006854 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006855 char *p = (char *)buf;
6856 u32 val;
6857
6858 val = simple_strtoul(p, &p, 10);
6859 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08006860 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006861 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006862 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07006863
6864 return count;
6865}
6866
6867static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
6868
6869static ssize_t show_flags(struct device *d,
6870 struct device_attribute *attr, char *buf)
6871{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006872 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006873
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006874 return sprintf(buf, "0x%04X\n", priv->active39_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07006875}
6876
6877static ssize_t store_flags(struct device *d,
6878 struct device_attribute *attr,
6879 const char *buf, size_t count)
6880{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006881 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006882 u32 flags = simple_strtoul(buf, NULL, 0);
6883
6884 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006885 if (le32_to_cpu(priv->staging39_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07006886 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006887 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006888 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006889 else {
6890 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
6891 flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006892 priv->staging39_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006893 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006894 }
6895 }
6896 mutex_unlock(&priv->mutex);
6897
6898 return count;
6899}
6900
6901static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
6902
6903static ssize_t show_filter_flags(struct device *d,
6904 struct device_attribute *attr, char *buf)
6905{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006906 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006907
6908 return sprintf(buf, "0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006909 le32_to_cpu(priv->active39_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07006910}
6911
6912static ssize_t store_filter_flags(struct device *d,
6913 struct device_attribute *attr,
6914 const char *buf, size_t count)
6915{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006916 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006917 u32 filter_flags = simple_strtoul(buf, NULL, 0);
6918
6919 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006920 if (le32_to_cpu(priv->staging39_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07006921 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006922 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006923 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006924 else {
6925 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
6926 "0x%04X\n", filter_flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006927 priv->staging39_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07006928 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006929 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006930 }
6931 }
6932 mutex_unlock(&priv->mutex);
6933
6934 return count;
6935}
6936
6937static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
6938 store_filter_flags);
6939
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006940#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07006941
6942static ssize_t show_measurement(struct device *d,
6943 struct device_attribute *attr, char *buf)
6944{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006945 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08006946 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07006947 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006948 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07006949 unsigned long flags;
6950
6951 spin_lock_irqsave(&priv->lock, flags);
6952 if (!(priv->measurement_status & MEASUREMENT_READY)) {
6953 spin_unlock_irqrestore(&priv->lock, flags);
6954 return 0;
6955 }
6956 memcpy(&measure_report, &priv->measure_report, size);
6957 priv->measurement_status = 0;
6958 spin_unlock_irqrestore(&priv->lock, flags);
6959
6960 while (size && (PAGE_SIZE - len)) {
6961 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
6962 PAGE_SIZE - len, 1);
6963 len = strlen(buf);
6964 if (PAGE_SIZE - len)
6965 buf[len++] = '\n';
6966
6967 ofs += 16;
6968 size -= min(size, 16U);
6969 }
6970
6971 return len;
6972}
6973
6974static ssize_t store_measurement(struct device *d,
6975 struct device_attribute *attr,
6976 const char *buf, size_t count)
6977{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006978 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006979 struct ieee80211_measurement_params params = {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006980 .channel = le16_to_cpu(priv->active39_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07006981 .start_time = cpu_to_le64(priv->last_tsf),
6982 .duration = cpu_to_le16(1),
6983 };
6984 u8 type = IWL_MEASURE_BASIC;
6985 u8 buffer[32];
6986 u8 channel;
6987
6988 if (count) {
6989 char *p = buffer;
6990 strncpy(buffer, buf, min(sizeof(buffer), count));
6991 channel = simple_strtoul(p, NULL, 0);
6992 if (channel)
6993 params.channel = channel;
6994
6995 p = buffer;
6996 while (*p && *p != ' ')
6997 p++;
6998 if (*p)
6999 type = simple_strtoul(p + 1, NULL, 0);
7000 }
7001
7002 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7003 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007004 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007005
7006 return count;
7007}
7008
7009static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7010 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007011#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007012
Zhu Yib481de92007-09-25 17:54:57 -07007013static ssize_t store_retry_rate(struct device *d,
7014 struct device_attribute *attr,
7015 const char *buf, size_t count)
7016{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007017 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007018
7019 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7020 if (priv->retry_rate <= 0)
7021 priv->retry_rate = 1;
7022
7023 return count;
7024}
7025
7026static ssize_t show_retry_rate(struct device *d,
7027 struct device_attribute *attr, char *buf)
7028{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007029 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007030 return sprintf(buf, "%d", priv->retry_rate);
7031}
7032
7033static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7034 store_retry_rate);
7035
7036static ssize_t store_power_level(struct device *d,
7037 struct device_attribute *attr,
7038 const char *buf, size_t count)
7039{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007040 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007041 int rc;
7042 int mode;
7043
7044 mode = simple_strtoul(buf, NULL, 0);
7045 mutex_lock(&priv->mutex);
7046
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007047 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007048 rc = -EAGAIN;
7049 goto out;
7050 }
7051
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007052 if ((mode < 1) || (mode > IWL39_POWER_LIMIT) ||
7053 (mode == IWL39_POWER_AC))
7054 mode = IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07007055 else
7056 mode |= IWL_POWER_ENABLED;
7057
7058 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007059 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007060 if (rc) {
7061 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7062 goto out;
7063 }
7064 priv->power_mode = mode;
7065 }
7066
7067 rc = count;
7068
7069 out:
7070 mutex_unlock(&priv->mutex);
7071 return rc;
7072}
7073
7074#define MAX_WX_STRING 80
7075
7076/* Values are in microsecond */
7077static const s32 timeout_duration[] = {
7078 350000,
7079 250000,
7080 75000,
7081 37000,
7082 25000,
7083};
7084static const s32 period_duration[] = {
7085 400000,
7086 700000,
7087 1000000,
7088 1000000,
7089 1000000
7090};
7091
7092static ssize_t show_power_level(struct device *d,
7093 struct device_attribute *attr, char *buf)
7094{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007095 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007096 int level = IWL_POWER_LEVEL(priv->power_mode);
7097 char *p = buf;
7098
7099 p += sprintf(p, "%d ", level);
7100 switch (level) {
7101 case IWL_POWER_MODE_CAM:
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007102 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07007103 p += sprintf(p, "(AC)");
7104 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007105 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07007106 p += sprintf(p, "(BATTERY)");
7107 break;
7108 default:
7109 p += sprintf(p,
7110 "(Timeout %dms, Period %dms)",
7111 timeout_duration[level - 1] / 1000,
7112 period_duration[level - 1] / 1000);
7113 }
7114
7115 if (!(priv->power_mode & IWL_POWER_ENABLED))
7116 p += sprintf(p, " OFF\n");
7117 else
7118 p += sprintf(p, " \n");
7119
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007120 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007121
7122}
7123
7124static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7125 store_power_level);
7126
7127static ssize_t show_channels(struct device *d,
7128 struct device_attribute *attr, char *buf)
7129{
Johannes Berg8318d782008-01-24 19:38:38 +01007130 /* all this shit doesn't belong into sysfs anyway */
7131 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007132}
7133
7134static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7135
7136static ssize_t show_statistics(struct device *d,
7137 struct device_attribute *attr, char *buf)
7138{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007139 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007140 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007141 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007142 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07007143 int rc = 0;
7144
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007145 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007146 return -EAGAIN;
7147
7148 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007149 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007150 mutex_unlock(&priv->mutex);
7151
7152 if (rc) {
7153 len = sprintf(buf,
7154 "Error sending statistics request: 0x%08X\n", rc);
7155 return len;
7156 }
7157
7158 while (size && (PAGE_SIZE - len)) {
7159 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7160 PAGE_SIZE - len, 1);
7161 len = strlen(buf);
7162 if (PAGE_SIZE - len)
7163 buf[len++] = '\n';
7164
7165 ofs += 16;
7166 size -= min(size, 16U);
7167 }
7168
7169 return len;
7170}
7171
7172static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7173
7174static ssize_t show_antenna(struct device *d,
7175 struct device_attribute *attr, char *buf)
7176{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007177 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007178
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007179 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007180 return -EAGAIN;
7181
7182 return sprintf(buf, "%d\n", priv->antenna);
7183}
7184
7185static ssize_t store_antenna(struct device *d,
7186 struct device_attribute *attr,
7187 const char *buf, size_t count)
7188{
7189 int ant;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007190 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007191
7192 if (count == 0)
7193 return 0;
7194
7195 if (sscanf(buf, "%1i", &ant) != 1) {
7196 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7197 return count;
7198 }
7199
7200 if ((ant >= 0) && (ant <= 2)) {
7201 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007202 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007203 } else
7204 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7205
7206
7207 return count;
7208}
7209
7210static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7211
7212static ssize_t show_status(struct device *d,
7213 struct device_attribute *attr, char *buf)
7214{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007215 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007216 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007217 return -EAGAIN;
7218 return sprintf(buf, "0x%08x\n", (int)priv->status);
7219}
7220
7221static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7222
7223static ssize_t dump_error_log(struct device *d,
7224 struct device_attribute *attr,
7225 const char *buf, size_t count)
7226{
7227 char *p = (char *)buf;
7228
7229 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007230 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007231
7232 return strnlen(buf, count);
7233}
7234
7235static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7236
7237static ssize_t dump_event_log(struct device *d,
7238 struct device_attribute *attr,
7239 const char *buf, size_t count)
7240{
7241 char *p = (char *)buf;
7242
7243 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007244 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007245
7246 return strnlen(buf, count);
7247}
7248
7249static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7250
7251/*****************************************************************************
7252 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007253 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007254 *
7255 *****************************************************************************/
7256
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007257static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007258{
7259 priv->workqueue = create_workqueue(DRV_NAME);
7260
7261 init_waitqueue_head(&priv->wait_command_queue);
7262
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007263 INIT_WORK(&priv->up, iwl3945_bg_up);
7264 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7265 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7266 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7267 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7268 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7269 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7270 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007271 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7272 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7273 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007274
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007275 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007276
7277 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007278 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007279}
7280
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007281static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007282{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007283 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007284
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007285 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007286 cancel_delayed_work(&priv->scan_check);
7287 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007288 cancel_work_sync(&priv->beacon_update);
7289}
7290
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007291static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007292 &dev_attr_antenna.attr,
7293 &dev_attr_channels.attr,
7294 &dev_attr_dump_errors.attr,
7295 &dev_attr_dump_events.attr,
7296 &dev_attr_flags.attr,
7297 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007298#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007299 &dev_attr_measurement.attr,
7300#endif
7301 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007302 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007303 &dev_attr_statistics.attr,
7304 &dev_attr_status.attr,
7305 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007306 &dev_attr_tx_power.attr,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007307#ifdef CONFIG_IWL3945_DEBUG
7308 &dev_attr_debug_level.attr,
7309#endif
Zhu Yib481de92007-09-25 17:54:57 -07007310 NULL
7311};
7312
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007313static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007314 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007315 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007316};
7317
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007318static struct ieee80211_ops iwl3945_hw_ops = {
7319 .tx = iwl3945_mac_tx,
7320 .start = iwl3945_mac_start,
7321 .stop = iwl3945_mac_stop,
7322 .add_interface = iwl3945_mac_add_interface,
7323 .remove_interface = iwl3945_mac_remove_interface,
7324 .config = iwl3945_mac_config,
7325 .config_interface = iwl3945_mac_config_interface,
7326 .configure_filter = iwl3945_configure_filter,
7327 .set_key = iwl3945_mac_set_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007328 .get_tx_stats = iwl3945_mac_get_tx_stats,
7329 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007330 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007331 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007332 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007333};
7334
Winkler, Tomase52119c2008-12-22 11:31:19 +08007335static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007336{
7337 int ret;
7338
7339 priv->retry_rate = 1;
7340 priv->ibss_beacon = NULL;
7341
7342 spin_lock_init(&priv->lock);
7343 spin_lock_init(&priv->power_data.lock);
7344 spin_lock_init(&priv->sta_lock);
7345 spin_lock_init(&priv->hcmd_lock);
7346
7347 INIT_LIST_HEAD(&priv->free_frames);
7348
7349 mutex_init(&priv->mutex);
7350
7351 /* Clear the driver's (not device's) station table */
7352 iwl3945_clear_stations_table(priv);
7353
7354 priv->data_retry_limit = -1;
7355 priv->ieee_channels = NULL;
7356 priv->ieee_rates = NULL;
7357 priv->band = IEEE80211_BAND_2GHZ;
7358
7359 priv->iw_mode = NL80211_IFTYPE_STATION;
7360
7361 iwl_reset_qos(priv);
7362
7363 priv->qos_data.qos_active = 0;
7364 priv->qos_data.qos_cap.val = 0;
7365
7366 priv->rates_mask = IWL_RATES_MASK;
7367 /* If power management is turned on, default to AC mode */
7368 priv->power_mode = IWL_POWER_AC;
7369 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7370
7371 ret = iwl3945_init_channel_map(priv);
7372 if (ret) {
7373 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
7374 goto err;
7375 }
7376
7377 ret = iwl3945_init_geos(priv);
7378 if (ret) {
7379 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
7380 goto err_free_channel_map;
7381 }
7382
7383 return 0;
7384
7385err_free_channel_map:
7386 iwl3945_free_channel_map(priv);
7387err:
7388 return ret;
7389}
7390
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007391static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007392{
7393 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007394 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007395 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08007396 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007397 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007398
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007399 /***********************
7400 * 1. Allocating HW data
7401 * ********************/
7402
Zhu Yib481de92007-09-25 17:54:57 -07007403 /* mac80211 allocates memory for this device instance, including
7404 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007405 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007406 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007407 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07007408 err = -ENOMEM;
7409 goto out;
7410 }
Zhu Yib481de92007-09-25 17:54:57 -07007411 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007412 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007413
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007414 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
7415 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007416 IWL_ERR(priv,
7417 "invalid queues_num, should be between %d and %d\n",
7418 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08007419 err = -EINVAL;
7420 goto out;
7421 }
7422
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007423 /*
7424 * Disabling hardware scan means that mac80211 will perform scans
7425 * "the hard way", rather than using device's scan.
7426 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007427 if (iwl3945_mod_params.disable_hw_scan) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007428 IWL_DEBUG_INFO("Disabling hw_scan\n");
7429 iwl3945_hw_ops.hw_scan = NULL;
7430 }
7431
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007432
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007433 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007434 priv->cfg = cfg;
7435 priv->pci_dev = pdev;
7436
7437#ifdef CONFIG_IWL3945_DEBUG
7438 priv->debug_level = iwl3945_mod_params.debug;
7439 atomic_set(&priv->restrict_refcnt, 0);
7440#endif
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007441 hw->rate_control_algorithm = "iwl-3945-rs";
7442 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7443
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007444 /* Select antenna (may be helpful if only one antenna is connected) */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007445 priv->antenna = (enum iwl3945_antenna)iwl3945_mod_params.antenna;
Zhu Yib481de92007-09-25 17:54:57 -07007446
Bruno Randolf566bfe52008-05-08 19:15:40 +02007447 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007448 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007449 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007450
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007451 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007452 BIT(NL80211_IFTYPE_STATION) |
7453 BIT(NL80211_IFTYPE_ADHOC);
7454
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007455 hw->wiphy->fw_handles_regulatory = true;
7456
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007457 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007458 hw->queues = 4;
7459
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007460 /***************************
7461 * 2. Initializing PCI bus
7462 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007463 if (pci_enable_device(pdev)) {
7464 err = -ENODEV;
7465 goto out_ieee80211_free_hw;
7466 }
7467
7468 pci_set_master(pdev);
7469
Zhu Yib481de92007-09-25 17:54:57 -07007470 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7471 if (!err)
7472 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7473 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08007474 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07007475 goto out_pci_disable_device;
7476 }
7477
7478 pci_set_drvdata(pdev, priv);
7479 err = pci_request_regions(pdev, DRV_NAME);
7480 if (err)
7481 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007482
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007483 /***********************
7484 * 3. Read REV Register
7485 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007486 priv->hw_base = pci_iomap(pdev, 0, 0);
7487 if (!priv->hw_base) {
7488 err = -ENODEV;
7489 goto out_pci_release_regions;
7490 }
7491
7492 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7493 (unsigned long long) pci_resource_len(pdev, 0));
7494 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7495
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007496 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7497 * PCI Tx retries from interfering with C3 CPU state */
7498 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007499
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007500 /* amp init */
7501 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007502 if (err < 0) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007503 IWL_DEBUG_INFO("Failed to init APMG\n");
7504 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007505 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007506
7507 /***********************
7508 * 4. Read EEPROM
7509 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007510
Zhu Yi5a669262008-01-14 17:46:18 -08007511 /* Read the EEPROM */
7512 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007513 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007514 IWL_ERR(priv, "Unable to init EEPROM\n");
Zhu Yi5a669262008-01-14 17:46:18 -08007515 goto out_remove_sysfs;
7516 }
7517 /* MAC Address location in EEPROM same for 3945/4965 */
7518 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007519 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08007520 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7521
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007522 /***********************
7523 * 5. Setup HW Constants
7524 * ********************/
7525 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007526 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007527 IWL_ERR(priv, "failed to set hw settings\n");
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007528 goto out_iounmap;
7529 }
7530
7531 /***********************
7532 * 6. Setup priv
7533 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007534
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007535 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007536 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007537 IWL_ERR(priv, "initializing driver failed\n");
7538 goto out_free_geos;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007539 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007540
Tomas Winkler978785a2008-12-19 10:37:31 +08007541 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
7542 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007543
7544 /***********************************
7545 * 7. Initialize Module Parameters
7546 * **********************************/
7547
7548 /* Initialize module parameter values here */
7549 /* Disable radio (SW RF KILL) via parameter when loading driver */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007550 if (iwl3945_mod_params.disable) {
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007551 set_bit(STATUS_RF_KILL_SW, &priv->status);
7552 IWL_DEBUG_INFO("Radio disabled.\n");
7553 }
7554
7555
7556 /***********************
7557 * 8. Setup Services
7558 * ********************/
7559
7560 spin_lock_irqsave(&priv->lock, flags);
7561 iwl3945_disable_interrupts(priv);
7562 spin_unlock_irqrestore(&priv->lock, flags);
7563
7564 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7565 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007566 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007567 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007568 }
7569
7570 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
7571 iwl3945_setup_deferred_work(priv);
7572 iwl3945_setup_rx_handlers(priv);
7573
7574 /***********************
7575 * 9. Conclude
7576 * ********************/
7577 pci_save_state(pdev);
7578 pci_disable_device(pdev);
7579
7580 /*********************************
7581 * 10. Setup and Register mac80211
7582 * *******************************/
7583
Zhu Yi5a669262008-01-14 17:46:18 -08007584 err = ieee80211_register_hw(priv->hw);
7585 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007586 IWL_ERR(priv, "Failed to register network device: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007587 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07007588 }
7589
Zhu Yi5a669262008-01-14 17:46:18 -08007590 priv->hw->conf.beacon_int = 100;
7591 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007592
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007593 err = iwl3945_rfkill_init(priv);
7594 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08007595 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007596 "Ignoring error: %d\n", err);
7597
Zhu Yib481de92007-09-25 17:54:57 -07007598 return 0;
7599
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007600 out_remove_sysfs:
7601 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007602 out_free_geos:
7603 iwl3945_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007604
7605 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07007606 destroy_workqueue(priv->workqueue);
7607 priv->workqueue = NULL;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007608 iwl3945_unset_hw_params(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007609
7610 out_iounmap:
7611 pci_iounmap(pdev, priv->hw_base);
7612 out_pci_release_regions:
7613 pci_release_regions(pdev);
7614 out_pci_disable_device:
7615 pci_disable_device(pdev);
7616 pci_set_drvdata(pdev, NULL);
7617 out_ieee80211_free_hw:
7618 ieee80211_free_hw(priv->hw);
7619 out:
7620 return err;
7621}
7622
Reinette Chatrec83dbf62008-03-21 13:53:41 -07007623static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007624{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007625 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007626 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007627
7628 if (!priv)
7629 return;
7630
7631 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
7632
Zhu Yib481de92007-09-25 17:54:57 -07007633 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08007634
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08007635 if (priv->mac80211_registered) {
7636 ieee80211_unregister_hw(priv->hw);
7637 priv->mac80211_registered = 0;
7638 } else {
7639 iwl3945_down(priv);
7640 }
Zhu Yib481de92007-09-25 17:54:57 -07007641
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007642 /* make sure we flush any pending irq or
7643 * tasklet for the driver
7644 */
7645 spin_lock_irqsave(&priv->lock, flags);
7646 iwl3945_disable_interrupts(priv);
7647 spin_unlock_irqrestore(&priv->lock, flags);
7648
7649 iwl_synchronize_irq(priv);
7650
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007651 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07007652
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007653 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007654 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007655
7656 if (priv->rxq.bd)
Winkler, Tomas51af3d32008-12-22 11:31:23 +08007657 iwl_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007658 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007659
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007660 iwl3945_unset_hw_params(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007661 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007662
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08007663 /*netif_stop_queue(dev); */
7664 flush_workqueue(priv->workqueue);
7665
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007666 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07007667 * priv->workqueue... so we can't take down the workqueue
7668 * until now... */
7669 destroy_workqueue(priv->workqueue);
7670 priv->workqueue = NULL;
7671
Zhu Yib481de92007-09-25 17:54:57 -07007672 pci_iounmap(pdev, priv->hw_base);
7673 pci_release_regions(pdev);
7674 pci_disable_device(pdev);
7675 pci_set_drvdata(pdev, NULL);
7676
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007677 iwl3945_free_channel_map(priv);
7678 iwl3945_free_geos(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007679 kfree(priv->scan39);
Zhu Yib481de92007-09-25 17:54:57 -07007680 if (priv->ibss_beacon)
7681 dev_kfree_skb(priv->ibss_beacon);
7682
7683 ieee80211_free_hw(priv->hw);
7684}
7685
7686#ifdef CONFIG_PM
7687
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007688static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07007689{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007690 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007691
Zhu Yie655b9f2008-01-24 02:19:38 -08007692 if (priv->is_open) {
7693 set_bit(STATUS_IN_SUSPEND, &priv->status);
7694 iwl3945_mac_stop(priv->hw);
7695 priv->is_open = 1;
7696 }
Zhu Yib481de92007-09-25 17:54:57 -07007697
Zhu Yib481de92007-09-25 17:54:57 -07007698 pci_set_power_state(pdev, PCI_D3hot);
7699
Zhu Yib481de92007-09-25 17:54:57 -07007700 return 0;
7701}
7702
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007703static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007704{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007705 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007706
Zhu Yib481de92007-09-25 17:54:57 -07007707 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07007708
Zhu Yie655b9f2008-01-24 02:19:38 -08007709 if (priv->is_open)
7710 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07007711
Zhu Yie655b9f2008-01-24 02:19:38 -08007712 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07007713 return 0;
7714}
7715
7716#endif /* CONFIG_PM */
7717
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007718/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007719#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007720/* software rf-kill from user */
7721static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
7722{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007723 struct iwl_priv *priv = data;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007724 int err = 0;
7725
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007726 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007727 return 0;
7728
7729 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
7730 return 0;
7731
Tomas Winklera96a27f2008-10-23 23:48:56 -07007732 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007733 mutex_lock(&priv->mutex);
7734
7735 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007736 case RFKILL_STATE_UNBLOCKED:
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007737 if (iwl_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007738 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007739 goto out_unlock;
7740 }
7741 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007742 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007743 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007744 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007745 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007746 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +08007747 IWL_WARN(priv, "received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007748 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007749 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007750out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007751 mutex_unlock(&priv->mutex);
7752
7753 return err;
7754}
7755
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007756int iwl3945_rfkill_init(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007757{
7758 struct device *device = wiphy_dev(priv->hw->wiphy);
7759 int ret = 0;
7760
7761 BUG_ON(device == NULL);
7762
7763 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007764 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
7765 if (!priv->rfkill) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007766 IWL_ERR(priv, "Unable to allocate rfkill device.\n");
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007767 ret = -ENOMEM;
7768 goto error;
7769 }
7770
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007771 priv->rfkill->name = priv->cfg->name;
7772 priv->rfkill->data = priv;
7773 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
7774 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
7775 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007776
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007777 priv->rfkill->dev.class->suspend = NULL;
7778 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007779
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007780 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007781 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007782 IWL_ERR(priv, "Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007783 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007784 }
7785
7786 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7787 return ret;
7788
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007789freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007790 if (priv->rfkill != NULL)
7791 rfkill_free(priv->rfkill);
7792 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007793
7794error:
7795 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7796 return ret;
7797}
7798
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007799void iwl3945_rfkill_unregister(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007800{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007801 if (priv->rfkill)
7802 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007803
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007804 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007805}
7806
7807/* set rf-kill to the right state. */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007808void iwl3945_rfkill_set_hw_state(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007809{
7810
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007811 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007812 return;
7813
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007814 if (iwl_is_rfkill_hw(priv)) {
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007815 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
7816 return;
7817 }
7818
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007819 if (!iwl_is_rfkill_sw(priv))
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007820 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007821 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007822 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007823}
7824#endif
7825
Zhu Yib481de92007-09-25 17:54:57 -07007826/*****************************************************************************
7827 *
7828 * driver and module entry point
7829 *
7830 *****************************************************************************/
7831
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007832static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07007833 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007834 .id_table = iwl3945_hw_card_ids,
7835 .probe = iwl3945_pci_probe,
7836 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07007837#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007838 .suspend = iwl3945_pci_suspend,
7839 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07007840#endif
7841};
7842
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007843static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07007844{
7845
7846 int ret;
7847 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
7848 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007849
7850 ret = iwl3945_rate_control_register();
7851 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007852 printk(KERN_ERR DRV_NAME
7853 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007854 return ret;
7855 }
7856
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007857 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07007858 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007859 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007860 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07007861 }
Zhu Yib481de92007-09-25 17:54:57 -07007862
7863 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007864
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007865error_register:
7866 iwl3945_rate_control_unregister();
7867 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07007868}
7869
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007870static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07007871{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007872 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007873 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07007874}
7875
Reinette Chatrea0987a82008-12-02 12:14:06 -08007876MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08007877
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007878module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007879MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007880module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007881MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007882module_param_named(hwcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007883MODULE_PARM_DESC(hwcrypto,
7884 "using hardware crypto engine (default 0 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007885module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007886MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007887module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007888MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
7889
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007890module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007891MODULE_PARM_DESC(queues_num, "number of hw queues.");
7892
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007893module_exit(iwl3945_exit);
7894module_init(iwl3945_init);