blob: eacef54636a039becab025baf3a0358ffcc03016 [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/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003207 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003208 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003209static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003210 dma_addr_t dma_addr)
3211{
3212 return cpu_to_le32((u32)dma_addr);
3213}
3214
3215/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003216 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003217 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003218 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003219 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003220 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003221 *
3222 * This moves the 'write' index forward to catch up with 'processed', and
3223 * also updates the memory address in the firmware to reference the new
3224 * target buffer.
3225 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003226static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003227{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003228 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003229 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003230 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003231 unsigned long flags;
3232 int write, rc;
3233
3234 spin_lock_irqsave(&rxq->lock, flags);
3235 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08003236 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003237 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003238 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003239 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003240 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003241
3242 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003243 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003244 rxq->queue[rxq->write] = rxb;
3245 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3246 rxq->free_count--;
3247 }
3248 spin_unlock_irqrestore(&rxq->lock, flags);
3249 /* If the pre-allocated buffer pool is dropping low, schedule to
3250 * refill it */
3251 if (rxq->free_count <= RX_LOW_WATERMARK)
3252 queue_work(priv->workqueue, &priv->rx_replenish);
3253
3254
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003255 /* If we've added more space for the firmware to place data, tell it.
3256 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003257 if ((write != (rxq->write & ~0x7))
3258 || (abs(rxq->write - rxq->read) > 7)) {
3259 spin_lock_irqsave(&rxq->lock, flags);
3260 rxq->need_update = 1;
3261 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08003262 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003263 if (rc)
3264 return rc;
3265 }
3266
3267 return 0;
3268}
3269
3270/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003271 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003272 *
3273 * When moving to rx_free an SKB is allocated for the slot.
3274 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003275 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003276 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003277 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003278static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003279{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003280 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003281 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003282 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003283 unsigned long flags;
3284 spin_lock_irqsave(&rxq->lock, flags);
3285 while (!list_empty(&rxq->rx_used)) {
3286 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003287 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003288
3289 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003290 rxb->skb =
3291 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3292 if (!rxb->skb) {
3293 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08003294 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07003295 /* We don't reschedule replenish work here -- we will
3296 * call the restock method and if it still needs
3297 * more buffers it will schedule replenish */
3298 break;
3299 }
Zhu Yi12342c42007-12-20 11:27:32 +08003300
3301 /* If radiotap head is required, reserve some headroom here.
3302 * The physical head count is a variable rx_stats->phy_count.
3303 * We reserve 4 bytes here. Plus these extra bytes, the
3304 * headroom of the physical head should be enough for the
3305 * radiotap head that iwl3945 supported. See iwl3945_rt.
3306 */
3307 skb_reserve(rxb->skb, 4);
3308
Zhu Yib481de92007-09-25 17:54:57 -07003309 priv->alloc_rxb_skb++;
3310 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003311
3312 /* Get physical address of RB/SKB */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003313 rxb->real_dma_addr =
Zhu Yib481de92007-09-25 17:54:57 -07003314 pci_map_single(priv->pci_dev, rxb->skb->data,
3315 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3316 list_add_tail(&rxb->list, &rxq->rx_free);
3317 rxq->free_count++;
3318 }
3319 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003320}
3321
3322/*
3323 * this should be called while priv->lock is locked
3324 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003325static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003326{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003327 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003328
3329 iwl3945_rx_allocate(priv);
3330 iwl3945_rx_queue_restock(priv);
3331}
3332
3333
3334void iwl3945_rx_replenish(void *data)
3335{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003336 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003337 unsigned long flags;
3338
3339 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003340
3341 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003342 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003343 spin_unlock_irqrestore(&priv->lock, flags);
3344}
3345
Zhu Yib481de92007-09-25 17:54:57 -07003346/* Convert linear signal-to-noise ratio into dB */
3347static u8 ratio2dB[100] = {
3348/* 0 1 2 3 4 5 6 7 8 9 */
3349 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3350 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3351 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3352 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3353 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3354 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3355 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3356 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3357 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3358 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3359};
3360
3361/* Calculates a relative dB value from a ratio of linear
3362 * (i.e. not dB) signal levels.
3363 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003364int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003365{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003366 /* 1000:1 or higher just report as 60 dB */
3367 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003368 return 60;
3369
Adrian Bunk221c80c2008-02-02 23:19:01 +02003370 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003371 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003372 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003373 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003374
3375 /* We shouldn't see this */
3376 if (sig_ratio < 1)
3377 return 0;
3378
3379 /* Use table for ratios 1:1 - 99:1 */
3380 return (int)ratio2dB[sig_ratio];
3381}
3382
3383#define PERFECT_RSSI (-20) /* dBm */
3384#define WORST_RSSI (-95) /* dBm */
3385#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3386
3387/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3388 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3389 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003390int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003391{
3392 int sig_qual;
3393 int degradation = PERFECT_RSSI - rssi_dbm;
3394
3395 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3396 * as indicator; formula is (signal dbm - noise dbm).
3397 * SNR at or above 40 is a great signal (100%).
3398 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3399 * Weakest usable signal is usually 10 - 15 dB SNR. */
3400 if (noise_dbm) {
3401 if (rssi_dbm - noise_dbm >= 40)
3402 return 100;
3403 else if (rssi_dbm < noise_dbm)
3404 return 0;
3405 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3406
3407 /* Else use just the signal level.
3408 * This formula is a least squares fit of data points collected and
3409 * compared with a reference system that had a percentage (%) display
3410 * for signal quality. */
3411 } else
3412 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3413 (15 * RSSI_RANGE + 62 * degradation)) /
3414 (RSSI_RANGE * RSSI_RANGE);
3415
3416 if (sig_qual > 100)
3417 sig_qual = 100;
3418 else if (sig_qual < 1)
3419 sig_qual = 0;
3420
3421 return sig_qual;
3422}
3423
3424/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003425 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003426 *
3427 * Uses the priv->rx_handlers callback function array to invoke
3428 * the appropriate handlers, including command responses,
3429 * frame-received notifications, and other notifications.
3430 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003431static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003432{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003433 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003434 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003435 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003436 u32 r, i;
3437 int reclaim;
3438 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003439 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003440 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003441
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003442 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3443 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08003444 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07003445 i = rxq->read;
3446
Winkler, Tomas37d68312009-01-08 10:19:54 -08003447 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003448 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003449 /* Rx interrupt, but nothing sent from uCode */
3450 if (i == r)
3451 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3452
3453 while (i != r) {
3454 rxb = rxq->queue[i];
3455
Ben Cahill9fbab512007-11-29 11:09:47 +08003456 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003457 * then a bug has been introduced in the queue refilling
3458 * routines -- catch it here */
3459 BUG_ON(rxb == NULL);
3460
3461 rxq->queue[i] = NULL;
3462
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003463 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003464 IWL_RX_BUF_SIZE,
3465 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003466 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003467
3468 /* Reclaim a command buffer only if this packet is a response
3469 * to a (driver-originated) command.
3470 * If the packet (e.g. Rx frame) originated from uCode,
3471 * there is no command buffer to reclaim.
3472 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3473 * but apparently a few don't get set; catch them here. */
3474 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3475 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3476 (pkt->hdr.cmd != REPLY_TX);
3477
3478 /* Based on type of command response or notification,
3479 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003480 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003481 if (priv->rx_handlers[pkt->hdr.cmd]) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003482 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003483 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3484 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3485 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3486 } else {
3487 /* No handling needed */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003488 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003489 "r %d i %d No handler needed for %s, 0x%02x\n",
3490 r, i, get_cmd_string(pkt->hdr.cmd),
3491 pkt->hdr.cmd);
3492 }
3493
3494 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003495 /* Invoke any callbacks, transfer the skb to caller, and
3496 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003497 * as we reclaim the driver command queue */
3498 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003499 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003500 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003501 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07003502 }
3503
3504 /* For now we just don't re-use anything. We can tweak this
3505 * later to try and re-use notification packets and SKBs that
3506 * fail to Rx correctly */
3507 if (rxb->skb != NULL) {
3508 priv->alloc_rxb_skb--;
3509 dev_kfree_skb_any(rxb->skb);
3510 rxb->skb = NULL;
3511 }
3512
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003513 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003514 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3515 spin_lock_irqsave(&rxq->lock, flags);
3516 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3517 spin_unlock_irqrestore(&rxq->lock, flags);
3518 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003519 /* If there are a lot of unused frames,
3520 * restock the Rx queue so ucode won't assert. */
3521 if (fill_rx) {
3522 count++;
3523 if (count >= 8) {
3524 priv->rxq.read = i;
3525 __iwl3945_rx_replenish(priv);
3526 count = 0;
3527 }
3528 }
Zhu Yib481de92007-09-25 17:54:57 -07003529 }
3530
3531 /* Backtrack one entry */
3532 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003533 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003534}
3535
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003536/**
3537 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3538 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003539static int iwl3945_tx_queue_update_write_ptr(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003540 struct iwl_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003541{
3542 u32 reg = 0;
3543 int rc = 0;
3544 int txq_id = txq->q.id;
3545
3546 if (txq->need_update == 0)
3547 return rc;
3548
3549 /* if we're trying to save power */
3550 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3551 /* wake up nic if it's powered down ...
3552 * uCode will wake up, and interrupt us again, so next
3553 * time we'll skip this part. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003554 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003555
3556 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3557 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003558 iwl_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003559 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3560 return rc;
3561 }
3562
3563 /* restore this queue's parameters in nic hardware. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003564 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003565 if (rc)
3566 return rc;
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003567 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003568 txq->q.write_ptr | (txq_id << 8));
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003569 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003570
3571 /* else not in power-save mode, uCode will never sleep when we're
3572 * trying to tx (during RFKILL, we're not trying to tx). */
3573 } else
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003574 iwl_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003575 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003576
3577 txq->need_update = 0;
3578
3579 return rc;
3580}
3581
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003582#ifdef CONFIG_IWL3945_DEBUG
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003583static void iwl3945_print_rx_config_cmd(struct iwl_priv *priv,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003584 struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003585{
3586 IWL_DEBUG_RADIO("RX CONFIG:\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003587 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003588 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3589 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3590 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3591 le32_to_cpu(rxon->filter_flags));
3592 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3593 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3594 rxon->ofdm_basic_rates);
3595 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003596 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3597 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003598 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3599}
3600#endif
3601
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003602static void iwl3945_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003603{
3604 IWL_DEBUG_ISR("Enabling interrupts\n");
3605 set_bit(STATUS_INT_ENABLED, &priv->status);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003606 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003607}
3608
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003609
3610/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003611static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003612{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003613 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003614 synchronize_irq(priv->pci_dev->irq);
3615 tasklet_kill(&priv->irq_tasklet);
3616}
3617
3618
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003619static inline void iwl3945_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003620{
3621 clear_bit(STATUS_INT_ENABLED, &priv->status);
3622
3623 /* disable interrupts from uCode/NIC to host */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003624 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003625
3626 /* acknowledge/clear/reset any interrupts still pending
3627 * from uCode or flow handler (Rx/Tx DMA) */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003628 iwl_write32(priv, CSR_INT, 0xffffffff);
3629 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07003630 IWL_DEBUG_ISR("Disabled interrupts\n");
3631}
3632
3633static const char *desc_lookup(int i)
3634{
3635 switch (i) {
3636 case 1:
3637 return "FAIL";
3638 case 2:
3639 return "BAD_PARAM";
3640 case 3:
3641 return "BAD_CHECKSUM";
3642 case 4:
3643 return "NMI_INTERRUPT";
3644 case 5:
3645 return "SYSASSERT";
3646 case 6:
3647 return "FATAL_ERROR";
3648 }
3649
3650 return "UNKNOWN";
3651}
3652
3653#define ERROR_START_OFFSET (1 * sizeof(u32))
3654#define ERROR_ELEM_SIZE (7 * sizeof(u32))
3655
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003656static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003657{
3658 u32 i;
3659 u32 desc, time, count, base, data1;
3660 u32 blink1, blink2, ilink1, ilink2;
3661 int rc;
3662
3663 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
3664
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003665 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003666 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003667 return;
3668 }
3669
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003670 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003671 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003672 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003673 return;
3674 }
3675
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003676 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07003677
3678 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003679 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
3680 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
3681 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07003682 }
3683
Winkler, Tomas15b16872008-12-19 10:37:33 +08003684 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07003685 "ilink1 nmiPC Line\n");
3686 for (i = ERROR_START_OFFSET;
3687 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
3688 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003689 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07003690 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003691 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003692 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003693 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003694 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003695 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003696 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003697 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003698 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003699 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003700 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003701 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003702
Winkler, Tomas15b16872008-12-19 10:37:33 +08003703 IWL_ERR(priv,
3704 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
3705 desc_lookup(desc), desc, time, blink1, blink2,
3706 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07003707 }
3708
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003709 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003710
3711}
3712
Ben Cahillf58177b2007-11-29 11:09:43 +08003713#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07003714
3715/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003716 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07003717 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003718 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07003719 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003720static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07003721 u32 num_events, u32 mode)
3722{
3723 u32 i;
3724 u32 base; /* SRAM byte address of event log header */
3725 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
3726 u32 ptr; /* SRAM byte address of log data */
3727 u32 ev, time, data; /* event log data */
3728
3729 if (num_events == 0)
3730 return;
3731
3732 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
3733
3734 if (mode == 0)
3735 event_size = 2 * sizeof(u32);
3736 else
3737 event_size = 3 * sizeof(u32);
3738
3739 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
3740
3741 /* "time" is actually "data" for mode 0 (no timestamp).
3742 * place event id # at far right for easier visual parsing. */
3743 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003744 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003745 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003746 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003747 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003748 if (mode == 0) {
3749 /* data, ev */
3750 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
3751 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003752 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003753 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003754 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07003755 }
3756 }
3757}
3758
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003759static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003760{
3761 int rc;
3762 u32 base; /* SRAM byte address of event log header */
3763 u32 capacity; /* event log capacity in # entries */
3764 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
3765 u32 num_wraps; /* # times uCode wrapped to top of log */
3766 u32 next_entry; /* index of next entry to be written by uCode */
3767 u32 size; /* # entries that we'll print */
3768
3769 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003770 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003771 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003772 return;
3773 }
3774
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003775 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003776 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003777 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003778 return;
3779 }
3780
3781 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003782 capacity = iwl_read_targ_mem(priv, base);
3783 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
3784 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
3785 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07003786
3787 size = num_wraps ? capacity : next_entry;
3788
3789 /* bail out if nothing in log */
3790 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003791 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003792 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003793 return;
3794 }
3795
Winkler, Tomas15b16872008-12-19 10:37:33 +08003796 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003797 size, num_wraps);
3798
3799 /* if uCode has wrapped back to top of log, start at the oldest entry,
3800 * i.e the next one that uCode would fill. */
3801 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003802 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07003803 capacity - next_entry, mode);
3804
3805 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003806 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07003807
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003808 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003809}
3810
3811/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003812 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07003813 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003814static void iwl3945_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003815{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003816 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07003817 set_bit(STATUS_FW_ERROR, &priv->status);
3818
3819 /* Cancel currently queued command. */
3820 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3821
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003822#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003823 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003824 iwl3945_dump_nic_error_log(priv);
3825 iwl3945_dump_nic_event_log(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003826 iwl3945_print_rx_config_cmd(priv, &priv->staging39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07003827 }
3828#endif
3829
3830 wake_up_interruptible(&priv->wait_command_queue);
3831
3832 /* Keep the restart process from trying to send host
3833 * commands by clearing the INIT status bit */
3834 clear_bit(STATUS_READY, &priv->status);
3835
3836 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3837 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
3838 "Restarting adapter due to uCode error.\n");
3839
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003840 if (iwl3945_is_associated(priv)) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003841 memcpy(&priv->recovery39_rxon, &priv->active39_rxon,
3842 sizeof(priv->recovery39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003843 priv->error_recovering = 1;
3844 }
3845 queue_work(priv->workqueue, &priv->restart);
3846 }
3847}
3848
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003849static void iwl3945_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003850{
3851 unsigned long flags;
3852
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003853 memcpy(&priv->staging39_rxon, &priv->recovery39_rxon,
3854 sizeof(priv->staging39_rxon));
3855 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003856 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003857
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003858 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003859
3860 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003861 priv->assoc_id = le16_to_cpu(priv->staging39_rxon.assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003862 priv->error_recovering = 0;
3863 spin_unlock_irqrestore(&priv->lock, flags);
3864}
3865
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003866static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003867{
3868 u32 inta, handled = 0;
3869 u32 inta_fh;
3870 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003871#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003872 u32 inta_mask;
3873#endif
3874
3875 spin_lock_irqsave(&priv->lock, flags);
3876
3877 /* Ack/clear/reset pending uCode interrupts.
3878 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
3879 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003880 inta = iwl_read32(priv, CSR_INT);
3881 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07003882
3883 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
3884 * Any new interrupts that happen after this, either while we're
3885 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003886 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
3887 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07003888
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003889#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003890 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003891 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003892 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003893 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3894 inta, inta_mask, inta_fh);
3895 }
3896#endif
3897
3898 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
3899 * atomic, make sure that inta covers all the interrupts that
3900 * we've discovered, even if FH interrupt came in just after
3901 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003902 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003903 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003904 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003905 inta |= CSR_INT_BIT_FH_TX;
3906
3907 /* Now service all interrupt bits discovered above. */
3908 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003909 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003910
3911 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003912 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003913
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003914 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003915
3916 handled |= CSR_INT_BIT_HW_ERR;
3917
3918 spin_unlock_irqrestore(&priv->lock, flags);
3919
3920 return;
3921 }
3922
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003923#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003924 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07003925 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003926 if (inta & CSR_INT_BIT_SCD)
3927 IWL_DEBUG_ISR("Scheduler finished to transmit "
3928 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003929
3930 /* Alive notification via Rx interrupt will do the real work */
3931 if (inta & CSR_INT_BIT_ALIVE)
3932 IWL_DEBUG_ISR("Alive interrupt\n");
3933 }
3934#endif
3935 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003936 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07003937
Zhu Yib481de92007-09-25 17:54:57 -07003938 /* Error detected by uCode */
3939 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003940 IWL_ERR(priv, "Microcode SW error detected. "
3941 "Restarting 0x%X.\n", inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003942 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003943 handled |= CSR_INT_BIT_SW_ERR;
3944 }
3945
3946 /* uCode wakes up after power-down sleep */
3947 if (inta & CSR_INT_BIT_WAKEUP) {
3948 IWL_DEBUG_ISR("Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08003949 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003950 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
3951 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
3952 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
3953 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
3954 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
3955 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07003956
3957 handled |= CSR_INT_BIT_WAKEUP;
3958 }
3959
3960 /* All uCode command responses, including Tx command responses,
3961 * Rx "responses" (frame-received notification), and other
3962 * notifications from uCode come through here*/
3963 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003964 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003965 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
3966 }
3967
3968 if (inta & CSR_INT_BIT_FH_TX) {
3969 IWL_DEBUG_ISR("Tx interrupt\n");
3970
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003971 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
3972 if (!iwl_grab_nic_access(priv)) {
3973 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08003974 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003975 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003976 }
3977 handled |= CSR_INT_BIT_FH_TX;
3978 }
3979
3980 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003981 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07003982
3983 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003984 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07003985 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003986 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07003987 }
3988
3989 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003990 /* only Re-enable if disabled by irq */
3991 if (test_bit(STATUS_INT_ENABLED, &priv->status))
3992 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003993
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003994#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003995 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003996 inta = iwl_read32(priv, CSR_INT);
3997 inta_mask = iwl_read32(priv, CSR_INT_MASK);
3998 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07003999 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4000 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4001 }
4002#endif
4003 spin_unlock_irqrestore(&priv->lock, flags);
4004}
4005
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004006static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004007{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004008 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004009 u32 inta, inta_mask;
4010 u32 inta_fh;
4011 if (!priv)
4012 return IRQ_NONE;
4013
4014 spin_lock(&priv->lock);
4015
4016 /* Disable (but don't clear!) interrupts here to avoid
4017 * back-to-back ISRs and sporadic interrupts from our NIC.
4018 * If we have something to service, the tasklet will re-enable ints.
4019 * If we *don't* have something, we'll re-enable before leaving here. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004020 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
4021 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004022
4023 /* Discover which interrupts are active/pending */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004024 inta = iwl_read32(priv, CSR_INT);
4025 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004026
4027 /* Ignore interrupt if there's nothing in NIC to service.
4028 * This may be due to IRQ shared with another device,
4029 * or due to sporadic interrupts thrown from our NIC. */
4030 if (!inta && !inta_fh) {
4031 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4032 goto none;
4033 }
4034
4035 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4036 /* Hardware disappeared */
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004037 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004038 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004039 }
4040
4041 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4042 inta, inta_mask, inta_fh);
4043
Joonwoo Park25c03d82008-01-23 10:15:20 -08004044 inta &= ~CSR_INT_BIT_SCD;
4045
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004046 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004047 if (likely(inta || inta_fh))
4048 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004049unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004050 spin_unlock(&priv->lock);
4051
4052 return IRQ_HANDLED;
4053
4054 none:
4055 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004056 /* only Re-enable if disabled by irq */
4057 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4058 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004059 spin_unlock(&priv->lock);
4060 return IRQ_NONE;
4061}
4062
4063/************************** EEPROM BANDS ****************************
4064 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004065 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004066 * EEPROM contents to the specific channel number supported for each
4067 * band.
4068 *
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004069 * For example, iwl3945_priv->eeprom39.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004070 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4071 * The specific geography and calibration information for that channel
4072 * is contained in the eeprom map itself.
4073 *
4074 * During init, we copy the eeprom information and channel map
4075 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4076 *
4077 * channel_map_24/52 provides the index in the channel_info array for a
4078 * given channel. We have to have two separate maps as there is channel
4079 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4080 * band_2
4081 *
4082 * A value of 0xff stored in the channel_map indicates that the channel
4083 * is not supported by the hardware at all.
4084 *
4085 * A value of 0xfe in the channel_map indicates that the channel is not
4086 * valid for Tx with the current hardware. This means that
4087 * while the system can tune and receive on a given channel, it may not
4088 * be able to associate or transmit any frames on that
4089 * channel. There is no corresponding channel information for that
4090 * entry.
4091 *
4092 *********************************************************************/
4093
4094/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004095static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004096 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4097};
4098
4099/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004100static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004101 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4102};
4103
Ben Cahill9fbab512007-11-29 11:09:47 +08004104static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004105 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4106};
4107
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004108static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004109 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4110};
4111
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004112static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004113 145, 149, 153, 157, 161, 165
4114};
4115
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004116static void iwl3945_init_band_reference(const struct iwl_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004117 int *eeprom_ch_count,
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004118 const struct iwl_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004119 **eeprom_ch_info,
4120 const u8 **eeprom_ch_index)
4121{
4122 switch (band) {
4123 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004124 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004125 *eeprom_ch_info = priv->eeprom39.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004126 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004127 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004128 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004129 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004130 *eeprom_ch_info = priv->eeprom39.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004131 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004132 break;
4133 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004134 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004135 *eeprom_ch_info = priv->eeprom39.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004136 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004137 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004138 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004139 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004140 *eeprom_ch_info = priv->eeprom39.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004141 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004142 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004143 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004144 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004145 *eeprom_ch_info = priv->eeprom39.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004146 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004147 break;
4148 default:
4149 BUG();
4150 return;
4151 }
4152}
4153
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004154/**
4155 * iwl3945_get_channel_info - Find driver's private channel info
4156 *
4157 * Based on band and channel number.
4158 */
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004159const struct iwl_channel_info *
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004160iwl3945_get_channel_info(const struct iwl_priv *priv,
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004161 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004162{
4163 int i;
4164
Johannes Berg8318d782008-01-24 19:38:38 +01004165 switch (band) {
4166 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004167 for (i = 14; i < priv->channel_count; i++) {
4168 if (priv->channel_info[i].channel == channel)
4169 return &priv->channel_info[i];
4170 }
4171 break;
4172
Johannes Berg8318d782008-01-24 19:38:38 +01004173 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004174 if (channel >= 1 && channel <= 14)
4175 return &priv->channel_info[channel - 1];
4176 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004177 case IEEE80211_NUM_BANDS:
4178 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004179 }
4180
4181 return NULL;
4182}
4183
4184#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4185 ? # x " " : "")
4186
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004187/**
4188 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4189 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004190static int iwl3945_init_channel_map(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004191{
4192 int eeprom_ch_count = 0;
4193 const u8 *eeprom_ch_index = NULL;
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004194 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004195 int band, ch;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004196 struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004197
4198 if (priv->channel_count) {
4199 IWL_DEBUG_INFO("Channel map already initialized.\n");
4200 return 0;
4201 }
4202
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004203 if (priv->eeprom39.version < 0x2f) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004204 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004205 priv->eeprom39.version);
Zhu Yib481de92007-09-25 17:54:57 -07004206 return -EINVAL;
4207 }
4208
4209 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4210
4211 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004212 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4213 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4214 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4215 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4216 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004217
4218 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4219
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004220 priv->channel_info = kzalloc(sizeof(struct iwl_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004221 priv->channel_count, GFP_KERNEL);
4222 if (!priv->channel_info) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004223 IWL_ERR(priv, "Could not allocate channel_info\n");
Zhu Yib481de92007-09-25 17:54:57 -07004224 priv->channel_count = 0;
4225 return -ENOMEM;
4226 }
4227
4228 ch_info = priv->channel_info;
4229
4230 /* Loop through the 5 EEPROM bands adding them in order to the
4231 * channel map we maintain (that contains additional information than
4232 * what just in the EEPROM) */
4233 for (band = 1; band <= 5; band++) {
4234
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004235 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004236 &eeprom_ch_info, &eeprom_ch_index);
4237
4238 /* Loop through each band adding each of the channels */
4239 for (ch = 0; ch < eeprom_ch_count; ch++) {
4240 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004241 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4242 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004243
4244 /* permanently store EEPROM's channel regulatory flags
4245 * and max power in channel info database. */
4246 ch_info->eeprom = eeprom_ch_info[ch];
4247
4248 /* Copy the run-time flags so they are there even on
4249 * invalid channels */
4250 ch_info->flags = eeprom_ch_info[ch].flags;
4251
4252 if (!(is_channel_valid(ch_info))) {
4253 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4254 "No traffic\n",
4255 ch_info->channel,
4256 ch_info->flags,
4257 is_channel_a_band(ch_info) ?
4258 "5.2" : "2.4");
4259 ch_info++;
4260 continue;
4261 }
4262
4263 /* Initialize regulatory-based run-time data */
4264 ch_info->max_power_avg = ch_info->curr_txpow =
4265 eeprom_ch_info[ch].max_power_avg;
4266 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4267 ch_info->min_power = 0;
4268
Guy Cohenfe7c4042008-04-21 15:41:56 -07004269 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004270 " %ddBm): Ad-Hoc %ssupported\n",
4271 ch_info->channel,
4272 is_channel_a_band(ch_info) ?
4273 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004274 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004275 CHECK_AND_PRINT(IBSS),
4276 CHECK_AND_PRINT(ACTIVE),
4277 CHECK_AND_PRINT(RADAR),
4278 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004279 CHECK_AND_PRINT(DFS),
4280 eeprom_ch_info[ch].flags,
4281 eeprom_ch_info[ch].max_power_avg,
4282 ((eeprom_ch_info[ch].
4283 flags & EEPROM_CHANNEL_IBSS)
4284 && !(eeprom_ch_info[ch].
4285 flags & EEPROM_CHANNEL_RADAR))
4286 ? "" : "not ");
4287
4288 /* Set the user_txpower_limit to the highest power
4289 * supported by any channel */
4290 if (eeprom_ch_info[ch].max_power_avg >
4291 priv->user_txpower_limit)
4292 priv->user_txpower_limit =
4293 eeprom_ch_info[ch].max_power_avg;
4294
4295 ch_info++;
4296 }
4297 }
4298
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004299 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004300 if (iwl3945_txpower_set_from_eeprom(priv))
4301 return -EIO;
4302
4303 return 0;
4304}
4305
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004306/*
4307 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4308 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004309static void iwl3945_free_channel_map(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004310{
4311 kfree(priv->channel_info);
4312 priv->channel_count = 0;
4313}
4314
Zhu Yib481de92007-09-25 17:54:57 -07004315/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4316 * sending probe req. This should be set long enough to hear probe responses
4317 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004318#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4319#define IWL_ACTIVE_DWELL_TIME_52 (20)
4320
4321#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4322#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004323
4324/* For faster active scanning, scan will move to the next channel if fewer than
4325 * PLCP_QUIET_THRESH packets are heard on this channel within
4326 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4327 * time if it's a quiet channel (nothing responded to our probe, and there's
4328 * no other traffic).
4329 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4330#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004331#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004332
4333/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4334 * Must be set longer than active dwell time.
4335 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4336#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4337#define IWL_PASSIVE_DWELL_TIME_52 (10)
4338#define IWL_PASSIVE_DWELL_BASE (100)
4339#define IWL_CHANNEL_TUNE_TIME 5
4340
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004341#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004342
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004343static inline u16 iwl3945_get_active_dwell_time(struct iwl_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004344 enum ieee80211_band band,
4345 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004346{
Johannes Berg8318d782008-01-24 19:38:38 +01004347 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004348 return IWL_ACTIVE_DWELL_TIME_52 +
4349 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004350 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004351 return IWL_ACTIVE_DWELL_TIME_24 +
4352 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004353}
4354
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004355static u16 iwl3945_get_passive_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004356 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004357{
Johannes Berg8318d782008-01-24 19:38:38 +01004358 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004359 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4360 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4361
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004362 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004363 /* If we're associated, we clamp the maximum passive
4364 * dwell time to be 98% of the beacon interval (minus
4365 * 2 * channel tune time) */
4366 passive = priv->beacon_int;
4367 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4368 passive = IWL_PASSIVE_DWELL_BASE;
4369 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4370 }
4371
Zhu Yib481de92007-09-25 17:54:57 -07004372 return passive;
4373}
4374
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004375static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004376 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004377 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004378 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004379{
4380 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004381 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004382 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004383 u16 passive_dwell = 0;
4384 u16 active_dwell = 0;
4385 int added, i;
4386
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08004387 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01004388 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004389 return 0;
4390
Johannes Berg8318d782008-01-24 19:38:38 +01004391 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004392
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004393 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004394 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004395
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004396 if (passive_dwell <= active_dwell)
4397 passive_dwell = active_dwell + 1;
4398
Johannes Berg8318d782008-01-24 19:38:38 +01004399 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004400 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4401 continue;
4402
Johannes Berg8318d782008-01-24 19:38:38 +01004403 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004404
Johannes Berg8318d782008-01-24 19:38:38 +01004405 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004406 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004407 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004408 scan_ch->channel);
4409 continue;
4410 }
4411
Zhu Yib481de92007-09-25 17:54:57 -07004412 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4413 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004414 /* If passive , set up for auto-switch
4415 * and use long active_dwell time.
4416 */
4417 if (!is_active || is_channel_passive(ch_info) ||
4418 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4419 scan_ch->type = 0; /* passive */
4420 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4421 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4422 } else {
4423 scan_ch->type = 1; /* active */
4424 }
4425
4426 /* Set direct probe bits. These may be used both for active
4427 * scan channels (probes gets sent right away),
4428 * or for passive channels (probes get se sent only after
4429 * hearing clear Rx packet).*/
4430 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4431 if (n_probes)
4432 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4433 } else {
4434 /* uCode v1 does not allow setting direct probe bits on
4435 * passive channel. */
4436 if ((scan_ch->type & 1) && n_probes)
4437 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4438 }
Zhu Yib481de92007-09-25 17:54:57 -07004439
Ben Cahill9fbab512007-11-29 11:09:47 +08004440 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004441 scan_ch->tpc.dsp_atten = 110;
4442 /* scan_pwr_info->tpc.dsp_atten; */
4443
4444 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004445 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004446 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4447 else {
4448 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4449 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004450 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004451 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004452 */
4453 }
4454
4455 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4456 scan_ch->channel,
4457 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4458 (scan_ch->type & 1) ?
4459 active_dwell : passive_dwell);
4460
4461 scan_ch++;
4462 added++;
4463 }
4464
4465 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4466 return added;
4467}
4468
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004469static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004470 struct ieee80211_rate *rates)
4471{
4472 int i;
4473
4474 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004475 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4476 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4477 rates[i].hw_value_short = i;
4478 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08004479 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004480 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004481 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004482 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004483 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004484 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004485 }
Zhu Yib481de92007-09-25 17:54:57 -07004486 }
4487}
4488
4489/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004490 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004491 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004492static int iwl3945_init_geos(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004493{
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004494 struct iwl_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004495 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004496 struct ieee80211_channel *channels;
4497 struct ieee80211_channel *geo_ch;
4498 struct ieee80211_rate *rates;
4499 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004500
Johannes Berg8318d782008-01-24 19:38:38 +01004501 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4502 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004503 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4504 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4505 return 0;
4506 }
4507
Zhu Yib481de92007-09-25 17:54:57 -07004508 channels = kzalloc(sizeof(struct ieee80211_channel) *
4509 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004510 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004511 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004512
Tomas Winkler8211ef72008-03-02 01:36:04 +02004513 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004514 GFP_KERNEL);
4515 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004516 kfree(channels);
4517 return -ENOMEM;
4518 }
4519
Zhu Yib481de92007-09-25 17:54:57 -07004520 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004521 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4522 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4523 /* just OFDM */
4524 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4525 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004526
Tomas Winkler8211ef72008-03-02 01:36:04 +02004527 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4528 sband->channels = channels;
4529 /* OFDM & CCK */
4530 sband->bitrates = rates;
4531 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004532
4533 priv->ieee_channels = channels;
4534 priv->ieee_rates = rates;
4535
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004536 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004537
Tomas Winkler8211ef72008-03-02 01:36:04 +02004538 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004539 ch = &priv->channel_info[i];
4540
Tomas Winkler8211ef72008-03-02 01:36:04 +02004541 /* FIXME: might be removed if scan is OK*/
4542 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004543 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004544
4545 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004546 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004547 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004548 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004549
Tomas Winkler8211ef72008-03-02 01:36:04 +02004550 geo_ch = &sband->channels[sband->n_channels++];
4551
4552 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004553 geo_ch->max_power = ch->max_power_avg;
4554 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004555 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004556
4557 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004558 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4559 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004560
Johannes Berg8318d782008-01-24 19:38:38 +01004561 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4562 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004563
4564 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004565 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004566
4567 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4568 priv->max_channel_txpower_limit =
4569 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004570 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004571 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004572 }
4573
4574 /* Save flags for reg domain usage */
4575 geo_ch->orig_flags = geo_ch->flags;
4576
4577 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4578 ch->channel, geo_ch->center_freq,
4579 is_channel_a_band(ch) ? "5.2" : "2.4",
4580 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4581 "restricted" : "valid",
4582 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004583 }
4584
Tomas Winkler82b9a122008-03-04 18:09:30 -08004585 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4586 priv->cfg->sku & IWL_SKU_A) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004587 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
4588 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
4589 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004590 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004591 }
4592
Tomas Winkler978785a2008-12-19 10:37:31 +08004593 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004594 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4595 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004596
John W. Linvillee0e0a672008-03-25 15:58:40 -04004597 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4598 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4599 &priv->bands[IEEE80211_BAND_2GHZ];
4600 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4601 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4602 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004603
Zhu Yib481de92007-09-25 17:54:57 -07004604 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4605
4606 return 0;
4607}
4608
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004609/*
4610 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4611 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004612static void iwl3945_free_geos(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004613{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004614 kfree(priv->ieee_channels);
4615 kfree(priv->ieee_rates);
4616 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4617}
4618
Zhu Yib481de92007-09-25 17:54:57 -07004619/******************************************************************************
4620 *
4621 * uCode download functions
4622 *
4623 ******************************************************************************/
4624
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004625static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004626{
Tomas Winkler98c92212008-01-14 17:46:20 -08004627 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4628 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4629 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4630 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
4631 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
4632 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07004633}
4634
4635/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004636 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004637 * looking at all data.
4638 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004639static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004640{
4641 u32 val;
4642 u32 save_len = len;
4643 int rc = 0;
4644 u32 errcnt;
4645
4646 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4647
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004648 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004649 if (rc)
4650 return rc;
4651
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004652 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004653 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07004654
4655 errcnt = 0;
4656 for (; len > 0; len -= sizeof(u32), image++) {
4657 /* read data comes through single port, auto-incr addr */
4658 /* NOTE: Use the debugless read so we don't flood kernel log
4659 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004660 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004661 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004662 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004663 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4664 save_len - len, val, le32_to_cpu(*image));
4665 rc = -EIO;
4666 errcnt++;
4667 if (errcnt >= 20)
4668 break;
4669 }
4670 }
4671
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004672 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004673
4674 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08004675 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07004676
4677 return rc;
4678}
4679
4680
4681/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004682 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004683 * using sample data 100 bytes apart. If these sample points are good,
4684 * it's a pretty good bet that everything between them is good, too.
4685 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004686static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004687{
4688 u32 val;
4689 int rc = 0;
4690 u32 errcnt = 0;
4691 u32 i;
4692
4693 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4694
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004695 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004696 if (rc)
4697 return rc;
4698
4699 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
4700 /* read data comes through single port, auto-incr addr */
4701 /* NOTE: Use the debugless read so we don't flood kernel log
4702 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004703 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004704 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004705 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004706 if (val != le32_to_cpu(*image)) {
4707#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08004708 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004709 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4710 i, val, *image);
4711#endif
4712 rc = -EIO;
4713 errcnt++;
4714 if (errcnt >= 3)
4715 break;
4716 }
4717 }
4718
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004719 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004720
4721 return rc;
4722}
4723
4724
4725/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004726 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07004727 * and verify its contents
4728 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004729static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004730{
4731 __le32 *image;
4732 u32 len;
4733 int rc = 0;
4734
4735 /* Try bootstrap */
4736 image = (__le32 *)priv->ucode_boot.v_addr;
4737 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004738 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004739 if (rc == 0) {
4740 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
4741 return 0;
4742 }
4743
4744 /* Try initialize */
4745 image = (__le32 *)priv->ucode_init.v_addr;
4746 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004747 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004748 if (rc == 0) {
4749 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
4750 return 0;
4751 }
4752
4753 /* Try runtime/protocol */
4754 image = (__le32 *)priv->ucode_code.v_addr;
4755 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004756 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004757 if (rc == 0) {
4758 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
4759 return 0;
4760 }
4761
Winkler, Tomas15b16872008-12-19 10:37:33 +08004762 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07004763
Ben Cahill9fbab512007-11-29 11:09:47 +08004764 /* Since nothing seems to match, show first several data entries in
4765 * instruction SRAM, so maybe visual inspection will give a clue.
4766 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07004767 image = (__le32 *)priv->ucode_boot.v_addr;
4768 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004769 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004770
4771 return rc;
4772}
4773
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004774static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004775{
4776 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004777 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004778}
4779
4780/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004781 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07004782 *
4783 * Copy into buffers for card to fetch via bus-mastering
4784 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004785static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004786{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08004787 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004788 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07004789 const struct firmware *ucode_raw;
4790 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004791 const char *name_pre = priv->cfg->fw_name_pre;
4792 const unsigned int api_max = priv->cfg->ucode_api_max;
4793 const unsigned int api_min = priv->cfg->ucode_api_min;
4794 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07004795 u8 *src;
4796 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004797 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07004798
4799 /* Ask kernel firmware_class module to get the boot firmware off disk.
4800 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004801 for (index = api_max; index >= api_min; index--) {
4802 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
4803 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
4804 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004805 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004806 buf, ret);
4807 if (ret == -ENOENT)
4808 continue;
4809 else
4810 goto error;
4811 } else {
4812 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004813 IWL_ERR(priv, "Loaded firmware %s, "
4814 "which is deprecated. "
4815 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004816 buf, api_max);
4817 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
4818 buf, ucode_raw->size);
4819 break;
4820 }
Zhu Yib481de92007-09-25 17:54:57 -07004821 }
4822
Reinette Chatrea0987a82008-12-02 12:14:06 -08004823 if (ret < 0)
4824 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07004825
4826 /* Make sure that we got at least our header! */
4827 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004828 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08004829 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004830 goto err_release;
4831 }
4832
4833 /* Data from ucode file: header followed by uCode images */
4834 ucode = (void *)ucode_raw->data;
4835
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08004836 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08004837 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07004838 inst_size = le32_to_cpu(ucode->inst_size);
4839 data_size = le32_to_cpu(ucode->data_size);
4840 init_size = le32_to_cpu(ucode->init_size);
4841 init_data_size = le32_to_cpu(ucode->init_data_size);
4842 boot_size = le32_to_cpu(ucode->boot_size);
4843
Reinette Chatrea0987a82008-12-02 12:14:06 -08004844 /* api_ver should match the api version forming part of the
4845 * firmware filename ... but we don't check for that and only rely
4846 * on the API version read from firware header from here on forward */
4847
4848 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004849 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08004850 "Driver supports v%u, firmware is v%u.\n",
4851 api_max, api_ver);
4852 priv->ucode_ver = 0;
4853 ret = -EINVAL;
4854 goto err_release;
4855 }
4856 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004857 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08004858 "got %u. New firmware can be obtained "
4859 "from http://www.intellinuxwireless.org.\n",
4860 api_max, api_ver);
4861
Tomas Winkler978785a2008-12-19 10:37:31 +08004862 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
4863 IWL_UCODE_MAJOR(priv->ucode_ver),
4864 IWL_UCODE_MINOR(priv->ucode_ver),
4865 IWL_UCODE_API(priv->ucode_ver),
4866 IWL_UCODE_SERIAL(priv->ucode_ver));
4867
Reinette Chatrea0987a82008-12-02 12:14:06 -08004868 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
4869 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08004870 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
4871 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
4872 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
4873 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
4874 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07004875
Reinette Chatrea0987a82008-12-02 12:14:06 -08004876
Zhu Yib481de92007-09-25 17:54:57 -07004877 /* Verify size of file vs. image size info in file's header */
4878 if (ucode_raw->size < sizeof(*ucode) +
4879 inst_size + data_size + init_size +
4880 init_data_size + boot_size) {
4881
4882 IWL_DEBUG_INFO("uCode file size %d too small\n",
4883 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004884 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004885 goto err_release;
4886 }
4887
4888 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004889 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004890 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
4891 inst_size);
4892 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004893 goto err_release;
4894 }
4895
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004896 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004897 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
4898 data_size);
4899 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004900 goto err_release;
4901 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004902 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004903 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
4904 init_size);
4905 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004906 goto err_release;
4907 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004908 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004909 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
4910 init_data_size);
4911 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004912 goto err_release;
4913 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004914 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004915 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
4916 boot_size);
4917 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004918 goto err_release;
4919 }
4920
4921 /* Allocate ucode buffers for card's bus-master loading ... */
4922
4923 /* Runtime instructions and 2 copies of data:
4924 * 1) unmodified from disk
4925 * 2) backup cache for save/restore during power-downs */
4926 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004927 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07004928
4929 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004930 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07004931
4932 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004933 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07004934
4935 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08004936 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07004937 goto err_pci_alloc;
4938
Tomas Winkler90e759d2007-11-29 11:09:41 +08004939 /* Initialization instructions and data */
4940 if (init_size && init_data_size) {
4941 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004942 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004943
4944 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004945 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004946
4947 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
4948 goto err_pci_alloc;
4949 }
4950
4951 /* Bootstrap (instructions only, no data) */
4952 if (boot_size) {
4953 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004954 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004955
4956 if (!priv->ucode_boot.v_addr)
4957 goto err_pci_alloc;
4958 }
4959
Zhu Yib481de92007-09-25 17:54:57 -07004960 /* Copy images into buffers for card's bus-master reads ... */
4961
4962 /* Runtime instructions (first block of data in file) */
4963 src = &ucode->data[0];
4964 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004965 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07004966 memcpy(priv->ucode_code.v_addr, src, len);
4967 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
4968 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
4969
4970 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004971 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07004972 src = &ucode->data[inst_size];
4973 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004974 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07004975 memcpy(priv->ucode_data.v_addr, src, len);
4976 memcpy(priv->ucode_data_backup.v_addr, src, len);
4977
4978 /* Initialization instructions (3rd block) */
4979 if (init_size) {
4980 src = &ucode->data[inst_size + data_size];
4981 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004982 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
4983 len);
Zhu Yib481de92007-09-25 17:54:57 -07004984 memcpy(priv->ucode_init.v_addr, src, len);
4985 }
4986
4987 /* Initialization data (4th block) */
4988 if (init_data_size) {
4989 src = &ucode->data[inst_size + data_size + init_size];
4990 len = priv->ucode_init_data.len;
4991 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
4992 (int)len);
4993 memcpy(priv->ucode_init_data.v_addr, src, len);
4994 }
4995
4996 /* Bootstrap instructions (5th block) */
4997 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
4998 len = priv->ucode_boot.len;
4999 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5000 (int)len);
5001 memcpy(priv->ucode_boot.v_addr, src, len);
5002
5003 /* We have our copies now, allow OS release its copies */
5004 release_firmware(ucode_raw);
5005 return 0;
5006
5007 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08005008 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005009 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005010 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005011
5012 err_release:
5013 release_firmware(ucode_raw);
5014
5015 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005016 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005017}
5018
5019
5020/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005021 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005022 *
5023 * Tell initialization uCode where to find runtime uCode.
5024 *
5025 * BSM registers initially contain pointers to initialization uCode.
5026 * We need to replace them to load runtime uCode inst and data,
5027 * and to save runtime data when powering down.
5028 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005029static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005030{
5031 dma_addr_t pinst;
5032 dma_addr_t pdata;
5033 int rc = 0;
5034 unsigned long flags;
5035
5036 /* bits 31:0 for 3945 */
5037 pinst = priv->ucode_code.p_addr;
5038 pdata = priv->ucode_data_backup.p_addr;
5039
5040 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005041 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005042 if (rc) {
5043 spin_unlock_irqrestore(&priv->lock, flags);
5044 return rc;
5045 }
5046
5047 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005048 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5049 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5050 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005051 priv->ucode_data.len);
5052
Tomas Winklera96a27f2008-10-23 23:48:56 -07005053 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005054 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005055 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005056 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5057
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005058 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005059
5060 spin_unlock_irqrestore(&priv->lock, flags);
5061
5062 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5063
5064 return rc;
5065}
5066
5067/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005068 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005069 *
5070 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5071 *
Zhu Yib481de92007-09-25 17:54:57 -07005072 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005073 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005074static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005075{
5076 /* Check alive response for "valid" sign from uCode */
5077 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5078 /* We had an error bringing up the hardware, so take it
5079 * all the way back down so we can try again */
5080 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5081 goto restart;
5082 }
5083
5084 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5085 * This is a paranoid check, because we would not have gotten the
5086 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005087 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005088 /* Runtime instruction load was bad;
5089 * take it all the way back down so we can try again */
5090 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5091 goto restart;
5092 }
5093
5094 /* Send pointers to protocol/runtime uCode image ... init code will
5095 * load and launch runtime uCode, which will send us another "Alive"
5096 * notification. */
5097 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005098 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005099 /* Runtime instruction load won't happen;
5100 * take it all the way back down so we can try again */
5101 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5102 goto restart;
5103 }
5104 return;
5105
5106 restart:
5107 queue_work(priv->workqueue, &priv->restart);
5108}
5109
5110
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005111/* temporary */
5112static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5113 struct sk_buff *skb);
5114
Zhu Yib481de92007-09-25 17:54:57 -07005115/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005116 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005117 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005118 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005119 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005120static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005121{
5122 int rc = 0;
5123 int thermal_spin = 0;
5124 u32 rfkill;
5125
5126 IWL_DEBUG_INFO("Runtime Alive received.\n");
5127
5128 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5129 /* We had an error bringing up the hardware, so take it
5130 * all the way back down so we can try again */
5131 IWL_DEBUG_INFO("Alive failed.\n");
5132 goto restart;
5133 }
5134
5135 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5136 * This is a paranoid check, because we would not have gotten the
5137 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005138 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005139 /* Runtime instruction load was bad;
5140 * take it all the way back down so we can try again */
5141 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5142 goto restart;
5143 }
5144
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005145 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005146
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005147 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005148 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005149 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005150 return;
5151 }
5152
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005153 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005154 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005155 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005156
5157 if (rfkill & 0x1) {
5158 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005159 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005160 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005161 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005162 thermal_spin++;
5163 udelay(10);
5164 }
5165
5166 if (thermal_spin)
5167 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5168 thermal_spin * 10);
5169 } else
5170 set_bit(STATUS_RF_KILL_HW, &priv->status);
5171
Ben Cahill9fbab512007-11-29 11:09:47 +08005172 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005173 set_bit(STATUS_ALIVE, &priv->status);
5174
5175 /* Clear out the uCode error bit if it is set */
5176 clear_bit(STATUS_FW_ERROR, &priv->status);
5177
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005178 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005179 return;
5180
Johannes Berg36d68252008-05-15 12:55:26 +02005181 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005182
5183 priv->active_rate = priv->rates_mask;
5184 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5185
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005186 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005187
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005188 if (iwl3945_is_associated(priv)) {
5189 struct iwl3945_rxon_cmd *active_rxon =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005190 (struct iwl3945_rxon_cmd *)(&priv->active39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005191
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005192 memcpy(&priv->staging39_rxon, &priv->active39_rxon,
5193 sizeof(priv->staging39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07005194 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5195 } else {
5196 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005197 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005198 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07005199 }
5200
Ben Cahill9fbab512007-11-29 11:09:47 +08005201 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005202 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005203
5204 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005205 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005206
Zhu Yib481de92007-09-25 17:54:57 -07005207 iwl3945_reg_txpower_periodic(priv);
5208
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005209 iwl3945_led_register(priv);
5210
Zhu Yib481de92007-09-25 17:54:57 -07005211 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005212 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08005213 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005214
5215 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005216 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005217
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005218 /* reassociate for ADHOC mode */
5219 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5220 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5221 priv->vif);
5222 if (beacon)
5223 iwl3945_mac_beacon_update(priv->hw, beacon);
5224 }
5225
Zhu Yib481de92007-09-25 17:54:57 -07005226 return;
5227
5228 restart:
5229 queue_work(priv->workqueue, &priv->restart);
5230}
5231
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005232static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005233
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005234static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005235{
5236 unsigned long flags;
5237 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5238 struct ieee80211_conf *conf = NULL;
5239
5240 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5241
5242 conf = ieee80211_get_hw_conf(priv->hw);
5243
5244 if (!exit_pending)
5245 set_bit(STATUS_EXIT_PENDING, &priv->status);
5246
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005247 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005248 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005249
5250 /* Unblock any waiting calls */
5251 wake_up_interruptible_all(&priv->wait_command_queue);
5252
Zhu Yib481de92007-09-25 17:54:57 -07005253 /* Wipe out the EXIT_PENDING status bit if we are not actually
5254 * exiting the module */
5255 if (!exit_pending)
5256 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5257
5258 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005259 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005260
5261 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005262 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005263 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005264 spin_unlock_irqrestore(&priv->lock, flags);
5265 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005266
5267 if (priv->mac80211_registered)
5268 ieee80211_stop_queues(priv->hw);
5269
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005270 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005271 * clear all bits but the RF Kill and SUSPEND bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005272 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005273 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5274 STATUS_RF_KILL_HW |
5275 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5276 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005277 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5278 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005279 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005280 STATUS_IN_SUSPEND |
5281 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5282 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005283 goto exit;
5284 }
5285
5286 /* ...otherwise clear out all the status bits but the RF Kill and
5287 * SUSPEND bits and continue taking the NIC down. */
5288 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5289 STATUS_RF_KILL_HW |
5290 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5291 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005292 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5293 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005294 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5295 STATUS_IN_SUSPEND |
5296 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005297 STATUS_FW_ERROR |
5298 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5299 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005300
5301 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005302 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005303 spin_unlock_irqrestore(&priv->lock, flags);
5304
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005305 iwl3945_hw_txq_ctx_stop(priv);
5306 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005307
5308 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005309 if (!iwl_grab_nic_access(priv)) {
5310 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005311 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005312 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005313 }
5314 spin_unlock_irqrestore(&priv->lock, flags);
5315
5316 udelay(5);
5317
Kolekar, Abhijeet01ec6162008-12-19 10:37:38 +08005318 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005319 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08005320 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005321
5322 if (priv->ibss_beacon)
5323 dev_kfree_skb(priv->ibss_beacon);
5324 priv->ibss_beacon = NULL;
5325
5326 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005327 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005328}
5329
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005330static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005331{
5332 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005333 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005334 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005335
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005336 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005337}
5338
5339#define MAX_HW_RESTARTS 5
5340
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005341static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005342{
5343 int rc, i;
5344
5345 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005346 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07005347 return -EIO;
5348 }
5349
5350 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005351 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07005352 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005353 return -ENODEV;
5354 }
5355
Reinette Chatree903fbd2008-01-30 22:05:15 -08005356 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005357 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005358 return -EIO;
5359 }
5360
Zhu Yie655b9f2008-01-24 02:19:38 -08005361 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005362 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08005363 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5364 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5365 else {
5366 set_bit(STATUS_RF_KILL_HW, &priv->status);
5367 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005368 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005369 return -ENODEV;
5370 }
Zhu Yib481de92007-09-25 17:54:57 -07005371 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005372
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005373 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005374
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005375 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005376 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005377 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07005378 return rc;
5379 }
5380
5381 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005382 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5383 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005384 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5385
5386 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005387 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005388 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005389
5390 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005391 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5392 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005393
5394 /* Copy original ucode data image from disk into backup cache.
5395 * This will be used to initialize the on-board processor's
5396 * data SRAM for a clean start when the runtime program first loads. */
5397 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08005398 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005399
Zhu Yie655b9f2008-01-24 02:19:38 -08005400 /* We return success when we resume from suspend and rf_kill is on. */
5401 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5402 return 0;
5403
Zhu Yib481de92007-09-25 17:54:57 -07005404 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5405
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005406 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005407
5408 /* load bootstrap state machine,
5409 * load bootstrap program into processor's memory,
5410 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08005411 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005412
5413 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005414 IWL_ERR(priv,
5415 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07005416 continue;
5417 }
5418
5419 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005420 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005421
Zhu Yib481de92007-09-25 17:54:57 -07005422 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5423
5424 return 0;
5425 }
5426
5427 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005428 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005429 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005430
5431 /* tried to restart and config the device for as long as our
5432 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08005433 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07005434 return -EIO;
5435}
5436
5437
5438/*****************************************************************************
5439 *
5440 * Workqueue callbacks
5441 *
5442 *****************************************************************************/
5443
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005444static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005445{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005446 struct iwl_priv *priv =
5447 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005448
5449 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5450 return;
5451
5452 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005453 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005454 mutex_unlock(&priv->mutex);
5455}
5456
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005457static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005458{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005459 struct iwl_priv *priv =
5460 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005461
5462 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5463 return;
5464
5465 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005466 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005467 mutex_unlock(&priv->mutex);
5468}
5469
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005470static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005471{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005472 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005473
5474 wake_up_interruptible(&priv->wait_command_queue);
5475
5476 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5477 return;
5478
5479 mutex_lock(&priv->mutex);
5480
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005481 if (!iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005482 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5483 "HW and/or SW RF Kill no longer active, restarting "
5484 "device\n");
5485 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5486 queue_work(priv->workqueue, &priv->restart);
5487 } else {
5488
5489 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5490 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5491 "disabled by SW switch\n");
5492 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005493 IWL_WARN(priv, "Radio Frequency Kill Switch is On:\n"
Zhu Yib481de92007-09-25 17:54:57 -07005494 "Kill switch must be turned off for "
5495 "wireless networking to work.\n");
5496 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005497
Zhu Yib481de92007-09-25 17:54:57 -07005498 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005499 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005500}
5501
5502#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
5503
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005504static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005505{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005506 struct iwl_priv *priv =
5507 container_of(data, struct iwl_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07005508
5509 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5510 return;
5511
5512 mutex_lock(&priv->mutex);
5513 if (test_bit(STATUS_SCANNING, &priv->status) ||
5514 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5515 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
5516 "Scan completion watchdog resetting adapter (%dms)\n",
5517 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005518
Zhu Yib481de92007-09-25 17:54:57 -07005519 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005520 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005521 }
5522 mutex_unlock(&priv->mutex);
5523}
5524
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005525static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005526{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005527 struct iwl_priv *priv =
5528 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08005529 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07005530 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005531 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07005532 .meta.flags = CMD_SIZE_HUGE,
5533 };
5534 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005535 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07005536 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005537 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01005538 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04005539 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07005540
5541 conf = ieee80211_get_hw_conf(priv->hw);
5542
5543 mutex_lock(&priv->mutex);
5544
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005545 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005546 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005547 goto done;
5548 }
5549
Tomas Winklera96a27f2008-10-23 23:48:56 -07005550 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07005551 * was given the chance to run... */
5552 if (!test_bit(STATUS_SCANNING, &priv->status))
5553 goto done;
5554
5555 /* This should never be called or scheduled if there is currently
5556 * a scan active in the hardware. */
5557 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
5558 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
5559 "Ignoring second request.\n");
5560 rc = -EIO;
5561 goto done;
5562 }
5563
5564 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5565 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
5566 goto done;
5567 }
5568
5569 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5570 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
5571 goto done;
5572 }
5573
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005574 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005575 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
5576 goto done;
5577 }
5578
5579 if (!test_bit(STATUS_READY, &priv->status)) {
5580 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
5581 goto done;
5582 }
5583
5584 if (!priv->scan_bands) {
5585 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
5586 goto done;
5587 }
5588
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005589 if (!priv->scan39) {
5590 priv->scan39 = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07005591 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005592 if (!priv->scan39) {
Zhu Yib481de92007-09-25 17:54:57 -07005593 rc = -ENOMEM;
5594 goto done;
5595 }
5596 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005597 scan = priv->scan39;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005598 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07005599
5600 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
5601 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
5602
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005603 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005604 u16 interval = 0;
5605 u32 extra;
5606 u32 suspend_time = 100;
5607 u32 scan_suspend_time = 100;
5608 unsigned long flags;
5609
5610 IWL_DEBUG_INFO("Scanning while associated...\n");
5611
5612 spin_lock_irqsave(&priv->lock, flags);
5613 interval = priv->beacon_int;
5614 spin_unlock_irqrestore(&priv->lock, flags);
5615
5616 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005617 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07005618 if (!interval)
5619 interval = suspend_time;
5620 /*
5621 * suspend time format:
5622 * 0-19: beacon interval in usec (time before exec.)
5623 * 20-23: 0
5624 * 24-31: number of beacons (suspend between channels)
5625 */
5626
5627 extra = (suspend_time / interval) << 24;
5628 scan_suspend_time = 0xFF0FFFFF &
5629 (extra | ((suspend_time % interval) * 1024));
5630
5631 scan->suspend_time = cpu_to_le32(scan_suspend_time);
5632 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
5633 scan_suspend_time, interval);
5634 }
5635
5636 /* We should add the ability for user to lock to PASSIVE ONLY */
5637 if (priv->one_direct_scan) {
5638 IWL_DEBUG_SCAN
5639 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005640 print_ssid(ssid, priv->direct_ssid,
5641 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07005642 scan->direct_scan[0].id = WLAN_EID_SSID;
5643 scan->direct_scan[0].len = priv->direct_ssid_len;
5644 memcpy(scan->direct_scan[0].ssid,
5645 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005646 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005647 } else
Bill Moss786b4552008-04-17 16:03:40 -07005648 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005649
5650 /* We don't build a direct scan probe request; the uCode will do
5651 * that based on the direct_mask added to each channel entry */
5652 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005653 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01005654 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07005655 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08005656 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07005657 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
5658
5659 /* flags + rate selection */
5660
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005661 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005662 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
5663 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
5664 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01005665 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005666 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005667 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
5668 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01005669 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005670 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005671 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07005672 goto done;
5673 }
5674
5675 /* select Rx antennas */
5676 scan->flags |= iwl3945_get_antenna_flags(priv);
5677
Johannes Berg05c914f2008-09-11 00:01:58 +02005678 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07005679 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
5680
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005681 scan->channel_count =
5682 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
5683 n_probes,
5684 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07005685
Reinette Chatre14b54332008-11-04 12:21:35 -08005686 if (scan->channel_count == 0) {
5687 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
5688 goto done;
5689 }
5690
Zhu Yib481de92007-09-25 17:54:57 -07005691 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005692 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07005693 cmd.data = scan;
5694 scan->len = cpu_to_le16(cmd.len);
5695
5696 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005697 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07005698 if (rc)
5699 goto done;
5700
5701 queue_delayed_work(priv->workqueue, &priv->scan_check,
5702 IWL_SCAN_CHECK_WATCHDOG);
5703
5704 mutex_unlock(&priv->mutex);
5705 return;
5706
5707 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08005708 /* can not perform scan make sure we clear scanning
5709 * bits from status so next scan request can be performed.
5710 * if we dont clear scanning status bit here all next scan
5711 * will fail
5712 */
5713 clear_bit(STATUS_SCAN_HW, &priv->status);
5714 clear_bit(STATUS_SCANNING, &priv->status);
5715
Ian Schram01ebd062007-10-25 17:15:22 +08005716 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07005717 queue_work(priv->workqueue, &priv->scan_completed);
5718 mutex_unlock(&priv->mutex);
5719}
5720
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005721static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005722{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005723 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07005724
5725 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5726 return;
5727
5728 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005729 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005730 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005731 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005732}
5733
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005734static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005735{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005736 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07005737
5738 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5739 return;
5740
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005741 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005742 queue_work(priv->workqueue, &priv->up);
5743}
5744
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005745static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005746{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005747 struct iwl_priv *priv =
5748 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07005749
5750 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5751 return;
5752
5753 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005754 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005755 mutex_unlock(&priv->mutex);
5756}
5757
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005758#define IWL_DELAY_NEXT_SCAN (HZ*2)
5759
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005760static void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005761{
Zhu Yib481de92007-09-25 17:54:57 -07005762 int rc = 0;
5763 struct ieee80211_conf *conf = NULL;
5764
Johannes Berg05c914f2008-09-11 00:01:58 +02005765 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005766 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07005767 return;
5768 }
5769
5770
Johannes Berge1749612008-10-27 15:59:26 -07005771 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005772 priv->assoc_id, priv->active39_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07005773
5774 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5775 return;
5776
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005777 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005778 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005779
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005780 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005781
Zhu Yib481de92007-09-25 17:54:57 -07005782 conf = ieee80211_get_hw_conf(priv->hw);
5783
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005784 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005785 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005786
Tomas Winkler28afaf92008-12-19 10:37:06 +08005787 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005788 iwl3945_setup_rxon_timing(priv);
5789 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07005790 sizeof(priv->rxon_timing), &priv->rxon_timing);
5791 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005792 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07005793 "Attempting to continue.\n");
5794
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005795 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005796
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005797 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07005798
5799 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
5800 priv->assoc_id, priv->beacon_int);
5801
5802 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005803 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005804 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005805 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005806
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005807 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07005808 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005809 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005810 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005811 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005812
Johannes Berg05c914f2008-09-11 00:01:58 +02005813 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005814 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005815
5816 }
5817
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005818 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005819
5820 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02005821 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005822 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07005823 break;
5824
Johannes Berg05c914f2008-09-11 00:01:58 +02005825 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07005826
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08005827 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005828 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005829 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01005830 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07005831 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
5832 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005833 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
5834 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005835
5836 break;
5837
5838 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08005839 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005840 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07005841 break;
5842 }
5843
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005844 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08005845
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005846 /* we have just associated, don't start scan too early */
5847 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08005848}
5849
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005850static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005851{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005852 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07005853
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005854 if (!iwl_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005855 return;
5856
5857 mutex_lock(&priv->mutex);
5858
5859 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005860 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005861
5862 mutex_unlock(&priv->mutex);
5863}
5864
Johannes Berge8975582008-10-09 12:18:51 +02005865static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005866
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005867static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005868{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005869 struct iwl_priv *priv =
5870 container_of(work, struct iwl_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07005871
5872 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
5873
5874 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5875 return;
5876
Zhu Yia0646472007-12-20 14:10:01 +08005877 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02005878 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005879
Zhu Yib481de92007-09-25 17:54:57 -07005880 ieee80211_scan_completed(priv->hw);
5881
5882 /* Since setting the TXPOWER may have been deferred while
5883 * performing the scan, fire one off */
5884 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005885 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005886 mutex_unlock(&priv->mutex);
5887}
5888
5889/*****************************************************************************
5890 *
5891 * mac80211 entry point functions
5892 *
5893 *****************************************************************************/
5894
Zhu Yi5a669262008-01-14 17:46:18 -08005895#define UCODE_READY_TIMEOUT (2 * HZ)
5896
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005897static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07005898{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005899 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08005900 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07005901
5902 IWL_DEBUG_MAC80211("enter\n");
5903
Zhu Yi5a669262008-01-14 17:46:18 -08005904 if (pci_enable_device(priv->pci_dev)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005905 IWL_ERR(priv, "Fail to pci_enable_device\n");
Zhu Yi5a669262008-01-14 17:46:18 -08005906 return -ENODEV;
5907 }
5908 pci_restore_state(priv->pci_dev);
5909 pci_enable_msi(priv->pci_dev);
5910
5911 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
5912 DRV_NAME, priv);
5913 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005914 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
Zhu Yi5a669262008-01-14 17:46:18 -08005915 goto out_disable_msi;
5916 }
5917
Zhu Yib481de92007-09-25 17:54:57 -07005918 /* we should be verifying the device is ready to be opened */
5919 mutex_lock(&priv->mutex);
5920
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005921 memset(&priv->staging39_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
Zhu Yi5a669262008-01-14 17:46:18 -08005922 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
5923 * ucode filename and max sizes are card-specific. */
5924
5925 if (!priv->ucode_code.len) {
5926 ret = iwl3945_read_ucode(priv);
5927 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005928 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08005929 mutex_unlock(&priv->mutex);
5930 goto out_release_irq;
5931 }
5932 }
5933
Zhu Yie655b9f2008-01-24 02:19:38 -08005934 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08005935
Zhu Yib481de92007-09-25 17:54:57 -07005936 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08005937
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005938 iwl3945_rfkill_set_hw_state(priv);
5939
Zhu Yie655b9f2008-01-24 02:19:38 -08005940 if (ret)
5941 goto out_release_irq;
5942
5943 IWL_DEBUG_INFO("Start UP work.\n");
5944
5945 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
5946 return 0;
5947
Zhu Yi5a669262008-01-14 17:46:18 -08005948 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
5949 * mac80211 will not be run successfully. */
5950 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
5951 test_bit(STATUS_READY, &priv->status),
5952 UCODE_READY_TIMEOUT);
5953 if (!ret) {
5954 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005955 IWL_ERR(priv,
5956 "Wait for START_ALIVE timeout after %dms.\n",
5957 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08005958 ret = -ETIMEDOUT;
5959 goto out_release_irq;
5960 }
5961 }
5962
Zhu Yie655b9f2008-01-24 02:19:38 -08005963 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07005964 IWL_DEBUG_MAC80211("leave\n");
5965 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08005966
5967out_release_irq:
5968 free_irq(priv->pci_dev->irq, priv);
5969out_disable_msi:
5970 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08005971 pci_disable_device(priv->pci_dev);
5972 priv->is_open = 0;
5973 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08005974 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005975}
5976
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005977static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07005978{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005979 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005980
5981 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005982
Zhu Yie655b9f2008-01-24 02:19:38 -08005983 if (!priv->is_open) {
5984 IWL_DEBUG_MAC80211("leave - skip\n");
5985 return;
5986 }
5987
Zhu Yib481de92007-09-25 17:54:57 -07005988 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08005989
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005990 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08005991 /* stop mac, cancel any scan request and clear
5992 * RXON_FILTER_ASSOC_MSK BIT
5993 */
Zhu Yi5a669262008-01-14 17:46:18 -08005994 mutex_lock(&priv->mutex);
5995 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08005996 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08005997 }
5998
Zhu Yi5a669262008-01-14 17:46:18 -08005999 iwl3945_down(priv);
6000
6001 flush_workqueue(priv->workqueue);
6002 free_irq(priv->pci_dev->irq, priv);
6003 pci_disable_msi(priv->pci_dev);
6004 pci_save_state(priv->pci_dev);
6005 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006006
Zhu Yib481de92007-09-25 17:54:57 -07006007 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006008}
6009
Johannes Berge039fa42008-05-15 12:55:29 +02006010static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006011{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006012 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006013
6014 IWL_DEBUG_MAC80211("enter\n");
6015
Zhu Yib481de92007-09-25 17:54:57 -07006016 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006017 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006018
Johannes Berge039fa42008-05-15 12:55:29 +02006019 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006020 dev_kfree_skb_any(skb);
6021
6022 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006023 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006024}
6025
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006026static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006027 struct ieee80211_if_init_conf *conf)
6028{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006029 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006030 unsigned long flags;
6031
Johannes Berg32bfd352007-12-19 01:31:26 +01006032 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006033
Johannes Berg32bfd352007-12-19 01:31:26 +01006034 if (priv->vif) {
6035 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006036 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006037 }
6038
6039 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006040 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006041 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006042
6043 spin_unlock_irqrestore(&priv->lock, flags);
6044
6045 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006046
6047 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006048 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006049 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6050 }
6051
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006052 if (iwl_is_ready(priv))
Zhu Yi5a669262008-01-14 17:46:18 -08006053 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006054
Zhu Yib481de92007-09-25 17:54:57 -07006055 mutex_unlock(&priv->mutex);
6056
Zhu Yi5a669262008-01-14 17:46:18 -08006057 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006058 return 0;
6059}
6060
6061/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006062 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006063 *
6064 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6065 * be set inappropriately and the driver currently sets the hardware up to
6066 * use it whenever needed.
6067 */
Johannes Berge8975582008-10-09 12:18:51 +02006068static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006069{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006070 struct iwl_priv *priv = hw->priv;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006071 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006072 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006073 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006074 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006075
6076 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006077 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006078
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006079 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006080 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006081 ret = -EIO;
6082 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006083 }
6084
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006085 if (unlikely(!iwl3945_mod_params.disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006086 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006087 IWL_DEBUG_MAC80211("leave - scanning\n");
6088 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006089 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006090 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006091 }
6092
6093 spin_lock_irqsave(&priv->lock, flags);
6094
Johannes Berg8318d782008-01-24 19:38:38 +01006095 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6096 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006097 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006098 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006099 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006100 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6101 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006102 ret = -EINVAL;
6103 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006104 }
6105
Johannes Berg8318d782008-01-24 19:38:38 +01006106 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006107
Johannes Berg8318d782008-01-24 19:38:38 +01006108 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006109
6110 /* The list of supported rates and rate mask can be different
6111 * for each phymode; since the phymode may have changed, reset
6112 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006113 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006114
6115 spin_unlock_irqrestore(&priv->lock, flags);
6116
6117#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6118 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006119 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006120 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006121 }
6122#endif
6123
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006124 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006125
6126 if (!conf->radio_enabled) {
6127 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006128 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006129 }
6130
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006131 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006132 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006133 ret = -EIO;
6134 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006135 }
6136
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006137 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006138
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006139 if (memcmp(&priv->active39_rxon,
6140 &priv->staging39_rxon, sizeof(priv->staging39_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006141 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006142 else
6143 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6144
6145 IWL_DEBUG_MAC80211("leave\n");
6146
Zhu Yi76bb77e2007-11-22 10:53:22 +08006147out:
Zhu Yia0646472007-12-20 14:10:01 +08006148 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006149 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006150 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006151}
6152
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006153static void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006154{
6155 int rc = 0;
6156
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006157 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006158 return;
6159
6160 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006161 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006162
6163 /* RXON - unassoc (to set timing command) */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006164 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006165 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006166
6167 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08006168 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006169 iwl3945_setup_rxon_timing(priv);
6170 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006171 sizeof(priv->rxon_timing), &priv->rxon_timing);
6172 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006173 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07006174 "Attempting to continue.\n");
6175
6176 /* FIXME: what should be the assoc_id for AP? */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006177 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07006178 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006179 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006180 RXON_FLG_SHORT_PREAMBLE_MSK;
6181 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006182 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006183 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6184
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006185 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07006186 if (priv->assoc_capability &
6187 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006188 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006189 RXON_FLG_SHORT_SLOT_MSK;
6190 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006191 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006192 ~RXON_FLG_SHORT_SLOT_MSK;
6193
Johannes Berg05c914f2008-09-11 00:01:58 +02006194 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006195 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006196 ~RXON_FLG_SHORT_SLOT_MSK;
6197 }
6198 /* restore RXON assoc */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006199 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006200 iwl3945_commit_rxon(priv);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08006201 iwl3945_add_station(priv, iwl_bcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006202 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006203 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006204
6205 /* FIXME - we need to add code here to detect a totally new
6206 * configuration, reset the AP, unassoc, rxon timing, assoc,
6207 * clear sta table, add BCAST sta... */
6208}
6209
Johannes Berg32bfd352007-12-19 01:31:26 +01006210static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6211 struct ieee80211_vif *vif,
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006212 struct ieee80211_if_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07006213{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006214 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006215 int rc;
6216
6217 if (conf == NULL)
6218 return -EIO;
6219
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006220 if (priv->vif != vif) {
6221 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006222 return 0;
6223 }
6224
Johannes Berg9d139c82008-07-09 14:40:37 +02006225 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006226 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006227 conf->changed & IEEE80211_IFCC_BEACON) {
6228 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6229 if (!beacon)
6230 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006231 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006232 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006233 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006234 if (rc)
6235 return rc;
6236 }
6237
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006238 if (!iwl_is_alive(priv))
Zhu Yi5a669262008-01-14 17:46:18 -08006239 return -EAGAIN;
6240
Zhu Yib481de92007-09-25 17:54:57 -07006241 mutex_lock(&priv->mutex);
6242
Zhu Yib481de92007-09-25 17:54:57 -07006243 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006244 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006245
Johannes Berg4150c572007-09-17 01:29:23 -04006246/*
6247 * very dubious code was here; the probe filtering flag is never set:
6248 *
Zhu Yib481de92007-09-25 17:54:57 -07006249 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6250 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006251 */
Zhu Yib481de92007-09-25 17:54:57 -07006252
Johannes Berg05c914f2008-09-11 00:01:58 +02006253 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006254 if (!conf->bssid) {
6255 conf->bssid = priv->mac_addr;
6256 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006257 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6258 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006259 }
6260 if (priv->ibss_beacon)
6261 dev_kfree_skb(priv->ibss_beacon);
6262
Johannes Berg9d139c82008-07-09 14:40:37 +02006263 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006264 }
6265
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006266 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08006267 goto done;
6268
Zhu Yib481de92007-09-25 17:54:57 -07006269 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6270 !is_multicast_ether_addr(conf->bssid)) {
6271 /* If there is currently a HW scan going on in the background
6272 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006273 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006274 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07006275 "after 100ms\n");
6276 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6277 mutex_unlock(&priv->mutex);
6278 return -EAGAIN;
6279 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006280 memcpy(priv->staging39_rxon.bssid_addr, conf->bssid, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006281
6282 /* TODO: Audit driver for usage of these members and see
6283 * if mac80211 deprecates them (priv->bssid looks like it
6284 * shouldn't be there, but I haven't scanned the IBSS code
6285 * to verify) - jpk */
6286 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6287
Johannes Berg05c914f2008-09-11 00:01:58 +02006288 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006289 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006290 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006291 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006292 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006293 iwl3945_add_station(priv,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006294 priv->active39_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006295 }
6296
6297 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006298 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006299 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006300 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006301 }
6302
Mohamed Abbasfde35712007-11-29 11:10:15 +08006303 done:
Zhu Yib481de92007-09-25 17:54:57 -07006304 IWL_DEBUG_MAC80211("leave\n");
6305 mutex_unlock(&priv->mutex);
6306
6307 return 0;
6308}
6309
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006310static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006311 unsigned int changed_flags,
6312 unsigned int *total_flags,
6313 int mc_count, struct dev_addr_list *mc_list)
6314{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006315 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006316 __le32 *filter_flags = &priv->staging39_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006317
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006318 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6319 changed_flags, *total_flags);
6320
6321 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6322 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6323 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6324 else
6325 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006326 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006327 if (changed_flags & FIF_ALLMULTI) {
6328 if (*total_flags & FIF_ALLMULTI)
6329 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6330 else
6331 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6332 }
6333 if (changed_flags & FIF_CONTROL) {
6334 if (*total_flags & FIF_CONTROL)
6335 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6336 else
6337 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6338 }
6339 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6340 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6341 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6342 else
6343 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6344 }
6345
6346 /* We avoid iwl_commit_rxon here to commit the new filter flags
6347 * since mac80211 will call ieee80211_hw_config immediately.
6348 * (mc_list is not supported at this time). Otherwise, we need to
6349 * queue a background iwl_commit_rxon work.
6350 */
6351
6352 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006353 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006354}
6355
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006356static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006357 struct ieee80211_if_init_conf *conf)
6358{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006359 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006360
6361 IWL_DEBUG_MAC80211("enter\n");
6362
6363 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006364
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006365 if (iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006366 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006367 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Mohamed Abbasfde35712007-11-29 11:10:15 +08006368 iwl3945_commit_rxon(priv);
6369 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006370 if (priv->vif == conf->vif) {
6371 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006372 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006373 }
6374 mutex_unlock(&priv->mutex);
6375
6376 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006377}
6378
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006379#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6380
6381static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6382 struct ieee80211_vif *vif,
6383 struct ieee80211_bss_conf *bss_conf,
6384 u32 changes)
6385{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006386 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006387
6388 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6389
6390 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6391 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6392 bss_conf->use_short_preamble);
6393 if (bss_conf->use_short_preamble)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006394 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006395 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006396 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006397 }
6398
6399 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6400 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6401 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006402 priv->staging39_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006403 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006404 priv->staging39_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006405 }
6406
6407 if (changes & BSS_CHANGED_ASSOC) {
6408 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6409 /* This should never happen as this function should
6410 * never be called from interrupt context. */
6411 if (WARN_ON_ONCE(in_interrupt()))
6412 return;
6413 if (bss_conf->assoc) {
6414 priv->assoc_id = bss_conf->aid;
6415 priv->beacon_int = bss_conf->beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006416 priv->timestamp = bss_conf->timestamp;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006417 priv->assoc_capability = bss_conf->assoc_capability;
6418 priv->next_scan_jiffies = jiffies +
6419 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6420 mutex_lock(&priv->mutex);
6421 iwl3945_post_associate(priv);
6422 mutex_unlock(&priv->mutex);
6423 } else {
6424 priv->assoc_id = 0;
6425 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6426 }
6427 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6428 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6429 iwl3945_send_rxon_assoc(priv);
6430 }
6431
6432}
6433
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006434static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006435{
6436 int rc = 0;
6437 unsigned long flags;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006438 struct iwl_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006439 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006440
6441 IWL_DEBUG_MAC80211("enter\n");
6442
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006443 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006444 spin_lock_irqsave(&priv->lock, flags);
6445
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006446 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006447 rc = -EIO;
6448 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6449 goto out_unlock;
6450 }
6451
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006452 /* we don't schedule scan within next_scan_jiffies period */
6453 if (priv->next_scan_jiffies &&
6454 time_after(priv->next_scan_jiffies, jiffies)) {
6455 rc = -EAGAIN;
6456 goto out_unlock;
6457 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006458 /* if we just finished scan ask for delay for a broadcast scan */
6459 if ((len == 0) && priv->last_scan_jiffies &&
6460 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6461 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006462 rc = -EAGAIN;
6463 goto out_unlock;
6464 }
6465 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006466 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006467 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006468
6469 priv->one_direct_scan = 1;
6470 priv->direct_ssid_len = (u8)
6471 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6472 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006473 } else
6474 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006475
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006476 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006477
6478 IWL_DEBUG_MAC80211("leave\n");
6479
6480out_unlock:
6481 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006482 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006483
6484 return rc;
6485}
6486
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006487static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01006488 struct ieee80211_vif *vif,
6489 struct ieee80211_sta *sta,
6490 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07006491{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006492 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01006493 const u8 *addr;
Zhu Yib481de92007-09-25 17:54:57 -07006494 int rc = 0;
6495 u8 sta_id;
Johannes Bergdc822b52008-12-29 12:55:09 +01006496 static const u8 bcast_addr[ETH_ALEN] =
6497 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Zhu Yib481de92007-09-25 17:54:57 -07006498
6499 IWL_DEBUG_MAC80211("enter\n");
6500
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006501 if (iwl3945_mod_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07006502 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
6503 return -EOPNOTSUPP;
6504 }
6505
Johannes Bergdc822b52008-12-29 12:55:09 +01006506 addr = sta ? sta->addr : bcast_addr;
Zhu Yib481de92007-09-25 17:54:57 -07006507
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006508 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07006509 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07006510 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
6511 addr);
Zhu Yib481de92007-09-25 17:54:57 -07006512 return -EINVAL;
6513 }
6514
6515 mutex_lock(&priv->mutex);
6516
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006517 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006518
Zhu Yib481de92007-09-25 17:54:57 -07006519 switch (cmd) {
6520 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006521 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006522 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006523 iwl3945_set_rxon_hwcrypto(priv, 1);
6524 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006525 key->hw_key_idx = sta_id;
6526 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
6527 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
6528 }
6529 break;
6530 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006531 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006532 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006533 iwl3945_set_rxon_hwcrypto(priv, 0);
6534 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006535 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
6536 }
6537 break;
6538 default:
6539 rc = -EINVAL;
6540 }
6541
6542 IWL_DEBUG_MAC80211("leave\n");
6543 mutex_unlock(&priv->mutex);
6544
6545 return rc;
6546}
6547
Johannes Berge100bb62008-04-30 18:51:21 +02006548static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07006549 const struct ieee80211_tx_queue_params *params)
6550{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006551 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006552 unsigned long flags;
6553 int q;
Zhu Yib481de92007-09-25 17:54:57 -07006554
6555 IWL_DEBUG_MAC80211("enter\n");
6556
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006557 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006558 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6559 return -EIO;
6560 }
6561
6562 if (queue >= AC_NUM) {
6563 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
6564 return 0;
6565 }
6566
Zhu Yib481de92007-09-25 17:54:57 -07006567 q = AC_NUM - 1 - queue;
6568
6569 spin_lock_irqsave(&priv->lock, flags);
6570
6571 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
6572 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
6573 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
6574 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01006575 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07006576
6577 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
6578 priv->qos_data.qos_active = 1;
6579
6580 spin_unlock_irqrestore(&priv->lock, flags);
6581
6582 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02006583 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006584 iwl3945_activate_qos(priv, 1);
6585 else if (priv->assoc_id && iwl3945_is_associated(priv))
6586 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006587
6588 mutex_unlock(&priv->mutex);
6589
Zhu Yib481de92007-09-25 17:54:57 -07006590 IWL_DEBUG_MAC80211("leave\n");
6591 return 0;
6592}
6593
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006594static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006595 struct ieee80211_tx_queue_stats *stats)
6596{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006597 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006598 int i, avail;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006599 struct iwl_tx_queue *txq;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006600 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07006601 unsigned long flags;
6602
6603 IWL_DEBUG_MAC80211("enter\n");
6604
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006605 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006606 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6607 return -EIO;
6608 }
6609
6610 spin_lock_irqsave(&priv->lock, flags);
6611
6612 for (i = 0; i < AC_NUM; i++) {
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006613 txq = &priv->txq[i];
Zhu Yib481de92007-09-25 17:54:57 -07006614 q = &txq->q;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006615 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07006616
Johannes Berg57ffc582008-04-29 17:18:59 +02006617 stats[i].len = q->n_window - avail;
6618 stats[i].limit = q->n_window - q->high_mark;
6619 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07006620
6621 }
6622 spin_unlock_irqrestore(&priv->lock, flags);
6623
6624 IWL_DEBUG_MAC80211("leave\n");
6625
6626 return 0;
6627}
6628
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006629static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006630{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006631 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006632 unsigned long flags;
6633
6634 mutex_lock(&priv->mutex);
6635 IWL_DEBUG_MAC80211("enter\n");
6636
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006637 iwl_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006638
Zhu Yib481de92007-09-25 17:54:57 -07006639 spin_lock_irqsave(&priv->lock, flags);
6640 priv->assoc_id = 0;
6641 priv->assoc_capability = 0;
6642 priv->call_post_assoc_from_beacon = 0;
6643
6644 /* new association get rid of ibss beacon skb */
6645 if (priv->ibss_beacon)
6646 dev_kfree_skb(priv->ibss_beacon);
6647
6648 priv->ibss_beacon = NULL;
6649
6650 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006651 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02006652 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07006653 priv->beacon_int = 0;
6654
6655 spin_unlock_irqrestore(&priv->lock, flags);
6656
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006657 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006658 IWL_DEBUG_MAC80211("leave - not ready\n");
6659 mutex_unlock(&priv->mutex);
6660 return;
6661 }
6662
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006663 /* we are restarting association process
6664 * clear RXON_FILTER_ASSOC_MSK bit
6665 */
Johannes Berg05c914f2008-09-11 00:01:58 +02006666 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006667 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006668 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006669 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006670 }
6671
Zhu Yib481de92007-09-25 17:54:57 -07006672 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02006673 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006674
Zhu Yib481de92007-09-25 17:54:57 -07006675 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
6676 mutex_unlock(&priv->mutex);
6677 return;
6678 }
6679
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006680 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006681
6682 mutex_unlock(&priv->mutex);
6683
6684 IWL_DEBUG_MAC80211("leave\n");
6685
6686}
6687
Johannes Berge039fa42008-05-15 12:55:29 +02006688static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006689{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006690 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006691 unsigned long flags;
6692
Zhu Yib481de92007-09-25 17:54:57 -07006693 IWL_DEBUG_MAC80211("enter\n");
6694
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006695 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006696 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07006697 return -EIO;
6698 }
6699
Johannes Berg05c914f2008-09-11 00:01:58 +02006700 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07006701 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07006702 return -EIO;
6703 }
6704
6705 spin_lock_irqsave(&priv->lock, flags);
6706
6707 if (priv->ibss_beacon)
6708 dev_kfree_skb(priv->ibss_beacon);
6709
6710 priv->ibss_beacon = skb;
6711
6712 priv->assoc_id = 0;
6713
6714 IWL_DEBUG_MAC80211("leave\n");
6715 spin_unlock_irqrestore(&priv->lock, flags);
6716
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006717 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006718
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08006719 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006720
Zhu Yib481de92007-09-25 17:54:57 -07006721
6722 return 0;
6723}
6724
6725/*****************************************************************************
6726 *
6727 * sysfs attributes
6728 *
6729 *****************************************************************************/
6730
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006731#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07006732
6733/*
6734 * The following adds a new attribute to the sysfs representation
6735 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
6736 * used for controlling the debug level.
6737 *
6738 * See the level definitions in iwl for details.
6739 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006740static ssize_t show_debug_level(struct device *d,
6741 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07006742{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006743 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006744
6745 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006746}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006747static ssize_t store_debug_level(struct device *d,
6748 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07006749 const char *buf, size_t count)
6750{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006751 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006752 unsigned long val;
6753 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006754
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006755 ret = strict_strtoul(buf, 0, &val);
6756 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08006757 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006758 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006759 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07006760
6761 return strnlen(buf, count);
6762}
6763
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006764static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
6765 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006766
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006767#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07006768
Zhu Yib481de92007-09-25 17:54:57 -07006769static ssize_t show_temperature(struct device *d,
6770 struct device_attribute *attr, char *buf)
6771{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006772 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006773
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006774 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006775 return -EAGAIN;
6776
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006777 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07006778}
6779
6780static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
6781
Zhu Yib481de92007-09-25 17:54:57 -07006782static ssize_t show_tx_power(struct device *d,
6783 struct device_attribute *attr, char *buf)
6784{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006785 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006786 return sprintf(buf, "%d\n", priv->user_txpower_limit);
6787}
6788
6789static ssize_t store_tx_power(struct device *d,
6790 struct device_attribute *attr,
6791 const char *buf, size_t count)
6792{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006793 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006794 char *p = (char *)buf;
6795 u32 val;
6796
6797 val = simple_strtoul(p, &p, 10);
6798 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08006799 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006800 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006801 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07006802
6803 return count;
6804}
6805
6806static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
6807
6808static ssize_t show_flags(struct device *d,
6809 struct device_attribute *attr, char *buf)
6810{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006811 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006812
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006813 return sprintf(buf, "0x%04X\n", priv->active39_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07006814}
6815
6816static ssize_t store_flags(struct device *d,
6817 struct device_attribute *attr,
6818 const char *buf, size_t count)
6819{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006820 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006821 u32 flags = simple_strtoul(buf, NULL, 0);
6822
6823 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006824 if (le32_to_cpu(priv->staging39_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07006825 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006826 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006827 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006828 else {
6829 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
6830 flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006831 priv->staging39_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006832 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006833 }
6834 }
6835 mutex_unlock(&priv->mutex);
6836
6837 return count;
6838}
6839
6840static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
6841
6842static ssize_t show_filter_flags(struct device *d,
6843 struct device_attribute *attr, char *buf)
6844{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006845 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006846
6847 return sprintf(buf, "0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006848 le32_to_cpu(priv->active39_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07006849}
6850
6851static ssize_t store_filter_flags(struct device *d,
6852 struct device_attribute *attr,
6853 const char *buf, size_t count)
6854{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006855 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006856 u32 filter_flags = simple_strtoul(buf, NULL, 0);
6857
6858 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006859 if (le32_to_cpu(priv->staging39_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07006860 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006861 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006862 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006863 else {
6864 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
6865 "0x%04X\n", filter_flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006866 priv->staging39_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07006867 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006868 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006869 }
6870 }
6871 mutex_unlock(&priv->mutex);
6872
6873 return count;
6874}
6875
6876static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
6877 store_filter_flags);
6878
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006879#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07006880
6881static ssize_t show_measurement(struct device *d,
6882 struct device_attribute *attr, char *buf)
6883{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006884 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08006885 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07006886 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006887 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07006888 unsigned long flags;
6889
6890 spin_lock_irqsave(&priv->lock, flags);
6891 if (!(priv->measurement_status & MEASUREMENT_READY)) {
6892 spin_unlock_irqrestore(&priv->lock, flags);
6893 return 0;
6894 }
6895 memcpy(&measure_report, &priv->measure_report, size);
6896 priv->measurement_status = 0;
6897 spin_unlock_irqrestore(&priv->lock, flags);
6898
6899 while (size && (PAGE_SIZE - len)) {
6900 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
6901 PAGE_SIZE - len, 1);
6902 len = strlen(buf);
6903 if (PAGE_SIZE - len)
6904 buf[len++] = '\n';
6905
6906 ofs += 16;
6907 size -= min(size, 16U);
6908 }
6909
6910 return len;
6911}
6912
6913static ssize_t store_measurement(struct device *d,
6914 struct device_attribute *attr,
6915 const char *buf, size_t count)
6916{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006917 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006918 struct ieee80211_measurement_params params = {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006919 .channel = le16_to_cpu(priv->active39_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07006920 .start_time = cpu_to_le64(priv->last_tsf),
6921 .duration = cpu_to_le16(1),
6922 };
6923 u8 type = IWL_MEASURE_BASIC;
6924 u8 buffer[32];
6925 u8 channel;
6926
6927 if (count) {
6928 char *p = buffer;
6929 strncpy(buffer, buf, min(sizeof(buffer), count));
6930 channel = simple_strtoul(p, NULL, 0);
6931 if (channel)
6932 params.channel = channel;
6933
6934 p = buffer;
6935 while (*p && *p != ' ')
6936 p++;
6937 if (*p)
6938 type = simple_strtoul(p + 1, NULL, 0);
6939 }
6940
6941 IWL_DEBUG_INFO("Invoking measurement of type %d on "
6942 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006943 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07006944
6945 return count;
6946}
6947
6948static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
6949 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006950#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07006951
Zhu Yib481de92007-09-25 17:54:57 -07006952static ssize_t store_retry_rate(struct device *d,
6953 struct device_attribute *attr,
6954 const char *buf, size_t count)
6955{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006956 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006957
6958 priv->retry_rate = simple_strtoul(buf, NULL, 0);
6959 if (priv->retry_rate <= 0)
6960 priv->retry_rate = 1;
6961
6962 return count;
6963}
6964
6965static ssize_t show_retry_rate(struct device *d,
6966 struct device_attribute *attr, char *buf)
6967{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006968 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006969 return sprintf(buf, "%d", priv->retry_rate);
6970}
6971
6972static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
6973 store_retry_rate);
6974
6975static ssize_t store_power_level(struct device *d,
6976 struct device_attribute *attr,
6977 const char *buf, size_t count)
6978{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006979 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006980 int rc;
6981 int mode;
6982
6983 mode = simple_strtoul(buf, NULL, 0);
6984 mutex_lock(&priv->mutex);
6985
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006986 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006987 rc = -EAGAIN;
6988 goto out;
6989 }
6990
Samuel Ortiz1125eff2008-12-19 10:37:14 +08006991 if ((mode < 1) || (mode > IWL39_POWER_LIMIT) ||
6992 (mode == IWL39_POWER_AC))
6993 mode = IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07006994 else
6995 mode |= IWL_POWER_ENABLED;
6996
6997 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006998 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07006999 if (rc) {
7000 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7001 goto out;
7002 }
7003 priv->power_mode = mode;
7004 }
7005
7006 rc = count;
7007
7008 out:
7009 mutex_unlock(&priv->mutex);
7010 return rc;
7011}
7012
7013#define MAX_WX_STRING 80
7014
7015/* Values are in microsecond */
7016static const s32 timeout_duration[] = {
7017 350000,
7018 250000,
7019 75000,
7020 37000,
7021 25000,
7022};
7023static const s32 period_duration[] = {
7024 400000,
7025 700000,
7026 1000000,
7027 1000000,
7028 1000000
7029};
7030
7031static ssize_t show_power_level(struct device *d,
7032 struct device_attribute *attr, char *buf)
7033{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007034 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007035 int level = IWL_POWER_LEVEL(priv->power_mode);
7036 char *p = buf;
7037
7038 p += sprintf(p, "%d ", level);
7039 switch (level) {
7040 case IWL_POWER_MODE_CAM:
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007041 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07007042 p += sprintf(p, "(AC)");
7043 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007044 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07007045 p += sprintf(p, "(BATTERY)");
7046 break;
7047 default:
7048 p += sprintf(p,
7049 "(Timeout %dms, Period %dms)",
7050 timeout_duration[level - 1] / 1000,
7051 period_duration[level - 1] / 1000);
7052 }
7053
7054 if (!(priv->power_mode & IWL_POWER_ENABLED))
7055 p += sprintf(p, " OFF\n");
7056 else
7057 p += sprintf(p, " \n");
7058
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007059 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007060
7061}
7062
7063static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7064 store_power_level);
7065
7066static ssize_t show_channels(struct device *d,
7067 struct device_attribute *attr, char *buf)
7068{
Johannes Berg8318d782008-01-24 19:38:38 +01007069 /* all this shit doesn't belong into sysfs anyway */
7070 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007071}
7072
7073static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7074
7075static ssize_t show_statistics(struct device *d,
7076 struct device_attribute *attr, char *buf)
7077{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007078 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007079 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007080 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007081 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07007082 int rc = 0;
7083
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007084 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007085 return -EAGAIN;
7086
7087 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007088 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007089 mutex_unlock(&priv->mutex);
7090
7091 if (rc) {
7092 len = sprintf(buf,
7093 "Error sending statistics request: 0x%08X\n", rc);
7094 return len;
7095 }
7096
7097 while (size && (PAGE_SIZE - len)) {
7098 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7099 PAGE_SIZE - len, 1);
7100 len = strlen(buf);
7101 if (PAGE_SIZE - len)
7102 buf[len++] = '\n';
7103
7104 ofs += 16;
7105 size -= min(size, 16U);
7106 }
7107
7108 return len;
7109}
7110
7111static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7112
7113static ssize_t show_antenna(struct device *d,
7114 struct device_attribute *attr, char *buf)
7115{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007116 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007117
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007118 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007119 return -EAGAIN;
7120
7121 return sprintf(buf, "%d\n", priv->antenna);
7122}
7123
7124static ssize_t store_antenna(struct device *d,
7125 struct device_attribute *attr,
7126 const char *buf, size_t count)
7127{
7128 int ant;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007129 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007130
7131 if (count == 0)
7132 return 0;
7133
7134 if (sscanf(buf, "%1i", &ant) != 1) {
7135 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7136 return count;
7137 }
7138
7139 if ((ant >= 0) && (ant <= 2)) {
7140 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007141 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007142 } else
7143 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7144
7145
7146 return count;
7147}
7148
7149static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7150
7151static ssize_t show_status(struct device *d,
7152 struct device_attribute *attr, char *buf)
7153{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007154 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007155 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007156 return -EAGAIN;
7157 return sprintf(buf, "0x%08x\n", (int)priv->status);
7158}
7159
7160static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7161
7162static ssize_t dump_error_log(struct device *d,
7163 struct device_attribute *attr,
7164 const char *buf, size_t count)
7165{
7166 char *p = (char *)buf;
7167
7168 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007169 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007170
7171 return strnlen(buf, count);
7172}
7173
7174static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7175
7176static ssize_t dump_event_log(struct device *d,
7177 struct device_attribute *attr,
7178 const char *buf, size_t count)
7179{
7180 char *p = (char *)buf;
7181
7182 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007183 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007184
7185 return strnlen(buf, count);
7186}
7187
7188static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7189
7190/*****************************************************************************
7191 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007192 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007193 *
7194 *****************************************************************************/
7195
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007196static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007197{
7198 priv->workqueue = create_workqueue(DRV_NAME);
7199
7200 init_waitqueue_head(&priv->wait_command_queue);
7201
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007202 INIT_WORK(&priv->up, iwl3945_bg_up);
7203 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7204 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7205 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7206 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7207 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7208 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7209 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007210 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7211 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7212 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007213
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007214 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007215
7216 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007217 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007218}
7219
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007220static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007221{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007222 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007223
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007224 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007225 cancel_delayed_work(&priv->scan_check);
7226 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007227 cancel_work_sync(&priv->beacon_update);
7228}
7229
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007230static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007231 &dev_attr_antenna.attr,
7232 &dev_attr_channels.attr,
7233 &dev_attr_dump_errors.attr,
7234 &dev_attr_dump_events.attr,
7235 &dev_attr_flags.attr,
7236 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007237#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007238 &dev_attr_measurement.attr,
7239#endif
7240 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007241 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007242 &dev_attr_statistics.attr,
7243 &dev_attr_status.attr,
7244 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007245 &dev_attr_tx_power.attr,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007246#ifdef CONFIG_IWL3945_DEBUG
7247 &dev_attr_debug_level.attr,
7248#endif
Zhu Yib481de92007-09-25 17:54:57 -07007249 NULL
7250};
7251
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007252static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007253 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007254 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007255};
7256
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007257static struct ieee80211_ops iwl3945_hw_ops = {
7258 .tx = iwl3945_mac_tx,
7259 .start = iwl3945_mac_start,
7260 .stop = iwl3945_mac_stop,
7261 .add_interface = iwl3945_mac_add_interface,
7262 .remove_interface = iwl3945_mac_remove_interface,
7263 .config = iwl3945_mac_config,
7264 .config_interface = iwl3945_mac_config_interface,
7265 .configure_filter = iwl3945_configure_filter,
7266 .set_key = iwl3945_mac_set_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007267 .get_tx_stats = iwl3945_mac_get_tx_stats,
7268 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007269 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007270 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007271 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007272};
7273
Winkler, Tomase52119c2008-12-22 11:31:19 +08007274static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007275{
7276 int ret;
7277
7278 priv->retry_rate = 1;
7279 priv->ibss_beacon = NULL;
7280
7281 spin_lock_init(&priv->lock);
7282 spin_lock_init(&priv->power_data.lock);
7283 spin_lock_init(&priv->sta_lock);
7284 spin_lock_init(&priv->hcmd_lock);
7285
7286 INIT_LIST_HEAD(&priv->free_frames);
7287
7288 mutex_init(&priv->mutex);
7289
7290 /* Clear the driver's (not device's) station table */
7291 iwl3945_clear_stations_table(priv);
7292
7293 priv->data_retry_limit = -1;
7294 priv->ieee_channels = NULL;
7295 priv->ieee_rates = NULL;
7296 priv->band = IEEE80211_BAND_2GHZ;
7297
7298 priv->iw_mode = NL80211_IFTYPE_STATION;
7299
7300 iwl_reset_qos(priv);
7301
7302 priv->qos_data.qos_active = 0;
7303 priv->qos_data.qos_cap.val = 0;
7304
7305 priv->rates_mask = IWL_RATES_MASK;
7306 /* If power management is turned on, default to AC mode */
7307 priv->power_mode = IWL_POWER_AC;
7308 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7309
7310 ret = iwl3945_init_channel_map(priv);
7311 if (ret) {
7312 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
7313 goto err;
7314 }
7315
7316 ret = iwl3945_init_geos(priv);
7317 if (ret) {
7318 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
7319 goto err_free_channel_map;
7320 }
7321
7322 return 0;
7323
7324err_free_channel_map:
7325 iwl3945_free_channel_map(priv);
7326err:
7327 return ret;
7328}
7329
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007330static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007331{
7332 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007333 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007334 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08007335 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007336 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007337
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007338 /***********************
7339 * 1. Allocating HW data
7340 * ********************/
7341
Zhu Yib481de92007-09-25 17:54:57 -07007342 /* mac80211 allocates memory for this device instance, including
7343 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007344 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007345 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007346 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07007347 err = -ENOMEM;
7348 goto out;
7349 }
Zhu Yib481de92007-09-25 17:54:57 -07007350 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007351 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007352
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007353 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
7354 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007355 IWL_ERR(priv,
7356 "invalid queues_num, should be between %d and %d\n",
7357 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08007358 err = -EINVAL;
7359 goto out;
7360 }
7361
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007362 /*
7363 * Disabling hardware scan means that mac80211 will perform scans
7364 * "the hard way", rather than using device's scan.
7365 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007366 if (iwl3945_mod_params.disable_hw_scan) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007367 IWL_DEBUG_INFO("Disabling hw_scan\n");
7368 iwl3945_hw_ops.hw_scan = NULL;
7369 }
7370
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007371
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007372 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007373 priv->cfg = cfg;
7374 priv->pci_dev = pdev;
7375
7376#ifdef CONFIG_IWL3945_DEBUG
7377 priv->debug_level = iwl3945_mod_params.debug;
7378 atomic_set(&priv->restrict_refcnt, 0);
7379#endif
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007380 hw->rate_control_algorithm = "iwl-3945-rs";
7381 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7382
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007383 /* Select antenna (may be helpful if only one antenna is connected) */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007384 priv->antenna = (enum iwl3945_antenna)iwl3945_mod_params.antenna;
Zhu Yib481de92007-09-25 17:54:57 -07007385
Bruno Randolf566bfe52008-05-08 19:15:40 +02007386 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007387 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007388 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007389
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007390 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007391 BIT(NL80211_IFTYPE_STATION) |
7392 BIT(NL80211_IFTYPE_ADHOC);
7393
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007394 hw->wiphy->fw_handles_regulatory = true;
7395
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007396 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007397 hw->queues = 4;
7398
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007399 /***************************
7400 * 2. Initializing PCI bus
7401 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007402 if (pci_enable_device(pdev)) {
7403 err = -ENODEV;
7404 goto out_ieee80211_free_hw;
7405 }
7406
7407 pci_set_master(pdev);
7408
Zhu Yib481de92007-09-25 17:54:57 -07007409 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7410 if (!err)
7411 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7412 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08007413 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07007414 goto out_pci_disable_device;
7415 }
7416
7417 pci_set_drvdata(pdev, priv);
7418 err = pci_request_regions(pdev, DRV_NAME);
7419 if (err)
7420 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007421
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007422 /***********************
7423 * 3. Read REV Register
7424 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007425 priv->hw_base = pci_iomap(pdev, 0, 0);
7426 if (!priv->hw_base) {
7427 err = -ENODEV;
7428 goto out_pci_release_regions;
7429 }
7430
7431 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7432 (unsigned long long) pci_resource_len(pdev, 0));
7433 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7434
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007435 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7436 * PCI Tx retries from interfering with C3 CPU state */
7437 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007438
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007439 /* amp init */
7440 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007441 if (err < 0) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007442 IWL_DEBUG_INFO("Failed to init APMG\n");
7443 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007444 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007445
7446 /***********************
7447 * 4. Read EEPROM
7448 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007449
Zhu Yi5a669262008-01-14 17:46:18 -08007450 /* Read the EEPROM */
7451 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007452 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007453 IWL_ERR(priv, "Unable to init EEPROM\n");
Zhu Yi5a669262008-01-14 17:46:18 -08007454 goto out_remove_sysfs;
7455 }
7456 /* MAC Address location in EEPROM same for 3945/4965 */
7457 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007458 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08007459 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7460
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007461 /***********************
7462 * 5. Setup HW Constants
7463 * ********************/
7464 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007465 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007466 IWL_ERR(priv, "failed to set hw settings\n");
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007467 goto out_iounmap;
7468 }
7469
7470 /***********************
7471 * 6. Setup priv
7472 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007473
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007474 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007475 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007476 IWL_ERR(priv, "initializing driver failed\n");
7477 goto out_free_geos;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007478 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007479
Tomas Winkler978785a2008-12-19 10:37:31 +08007480 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
7481 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007482
7483 /***********************************
7484 * 7. Initialize Module Parameters
7485 * **********************************/
7486
7487 /* Initialize module parameter values here */
7488 /* Disable radio (SW RF KILL) via parameter when loading driver */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007489 if (iwl3945_mod_params.disable) {
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007490 set_bit(STATUS_RF_KILL_SW, &priv->status);
7491 IWL_DEBUG_INFO("Radio disabled.\n");
7492 }
7493
7494
7495 /***********************
7496 * 8. Setup Services
7497 * ********************/
7498
7499 spin_lock_irqsave(&priv->lock, flags);
7500 iwl3945_disable_interrupts(priv);
7501 spin_unlock_irqrestore(&priv->lock, flags);
7502
7503 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7504 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007505 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007506 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007507 }
7508
7509 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
7510 iwl3945_setup_deferred_work(priv);
7511 iwl3945_setup_rx_handlers(priv);
7512
7513 /***********************
7514 * 9. Conclude
7515 * ********************/
7516 pci_save_state(pdev);
7517 pci_disable_device(pdev);
7518
7519 /*********************************
7520 * 10. Setup and Register mac80211
7521 * *******************************/
7522
Zhu Yi5a669262008-01-14 17:46:18 -08007523 err = ieee80211_register_hw(priv->hw);
7524 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007525 IWL_ERR(priv, "Failed to register network device: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007526 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07007527 }
7528
Zhu Yi5a669262008-01-14 17:46:18 -08007529 priv->hw->conf.beacon_int = 100;
7530 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007531
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007532 err = iwl3945_rfkill_init(priv);
7533 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08007534 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007535 "Ignoring error: %d\n", err);
7536
Zhu Yib481de92007-09-25 17:54:57 -07007537 return 0;
7538
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007539 out_remove_sysfs:
7540 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007541 out_free_geos:
7542 iwl3945_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007543
7544 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07007545 destroy_workqueue(priv->workqueue);
7546 priv->workqueue = NULL;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007547 iwl3945_unset_hw_params(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007548
7549 out_iounmap:
7550 pci_iounmap(pdev, priv->hw_base);
7551 out_pci_release_regions:
7552 pci_release_regions(pdev);
7553 out_pci_disable_device:
7554 pci_disable_device(pdev);
7555 pci_set_drvdata(pdev, NULL);
7556 out_ieee80211_free_hw:
7557 ieee80211_free_hw(priv->hw);
7558 out:
7559 return err;
7560}
7561
Reinette Chatrec83dbf62008-03-21 13:53:41 -07007562static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007563{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007564 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007565 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007566
7567 if (!priv)
7568 return;
7569
7570 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
7571
Zhu Yib481de92007-09-25 17:54:57 -07007572 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08007573
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08007574 if (priv->mac80211_registered) {
7575 ieee80211_unregister_hw(priv->hw);
7576 priv->mac80211_registered = 0;
7577 } else {
7578 iwl3945_down(priv);
7579 }
Zhu Yib481de92007-09-25 17:54:57 -07007580
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007581 /* make sure we flush any pending irq or
7582 * tasklet for the driver
7583 */
7584 spin_lock_irqsave(&priv->lock, flags);
7585 iwl3945_disable_interrupts(priv);
7586 spin_unlock_irqrestore(&priv->lock, flags);
7587
7588 iwl_synchronize_irq(priv);
7589
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007590 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07007591
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007592 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007593 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007594
7595 if (priv->rxq.bd)
Winkler, Tomas51af3d32008-12-22 11:31:23 +08007596 iwl_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007597 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007598
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007599 iwl3945_unset_hw_params(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007600 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007601
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08007602 /*netif_stop_queue(dev); */
7603 flush_workqueue(priv->workqueue);
7604
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007605 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07007606 * priv->workqueue... so we can't take down the workqueue
7607 * until now... */
7608 destroy_workqueue(priv->workqueue);
7609 priv->workqueue = NULL;
7610
Zhu Yib481de92007-09-25 17:54:57 -07007611 pci_iounmap(pdev, priv->hw_base);
7612 pci_release_regions(pdev);
7613 pci_disable_device(pdev);
7614 pci_set_drvdata(pdev, NULL);
7615
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007616 iwl3945_free_channel_map(priv);
7617 iwl3945_free_geos(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007618 kfree(priv->scan39);
Zhu Yib481de92007-09-25 17:54:57 -07007619 if (priv->ibss_beacon)
7620 dev_kfree_skb(priv->ibss_beacon);
7621
7622 ieee80211_free_hw(priv->hw);
7623}
7624
7625#ifdef CONFIG_PM
7626
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007627static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07007628{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007629 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007630
Zhu Yie655b9f2008-01-24 02:19:38 -08007631 if (priv->is_open) {
7632 set_bit(STATUS_IN_SUSPEND, &priv->status);
7633 iwl3945_mac_stop(priv->hw);
7634 priv->is_open = 1;
7635 }
Zhu Yib481de92007-09-25 17:54:57 -07007636
Zhu Yib481de92007-09-25 17:54:57 -07007637 pci_set_power_state(pdev, PCI_D3hot);
7638
Zhu Yib481de92007-09-25 17:54:57 -07007639 return 0;
7640}
7641
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007642static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007643{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007644 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007645
Zhu Yib481de92007-09-25 17:54:57 -07007646 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07007647
Zhu Yie655b9f2008-01-24 02:19:38 -08007648 if (priv->is_open)
7649 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07007650
Zhu Yie655b9f2008-01-24 02:19:38 -08007651 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07007652 return 0;
7653}
7654
7655#endif /* CONFIG_PM */
7656
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007657/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007658#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007659/* software rf-kill from user */
7660static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
7661{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007662 struct iwl_priv *priv = data;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007663 int err = 0;
7664
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007665 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007666 return 0;
7667
7668 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
7669 return 0;
7670
Tomas Winklera96a27f2008-10-23 23:48:56 -07007671 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007672 mutex_lock(&priv->mutex);
7673
7674 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007675 case RFKILL_STATE_UNBLOCKED:
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007676 if (iwl_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007677 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007678 goto out_unlock;
7679 }
7680 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007681 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007682 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007683 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007684 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007685 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +08007686 IWL_WARN(priv, "received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007687 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007688 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007689out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007690 mutex_unlock(&priv->mutex);
7691
7692 return err;
7693}
7694
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007695int iwl3945_rfkill_init(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007696{
7697 struct device *device = wiphy_dev(priv->hw->wiphy);
7698 int ret = 0;
7699
7700 BUG_ON(device == NULL);
7701
7702 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007703 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
7704 if (!priv->rfkill) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007705 IWL_ERR(priv, "Unable to allocate rfkill device.\n");
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007706 ret = -ENOMEM;
7707 goto error;
7708 }
7709
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007710 priv->rfkill->name = priv->cfg->name;
7711 priv->rfkill->data = priv;
7712 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
7713 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
7714 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007715
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007716 priv->rfkill->dev.class->suspend = NULL;
7717 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007718
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007719 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007720 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007721 IWL_ERR(priv, "Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007722 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007723 }
7724
7725 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7726 return ret;
7727
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007728freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007729 if (priv->rfkill != NULL)
7730 rfkill_free(priv->rfkill);
7731 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007732
7733error:
7734 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7735 return ret;
7736}
7737
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007738void iwl3945_rfkill_unregister(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007739{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007740 if (priv->rfkill)
7741 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007742
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007743 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007744}
7745
7746/* set rf-kill to the right state. */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007747void iwl3945_rfkill_set_hw_state(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007748{
7749
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007750 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007751 return;
7752
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007753 if (iwl_is_rfkill_hw(priv)) {
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007754 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
7755 return;
7756 }
7757
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007758 if (!iwl_is_rfkill_sw(priv))
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007759 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007760 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007761 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007762}
7763#endif
7764
Zhu Yib481de92007-09-25 17:54:57 -07007765/*****************************************************************************
7766 *
7767 * driver and module entry point
7768 *
7769 *****************************************************************************/
7770
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007771static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07007772 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007773 .id_table = iwl3945_hw_card_ids,
7774 .probe = iwl3945_pci_probe,
7775 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07007776#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007777 .suspend = iwl3945_pci_suspend,
7778 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07007779#endif
7780};
7781
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007782static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07007783{
7784
7785 int ret;
7786 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
7787 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007788
7789 ret = iwl3945_rate_control_register();
7790 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007791 printk(KERN_ERR DRV_NAME
7792 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007793 return ret;
7794 }
7795
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007796 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07007797 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007798 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007799 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07007800 }
Zhu Yib481de92007-09-25 17:54:57 -07007801
7802 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007803
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007804error_register:
7805 iwl3945_rate_control_unregister();
7806 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07007807}
7808
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007809static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07007810{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007811 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007812 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07007813}
7814
Reinette Chatrea0987a82008-12-02 12:14:06 -08007815MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08007816
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007817module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007818MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007819module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007820MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007821module_param_named(hwcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007822MODULE_PARM_DESC(hwcrypto,
7823 "using hardware crypto engine (default 0 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007824module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007825MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007826module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007827MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
7828
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007829module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007830MODULE_PARM_DESC(queues_num, "number of hw queues.");
7831
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007832module_exit(iwl3945_exit);
7833module_init(iwl3945_init);