blob: 53e274a5f4feab709ff40a6502e598ab803d3902 [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_card_state_sync_callback(struct iwl_priv *priv,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08001080 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001081 struct sk_buff *skb)
1082{
1083 return 1;
1084}
1085
1086/*
1087 * CARD_STATE_CMD
1088 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001089 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -07001090 *
1091 * When in the 'enable' state the card operates as normal.
1092 * When in the 'disable' state, the card enters into a low power mode.
1093 * When in the 'halt' state, the card is shut down and must be fully
1094 * restarted to come back on.
1095 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001096static int iwl3945_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -07001097{
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08001098 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001099 .id = REPLY_CARD_STATE_CMD,
1100 .len = sizeof(u32),
1101 .data = &flags,
1102 .meta.flags = meta_flag,
1103 };
1104
1105 if (meta_flag & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001106 cmd.meta.u.callback = iwl3945_card_state_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001107
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001108 return iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001109}
1110
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001111static int iwl3945_add_sta_sync_callback(struct iwl_priv *priv,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08001112 struct iwl_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001113{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001114 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001115
1116 if (!skb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001117 IWL_ERR(priv, "Error: Response NULL in REPLY_ADD_STA.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001118 return 1;
1119 }
1120
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001121 res = (struct iwl_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001122 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001123 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
Zhu Yib481de92007-09-25 17:54:57 -07001124 res->hdr.flags);
1125 return 1;
1126 }
1127
1128 switch (res->u.add_sta.status) {
1129 case ADD_STA_SUCCESS_MSK:
1130 break;
1131 default:
1132 break;
1133 }
1134
1135 /* We didn't cache the SKB; let the caller free it */
1136 return 1;
1137}
1138
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001139int iwl3945_send_add_station(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001140 struct iwl3945_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001141{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001142 struct iwl_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001143 int rc = 0;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08001144 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001145 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001146 .len = sizeof(struct iwl3945_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001147 .meta.flags = flags,
1148 .data = sta,
1149 };
1150
1151 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001152 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001153 else
1154 cmd.meta.flags |= CMD_WANT_SKB;
1155
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001156 rc = iwl3945_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001157
1158 if (rc || (flags & CMD_ASYNC))
1159 return rc;
1160
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001161 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001162 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001163 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
Zhu Yib481de92007-09-25 17:54:57 -07001164 res->hdr.flags);
1165 rc = -EIO;
1166 }
1167
1168 if (rc == 0) {
1169 switch (res->u.add_sta.status) {
1170 case ADD_STA_SUCCESS_MSK:
1171 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1172 break;
1173 default:
1174 rc = -EIO;
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001175 IWL_WARN(priv, "REPLY_ADD_STA failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001176 break;
1177 }
1178 }
1179
1180 priv->alloc_rxb_skb--;
1181 dev_kfree_skb_any(cmd.meta.u.skb);
1182
1183 return rc;
1184}
1185
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001186static int iwl3945_update_sta_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001187 struct ieee80211_key_conf *keyconf,
1188 u8 sta_id)
1189{
1190 unsigned long flags;
1191 __le16 key_flags = 0;
1192
1193 switch (keyconf->alg) {
1194 case ALG_CCMP:
1195 key_flags |= STA_KEY_FLG_CCMP;
1196 key_flags |= cpu_to_le16(
1197 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1198 key_flags &= ~STA_KEY_FLG_INVALID;
1199 break;
1200 case ALG_TKIP:
1201 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -07001202 default:
1203 return -EINVAL;
1204 }
1205 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001206 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
1207 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
1208 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -07001209 keyconf->keylen);
1210
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001211 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -07001212 keyconf->keylen);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001213 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
1214 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1215 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001216
1217 spin_unlock_irqrestore(&priv->sta_lock, flags);
1218
1219 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001220 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001221 return 0;
1222}
1223
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001224static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001225{
1226 unsigned long flags;
1227
1228 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001229 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1230 memset(&priv->stations_39[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +08001231 sizeof(struct iwl4965_keyinfo));
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001232 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1233 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1234 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001235 spin_unlock_irqrestore(&priv->sta_lock, flags);
1236
1237 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001238 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001239 return 0;
1240}
1241
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001242static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001243{
1244 struct list_head *element;
1245
1246 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1247 priv->frames_count);
1248
1249 while (!list_empty(&priv->free_frames)) {
1250 element = priv->free_frames.next;
1251 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001252 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001253 priv->frames_count--;
1254 }
1255
1256 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001257 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -07001258 priv->frames_count);
1259 priv->frames_count = 0;
1260 }
1261}
1262
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001263static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001264{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001265 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001266 struct list_head *element;
1267 if (list_empty(&priv->free_frames)) {
1268 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1269 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001270 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -07001271 return NULL;
1272 }
1273
1274 priv->frames_count++;
1275 return frame;
1276 }
1277
1278 element = priv->free_frames.next;
1279 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001280 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001281}
1282
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001283static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001284{
1285 memset(frame, 0, sizeof(*frame));
1286 list_add(&frame->list, &priv->free_frames);
1287}
1288
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001289unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001290 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +02001291 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001292{
1293
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001294 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +02001295 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1296 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -07001297 return 0;
1298
1299 if (priv->ibss_beacon->len > left)
1300 return 0;
1301
1302 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1303
1304 return priv->ibss_beacon->len;
1305}
1306
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001307static u8 iwl3945_rate_get_lowest_plcp(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001308{
1309 u8 i;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001310 int rate_mask;
1311
1312 /* Set rate mask*/
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001313 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001314 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001315 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -08001316 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001317
1318 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001319 i = iwl3945_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001320 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001321 return iwl3945_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001322 }
1323
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001324 /* No valid rate was found. Assign the lowest one */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001325 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001326 return IWL_RATE_1M_PLCP;
1327 else
1328 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001329}
1330
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001331static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001332{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001333 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001334 unsigned int frame_size;
1335 int rc;
1336 u8 rate;
1337
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001338 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001339
1340 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001341 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -07001342 "command.\n");
1343 return -ENOMEM;
1344 }
1345
Kolekar, Abhijeetc24f0812008-11-07 09:58:44 -08001346 rate = iwl3945_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001347
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001348 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001349
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001350 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001351 &frame->u.cmd[0]);
1352
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001353 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001354
1355 return rc;
1356}
1357
1358/******************************************************************************
1359 *
1360 * EEPROM related functions
1361 *
1362 ******************************************************************************/
1363
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001364static void get_eeprom_mac(struct iwl_priv *priv, u8 *mac)
Zhu Yib481de92007-09-25 17:54:57 -07001365{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001366 memcpy(mac, priv->eeprom39.mac_address, 6);
Zhu Yib481de92007-09-25 17:54:57 -07001367}
1368
Reinette Chatre74a3a252008-01-23 10:15:19 -08001369/*
1370 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1371 * embedded controller) as EEPROM reader; each read is a series of pulses
1372 * to/from the EEPROM chip, not a single event, so even reads could conflict
1373 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1374 * simply claims ownership, which should be safe when this function is called
1375 * (i.e. before loading uCode!).
1376 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001377static inline int iwl3945_eeprom_acquire_semaphore(struct iwl_priv *priv)
Reinette Chatre74a3a252008-01-23 10:15:19 -08001378{
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001379 _iwl_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
Reinette Chatre74a3a252008-01-23 10:15:19 -08001380 return 0;
1381}
1382
Zhu Yib481de92007-09-25 17:54:57 -07001383/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001384 * iwl3945_eeprom_init - read EEPROM contents
Zhu Yib481de92007-09-25 17:54:57 -07001385 *
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001386 * Load the EEPROM contents from adapter into priv->eeprom39
Zhu Yib481de92007-09-25 17:54:57 -07001387 *
1388 * NOTE: This routine uses the non-debug IO access functions.
1389 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001390int iwl3945_eeprom_init(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001391{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001392 u16 *e = (u16 *)&priv->eeprom39;
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001393 u32 gp = iwl_read32(priv, CSR_EEPROM_GP);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001394 int sz = sizeof(priv->eeprom39);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001395 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001396 u16 addr;
1397
1398 /* The EEPROM structure has several padding buffers within it
1399 * and when adding new EEPROM maps is subject to programmer errors
1400 * which may be very difficult to identify without explicitly
1401 * checking the resulting size of the eeprom map. */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001402 BUILD_BUG_ON(sizeof(priv->eeprom39) != IWL_EEPROM_IMAGE_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07001403
1404 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001405 IWL_ERR(priv, "EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Zhu Yib481de92007-09-25 17:54:57 -07001406 return -ENOENT;
1407 }
1408
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001409 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001410 ret = iwl3945_eeprom_acquire_semaphore(priv);
1411 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001412 IWL_ERR(priv, "Failed to acquire EEPROM semaphore.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001413 return -ENOENT;
1414 }
1415
1416 /* eeprom is an array of 16bit values */
1417 for (addr = 0; addr < sz; addr += sizeof(u16)) {
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001418 u32 r;
1419
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001420 _iwl_write32(priv, CSR_EEPROM_REG,
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001421 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001422 _iwl_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
1423 ret = iwl_poll_direct_bit(priv, CSR_EEPROM_REG,
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001424 CSR_EEPROM_REG_READ_VALID_MSK,
1425 IWL_EEPROM_ACCESS_TIMEOUT);
1426 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001427 IWL_ERR(priv, "Time out reading EEPROM[%d]\n", addr);
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001428 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001429 }
Zhu, Yi3d5717a2008-12-11 10:33:36 -08001430
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001431 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
Tomas Winkler58ff6d42008-02-13 02:47:54 +02001432 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
Zhu Yib481de92007-09-25 17:54:57 -07001433 }
1434
1435 return 0;
1436}
1437
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001438static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001439{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08001440 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -07001441 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001442 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08001443 priv->shared_virt,
1444 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -07001445}
1446
1447/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001448 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001449 *
1450 * return : set the bit for each supported rate insert in ie
1451 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001452static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001453 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001454{
1455 u16 ret_rates = 0, bit;
1456 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001457 u8 *cnt = ie;
1458 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001459
1460 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1461 if (bit & supported_rate) {
1462 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001463 rates[*cnt] = iwl3945_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001464 ((bit & basic_rate) ? 0x80 : 0x00);
1465 (*cnt)++;
1466 (*left)--;
1467 if ((*left <= 0) ||
1468 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001469 break;
1470 }
1471 }
1472
1473 return ret_rates;
1474}
1475
1476/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001477 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001478 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001479static u16 iwl3945_fill_probe_req(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001480 struct ieee80211_mgmt *frame,
Johannes Berg430cfe92008-10-28 18:06:02 +01001481 int left)
Zhu Yib481de92007-09-25 17:54:57 -07001482{
1483 int len = 0;
1484 u8 *pos = NULL;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001485 u16 active_rates, ret_rates, cck_rates;
Zhu Yib481de92007-09-25 17:54:57 -07001486
1487 /* Make sure there is enough space for the probe request,
1488 * two mandatory IEs and the data */
1489 left -= 24;
1490 if (left < 0)
1491 return 0;
1492 len += 24;
1493
1494 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08001495 memcpy(frame->da, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001496 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08001497 memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001498 frame->seq_ctrl = 0;
1499
1500 /* fill in our indirect SSID IE */
1501 /* ...next IE... */
1502
1503 left -= 2;
1504 if (left < 0)
1505 return 0;
1506 len += 2;
1507 pos = &(frame->u.probe_req.variable[0]);
1508 *pos++ = WLAN_EID_SSID;
1509 *pos++ = 0;
1510
Zhu Yib481de92007-09-25 17:54:57 -07001511 /* fill in supported rate */
1512 /* ...next IE... */
1513 left -= 2;
1514 if (left < 0)
1515 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001516
Zhu Yib481de92007-09-25 17:54:57 -07001517 /* ... fill it in... */
1518 *pos++ = WLAN_EID_SUPP_RATES;
1519 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001520
1521 priv->active_rate = priv->rates_mask;
1522 active_rates = priv->active_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001523 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1524
Tomas Winklerc7c46672007-10-18 02:04:15 +02001525 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001526 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001527 priv->active_rate_basic, &left);
1528 active_rates &= ~ret_rates;
1529
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001530 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001531 priv->active_rate_basic, &left);
1532 active_rates &= ~ret_rates;
1533
Zhu Yib481de92007-09-25 17:54:57 -07001534 len += 2 + *pos;
1535 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001536 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001537 goto fill_end;
1538
1539 /* fill in supported extended rate */
1540 /* ...next IE... */
1541 left -= 2;
1542 if (left < 0)
1543 return 0;
1544 /* ... fill it in... */
1545 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1546 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001547 iwl3945_supported_rate_to_ie(pos, active_rates,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001548 priv->active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001549 if (*pos > 0)
1550 len += 2 + *pos;
1551
1552 fill_end:
1553 return (u16)len;
1554}
1555
1556/*
1557 * QoS support
1558*/
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001559static int iwl3945_send_qos_params_command(struct iwl_priv *priv,
Tomas Winkler4c897252008-12-19 10:37:05 +08001560 struct iwl_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001561{
1562
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001563 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Tomas Winkler4c897252008-12-19 10:37:05 +08001564 sizeof(struct iwl_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001565}
1566
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001567static void iwl3945_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001568{
1569 unsigned long flags;
1570
Zhu Yib481de92007-09-25 17:54:57 -07001571 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1572 return;
1573
Zhu Yib481de92007-09-25 17:54:57 -07001574 spin_lock_irqsave(&priv->lock, flags);
1575 priv->qos_data.def_qos_parm.qos_flags = 0;
1576
1577 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1578 !priv->qos_data.qos_cap.q_AP.txop_request)
1579 priv->qos_data.def_qos_parm.qos_flags |=
1580 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1581
1582 if (priv->qos_data.qos_active)
1583 priv->qos_data.def_qos_parm.qos_flags |=
1584 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1585
1586 spin_unlock_irqrestore(&priv->lock, flags);
1587
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001588 if (force || iwl3945_is_associated(priv)) {
Tomas Winklera96a27f2008-10-23 23:48:56 -07001589 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -07001590 priv->qos_data.qos_active);
1591
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001592 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001593 &(priv->qos_data.def_qos_parm));
1594 }
1595}
1596
Zhu Yib481de92007-09-25 17:54:57 -07001597/*
1598 * Power management (not Tx power!) functions
1599 */
1600#define MSEC_TO_USEC 1024
1601
Tomas Winkler600c0e12008-12-19 10:37:04 +08001602
1603#define NOSLP __constant_cpu_to_le16(0), 0, 0
1604#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
Zhu Yib481de92007-09-25 17:54:57 -07001605#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1606#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1607 __constant_cpu_to_le32(X1), \
1608 __constant_cpu_to_le32(X2), \
1609 __constant_cpu_to_le32(X3), \
1610 __constant_cpu_to_le32(X4)}
1611
Zhu Yib481de92007-09-25 17:54:57 -07001612/* default power management (not Tx power) table values */
Tomas Winklera96a27f2008-10-23 23:48:56 -07001613/* for TIM 0-10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001614static struct iwl_power_vec_entry range_0[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001615 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1616 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1617 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1618 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1619 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1620 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1621};
1622
Tomas Winklera96a27f2008-10-23 23:48:56 -07001623/* for TIM > 10 */
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001624static struct iwl_power_vec_entry range_1[IWL39_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001625 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1626 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1627 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1628 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1629 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1630 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1631 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1632 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1633 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1634 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1635};
1636
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001637int iwl3945_power_init_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001638{
1639 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001640 struct iwl3945_power_mgr *pow_data;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001641 int size = sizeof(struct iwl_power_vec_entry) * IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001642 u16 pci_pm;
1643
1644 IWL_DEBUG_POWER("Initialize power \n");
1645
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001646 pow_data = &(priv->power_data_39);
Zhu Yib481de92007-09-25 17:54:57 -07001647
1648 memset(pow_data, 0, sizeof(*pow_data));
1649
1650 pow_data->active_index = IWL_POWER_RANGE_0;
1651 pow_data->dtim_val = 0xffff;
1652
1653 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1654 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1655
1656 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1657 if (rc != 0)
1658 return 0;
1659 else {
Tomas Winkler600c0e12008-12-19 10:37:04 +08001660 struct iwl_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001661
1662 IWL_DEBUG_POWER("adjust power command flags\n");
1663
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001664 for (i = 0; i < IWL39_POWER_AC; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07001665 cmd = &pow_data->pwr_range_0[i].cmd;
1666
1667 if (pci_pm & 0x1)
1668 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1669 else
1670 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1671 }
1672 }
1673 return rc;
1674}
1675
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001676static int iwl3945_update_power_cmd(struct iwl_priv *priv,
Tomas Winkler600c0e12008-12-19 10:37:04 +08001677 struct iwl_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001678{
1679 int rc = 0, i;
1680 u8 skip;
1681 u32 max_sleep = 0;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001682 struct iwl_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001683 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001684 struct iwl3945_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001685
1686 if (mode > IWL_POWER_INDEX_5) {
1687 IWL_DEBUG_POWER("Error invalid power mode \n");
1688 return -1;
1689 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001690 pow_data = &(priv->power_data_39);
Zhu Yib481de92007-09-25 17:54:57 -07001691
1692 if (pow_data->active_index == IWL_POWER_RANGE_0)
1693 range = &pow_data->pwr_range_0[0];
1694 else
1695 range = &pow_data->pwr_range_1[1];
1696
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001697 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001698
1699#ifdef IWL_MAC80211_DISABLE
1700 if (priv->assoc_network != NULL) {
1701 unsigned long flags;
1702
1703 period = priv->assoc_network->tim.tim_period;
1704 }
1705#endif /*IWL_MAC80211_DISABLE */
1706 skip = range[mode].no_dtim;
1707
1708 if (period == 0) {
1709 period = 1;
1710 skip = 0;
1711 }
1712
1713 if (skip == 0) {
1714 max_sleep = period;
1715 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1716 } else {
1717 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1718 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1719 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1720 }
1721
1722 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1723 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1724 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1725 }
1726
1727 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1728 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1729 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1730 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1731 le32_to_cpu(cmd->sleep_interval[0]),
1732 le32_to_cpu(cmd->sleep_interval[1]),
1733 le32_to_cpu(cmd->sleep_interval[2]),
1734 le32_to_cpu(cmd->sleep_interval[3]),
1735 le32_to_cpu(cmd->sleep_interval[4]));
1736
1737 return rc;
1738}
1739
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001740static int iwl3945_send_power_mode(struct iwl_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001741{
John W. Linville9a62f732007-11-15 16:27:36 -05001742 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001743 int rc;
Tomas Winkler600c0e12008-12-19 10:37:04 +08001744 struct iwl_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001745
1746 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001747 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001748 * else user level */
1749 switch (mode) {
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001750 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07001751 final_mode = IWL_POWER_INDEX_3;
1752 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08001753 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07001754 final_mode = IWL_POWER_MODE_CAM;
1755 break;
1756 default:
1757 final_mode = mode;
1758 break;
1759 }
1760
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001761 iwl3945_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001762
Tomas Winkler600c0e12008-12-19 10:37:04 +08001763 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
1764 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD,
1765 sizeof(struct iwl3945_powertable_cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001766
1767 if (final_mode == IWL_POWER_MODE_CAM)
1768 clear_bit(STATUS_POWER_PMI, &priv->status);
1769 else
1770 set_bit(STATUS_POWER_PMI, &priv->status);
1771
1772 return rc;
1773}
1774
Zhu Yib481de92007-09-25 17:54:57 -07001775/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001776 * iwl3945_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001777 *
1778 * NOTE: priv->mutex is not required before calling this function
1779 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001780static int iwl3945_scan_cancel(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001781{
1782 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1783 clear_bit(STATUS_SCANNING, &priv->status);
1784 return 0;
1785 }
1786
1787 if (test_bit(STATUS_SCANNING, &priv->status)) {
1788 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1789 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1790 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1791 queue_work(priv->workqueue, &priv->abort_scan);
1792
1793 } else
1794 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
1795
1796 return test_bit(STATUS_SCANNING, &priv->status);
1797 }
1798
1799 return 0;
1800}
1801
1802/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001803 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001804 * @ms: amount of time to wait (in milliseconds) for scan to abort
1805 *
1806 * NOTE: priv->mutex must be held before calling this function
1807 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001808static int iwl3945_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07001809{
1810 unsigned long now = jiffies;
1811 int ret;
1812
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001813 ret = iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001814 if (ret && ms) {
1815 mutex_unlock(&priv->mutex);
1816 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
1817 test_bit(STATUS_SCANNING, &priv->status))
1818 msleep(1);
1819 mutex_lock(&priv->mutex);
1820
1821 return test_bit(STATUS_SCANNING, &priv->status);
1822 }
1823
1824 return ret;
1825}
1826
Zhu Yib481de92007-09-25 17:54:57 -07001827#define MAX_UCODE_BEACON_INTERVAL 1024
1828#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
1829
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001830static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07001831{
1832 u16 new_val = 0;
1833 u16 beacon_factor = 0;
1834
1835 beacon_factor =
1836 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
1837 / MAX_UCODE_BEACON_INTERVAL;
1838 new_val = beacon_val / beacon_factor;
1839
1840 return cpu_to_le16(new_val);
1841}
1842
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001843static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001844{
1845 u64 interval_tm_unit;
1846 u64 tsf, result;
1847 unsigned long flags;
1848 struct ieee80211_conf *conf = NULL;
1849 u16 beacon_int = 0;
1850
1851 conf = ieee80211_get_hw_conf(priv->hw);
1852
1853 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler28afaf92008-12-19 10:37:06 +08001854 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07001855 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1856
Tomas Winkler28afaf92008-12-19 10:37:06 +08001857 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07001858
1859 beacon_int = priv->beacon_int;
1860 spin_unlock_irqrestore(&priv->lock, flags);
1861
Johannes Berg05c914f2008-09-11 00:01:58 +02001862 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -07001863 if (beacon_int == 0) {
1864 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1865 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1866 } else {
1867 priv->rxon_timing.beacon_interval =
1868 cpu_to_le16(beacon_int);
1869 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001870 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07001871 le16_to_cpu(priv->rxon_timing.beacon_interval));
1872 }
1873
1874 priv->rxon_timing.atim_window = 0;
1875 } else {
1876 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001877 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07001878 /* TODO: we need to get atim_window from upper stack
1879 * for now we set to 0 */
1880 priv->rxon_timing.atim_window = 0;
1881 }
1882
1883 interval_tm_unit =
1884 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1885 result = do_div(tsf, interval_tm_unit);
1886 priv->rxon_timing.beacon_init_val =
1887 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1888
1889 IWL_DEBUG_ASSOC
1890 ("beacon interval %d beacon timer %d beacon tim %d\n",
1891 le16_to_cpu(priv->rxon_timing.beacon_interval),
1892 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1893 le16_to_cpu(priv->rxon_timing.atim_window));
1894}
1895
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001896static int iwl3945_scan_initiate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001897{
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08001898 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001899 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1900 return -EIO;
1901 }
1902
1903 if (test_bit(STATUS_SCANNING, &priv->status)) {
1904 IWL_DEBUG_SCAN("Scan already in progress.\n");
1905 return -EAGAIN;
1906 }
1907
1908 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1909 IWL_DEBUG_SCAN("Scan request while abort pending. "
1910 "Queuing.\n");
1911 return -EAGAIN;
1912 }
1913
1914 IWL_DEBUG_INFO("Starting scan...\n");
Ron Rindjunsky66b50042008-06-25 16:46:31 +08001915 if (priv->cfg->sku & IWL_SKU_G)
1916 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
1917 if (priv->cfg->sku & IWL_SKU_A)
1918 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07001919 set_bit(STATUS_SCANNING, &priv->status);
1920 priv->scan_start = jiffies;
1921 priv->scan_pass_start = priv->scan_start;
1922
1923 queue_work(priv->workqueue, &priv->request_scan);
1924
1925 return 0;
1926}
1927
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001928static int iwl3945_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
Zhu Yib481de92007-09-25 17:54:57 -07001929{
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001930 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001931
1932 if (hw_decrypt)
1933 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
1934 else
1935 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
1936
1937 return 0;
1938}
1939
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001940static void iwl3945_set_flags_for_phymode(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001941 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07001942{
Johannes Berg8318d782008-01-24 19:38:38 +01001943 if (band == IEEE80211_BAND_5GHZ) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001944 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07001945 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1946 | RXON_FLG_CCK_MSK);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001947 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001948 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001949 /* Copied from iwl3945_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07001950 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001951 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001952 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001953 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001954
Johannes Berg05c914f2008-09-11 00:01:58 +02001955 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001956 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001957
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001958 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1959 priv->staging39_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1960 priv->staging39_rxon.flags &= ~RXON_FLG_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001961 }
1962}
1963
1964/*
Ian Schram01ebd062007-10-25 17:15:22 +08001965 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001966 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001967static void iwl3945_connection_init_rx_config(struct iwl_priv *priv,
Zhu, Yi60294de2008-10-29 14:05:45 -07001968 int mode)
Zhu Yib481de92007-09-25 17:54:57 -07001969{
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001970 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001971
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001972 memset(&priv->staging39_rxon, 0, sizeof(priv->staging39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07001973
Zhu, Yi60294de2008-10-29 14:05:45 -07001974 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001975 case NL80211_IFTYPE_AP:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001976 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_AP;
Zhu Yib481de92007-09-25 17:54:57 -07001977 break;
1978
Johannes Berg05c914f2008-09-11 00:01:58 +02001979 case NL80211_IFTYPE_STATION:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001980 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_ESS;
1981 priv->staging39_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001982 break;
1983
Johannes Berg05c914f2008-09-11 00:01:58 +02001984 case NL80211_IFTYPE_ADHOC:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001985 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1986 priv->staging39_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1987 priv->staging39_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
Zhu Yib481de92007-09-25 17:54:57 -07001988 RXON_FILTER_ACCEPT_GRP_MSK;
1989 break;
1990
Johannes Berg05c914f2008-09-11 00:01:58 +02001991 case NL80211_IFTYPE_MONITOR:
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001992 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
1993 priv->staging39_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
Zhu Yib481de92007-09-25 17:54:57 -07001994 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
1995 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001996 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001997 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001998 break;
Zhu Yib481de92007-09-25 17:54:57 -07001999 }
2000
2001#if 0
2002 /* TODO: Figure out when short_preamble would be set and cache from
2003 * that */
2004 if (!hw_to_local(priv->hw)->short_preamble)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002005 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002006 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002007 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002008#endif
2009
Johannes Berg8318d782008-01-24 19:38:38 +01002010 ch_info = iwl3945_get_channel_info(priv, priv->band,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002011 le16_to_cpu(priv->active39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002012
2013 if (!ch_info)
2014 ch_info = &priv->channel_info[0];
2015
2016 /*
2017 * in some case A channels are all non IBSS
2018 * in this case force B/G channel
2019 */
Zhu, Yi60294de2008-10-29 14:05:45 -07002020 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
Zhu Yib481de92007-09-25 17:54:57 -07002021 ch_info = &priv->channel_info[0];
2022
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002023 priv->staging39_rxon.channel = cpu_to_le16(ch_info->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002024 if (is_channel_a_band(ch_info))
Johannes Berg8318d782008-01-24 19:38:38 +01002025 priv->band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002026 else
Johannes Berg8318d782008-01-24 19:38:38 +01002027 priv->band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07002028
Johannes Berg8318d782008-01-24 19:38:38 +01002029 iwl3945_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002030
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002031 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002032 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002033 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002034 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2035}
2036
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002037static int iwl3945_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002038{
Johannes Berg05c914f2008-09-11 00:01:58 +02002039 if (mode == NL80211_IFTYPE_ADHOC) {
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002040 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002041
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002042 ch_info = iwl3945_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002043 priv->band,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002044 le16_to_cpu(priv->staging39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002045
2046 if (!ch_info || !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002047 IWL_ERR(priv, "channel %d not IBSS channel\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002048 le16_to_cpu(priv->staging39_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -07002049 return -EINVAL;
2050 }
2051 }
2052
Zhu, Yi60294de2008-10-29 14:05:45 -07002053 iwl3945_connection_init_rx_config(priv, mode);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002054 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002055
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002056 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002057
Tomas Winklera96a27f2008-10-23 23:48:56 -07002058 /* don't commit rxon if rf-kill is on*/
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002059 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002060 return -EAGAIN;
2061
2062 cancel_delayed_work(&priv->scan_check);
2063 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002064 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002065 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2066 return -EAGAIN;
2067 }
2068
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002069 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002070
2071 return 0;
2072}
2073
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002074static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +02002075 struct ieee80211_tx_info *info,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002076 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002077 struct sk_buff *skb_frag,
2078 int last_frag)
2079{
Ivo van Doorn1c014422008-04-17 19:41:02 +02002080 struct iwl3945_hw_key *keyinfo =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002081 &priv->stations_39[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002082
2083 switch (keyinfo->alg) {
2084 case ALG_CCMP:
2085 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2086 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002087 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002088 break;
2089
2090 case ALG_TKIP:
2091#if 0
2092 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2093
2094 if (last_frag)
2095 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2096 8);
2097 else
2098 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2099#endif
2100 break;
2101
2102 case ALG_WEP:
2103 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +02002104 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -07002105
2106 if (keyinfo->keylen == 13)
2107 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2108
2109 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2110
2111 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +02002112 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -07002113 break;
2114
Zhu Yib481de92007-09-25 17:54:57 -07002115 default:
Tomas Winkler978785a2008-12-19 10:37:31 +08002116 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -07002117 break;
2118 }
2119}
2120
2121/*
2122 * handle build REPLY_TX command notification.
2123 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002124static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002125 struct iwl_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +02002126 struct ieee80211_tx_info *info,
Zhu Yib481de92007-09-25 17:54:57 -07002127 struct ieee80211_hdr *hdr,
2128 int is_unicast, u8 std_id)
2129{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002130 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002131 __le32 tx_flags = cmd->cmd.tx.tx_flags;
Johannes Berge6a98542008-10-21 12:40:02 +02002132 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -07002133
2134 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +02002135 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -07002136 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002137 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002138 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002139 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -07002140 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2141 tx_flags |= TX_CMD_FLG_TSF_MSK;
2142 } else {
2143 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2144 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2145 }
2146
2147 cmd->cmd.tx.sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002148 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002149 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2150
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002151 if (ieee80211_is_data_qos(fc)) {
2152 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +08002153 cmd->cmd.tx.tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -07002154 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002155 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002156 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002157 }
Zhu Yib481de92007-09-25 17:54:57 -07002158
Johannes Berge6a98542008-10-21 12:40:02 +02002159 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -07002160 tx_flags |= TX_CMD_FLG_RTS_MSK;
2161 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +02002162 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -07002163 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2164 tx_flags |= TX_CMD_FLG_CTS_MSK;
2165 }
2166
2167 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2168 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2169
2170 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002171 if (ieee80211_is_mgmt(fc)) {
2172 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Ian Schrambc434dd2007-10-25 17:15:29 +08002173 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002174 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002175 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002176 } else {
Zhu Yib481de92007-09-25 17:54:57 -07002177 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002178#ifdef CONFIG_IWL3945_LEDS
2179 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2180#endif
2181 }
Zhu Yib481de92007-09-25 17:54:57 -07002182
2183 cmd->cmd.tx.driver_txop = 0;
2184 cmd->cmd.tx.tx_flags = tx_flags;
2185 cmd->cmd.tx.next_frame_len = 0;
2186}
2187
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002188/**
2189 * iwl3945_get_sta_id - Find station's index within station table
2190 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002191static int iwl3945_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002192{
2193 int sta_id;
2194 u16 fc = le16_to_cpu(hdr->frame_control);
2195
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002196 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002197 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2198 is_multicast_ether_addr(hdr->addr1))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002199 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002200
2201 switch (priv->iw_mode) {
2202
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002203 /* If we are a client station in a BSS network, use the special
2204 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +02002205 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002206 return IWL_AP_ID;
2207
2208 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +02002209 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002210 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002211 if (sta_id != IWL_INVALID_STATION)
2212 return sta_id;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002213 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002214
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002215 /* If this frame is going out to an IBSS network, find the station,
2216 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +02002217 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002218 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002219 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002220 if (sta_id != IWL_INVALID_STATION)
2221 return sta_id;
2222
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002223 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002224
2225 if (sta_id != IWL_INVALID_STATION)
2226 return sta_id;
2227
Johannes Berge1749612008-10-27 15:59:26 -07002228 IWL_DEBUG_DROP("Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002229 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -07002230 hdr->addr1);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002231 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002232 return priv->hw_params.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -07002233 }
Stefanik Gábor914233d2008-06-30 17:23:30 +08002234 /* If we are in monitor mode, use BCAST. This is required for
2235 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +02002236 case NL80211_IFTYPE_MONITOR:
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002237 return priv->hw_params.bcast_sta_id;
Stefanik Gábor914233d2008-06-30 17:23:30 +08002238
Zhu Yib481de92007-09-25 17:54:57 -07002239 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002240 IWL_WARN(priv, "Unknown mode of operation: %d\n",
2241 priv->iw_mode);
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002242 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07002243 }
2244}
2245
2246/*
2247 * start REPLY_TX command process
2248 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002249static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002250{
2251 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +02002252 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002253 struct iwl3945_tfd *tfd;
Johannes Berge2530082008-05-17 00:57:14 +02002254 int txq_id = skb_get_queue_mapping(skb);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002255 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002256 struct iwl_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002257 dma_addr_t phys_addr;
2258 dma_addr_t txcmd_phys;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002259 struct iwl_cmd *out_cmd = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002260 u16 len, idx, len_org, hdr_len;
2261 u8 id;
2262 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -07002263 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002264 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002265 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002266 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002267 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +08002268 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002269 unsigned long flags;
2270 int rc;
2271
2272 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08002273 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002274 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2275 goto drop_unlock;
2276 }
2277
Johannes Berge039fa42008-05-15 12:55:29 +02002278 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002279 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002280 goto drop_unlock;
2281 }
2282
2283 unicast = !is_multicast_ether_addr(hdr->addr1);
2284 id = 0;
2285
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002286 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07002287
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002288#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002289 if (ieee80211_is_auth(fc))
2290 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002291 else if (ieee80211_is_assoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002292 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002293 else if (ieee80211_is_reassoc_req(fc))
Zhu Yib481de92007-09-25 17:54:57 -07002294 IWL_DEBUG_TX("Sending REASSOC frame\n");
2295#endif
2296
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002297 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002298 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002299 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Stefanik Gábor914233d2008-06-30 17:23:30 +08002300 (!iwl3945_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +02002301 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002302 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002303 goto drop_unlock;
2304 }
2305
2306 spin_unlock_irqrestore(&priv->lock, flags);
2307
Harvey Harrison7294ec92008-07-15 18:43:59 -07002308 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002309
2310 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002311 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002312 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002313 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2314 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002315 goto drop;
2316 }
2317
2318 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2319
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002320 if (ieee80211_is_data_qos(fc)) {
2321 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07002322 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002323 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -07002324 IEEE80211_SCTL_SEQ;
2325 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2326 (hdr->seq_ctrl &
2327 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2328 seq_number += 0x10;
2329 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002330
2331 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002332 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -07002333 q = &txq->q;
2334
2335 spin_lock_irqsave(&priv->lock, flags);
2336
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002337 /* Set up first empty TFD within this queue's circular TFD buffer */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002338 tfd = &txq->tfds39[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002339 memset(tfd, 0, sizeof(*tfd));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002340 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002341
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002342 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002343 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002344 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002345
2346 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002347 out_cmd = txq->cmd[idx];
Zhu Yib481de92007-09-25 17:54:57 -07002348 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2349 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002350
2351 /*
2352 * Set up the Tx-command (not MAC!) header.
2353 * Store the chosen Tx queue and TFD index within the sequence field;
2354 * after Tx, uCode's Tx response will return this value so driver can
2355 * locate the frame within the tx queue and do post-tx processing.
2356 */
Zhu Yib481de92007-09-25 17:54:57 -07002357 out_cmd->hdr.cmd = REPLY_TX;
2358 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002359 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002360
2361 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002362 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2363
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002364 /*
2365 * Use the first empty entry in this queue's command buffer array
2366 * to contain the Tx command and MAC header concatenated together
2367 * (payload data will be in another buffer).
2368 * Size of this varies, due to varying MAC header length.
2369 * If end is not dword aligned, we'll have 2 extra bytes at the end
2370 * of the MAC header (device reads on dword boundaries).
2371 * We'll tell device about this padding later.
2372 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08002373 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +08002374 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002375
2376 len_org = len;
2377 len = (len + 3) & ~3;
2378
2379 if (len_org != len)
2380 len_org = 1;
2381 else
2382 len_org = 0;
2383
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002384 /* Physical address of this Tx command's header (not MAC header!),
2385 * within command buffer array. */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08002386 txcmd_phys = pci_map_single(priv->pci_dev,
2387 out_cmd, sizeof(struct iwl_cmd),
2388 PCI_DMA_TODEVICE);
2389 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
2390 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
2391 /* Add buffer containing Tx command and MAC(!) header to TFD's
2392 * first entry */
2393 txcmd_phys += offsetof(struct iwl_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002394
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002395 /* Add buffer containing Tx command and MAC(!) header to TFD's
2396 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002397 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002398
Johannes Bergd0f09802008-07-29 11:32:07 +02002399 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02002400 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002401
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002402 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2403 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002404 len = skb->len - hdr_len;
2405 if (len) {
2406 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2407 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002408 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002409 }
2410
Zhu Yib481de92007-09-25 17:54:57 -07002411 if (!len)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002412 /* If there is no payload, then we use only one Tx buffer */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002413 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(1));
Zhu Yib481de92007-09-25 17:54:57 -07002414 else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002415 /* Else use 2 buffers.
2416 * Tell 3945 about any padding after MAC header */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08002417 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(2) |
2418 TFD_CTL_PAD_SET(U32_PAD(len)));
Zhu Yib481de92007-09-25 17:54:57 -07002419
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002420 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002421 len = (u16)skb->len;
2422 out_cmd->cmd.tx.len = cpu_to_le16(len);
2423
2424 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02002425 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002426
2427 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02002428 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002429
2430 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2431 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2432
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07002433 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07002434 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002435 if (qc)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002436 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07002437 } else {
2438 wait_write_ptr = 1;
2439 txq->need_update = 0;
2440 }
2441
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002442 iwl_print_hex_dump(priv, IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002443 sizeof(out_cmd->cmd.tx));
2444
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002445 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07002446 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07002447
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002448 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002449 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002450 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002451 spin_unlock_irqrestore(&priv->lock, flags);
2452
2453 if (rc)
2454 return rc;
2455
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002456 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002457 && priv->mac80211_registered) {
2458 if (wait_write_ptr) {
2459 spin_lock_irqsave(&priv->lock, flags);
2460 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002461 iwl3945_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002462 spin_unlock_irqrestore(&priv->lock, flags);
2463 }
2464
Johannes Berge2530082008-05-17 00:57:14 +02002465 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07002466 }
2467
2468 return 0;
2469
2470drop_unlock:
2471 spin_unlock_irqrestore(&priv->lock, flags);
2472drop:
2473 return -1;
2474}
2475
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002476static void iwl3945_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002477{
Johannes Berg8318d782008-01-24 19:38:38 +01002478 const struct ieee80211_supported_band *sband = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002479 struct ieee80211_rate *rate;
2480 int i;
2481
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08002482 sband = iwl_get_hw_mode(priv, priv->band);
Johannes Berg8318d782008-01-24 19:38:38 +01002483 if (!sband) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002484 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002485 return;
2486 }
Zhu Yib481de92007-09-25 17:54:57 -07002487
2488 priv->active_rate = 0;
2489 priv->active_rate_basic = 0;
2490
Johannes Berg8318d782008-01-24 19:38:38 +01002491 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2492 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
Zhu Yib481de92007-09-25 17:54:57 -07002493
Johannes Berg8318d782008-01-24 19:38:38 +01002494 for (i = 0; i < sband->n_bitrates; i++) {
2495 rate = &sband->bitrates[i];
2496 if ((rate->hw_value < IWL_RATE_COUNT) &&
2497 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2498 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2499 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2500 priv->active_rate |= (1 << rate->hw_value);
2501 }
Zhu Yib481de92007-09-25 17:54:57 -07002502 }
2503
2504 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2505 priv->active_rate, priv->active_rate_basic);
2506
2507 /*
2508 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2509 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2510 * OFDM
2511 */
2512 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002513 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002514 ((priv->active_rate_basic &
2515 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2516 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002517 priv->staging39_rxon.cck_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002518 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2519
2520 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002521 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002522 ((priv->active_rate_basic &
2523 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2524 IWL_FIRST_OFDM_RATE) & 0xFF;
2525 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002526 priv->staging39_rxon.ofdm_basic_rates =
Zhu Yib481de92007-09-25 17:54:57 -07002527 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2528}
2529
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002530static void iwl3945_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002531{
2532 unsigned long flags;
2533
2534 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2535 return;
2536
2537 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2538 disable_radio ? "OFF" : "ON");
2539
2540 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002541 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002542 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02002543 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002544 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002545 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002546 CSR_UCODE_SW_BIT_RFKILL);
2547 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002548 iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002549 set_bit(STATUS_RF_KILL_SW, &priv->status);
2550 }
2551 return;
2552 }
2553
2554 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002555 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002556
2557 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2558 spin_unlock_irqrestore(&priv->lock, flags);
2559
2560 /* wake up ucode */
2561 msleep(10);
2562
2563 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002564 iwl_read32(priv, CSR_UCODE_DRV_GP1);
2565 if (!iwl_grab_nic_access(priv))
2566 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002567 spin_unlock_irqrestore(&priv->lock, flags);
2568
2569 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2570 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2571 "disabled by HW switch\n");
2572 return;
2573 }
2574
Zhu Yi808e72a2008-06-12 09:47:17 +08002575 if (priv->is_open)
2576 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002577 return;
2578}
2579
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002580void iwl3945_set_decrypted_flag(struct iwl_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002581 u32 decrypt_res, struct ieee80211_rx_status *stats)
2582{
2583 u16 fc =
2584 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2585
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002586 if (priv->active39_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07002587 return;
2588
2589 if (!(fc & IEEE80211_FCTL_PROTECTED))
2590 return;
2591
2592 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2593 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2594 case RX_RES_STATUS_SEC_TYPE_TKIP:
2595 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2596 RX_RES_STATUS_BAD_ICV_MIC)
2597 stats->flag |= RX_FLAG_MMIC_ERROR;
2598 case RX_RES_STATUS_SEC_TYPE_WEP:
2599 case RX_RES_STATUS_SEC_TYPE_CCMP:
2600 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2601 RX_RES_STATUS_DECRYPT_OK) {
2602 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2603 stats->flag |= RX_FLAG_DECRYPTED;
2604 }
2605 break;
2606
2607 default:
2608 break;
2609 }
2610}
2611
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002612#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002613
2614#include "iwl-spectrum.h"
2615
2616#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2617#define BEACON_TIME_MASK_HIGH 0xFF000000
2618#define TIME_UNIT 1024
2619
2620/*
2621 * extended beacon time format
2622 * time in usec will be changed into a 32-bit value in 8:24 format
2623 * the high 1 byte is the beacon counts
2624 * the lower 3 bytes is the time in usec within one beacon interval
2625 */
2626
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002627static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002628{
2629 u32 quot;
2630 u32 rem;
2631 u32 interval = beacon_interval * 1024;
2632
2633 if (!interval || !usec)
2634 return 0;
2635
2636 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2637 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2638
2639 return (quot << 24) + rem;
2640}
2641
2642/* base is usually what we get from ucode with each received frame,
2643 * the same as HW timer counter counting down
2644 */
2645
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002646static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002647{
2648 u32 base_low = base & BEACON_TIME_MASK_LOW;
2649 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2650 u32 interval = beacon_interval * TIME_UNIT;
2651 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2652 (addon & BEACON_TIME_MASK_HIGH);
2653
2654 if (base_low > addon_low)
2655 res += base_low - addon_low;
2656 else if (base_low < addon_low) {
2657 res += interval + base_low - addon_low;
2658 res += (1 << 24);
2659 } else
2660 res += (1 << 24);
2661
2662 return cpu_to_le32(res);
2663}
2664
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002665static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002666 struct ieee80211_measurement_params *params,
2667 u8 type)
2668{
Tomas Winkler600c0e12008-12-19 10:37:04 +08002669 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002670 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08002671 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002672 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2673 .data = (void *)&spectrum,
2674 .meta.flags = CMD_WANT_SKB,
2675 };
2676 u32 add_time = le64_to_cpu(params->start_time);
2677 int rc;
2678 int spectrum_resp_status;
2679 int duration = le16_to_cpu(params->duration);
2680
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002681 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002682 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002683 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002684 le64_to_cpu(params->start_time) - priv->last_tsf,
2685 le16_to_cpu(priv->rxon_timing.beacon_interval));
2686
2687 memset(&spectrum, 0, sizeof(spectrum));
2688
2689 spectrum.channel_count = cpu_to_le16(1);
2690 spectrum.flags =
2691 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2692 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2693 cmd.len = sizeof(spectrum);
2694 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2695
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002696 if (iwl3945_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002697 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002698 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002699 add_time,
2700 le16_to_cpu(priv->rxon_timing.beacon_interval));
2701 else
2702 spectrum.start_time = 0;
2703
2704 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2705 spectrum.channels[0].channel = params->channel;
2706 spectrum.channels[0].type = type;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002707 if (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07002708 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2709 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2710
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002711 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002712 if (rc)
2713 return rc;
2714
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002715 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002716 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002717 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -07002718 rc = -EIO;
2719 }
2720
2721 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2722 switch (spectrum_resp_status) {
2723 case 0: /* Command will be handled */
2724 if (res->u.spectrum.id != 0xff) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002725 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2726 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07002727 priv->measurement_status &= ~MEASUREMENT_READY;
2728 }
2729 priv->measurement_status |= MEASUREMENT_ACTIVE;
2730 rc = 0;
2731 break;
2732
2733 case 1: /* Command will not be handled */
2734 rc = -EAGAIN;
2735 break;
2736 }
2737
2738 dev_kfree_skb_any(cmd.meta.u.skb);
2739
2740 return rc;
2741}
2742#endif
2743
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002744static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002745 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002746{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002747 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2748 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002749 struct delayed_work *pwork;
2750
2751 palive = &pkt->u.alive_frame;
2752
2753 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2754 "0x%01X 0x%01X\n",
2755 palive->is_valid, palive->ver_type,
2756 palive->ver_subtype);
2757
2758 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2759 IWL_DEBUG_INFO("Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002760 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
2761 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002762 pwork = &priv->init_alive_start;
2763 } else {
2764 IWL_DEBUG_INFO("Runtime Alive received.\n");
2765 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002766 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002767 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002768 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002769 }
2770
2771 /* We delay the ALIVE response by 5ms to
2772 * give the HW RF Kill time to activate... */
2773 if (palive->is_valid == UCODE_VALID_OK)
2774 queue_delayed_work(priv->workqueue, pwork,
2775 msecs_to_jiffies(5));
2776 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002777 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002778}
2779
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002780static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002781 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002782{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002783 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002784
2785 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2786 return;
2787}
2788
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002789static void iwl3945_rx_reply_error(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002790 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002791{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002792 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002793
Winkler, Tomas15b16872008-12-19 10:37:33 +08002794 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
Zhu Yib481de92007-09-25 17:54:57 -07002795 "seq 0x%04X ser 0x%08X\n",
2796 le32_to_cpu(pkt->u.err_resp.error_type),
2797 get_cmd_string(pkt->u.err_resp.cmd_id),
2798 pkt->u.err_resp.cmd_id,
2799 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2800 le32_to_cpu(pkt->u.err_resp.error_info));
2801}
2802
2803#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2804
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002805static void iwl3945_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002806{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002807 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002808 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active39_rxon;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002809 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002810 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
2811 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
2812 rxon->channel = csa->channel;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08002813 priv->staging39_rxon.channel = csa->channel;
Zhu Yib481de92007-09-25 17:54:57 -07002814}
2815
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002816static void iwl3945_rx_spectrum_measure_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002817 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002818{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002819#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002820 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002821 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002822
2823 if (!report->state) {
2824 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
2825 "Spectrum Measure Notification: Start\n");
2826 return;
2827 }
2828
2829 memcpy(&priv->measure_report, report, sizeof(*report));
2830 priv->measurement_status |= MEASUREMENT_READY;
2831#endif
2832}
2833
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002834static void iwl3945_rx_pm_sleep_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002835 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002836{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002837#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002838 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler600c0e12008-12-19 10:37:04 +08002839 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002840 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
2841 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2842#endif
2843}
2844
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002845static void iwl3945_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002846 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002847{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002848 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002849 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
2850 "notification for %s:\n",
2851 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002852 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw,
2853 le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07002854}
2855
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002856static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07002857{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002858 struct iwl_priv *priv =
2859 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07002860 struct sk_buff *beacon;
2861
2862 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02002863 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07002864
2865 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002866 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07002867 return;
2868 }
2869
2870 mutex_lock(&priv->mutex);
2871 /* new beacon skb is allocated every time; dispose previous.*/
2872 if (priv->ibss_beacon)
2873 dev_kfree_skb(priv->ibss_beacon);
2874
2875 priv->ibss_beacon = beacon;
2876 mutex_unlock(&priv->mutex);
2877
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002878 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002879}
2880
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002881static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002882 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002883{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002884#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002885 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002886 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07002887 u8 rate = beacon->beacon_notify_hdr.rate;
2888
2889 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
2890 "tsf %d %d rate %d\n",
2891 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
2892 beacon->beacon_notify_hdr.failure_frame,
2893 le32_to_cpu(beacon->ibss_mgr_status),
2894 le32_to_cpu(beacon->high_tsf),
2895 le32_to_cpu(beacon->low_tsf), rate);
2896#endif
2897
Johannes Berg05c914f2008-09-11 00:01:58 +02002898 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07002899 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
2900 queue_work(priv->workqueue, &priv->beacon_update);
2901}
2902
2903/* Service response to REPLY_SCAN_CMD (0x80) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002904static void iwl3945_rx_reply_scan(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{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002907#ifdef CONFIG_IWL3945_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002908 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002909 struct iwl_scanreq_notification *notif =
2910 (struct iwl_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002911
2912 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
2913#endif
2914}
2915
2916/* Service SCAN_START_NOTIFICATION (0x82) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002917static void iwl3945_rx_scan_start_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002918 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002919{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002920 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002921 struct iwl_scanstart_notification *notif =
2922 (struct iwl_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002923 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
2924 IWL_DEBUG_SCAN("Scan start: "
2925 "%d [802.11%s] "
2926 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
2927 notif->channel,
2928 notif->band ? "bg" : "a",
2929 notif->tsf_high,
2930 notif->tsf_low, notif->status, notif->beacon_timer);
2931}
2932
2933/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002934static void iwl3945_rx_scan_results_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002935 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002936{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002937 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002938 struct iwl_scanresults_notification *notif =
2939 (struct iwl_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002940
2941 IWL_DEBUG_SCAN("Scan ch.res: "
2942 "%d [802.11%s] "
2943 "(TSF: 0x%08X:%08X) - %d "
2944 "elapsed=%lu usec (%dms since last)\n",
2945 notif->channel,
2946 notif->band ? "bg" : "a",
2947 le32_to_cpu(notif->tsf_high),
2948 le32_to_cpu(notif->tsf_low),
2949 le32_to_cpu(notif->statistics[0]),
2950 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
2951 jiffies_to_msecs(elapsed_jiffies
2952 (priv->last_scan_jiffies, jiffies)));
2953
2954 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002955 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002956}
2957
2958/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002959static void iwl3945_rx_scan_complete_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08002960 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002961{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08002962 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winkler4c897252008-12-19 10:37:05 +08002963 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002964
2965 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
2966 scan_notif->scanned_channels,
2967 scan_notif->tsf_low,
2968 scan_notif->tsf_high, scan_notif->status);
2969
2970 /* The HW is no longer scanning */
2971 clear_bit(STATUS_SCAN_HW, &priv->status);
2972
2973 /* The scan completion notification came in, so kill that timer... */
2974 cancel_delayed_work(&priv->scan_check);
2975
2976 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002977 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
2978 "2.4" : "5.2",
Zhu Yib481de92007-09-25 17:54:57 -07002979 jiffies_to_msecs(elapsed_jiffies
2980 (priv->scan_pass_start, jiffies)));
2981
Ron Rindjunsky66b50042008-06-25 16:46:31 +08002982 /* Remove this scanned band from the list of pending
2983 * bands to scan, band G precedes A in order of scanning
2984 * as seen in iwl3945_bg_request_scan */
2985 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
2986 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
2987 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
2988 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
Zhu Yib481de92007-09-25 17:54:57 -07002989
2990 /* If a request to abort was given, or the scan did not succeed
2991 * then we reset the scan state machine and terminate,
2992 * re-queuing another scan if one has been requested */
2993 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2994 IWL_DEBUG_INFO("Aborted scan completed.\n");
2995 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
2996 } else {
2997 /* If there are more bands on this scan pass reschedule */
2998 if (priv->scan_bands > 0)
2999 goto reschedule;
3000 }
3001
3002 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003003 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003004 IWL_DEBUG_INFO("Setting scan to off\n");
3005
3006 clear_bit(STATUS_SCANNING, &priv->status);
3007
3008 IWL_DEBUG_INFO("Scan took %dms\n",
3009 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3010
3011 queue_work(priv->workqueue, &priv->scan_completed);
3012
3013 return;
3014
3015reschedule:
3016 priv->scan_pass_start = jiffies;
3017 queue_work(priv->workqueue, &priv->request_scan);
3018}
3019
3020/* Handle notification from uCode that card's power state is changing
3021 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003022static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003023 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003024{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003025 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003026 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3027 unsigned long status = priv->status;
3028
3029 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3030 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3031 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3032
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003033 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003034 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3035
3036 if (flags & HW_CARD_DISABLED)
3037 set_bit(STATUS_RF_KILL_HW, &priv->status);
3038 else
3039 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3040
3041
3042 if (flags & SW_CARD_DISABLED)
3043 set_bit(STATUS_RF_KILL_SW, &priv->status);
3044 else
3045 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3046
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003047 iwl3945_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003048
3049 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3050 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3051 (test_bit(STATUS_RF_KILL_SW, &status) !=
3052 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3053 queue_work(priv->workqueue, &priv->rf_kill);
3054 else
3055 wake_up_interruptible(&priv->wait_command_queue);
3056}
3057
3058/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003059 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003060 *
3061 * Setup the RX handlers for each of the reply types sent from the uCode
3062 * to the host.
3063 *
3064 * This function chains into the hardware specific files for them to setup
3065 * any hardware specific handlers as well.
3066 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003067static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003068{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003069 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3070 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3071 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3072 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003073 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003074 iwl3945_rx_spectrum_measure_notif;
3075 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003076 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003077 iwl3945_rx_pm_debug_statistics_notif;
3078 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003079
Ben Cahill9fbab512007-11-29 11:09:47 +08003080 /*
3081 * The same handler is used for both the REPLY to a discrete
3082 * statistics request from the host as well as for the periodic
3083 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003084 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003085 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3086 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003087
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003088 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3089 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003090 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003091 iwl3945_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003092 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003093 iwl3945_rx_scan_complete_notif;
3094 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003095
Ben Cahill9fbab512007-11-29 11:09:47 +08003096 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003097 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003098}
3099
3100/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08003101 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3102 * When FW advances 'R' index, all entries between old and new 'R' index
3103 * need to be reclaimed.
3104 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003105static void iwl3945_cmd_queue_reclaim(struct iwl_priv *priv,
Tomas Winkler91c066f2008-03-06 17:36:55 -08003106 int txq_id, int index)
3107{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003108 struct iwl_tx_queue *txq = &priv->txq[txq_id];
Samuel Ortizd20b3c62008-12-19 10:37:15 +08003109 struct iwl_queue *q = &txq->q;
Tomas Winkler91c066f2008-03-06 17:36:55 -08003110 int nfreed = 0;
3111
3112 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003113 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
Tomas Winkler91c066f2008-03-06 17:36:55 -08003114 "is out of range [0-%d] %d %d.\n", txq_id,
3115 index, q->n_bd, q->write_ptr, q->read_ptr);
3116 return;
3117 }
3118
3119 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3120 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3121 if (nfreed > 1) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003122 IWL_ERR(priv, "HCMD skipped: index (%d) %d %d\n", index,
Tomas Winkler91c066f2008-03-06 17:36:55 -08003123 q->write_ptr, q->read_ptr);
3124 queue_work(priv->workqueue, &priv->restart);
3125 break;
3126 }
3127 nfreed++;
3128 }
3129}
3130
3131
3132/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003133 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003134 * @rxb: Rx buffer to reclaim
3135 *
3136 * If an Rx buffer has an async callback associated with it the callback
3137 * will be executed. The attached skb (if present) will only be freed
3138 * if the callback returns 1
3139 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003140static void iwl3945_tx_cmd_complete(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003141 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003142{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003143 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003144 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3145 int txq_id = SEQ_TO_QUEUE(sequence);
3146 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler600c0e12008-12-19 10:37:04 +08003147 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Zhu Yib481de92007-09-25 17:54:57 -07003148 int cmd_index;
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08003149 struct iwl_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003150
Zhu Yib481de92007-09-25 17:54:57 -07003151 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3152
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003153 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3154 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
Zhu Yib481de92007-09-25 17:54:57 -07003155
3156 /* Input error checking is done when commands are added to queue. */
3157 if (cmd->meta.flags & CMD_WANT_SKB) {
3158 cmd->meta.source->u.skb = rxb->skb;
3159 rxb->skb = NULL;
3160 } else if (cmd->meta.u.callback &&
3161 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3162 rxb->skb = NULL;
3163
Tomas Winkler91c066f2008-03-06 17:36:55 -08003164 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003165
3166 if (!(cmd->meta.flags & CMD_ASYNC)) {
3167 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3168 wake_up_interruptible(&priv->wait_command_queue);
3169 }
3170}
3171
3172/************************** RX-FUNCTIONS ****************************/
3173/*
3174 * Rx theory of operation
3175 *
3176 * The host allocates 32 DMA target addresses and passes the host address
3177 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3178 * 0 to 31
3179 *
3180 * Rx Queue Indexes
3181 * The host/firmware share two index registers for managing the Rx buffers.
3182 *
3183 * The READ index maps to the first position that the firmware may be writing
3184 * to -- the driver can read up to (but not including) this position and get
3185 * good data.
3186 * The READ index is managed by the firmware once the card is enabled.
3187 *
3188 * The WRITE index maps to the last position the driver has read from -- the
3189 * position preceding WRITE is the last slot the firmware can place a packet.
3190 *
3191 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3192 * WRITE = READ.
3193 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003194 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003195 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3196 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003197 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003198 * and fire the RX interrupt. The driver can then query the READ index and
3199 * process as many packets as possible, moving the WRITE index forward as it
3200 * resets the Rx queue buffers with new memory.
3201 *
3202 * The management in the driver is as follows:
3203 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3204 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003205 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003206 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003207 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3208 * 'processed' and 'read' driver indexes as well)
3209 * + A received packet is processed and handed to the kernel network stack,
3210 * detached from the iwl->rxq. The driver 'processed' index is updated.
3211 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3212 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3213 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3214 * were enough free buffers and RX_STALLED is set it is cleared.
3215 *
3216 *
3217 * Driver sequence:
3218 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003219 * iwl3945_rx_queue_alloc() Allocates rx_free
3220 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003221 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003222 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003223 * queue, updates firmware pointers, and updates
3224 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003225 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003226 *
3227 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003228 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003229 * READ INDEX, detaching the SKB from the pool.
3230 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003231 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003232 * slots.
3233 * ...
3234 *
3235 */
3236
3237/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003238 * iwl3945_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003239 */
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003240static int iwl3945_rx_queue_space(const struct iwl_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003241{
3242 int s = q->read - q->write;
3243 if (s <= 0)
3244 s += RX_QUEUE_SIZE;
3245 /* keep some buffer to not confuse full and empty queue */
3246 s -= 2;
3247 if (s < 0)
3248 s = 0;
3249 return s;
3250}
3251
3252/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003253 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003254 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003255int iwl3945_rx_queue_update_write_ptr(struct iwl_priv *priv, struct iwl_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003256{
3257 u32 reg = 0;
3258 int rc = 0;
3259 unsigned long flags;
3260
3261 spin_lock_irqsave(&q->lock, flags);
3262
3263 if (q->need_update == 0)
3264 goto exit_unlock;
3265
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003266 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003267 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003268 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003269
3270 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003271 iwl_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003272 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3273 goto exit_unlock;
3274 }
3275
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003276 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003277 if (rc)
3278 goto exit_unlock;
3279
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003280 /* Device expects a multiple of 8 */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003281 iwl_write_direct32(priv, FH39_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003282 q->write & ~0x7);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003283 iwl_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003284
3285 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003286 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003287 /* Device expects a multiple of 8 */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003288 iwl_write32(priv, FH39_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003289
3290
3291 q->need_update = 0;
3292
3293 exit_unlock:
3294 spin_unlock_irqrestore(&q->lock, flags);
3295 return rc;
3296}
3297
3298/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003299 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003300 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003301static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003302 dma_addr_t dma_addr)
3303{
3304 return cpu_to_le32((u32)dma_addr);
3305}
3306
3307/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003308 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003309 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003310 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003311 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003312 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003313 *
3314 * This moves the 'write' index forward to catch up with 'processed', and
3315 * also updates the memory address in the firmware to reference the new
3316 * target buffer.
3317 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003318static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003319{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003320 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003321 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003322 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003323 unsigned long flags;
3324 int write, rc;
3325
3326 spin_lock_irqsave(&rxq->lock, flags);
3327 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003328 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003329 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003330 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003331 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003332 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003333
3334 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003335 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003336 rxq->queue[rxq->write] = rxb;
3337 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3338 rxq->free_count--;
3339 }
3340 spin_unlock_irqrestore(&rxq->lock, flags);
3341 /* If the pre-allocated buffer pool is dropping low, schedule to
3342 * refill it */
3343 if (rxq->free_count <= RX_LOW_WATERMARK)
3344 queue_work(priv->workqueue, &priv->rx_replenish);
3345
3346
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003347 /* If we've added more space for the firmware to place data, tell it.
3348 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003349 if ((write != (rxq->write & ~0x7))
3350 || (abs(rxq->write - rxq->read) > 7)) {
3351 spin_lock_irqsave(&rxq->lock, flags);
3352 rxq->need_update = 1;
3353 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003354 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003355 if (rc)
3356 return rc;
3357 }
3358
3359 return 0;
3360}
3361
3362/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003363 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003364 *
3365 * When moving to rx_free an SKB is allocated for the slot.
3366 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003367 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003368 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003369 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003370static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003371{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003372 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003373 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003374 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003375 unsigned long flags;
3376 spin_lock_irqsave(&rxq->lock, flags);
3377 while (!list_empty(&rxq->rx_used)) {
3378 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003379 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003380
3381 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003382 rxb->skb =
3383 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3384 if (!rxb->skb) {
3385 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08003386 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07003387 /* We don't reschedule replenish work here -- we will
3388 * call the restock method and if it still needs
3389 * more buffers it will schedule replenish */
3390 break;
3391 }
Zhu Yi12342c42007-12-20 11:27:32 +08003392
3393 /* If radiotap head is required, reserve some headroom here.
3394 * The physical head count is a variable rx_stats->phy_count.
3395 * We reserve 4 bytes here. Plus these extra bytes, the
3396 * headroom of the physical head should be enough for the
3397 * radiotap head that iwl3945 supported. See iwl3945_rt.
3398 */
3399 skb_reserve(rxb->skb, 4);
3400
Zhu Yib481de92007-09-25 17:54:57 -07003401 priv->alloc_rxb_skb++;
3402 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003403
3404 /* Get physical address of RB/SKB */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003405 rxb->real_dma_addr =
Zhu Yib481de92007-09-25 17:54:57 -07003406 pci_map_single(priv->pci_dev, rxb->skb->data,
3407 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3408 list_add_tail(&rxb->list, &rxq->rx_free);
3409 rxq->free_count++;
3410 }
3411 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003412}
3413
3414/*
3415 * this should be called while priv->lock is locked
3416 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003417static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003418{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003419 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003420
3421 iwl3945_rx_allocate(priv);
3422 iwl3945_rx_queue_restock(priv);
3423}
3424
3425
3426void iwl3945_rx_replenish(void *data)
3427{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003428 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003429 unsigned long flags;
3430
3431 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003432
3433 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003434 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003435 spin_unlock_irqrestore(&priv->lock, flags);
3436}
3437
3438/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003439 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003440 * This free routine walks the list of POOL entries and if SKB is set to
3441 * non NULL it is unmapped and freed
3442 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003443static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003444{
3445 int i;
3446 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3447 if (rxq->pool[i].skb != NULL) {
3448 pci_unmap_single(priv->pci_dev,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003449 rxq->pool[i].real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003450 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3451 dev_kfree_skb(rxq->pool[i].skb);
3452 }
3453 }
3454
3455 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3456 rxq->dma_addr);
3457 rxq->bd = NULL;
3458}
3459
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003460int iwl3945_rx_queue_alloc(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003461{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003462 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003463 struct pci_dev *dev = priv->pci_dev;
3464 int i;
3465
3466 spin_lock_init(&rxq->lock);
3467 INIT_LIST_HEAD(&rxq->rx_free);
3468 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003469
3470 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003471 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3472 if (!rxq->bd)
3473 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003474
Zhu Yib481de92007-09-25 17:54:57 -07003475 /* Fill the rx_used queue with _all_ of the Rx buffers */
3476 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3477 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003478
Zhu Yib481de92007-09-25 17:54:57 -07003479 /* Set us so that we have processed and used all buffers, but have
3480 * not restocked the Rx queue with fresh buffers */
3481 rxq->read = rxq->write = 0;
3482 rxq->free_count = 0;
3483 rxq->need_update = 0;
3484 return 0;
3485}
3486
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003487void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003488{
3489 unsigned long flags;
3490 int i;
3491 spin_lock_irqsave(&rxq->lock, flags);
3492 INIT_LIST_HEAD(&rxq->rx_free);
3493 INIT_LIST_HEAD(&rxq->rx_used);
3494 /* Fill the rx_used queue with _all_ of the Rx buffers */
3495 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3496 /* In the reset function, these buffers may have been allocated
3497 * to an SKB, so we need to unmap and free potential storage */
3498 if (rxq->pool[i].skb != NULL) {
3499 pci_unmap_single(priv->pci_dev,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003500 rxq->pool[i].real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003501 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3502 priv->alloc_rxb_skb--;
3503 dev_kfree_skb(rxq->pool[i].skb);
3504 rxq->pool[i].skb = NULL;
3505 }
3506 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3507 }
3508
3509 /* Set us so that we have processed and used all buffers, but have
3510 * not restocked the Rx queue with fresh buffers */
3511 rxq->read = rxq->write = 0;
3512 rxq->free_count = 0;
3513 spin_unlock_irqrestore(&rxq->lock, flags);
3514}
3515
3516/* Convert linear signal-to-noise ratio into dB */
3517static u8 ratio2dB[100] = {
3518/* 0 1 2 3 4 5 6 7 8 9 */
3519 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3520 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3521 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3522 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3523 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3524 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3525 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3526 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3527 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3528 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3529};
3530
3531/* Calculates a relative dB value from a ratio of linear
3532 * (i.e. not dB) signal levels.
3533 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003534int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07003535{
Adrian Bunk221c80c2008-02-02 23:19:01 +02003536 /* 1000:1 or higher just report as 60 dB */
3537 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07003538 return 60;
3539
Adrian Bunk221c80c2008-02-02 23:19:01 +02003540 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07003541 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02003542 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003543 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07003544
3545 /* We shouldn't see this */
3546 if (sig_ratio < 1)
3547 return 0;
3548
3549 /* Use table for ratios 1:1 - 99:1 */
3550 return (int)ratio2dB[sig_ratio];
3551}
3552
3553#define PERFECT_RSSI (-20) /* dBm */
3554#define WORST_RSSI (-95) /* dBm */
3555#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3556
3557/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3558 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3559 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003560int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07003561{
3562 int sig_qual;
3563 int degradation = PERFECT_RSSI - rssi_dbm;
3564
3565 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3566 * as indicator; formula is (signal dbm - noise dbm).
3567 * SNR at or above 40 is a great signal (100%).
3568 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3569 * Weakest usable signal is usually 10 - 15 dB SNR. */
3570 if (noise_dbm) {
3571 if (rssi_dbm - noise_dbm >= 40)
3572 return 100;
3573 else if (rssi_dbm < noise_dbm)
3574 return 0;
3575 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3576
3577 /* Else use just the signal level.
3578 * This formula is a least squares fit of data points collected and
3579 * compared with a reference system that had a percentage (%) display
3580 * for signal quality. */
3581 } else
3582 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3583 (15 * RSSI_RANGE + 62 * degradation)) /
3584 (RSSI_RANGE * RSSI_RANGE);
3585
3586 if (sig_qual > 100)
3587 sig_qual = 100;
3588 else if (sig_qual < 1)
3589 sig_qual = 0;
3590
3591 return sig_qual;
3592}
3593
3594/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003595 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003596 *
3597 * Uses the priv->rx_handlers callback function array to invoke
3598 * the appropriate handlers, including command responses,
3599 * frame-received notifications, and other notifications.
3600 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003601static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003602{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003603 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003604 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08003605 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003606 u32 r, i;
3607 int reclaim;
3608 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003609 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003610 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003611
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003612 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3613 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08003614 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07003615 i = rxq->read;
3616
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003617 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3618 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003619 /* Rx interrupt, but nothing sent from uCode */
3620 if (i == r)
3621 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3622
3623 while (i != r) {
3624 rxb = rxq->queue[i];
3625
Ben Cahill9fbab512007-11-29 11:09:47 +08003626 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003627 * then a bug has been introduced in the queue refilling
3628 * routines -- catch it here */
3629 BUG_ON(rxb == NULL);
3630
3631 rxq->queue[i] = NULL;
3632
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003633 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003634 IWL_RX_BUF_SIZE,
3635 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003636 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003637
3638 /* Reclaim a command buffer only if this packet is a response
3639 * to a (driver-originated) command.
3640 * If the packet (e.g. Rx frame) originated from uCode,
3641 * there is no command buffer to reclaim.
3642 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3643 * but apparently a few don't get set; catch them here. */
3644 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3645 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3646 (pkt->hdr.cmd != REPLY_TX);
3647
3648 /* Based on type of command response or notification,
3649 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003650 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003651 if (priv->rx_handlers[pkt->hdr.cmd]) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003652 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003653 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3654 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3655 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3656 } else {
3657 /* No handling needed */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003658 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07003659 "r %d i %d No handler needed for %s, 0x%02x\n",
3660 r, i, get_cmd_string(pkt->hdr.cmd),
3661 pkt->hdr.cmd);
3662 }
3663
3664 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003665 /* Invoke any callbacks, transfer the skb to caller, and
3666 * fire off the (possibly) blocking iwl3945_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003667 * as we reclaim the driver command queue */
3668 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003669 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003670 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003671 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07003672 }
3673
3674 /* For now we just don't re-use anything. We can tweak this
3675 * later to try and re-use notification packets and SKBs that
3676 * fail to Rx correctly */
3677 if (rxb->skb != NULL) {
3678 priv->alloc_rxb_skb--;
3679 dev_kfree_skb_any(rxb->skb);
3680 rxb->skb = NULL;
3681 }
3682
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08003683 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
Zhu Yib481de92007-09-25 17:54:57 -07003684 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3685 spin_lock_irqsave(&rxq->lock, flags);
3686 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3687 spin_unlock_irqrestore(&rxq->lock, flags);
3688 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003689 /* If there are a lot of unused frames,
3690 * restock the Rx queue so ucode won't assert. */
3691 if (fill_rx) {
3692 count++;
3693 if (count >= 8) {
3694 priv->rxq.read = i;
3695 __iwl3945_rx_replenish(priv);
3696 count = 0;
3697 }
3698 }
Zhu Yib481de92007-09-25 17:54:57 -07003699 }
3700
3701 /* Backtrack one entry */
3702 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003703 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003704}
3705
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003706/**
3707 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3708 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003709static int iwl3945_tx_queue_update_write_ptr(struct iwl_priv *priv,
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08003710 struct iwl_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003711{
3712 u32 reg = 0;
3713 int rc = 0;
3714 int txq_id = txq->q.id;
3715
3716 if (txq->need_update == 0)
3717 return rc;
3718
3719 /* if we're trying to save power */
3720 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3721 /* wake up nic if it's powered down ...
3722 * uCode will wake up, and interrupt us again, so next
3723 * time we'll skip this part. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003724 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003725
3726 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3727 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003728 iwl_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003729 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3730 return rc;
3731 }
3732
3733 /* restore this queue's parameters in nic hardware. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003734 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003735 if (rc)
3736 return rc;
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003737 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003738 txq->q.write_ptr | (txq_id << 8));
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003739 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003740
3741 /* else not in power-save mode, uCode will never sleep when we're
3742 * trying to tx (during RFKILL, we're not trying to tx). */
3743 } else
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003744 iwl_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003745 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003746
3747 txq->need_update = 0;
3748
3749 return rc;
3750}
3751
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003752#ifdef CONFIG_IWL3945_DEBUG
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003753static void iwl3945_print_rx_config_cmd(struct iwl_priv *priv,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003754 struct iwl3945_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003755{
3756 IWL_DEBUG_RADIO("RX CONFIG:\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003757 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003758 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3759 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3760 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3761 le32_to_cpu(rxon->filter_flags));
3762 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3763 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3764 rxon->ofdm_basic_rates);
3765 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07003766 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3767 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003768 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3769}
3770#endif
3771
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003772static void iwl3945_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003773{
3774 IWL_DEBUG_ISR("Enabling interrupts\n");
3775 set_bit(STATUS_INT_ENABLED, &priv->status);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003776 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003777}
3778
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003779
3780/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003781static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003782{
Tomas Winklera96a27f2008-10-23 23:48:56 -07003783 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003784 synchronize_irq(priv->pci_dev->irq);
3785 tasklet_kill(&priv->irq_tasklet);
3786}
3787
3788
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003789static inline void iwl3945_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003790{
3791 clear_bit(STATUS_INT_ENABLED, &priv->status);
3792
3793 /* disable interrupts from uCode/NIC to host */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003794 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003795
3796 /* acknowledge/clear/reset any interrupts still pending
3797 * from uCode or flow handler (Rx/Tx DMA) */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003798 iwl_write32(priv, CSR_INT, 0xffffffff);
3799 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07003800 IWL_DEBUG_ISR("Disabled interrupts\n");
3801}
3802
3803static const char *desc_lookup(int i)
3804{
3805 switch (i) {
3806 case 1:
3807 return "FAIL";
3808 case 2:
3809 return "BAD_PARAM";
3810 case 3:
3811 return "BAD_CHECKSUM";
3812 case 4:
3813 return "NMI_INTERRUPT";
3814 case 5:
3815 return "SYSASSERT";
3816 case 6:
3817 return "FATAL_ERROR";
3818 }
3819
3820 return "UNKNOWN";
3821}
3822
3823#define ERROR_START_OFFSET (1 * sizeof(u32))
3824#define ERROR_ELEM_SIZE (7 * sizeof(u32))
3825
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003826static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003827{
3828 u32 i;
3829 u32 desc, time, count, base, data1;
3830 u32 blink1, blink2, ilink1, ilink2;
3831 int rc;
3832
3833 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
3834
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003835 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003836 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003837 return;
3838 }
3839
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003840 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003841 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003842 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003843 return;
3844 }
3845
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003846 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07003847
3848 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003849 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
3850 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
3851 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07003852 }
3853
Winkler, Tomas15b16872008-12-19 10:37:33 +08003854 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07003855 "ilink1 nmiPC Line\n");
3856 for (i = ERROR_START_OFFSET;
3857 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
3858 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003859 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07003860 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003861 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003862 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003863 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003864 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003865 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003866 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003867 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003868 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003869 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003870 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003871 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003872
Winkler, Tomas15b16872008-12-19 10:37:33 +08003873 IWL_ERR(priv,
3874 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
3875 desc_lookup(desc), desc, time, blink1, blink2,
3876 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07003877 }
3878
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003879 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003880
3881}
3882
Ben Cahillf58177b2007-11-29 11:09:43 +08003883#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07003884
3885/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003886 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07003887 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003888 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07003889 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003890static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07003891 u32 num_events, u32 mode)
3892{
3893 u32 i;
3894 u32 base; /* SRAM byte address of event log header */
3895 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
3896 u32 ptr; /* SRAM byte address of log data */
3897 u32 ev, time, data; /* event log data */
3898
3899 if (num_events == 0)
3900 return;
3901
3902 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
3903
3904 if (mode == 0)
3905 event_size = 2 * sizeof(u32);
3906 else
3907 event_size = 3 * sizeof(u32);
3908
3909 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
3910
3911 /* "time" is actually "data" for mode 0 (no timestamp).
3912 * place event id # at far right for easier visual parsing. */
3913 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003914 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003915 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003916 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003917 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003918 if (mode == 0) {
3919 /* data, ev */
3920 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
3921 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003922 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003923 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08003924 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07003925 }
3926 }
3927}
3928
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003929static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003930{
3931 int rc;
3932 u32 base; /* SRAM byte address of event log header */
3933 u32 capacity; /* event log capacity in # entries */
3934 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
3935 u32 num_wraps; /* # times uCode wrapped to top of log */
3936 u32 next_entry; /* index of next entry to be written by uCode */
3937 u32 size; /* # entries that we'll print */
3938
3939 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003940 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003941 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07003942 return;
3943 }
3944
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003945 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003946 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003947 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003948 return;
3949 }
3950
3951 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003952 capacity = iwl_read_targ_mem(priv, base);
3953 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
3954 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
3955 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07003956
3957 size = num_wraps ? capacity : next_entry;
3958
3959 /* bail out if nothing in log */
3960 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003961 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003962 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003963 return;
3964 }
3965
Winkler, Tomas15b16872008-12-19 10:37:33 +08003966 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003967 size, num_wraps);
3968
3969 /* if uCode has wrapped back to top of log, start at the oldest entry,
3970 * i.e the next one that uCode would fill. */
3971 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003972 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07003973 capacity - next_entry, mode);
3974
3975 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003976 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07003977
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003978 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003979}
3980
3981/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003982 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07003983 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003984static void iwl3945_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003985{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003986 /* Set the FW error flag -- cleared on iwl3945_down */
Zhu Yib481de92007-09-25 17:54:57 -07003987 set_bit(STATUS_FW_ERROR, &priv->status);
3988
3989 /* Cancel currently queued command. */
3990 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3991
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003992#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08003993 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003994 iwl3945_dump_nic_error_log(priv);
3995 iwl3945_dump_nic_event_log(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08003996 iwl3945_print_rx_config_cmd(priv, &priv->staging39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07003997 }
3998#endif
3999
4000 wake_up_interruptible(&priv->wait_command_queue);
4001
4002 /* Keep the restart process from trying to send host
4003 * commands by clearing the INIT status bit */
4004 clear_bit(STATUS_READY, &priv->status);
4005
4006 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4007 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4008 "Restarting adapter due to uCode error.\n");
4009
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004010 if (iwl3945_is_associated(priv)) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004011 memcpy(&priv->recovery39_rxon, &priv->active39_rxon,
4012 sizeof(priv->recovery39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07004013 priv->error_recovering = 1;
4014 }
4015 queue_work(priv->workqueue, &priv->restart);
4016 }
4017}
4018
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004019static void iwl3945_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004020{
4021 unsigned long flags;
4022
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004023 memcpy(&priv->staging39_rxon, &priv->recovery39_rxon,
4024 sizeof(priv->staging39_rxon));
4025 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004026 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004027
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004028 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004029
4030 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004031 priv->assoc_id = le16_to_cpu(priv->staging39_rxon.assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07004032 priv->error_recovering = 0;
4033 spin_unlock_irqrestore(&priv->lock, flags);
4034}
4035
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004036static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004037{
4038 u32 inta, handled = 0;
4039 u32 inta_fh;
4040 unsigned long flags;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004041#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004042 u32 inta_mask;
4043#endif
4044
4045 spin_lock_irqsave(&priv->lock, flags);
4046
4047 /* Ack/clear/reset pending uCode interrupts.
4048 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4049 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004050 inta = iwl_read32(priv, CSR_INT);
4051 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004052
4053 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4054 * Any new interrupts that happen after this, either while we're
4055 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004056 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
4057 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004058
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004059#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004060 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004061 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004062 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004063 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4064 inta, inta_mask, inta_fh);
4065 }
4066#endif
4067
4068 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4069 * atomic, make sure that inta covers all the interrupts that
4070 * we've discovered, even if FH interrupt came in just after
4071 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004072 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004073 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004074 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004075 inta |= CSR_INT_BIT_FH_TX;
4076
4077 /* Now service all interrupt bits discovered above. */
4078 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004079 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004080
4081 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004082 iwl3945_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004083
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004084 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004085
4086 handled |= CSR_INT_BIT_HW_ERR;
4087
4088 spin_unlock_irqrestore(&priv->lock, flags);
4089
4090 return;
4091 }
4092
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004093#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004094 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004095 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004096 if (inta & CSR_INT_BIT_SCD)
4097 IWL_DEBUG_ISR("Scheduler finished to transmit "
4098 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004099
4100 /* Alive notification via Rx interrupt will do the real work */
4101 if (inta & CSR_INT_BIT_ALIVE)
4102 IWL_DEBUG_ISR("Alive interrupt\n");
4103 }
4104#endif
4105 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004106 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004107
Zhu Yib481de92007-09-25 17:54:57 -07004108 /* Error detected by uCode */
4109 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004110 IWL_ERR(priv, "Microcode SW error detected. "
4111 "Restarting 0x%X.\n", inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004112 iwl3945_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004113 handled |= CSR_INT_BIT_SW_ERR;
4114 }
4115
4116 /* uCode wakes up after power-down sleep */
4117 if (inta & CSR_INT_BIT_WAKEUP) {
4118 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004119 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08004120 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4121 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4122 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4123 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4124 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4125 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004126
4127 handled |= CSR_INT_BIT_WAKEUP;
4128 }
4129
4130 /* All uCode command responses, including Tx command responses,
4131 * Rx "responses" (frame-received notification), and other
4132 * notifications from uCode come through here*/
4133 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004134 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004135 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4136 }
4137
4138 if (inta & CSR_INT_BIT_FH_TX) {
4139 IWL_DEBUG_ISR("Tx interrupt\n");
4140
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004141 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4142 if (!iwl_grab_nic_access(priv)) {
4143 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08004144 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004145 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004146 }
4147 handled |= CSR_INT_BIT_FH_TX;
4148 }
4149
4150 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004151 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07004152
4153 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004154 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07004155 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004156 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004157 }
4158
4159 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004160 /* only Re-enable if disabled by irq */
4161 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4162 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004163
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004164#ifdef CONFIG_IWL3945_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004165 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004166 inta = iwl_read32(priv, CSR_INT);
4167 inta_mask = iwl_read32(priv, CSR_INT_MASK);
4168 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004169 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4170 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4171 }
4172#endif
4173 spin_unlock_irqrestore(&priv->lock, flags);
4174}
4175
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004176static irqreturn_t iwl3945_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004177{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004178 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004179 u32 inta, inta_mask;
4180 u32 inta_fh;
4181 if (!priv)
4182 return IRQ_NONE;
4183
4184 spin_lock(&priv->lock);
4185
4186 /* Disable (but don't clear!) interrupts here to avoid
4187 * back-to-back ISRs and sporadic interrupts from our NIC.
4188 * If we have something to service, the tasklet will re-enable ints.
4189 * If we *don't* have something, we'll re-enable before leaving here. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004190 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
4191 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004192
4193 /* Discover which interrupts are active/pending */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004194 inta = iwl_read32(priv, CSR_INT);
4195 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004196
4197 /* Ignore interrupt if there's nothing in NIC to service.
4198 * This may be due to IRQ shared with another device,
4199 * or due to sporadic interrupts thrown from our NIC. */
4200 if (!inta && !inta_fh) {
4201 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4202 goto none;
4203 }
4204
4205 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4206 /* Hardware disappeared */
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004207 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004208 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004209 }
4210
4211 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4212 inta, inta_mask, inta_fh);
4213
Joonwoo Park25c03d82008-01-23 10:15:20 -08004214 inta &= ~CSR_INT_BIT_SCD;
4215
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004216 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004217 if (likely(inta || inta_fh))
4218 tasklet_schedule(&priv->irq_tasklet);
Oliver Neukumcb4da1a2007-11-13 21:10:32 -08004219unplugged:
Zhu Yib481de92007-09-25 17:54:57 -07004220 spin_unlock(&priv->lock);
4221
4222 return IRQ_HANDLED;
4223
4224 none:
4225 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004226 /* only Re-enable if disabled by irq */
4227 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4228 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004229 spin_unlock(&priv->lock);
4230 return IRQ_NONE;
4231}
4232
4233/************************** EEPROM BANDS ****************************
4234 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004235 * The iwl3945_eeprom_band definitions below provide the mapping from the
Zhu Yib481de92007-09-25 17:54:57 -07004236 * EEPROM contents to the specific channel number supported for each
4237 * band.
4238 *
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004239 * For example, iwl3945_priv->eeprom39.band_3_channels[4] from the band_3
Zhu Yib481de92007-09-25 17:54:57 -07004240 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4241 * The specific geography and calibration information for that channel
4242 * is contained in the eeprom map itself.
4243 *
4244 * During init, we copy the eeprom information and channel map
4245 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4246 *
4247 * channel_map_24/52 provides the index in the channel_info array for a
4248 * given channel. We have to have two separate maps as there is channel
4249 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4250 * band_2
4251 *
4252 * A value of 0xff stored in the channel_map indicates that the channel
4253 * is not supported by the hardware at all.
4254 *
4255 * A value of 0xfe in the channel_map indicates that the channel is not
4256 * valid for Tx with the current hardware. This means that
4257 * while the system can tune and receive on a given channel, it may not
4258 * be able to associate or transmit any frames on that
4259 * channel. There is no corresponding channel information for that
4260 * entry.
4261 *
4262 *********************************************************************/
4263
4264/* 2.4 GHz */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004265static const u8 iwl3945_eeprom_band_1[14] = {
Zhu Yib481de92007-09-25 17:54:57 -07004266 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4267};
4268
4269/* 5.2 GHz bands */
Ben Cahill9fbab512007-11-29 11:09:47 +08004270static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004271 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4272};
4273
Ben Cahill9fbab512007-11-29 11:09:47 +08004274static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004275 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4276};
4277
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004278static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004279 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4280};
4281
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004282static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
Zhu Yib481de92007-09-25 17:54:57 -07004283 145, 149, 153, 157, 161, 165
4284};
4285
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004286static void iwl3945_init_band_reference(const struct iwl_priv *priv, int band,
Zhu Yib481de92007-09-25 17:54:57 -07004287 int *eeprom_ch_count,
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004288 const struct iwl_eeprom_channel
Zhu Yib481de92007-09-25 17:54:57 -07004289 **eeprom_ch_info,
4290 const u8 **eeprom_ch_index)
4291{
4292 switch (band) {
4293 case 1: /* 2.4GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004294 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004295 *eeprom_ch_info = priv->eeprom39.band_1_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004296 *eeprom_ch_index = iwl3945_eeprom_band_1;
Zhu Yib481de92007-09-25 17:54:57 -07004297 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004298 case 2: /* 4.9GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004299 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004300 *eeprom_ch_info = priv->eeprom39.band_2_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004301 *eeprom_ch_index = iwl3945_eeprom_band_2;
Zhu Yib481de92007-09-25 17:54:57 -07004302 break;
4303 case 3: /* 5.2GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004304 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004305 *eeprom_ch_info = priv->eeprom39.band_3_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004306 *eeprom_ch_index = iwl3945_eeprom_band_3;
Zhu Yib481de92007-09-25 17:54:57 -07004307 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004308 case 4: /* 5.5GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004309 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004310 *eeprom_ch_info = priv->eeprom39.band_4_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004311 *eeprom_ch_index = iwl3945_eeprom_band_4;
Zhu Yib481de92007-09-25 17:54:57 -07004312 break;
Ben Cahill9fbab512007-11-29 11:09:47 +08004313 case 5: /* 5.7GHz band */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004314 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004315 *eeprom_ch_info = priv->eeprom39.band_5_channels;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004316 *eeprom_ch_index = iwl3945_eeprom_band_5;
Zhu Yib481de92007-09-25 17:54:57 -07004317 break;
4318 default:
4319 BUG();
4320 return;
4321 }
4322}
4323
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004324/**
4325 * iwl3945_get_channel_info - Find driver's private channel info
4326 *
4327 * Based on band and channel number.
4328 */
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004329const struct iwl_channel_info *
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004330iwl3945_get_channel_info(const struct iwl_priv *priv,
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004331 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07004332{
4333 int i;
4334
Johannes Berg8318d782008-01-24 19:38:38 +01004335 switch (band) {
4336 case IEEE80211_BAND_5GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004337 for (i = 14; i < priv->channel_count; i++) {
4338 if (priv->channel_info[i].channel == channel)
4339 return &priv->channel_info[i];
4340 }
4341 break;
4342
Johannes Berg8318d782008-01-24 19:38:38 +01004343 case IEEE80211_BAND_2GHZ:
Zhu Yib481de92007-09-25 17:54:57 -07004344 if (channel >= 1 && channel <= 14)
4345 return &priv->channel_info[channel - 1];
4346 break;
Johannes Berg8318d782008-01-24 19:38:38 +01004347 case IEEE80211_NUM_BANDS:
4348 WARN_ON(1);
Zhu Yib481de92007-09-25 17:54:57 -07004349 }
4350
4351 return NULL;
4352}
4353
4354#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4355 ? # x " " : "")
4356
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004357/**
4358 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4359 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004360static int iwl3945_init_channel_map(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004361{
4362 int eeprom_ch_count = 0;
4363 const u8 *eeprom_ch_index = NULL;
Samuel Ortiz0f741d92008-12-19 10:37:10 +08004364 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004365 int band, ch;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004366 struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004367
4368 if (priv->channel_count) {
4369 IWL_DEBUG_INFO("Channel map already initialized.\n");
4370 return 0;
4371 }
4372
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004373 if (priv->eeprom39.version < 0x2f) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004374 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004375 priv->eeprom39.version);
Zhu Yib481de92007-09-25 17:54:57 -07004376 return -EINVAL;
4377 }
4378
4379 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4380
4381 priv->channel_count =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004382 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4383 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4384 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4385 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4386 ARRAY_SIZE(iwl3945_eeprom_band_5);
Zhu Yib481de92007-09-25 17:54:57 -07004387
4388 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4389
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004390 priv->channel_info = kzalloc(sizeof(struct iwl_channel_info) *
Zhu Yib481de92007-09-25 17:54:57 -07004391 priv->channel_count, GFP_KERNEL);
4392 if (!priv->channel_info) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004393 IWL_ERR(priv, "Could not allocate channel_info\n");
Zhu Yib481de92007-09-25 17:54:57 -07004394 priv->channel_count = 0;
4395 return -ENOMEM;
4396 }
4397
4398 ch_info = priv->channel_info;
4399
4400 /* Loop through the 5 EEPROM bands adding them in order to the
4401 * channel map we maintain (that contains additional information than
4402 * what just in the EEPROM) */
4403 for (band = 1; band <= 5; band++) {
4404
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004405 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
Zhu Yib481de92007-09-25 17:54:57 -07004406 &eeprom_ch_info, &eeprom_ch_index);
4407
4408 /* Loop through each band adding each of the channels */
4409 for (ch = 0; ch < eeprom_ch_count; ch++) {
4410 ch_info->channel = eeprom_ch_index[ch];
Johannes Berg8318d782008-01-24 19:38:38 +01004411 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4412 IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004413
4414 /* permanently store EEPROM's channel regulatory flags
4415 * and max power in channel info database. */
4416 ch_info->eeprom = eeprom_ch_info[ch];
4417
4418 /* Copy the run-time flags so they are there even on
4419 * invalid channels */
4420 ch_info->flags = eeprom_ch_info[ch].flags;
4421
4422 if (!(is_channel_valid(ch_info))) {
4423 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4424 "No traffic\n",
4425 ch_info->channel,
4426 ch_info->flags,
4427 is_channel_a_band(ch_info) ?
4428 "5.2" : "2.4");
4429 ch_info++;
4430 continue;
4431 }
4432
4433 /* Initialize regulatory-based run-time data */
4434 ch_info->max_power_avg = ch_info->curr_txpow =
4435 eeprom_ch_info[ch].max_power_avg;
4436 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4437 ch_info->min_power = 0;
4438
Guy Cohenfe7c4042008-04-21 15:41:56 -07004439 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
Zhu Yib481de92007-09-25 17:54:57 -07004440 " %ddBm): Ad-Hoc %ssupported\n",
4441 ch_info->channel,
4442 is_channel_a_band(ch_info) ?
4443 "5.2" : "2.4",
Tomas Winkler8211ef72008-03-02 01:36:04 +02004444 CHECK_AND_PRINT(VALID),
Zhu Yib481de92007-09-25 17:54:57 -07004445 CHECK_AND_PRINT(IBSS),
4446 CHECK_AND_PRINT(ACTIVE),
4447 CHECK_AND_PRINT(RADAR),
4448 CHECK_AND_PRINT(WIDE),
Zhu Yib481de92007-09-25 17:54:57 -07004449 CHECK_AND_PRINT(DFS),
4450 eeprom_ch_info[ch].flags,
4451 eeprom_ch_info[ch].max_power_avg,
4452 ((eeprom_ch_info[ch].
4453 flags & EEPROM_CHANNEL_IBSS)
4454 && !(eeprom_ch_info[ch].
4455 flags & EEPROM_CHANNEL_RADAR))
4456 ? "" : "not ");
4457
4458 /* Set the user_txpower_limit to the highest power
4459 * supported by any channel */
4460 if (eeprom_ch_info[ch].max_power_avg >
4461 priv->user_txpower_limit)
4462 priv->user_txpower_limit =
4463 eeprom_ch_info[ch].max_power_avg;
4464
4465 ch_info++;
4466 }
4467 }
4468
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004469 /* Set up txpower settings in driver for all channels */
Zhu Yib481de92007-09-25 17:54:57 -07004470 if (iwl3945_txpower_set_from_eeprom(priv))
4471 return -EIO;
4472
4473 return 0;
4474}
4475
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004476/*
4477 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4478 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004479static void iwl3945_free_channel_map(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004480{
4481 kfree(priv->channel_info);
4482 priv->channel_count = 0;
4483}
4484
Zhu Yib481de92007-09-25 17:54:57 -07004485/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4486 * sending probe req. This should be set long enough to hear probe responses
4487 * from more than one AP. */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004488#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4489#define IWL_ACTIVE_DWELL_TIME_52 (20)
4490
4491#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4492#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Zhu Yib481de92007-09-25 17:54:57 -07004493
4494/* For faster active scanning, scan will move to the next channel if fewer than
4495 * PLCP_QUIET_THRESH packets are heard on this channel within
4496 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4497 * time if it's a quiet channel (nothing responded to our probe, and there's
4498 * no other traffic).
4499 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4500#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004501#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
Zhu Yib481de92007-09-25 17:54:57 -07004502
4503/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4504 * Must be set longer than active dwell time.
4505 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4506#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4507#define IWL_PASSIVE_DWELL_TIME_52 (10)
4508#define IWL_PASSIVE_DWELL_BASE (100)
4509#define IWL_CHANNEL_TUNE_TIME 5
4510
Kolekar, Abhijeete720ce92008-11-07 09:58:42 -08004511#define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004512
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004513static inline u16 iwl3945_get_active_dwell_time(struct iwl_priv *priv,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004514 enum ieee80211_band band,
4515 u8 n_probes)
Zhu Yib481de92007-09-25 17:54:57 -07004516{
Johannes Berg8318d782008-01-24 19:38:38 +01004517 if (band == IEEE80211_BAND_5GHZ)
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004518 return IWL_ACTIVE_DWELL_TIME_52 +
4519 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004520 else
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004521 return IWL_ACTIVE_DWELL_TIME_24 +
4522 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004523}
4524
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004525static u16 iwl3945_get_passive_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004526 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004527{
Johannes Berg8318d782008-01-24 19:38:38 +01004528 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004529 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4530 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4531
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004532 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004533 /* If we're associated, we clamp the maximum passive
4534 * dwell time to be 98% of the beacon interval (minus
4535 * 2 * channel tune time) */
4536 passive = priv->beacon_int;
4537 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4538 passive = IWL_PASSIVE_DWELL_BASE;
4539 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4540 }
4541
Zhu Yib481de92007-09-25 17:54:57 -07004542 return passive;
4543}
4544
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004545static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004546 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004547 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004548 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004549{
4550 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004551 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004552 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004553 u16 passive_dwell = 0;
4554 u16 active_dwell = 0;
4555 int added, i;
4556
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08004557 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01004558 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004559 return 0;
4560
Johannes Berg8318d782008-01-24 19:38:38 +01004561 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004562
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08004563 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
Johannes Berg8318d782008-01-24 19:38:38 +01004564 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004565
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08004566 if (passive_dwell <= active_dwell)
4567 passive_dwell = active_dwell + 1;
4568
Johannes Berg8318d782008-01-24 19:38:38 +01004569 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004570 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4571 continue;
4572
Johannes Berg8318d782008-01-24 19:38:38 +01004573 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07004574
Johannes Berg8318d782008-01-24 19:38:38 +01004575 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004576 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08004577 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07004578 scan_ch->channel);
4579 continue;
4580 }
4581
Zhu Yib481de92007-09-25 17:54:57 -07004582 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4583 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08004584 /* If passive , set up for auto-switch
4585 * and use long active_dwell time.
4586 */
4587 if (!is_active || is_channel_passive(ch_info) ||
4588 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4589 scan_ch->type = 0; /* passive */
4590 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4591 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4592 } else {
4593 scan_ch->type = 1; /* active */
4594 }
4595
4596 /* Set direct probe bits. These may be used both for active
4597 * scan channels (probes gets sent right away),
4598 * or for passive channels (probes get se sent only after
4599 * hearing clear Rx packet).*/
4600 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4601 if (n_probes)
4602 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4603 } else {
4604 /* uCode v1 does not allow setting direct probe bits on
4605 * passive channel. */
4606 if ((scan_ch->type & 1) && n_probes)
4607 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4608 }
Zhu Yib481de92007-09-25 17:54:57 -07004609
Ben Cahill9fbab512007-11-29 11:09:47 +08004610 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004611 scan_ch->tpc.dsp_atten = 110;
4612 /* scan_pwr_info->tpc.dsp_atten; */
4613
4614 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004615 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004616 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4617 else {
4618 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4619 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004620 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004621 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004622 */
4623 }
4624
4625 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4626 scan_ch->channel,
4627 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4628 (scan_ch->type & 1) ?
4629 active_dwell : passive_dwell);
4630
4631 scan_ch++;
4632 added++;
4633 }
4634
4635 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4636 return added;
4637}
4638
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004639static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004640 struct ieee80211_rate *rates)
4641{
4642 int i;
4643
4644 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004645 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4646 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4647 rates[i].hw_value_short = i;
4648 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08004649 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004650 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004651 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004652 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004653 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01004654 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004655 }
Zhu Yib481de92007-09-25 17:54:57 -07004656 }
4657}
4658
4659/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004660 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004661 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004662static int iwl3945_init_geos(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004663{
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004664 struct iwl_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004665 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004666 struct ieee80211_channel *channels;
4667 struct ieee80211_channel *geo_ch;
4668 struct ieee80211_rate *rates;
4669 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004670
Johannes Berg8318d782008-01-24 19:38:38 +01004671 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4672 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004673 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4674 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4675 return 0;
4676 }
4677
Zhu Yib481de92007-09-25 17:54:57 -07004678 channels = kzalloc(sizeof(struct ieee80211_channel) *
4679 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004680 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004681 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004682
Tomas Winkler8211ef72008-03-02 01:36:04 +02004683 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004684 GFP_KERNEL);
4685 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004686 kfree(channels);
4687 return -ENOMEM;
4688 }
4689
Zhu Yib481de92007-09-25 17:54:57 -07004690 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004691 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4692 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4693 /* just OFDM */
4694 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4695 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07004696
Tomas Winkler8211ef72008-03-02 01:36:04 +02004697 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4698 sband->channels = channels;
4699 /* OFDM & CCK */
4700 sband->bitrates = rates;
4701 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004702
4703 priv->ieee_channels = channels;
4704 priv->ieee_rates = rates;
4705
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004706 iwl3945_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004707
Tomas Winkler8211ef72008-03-02 01:36:04 +02004708 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004709 ch = &priv->channel_info[i];
4710
Tomas Winkler8211ef72008-03-02 01:36:04 +02004711 /* FIXME: might be removed if scan is OK*/
4712 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004713 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004714
4715 if (is_channel_a_band(ch))
Tomas Winkler8211ef72008-03-02 01:36:04 +02004716 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Johannes Berg8318d782008-01-24 19:38:38 +01004717 else
Tomas Winkler8211ef72008-03-02 01:36:04 +02004718 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004719
Tomas Winkler8211ef72008-03-02 01:36:04 +02004720 geo_ch = &sband->channels[sband->n_channels++];
4721
4722 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004723 geo_ch->max_power = ch->max_power_avg;
4724 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004725 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004726
4727 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004728 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4729 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004730
Johannes Berg8318d782008-01-24 19:38:38 +01004731 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4732 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004733
4734 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004735 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004736
4737 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4738 priv->max_channel_txpower_limit =
4739 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004740 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004741 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004742 }
4743
4744 /* Save flags for reg domain usage */
4745 geo_ch->orig_flags = geo_ch->flags;
4746
4747 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4748 ch->channel, geo_ch->center_freq,
4749 is_channel_a_band(ch) ? "5.2" : "2.4",
4750 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4751 "restricted" : "valid",
4752 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004753 }
4754
Tomas Winkler82b9a122008-03-04 18:09:30 -08004755 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4756 priv->cfg->sku & IWL_SKU_A) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004757 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
4758 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
4759 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004760 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004761 }
4762
Tomas Winkler978785a2008-12-19 10:37:31 +08004763 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01004764 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4765 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07004766
John W. Linvillee0e0a672008-03-25 15:58:40 -04004767 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4768 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4769 &priv->bands[IEEE80211_BAND_2GHZ];
4770 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4771 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4772 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004773
Zhu Yib481de92007-09-25 17:54:57 -07004774 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4775
4776 return 0;
4777}
4778
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004779/*
4780 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4781 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004782static void iwl3945_free_geos(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004783{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08004784 kfree(priv->ieee_channels);
4785 kfree(priv->ieee_rates);
4786 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4787}
4788
Zhu Yib481de92007-09-25 17:54:57 -07004789/******************************************************************************
4790 *
4791 * uCode download functions
4792 *
4793 ******************************************************************************/
4794
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004795static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004796{
Tomas Winkler98c92212008-01-14 17:46:20 -08004797 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4798 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4799 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4800 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
4801 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
4802 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07004803}
4804
4805/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004806 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004807 * looking at all data.
4808 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004809static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004810{
4811 u32 val;
4812 u32 save_len = len;
4813 int rc = 0;
4814 u32 errcnt;
4815
4816 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4817
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004818 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004819 if (rc)
4820 return rc;
4821
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004822 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004823 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07004824
4825 errcnt = 0;
4826 for (; len > 0; len -= sizeof(u32), image++) {
4827 /* read data comes through single port, auto-incr addr */
4828 /* NOTE: Use the debugless read so we don't flood kernel log
4829 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004830 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004831 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004832 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004833 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4834 save_len - len, val, le32_to_cpu(*image));
4835 rc = -EIO;
4836 errcnt++;
4837 if (errcnt >= 20)
4838 break;
4839 }
4840 }
4841
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004842 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004843
4844 if (!errcnt)
Ian Schrambc434dd2007-10-25 17:15:29 +08004845 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07004846
4847 return rc;
4848}
4849
4850
4851/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004852 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07004853 * using sample data 100 bytes apart. If these sample points are good,
4854 * it's a pretty good bet that everything between them is good, too.
4855 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004856static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07004857{
4858 u32 val;
4859 int rc = 0;
4860 u32 errcnt = 0;
4861 u32 i;
4862
4863 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4864
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004865 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004866 if (rc)
4867 return rc;
4868
4869 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
4870 /* read data comes through single port, auto-incr addr */
4871 /* NOTE: Use the debugless read so we don't flood kernel log
4872 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004873 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08004874 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004875 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07004876 if (val != le32_to_cpu(*image)) {
4877#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08004878 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07004879 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4880 i, val, *image);
4881#endif
4882 rc = -EIO;
4883 errcnt++;
4884 if (errcnt >= 3)
4885 break;
4886 }
4887 }
4888
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004889 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004890
4891 return rc;
4892}
4893
4894
4895/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004896 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07004897 * and verify its contents
4898 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004899static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004900{
4901 __le32 *image;
4902 u32 len;
4903 int rc = 0;
4904
4905 /* Try bootstrap */
4906 image = (__le32 *)priv->ucode_boot.v_addr;
4907 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004908 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004909 if (rc == 0) {
4910 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
4911 return 0;
4912 }
4913
4914 /* Try initialize */
4915 image = (__le32 *)priv->ucode_init.v_addr;
4916 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004917 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004918 if (rc == 0) {
4919 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
4920 return 0;
4921 }
4922
4923 /* Try runtime/protocol */
4924 image = (__le32 *)priv->ucode_code.v_addr;
4925 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004926 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004927 if (rc == 0) {
4928 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
4929 return 0;
4930 }
4931
Winkler, Tomas15b16872008-12-19 10:37:33 +08004932 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07004933
Ben Cahill9fbab512007-11-29 11:09:47 +08004934 /* Since nothing seems to match, show first several data entries in
4935 * instruction SRAM, so maybe visual inspection will give a clue.
4936 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07004937 image = (__le32 *)priv->ucode_boot.v_addr;
4938 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004939 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07004940
4941 return rc;
4942}
4943
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004944static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004945{
4946 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08004947 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004948}
4949
4950/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004951 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07004952 *
4953 * Copy into buffers for card to fetch via bus-mastering
4954 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004955static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004956{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08004957 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004958 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07004959 const struct firmware *ucode_raw;
4960 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004961 const char *name_pre = priv->cfg->fw_name_pre;
4962 const unsigned int api_max = priv->cfg->ucode_api_max;
4963 const unsigned int api_min = priv->cfg->ucode_api_min;
4964 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07004965 u8 *src;
4966 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08004967 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07004968
4969 /* Ask kernel firmware_class module to get the boot firmware off disk.
4970 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08004971 for (index = api_max; index >= api_min; index--) {
4972 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
4973 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
4974 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004975 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004976 buf, ret);
4977 if (ret == -ENOENT)
4978 continue;
4979 else
4980 goto error;
4981 } else {
4982 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004983 IWL_ERR(priv, "Loaded firmware %s, "
4984 "which is deprecated. "
4985 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08004986 buf, api_max);
4987 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
4988 buf, ucode_raw->size);
4989 break;
4990 }
Zhu Yib481de92007-09-25 17:54:57 -07004991 }
4992
Reinette Chatrea0987a82008-12-02 12:14:06 -08004993 if (ret < 0)
4994 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07004995
4996 /* Make sure that we got at least our header! */
4997 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004998 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08004999 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005000 goto err_release;
5001 }
5002
5003 /* Data from ucode file: header followed by uCode images */
5004 ucode = (void *)ucode_raw->data;
5005
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08005006 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08005007 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07005008 inst_size = le32_to_cpu(ucode->inst_size);
5009 data_size = le32_to_cpu(ucode->data_size);
5010 init_size = le32_to_cpu(ucode->init_size);
5011 init_data_size = le32_to_cpu(ucode->init_data_size);
5012 boot_size = le32_to_cpu(ucode->boot_size);
5013
Reinette Chatrea0987a82008-12-02 12:14:06 -08005014 /* api_ver should match the api version forming part of the
5015 * firmware filename ... but we don't check for that and only rely
5016 * on the API version read from firware header from here on forward */
5017
5018 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005019 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08005020 "Driver supports v%u, firmware is v%u.\n",
5021 api_max, api_ver);
5022 priv->ucode_ver = 0;
5023 ret = -EINVAL;
5024 goto err_release;
5025 }
5026 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08005027 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08005028 "got %u. New firmware can be obtained "
5029 "from http://www.intellinuxwireless.org.\n",
5030 api_max, api_ver);
5031
Tomas Winkler978785a2008-12-19 10:37:31 +08005032 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
5033 IWL_UCODE_MAJOR(priv->ucode_ver),
5034 IWL_UCODE_MINOR(priv->ucode_ver),
5035 IWL_UCODE_API(priv->ucode_ver),
5036 IWL_UCODE_SERIAL(priv->ucode_ver));
5037
Reinette Chatrea0987a82008-12-02 12:14:06 -08005038 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
5039 priv->ucode_ver);
Ian Schrambc434dd2007-10-25 17:15:29 +08005040 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
5041 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
5042 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
5043 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
5044 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07005045
Reinette Chatrea0987a82008-12-02 12:14:06 -08005046
Zhu Yib481de92007-09-25 17:54:57 -07005047 /* Verify size of file vs. image size info in file's header */
5048 if (ucode_raw->size < sizeof(*ucode) +
5049 inst_size + data_size + init_size +
5050 init_data_size + boot_size) {
5051
5052 IWL_DEBUG_INFO("uCode file size %d too small\n",
5053 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005054 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005055 goto err_release;
5056 }
5057
5058 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005059 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005060 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5061 inst_size);
5062 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005063 goto err_release;
5064 }
5065
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005066 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005067 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5068 data_size);
5069 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005070 goto err_release;
5071 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005072 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005073 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5074 init_size);
5075 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005076 goto err_release;
5077 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005078 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005079 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5080 init_data_size);
5081 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005082 goto err_release;
5083 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08005084 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005085 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5086 boot_size);
5087 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005088 goto err_release;
5089 }
5090
5091 /* Allocate ucode buffers for card's bus-master loading ... */
5092
5093 /* Runtime instructions and 2 copies of data:
5094 * 1) unmodified from disk
5095 * 2) backup cache for save/restore during power-downs */
5096 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005097 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005098
5099 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005100 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005101
5102 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005103 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005104
5105 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08005106 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07005107 goto err_pci_alloc;
5108
Tomas Winkler90e759d2007-11-29 11:09:41 +08005109 /* Initialization instructions and data */
5110 if (init_size && init_data_size) {
5111 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005112 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005113
5114 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005115 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005116
5117 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5118 goto err_pci_alloc;
5119 }
5120
5121 /* Bootstrap (instructions only, no data) */
5122 if (boot_size) {
5123 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005124 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005125
5126 if (!priv->ucode_boot.v_addr)
5127 goto err_pci_alloc;
5128 }
5129
Zhu Yib481de92007-09-25 17:54:57 -07005130 /* Copy images into buffers for card's bus-master reads ... */
5131
5132 /* Runtime instructions (first block of data in file) */
5133 src = &ucode->data[0];
5134 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005135 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005136 memcpy(priv->ucode_code.v_addr, src, len);
5137 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5138 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5139
5140 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005141 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005142 src = &ucode->data[inst_size];
5143 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005144 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005145 memcpy(priv->ucode_data.v_addr, src, len);
5146 memcpy(priv->ucode_data_backup.v_addr, src, len);
5147
5148 /* Initialization instructions (3rd block) */
5149 if (init_size) {
5150 src = &ucode->data[inst_size + data_size];
5151 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005152 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5153 len);
Zhu Yib481de92007-09-25 17:54:57 -07005154 memcpy(priv->ucode_init.v_addr, src, len);
5155 }
5156
5157 /* Initialization data (4th block) */
5158 if (init_data_size) {
5159 src = &ucode->data[inst_size + data_size + init_size];
5160 len = priv->ucode_init_data.len;
5161 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5162 (int)len);
5163 memcpy(priv->ucode_init_data.v_addr, src, len);
5164 }
5165
5166 /* Bootstrap instructions (5th block) */
5167 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5168 len = priv->ucode_boot.len;
5169 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5170 (int)len);
5171 memcpy(priv->ucode_boot.v_addr, src, len);
5172
5173 /* We have our copies now, allow OS release its copies */
5174 release_firmware(ucode_raw);
5175 return 0;
5176
5177 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08005178 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005179 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005180 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005181
5182 err_release:
5183 release_firmware(ucode_raw);
5184
5185 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005186 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005187}
5188
5189
5190/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005191 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005192 *
5193 * Tell initialization uCode where to find runtime uCode.
5194 *
5195 * BSM registers initially contain pointers to initialization uCode.
5196 * We need to replace them to load runtime uCode inst and data,
5197 * and to save runtime data when powering down.
5198 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005199static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005200{
5201 dma_addr_t pinst;
5202 dma_addr_t pdata;
5203 int rc = 0;
5204 unsigned long flags;
5205
5206 /* bits 31:0 for 3945 */
5207 pinst = priv->ucode_code.p_addr;
5208 pdata = priv->ucode_data_backup.p_addr;
5209
5210 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005211 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005212 if (rc) {
5213 spin_unlock_irqrestore(&priv->lock, flags);
5214 return rc;
5215 }
5216
5217 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005218 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5219 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5220 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005221 priv->ucode_data.len);
5222
Tomas Winklera96a27f2008-10-23 23:48:56 -07005223 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07005224 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005225 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005226 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5227
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005228 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005229
5230 spin_unlock_irqrestore(&priv->lock, flags);
5231
5232 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5233
5234 return rc;
5235}
5236
5237/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005238 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005239 *
5240 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5241 *
Zhu Yib481de92007-09-25 17:54:57 -07005242 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08005243 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005244static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005245{
5246 /* Check alive response for "valid" sign from uCode */
5247 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5248 /* We had an error bringing up the hardware, so take it
5249 * all the way back down so we can try again */
5250 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5251 goto restart;
5252 }
5253
5254 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5255 * This is a paranoid check, because we would not have gotten the
5256 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005257 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005258 /* Runtime instruction load was bad;
5259 * take it all the way back down so we can try again */
5260 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5261 goto restart;
5262 }
5263
5264 /* Send pointers to protocol/runtime uCode image ... init code will
5265 * load and launch runtime uCode, which will send us another "Alive"
5266 * notification. */
5267 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005268 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005269 /* Runtime instruction load won't happen;
5270 * take it all the way back down so we can try again */
5271 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5272 goto restart;
5273 }
5274 return;
5275
5276 restart:
5277 queue_work(priv->workqueue, &priv->restart);
5278}
5279
5280
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005281/* temporary */
5282static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5283 struct sk_buff *skb);
5284
Zhu Yib481de92007-09-25 17:54:57 -07005285/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005286 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005287 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005288 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005289 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005290static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005291{
5292 int rc = 0;
5293 int thermal_spin = 0;
5294 u32 rfkill;
5295
5296 IWL_DEBUG_INFO("Runtime Alive received.\n");
5297
5298 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5299 /* We had an error bringing up the hardware, so take it
5300 * all the way back down so we can try again */
5301 IWL_DEBUG_INFO("Alive failed.\n");
5302 goto restart;
5303 }
5304
5305 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5306 * This is a paranoid check, because we would not have gotten the
5307 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005308 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005309 /* Runtime instruction load was bad;
5310 * take it all the way back down so we can try again */
5311 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5312 goto restart;
5313 }
5314
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005315 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005316
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005317 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005318 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005319 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07005320 return;
5321 }
5322
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005323 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005324 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005325 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005326
5327 if (rfkill & 0x1) {
5328 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07005329 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07005330 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005331 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07005332 thermal_spin++;
5333 udelay(10);
5334 }
5335
5336 if (thermal_spin)
5337 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5338 thermal_spin * 10);
5339 } else
5340 set_bit(STATUS_RF_KILL_HW, &priv->status);
5341
Ben Cahill9fbab512007-11-29 11:09:47 +08005342 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005343 set_bit(STATUS_ALIVE, &priv->status);
5344
5345 /* Clear out the uCode error bit if it is set */
5346 clear_bit(STATUS_FW_ERROR, &priv->status);
5347
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005348 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005349 return;
5350
Johannes Berg36d68252008-05-15 12:55:26 +02005351 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005352
5353 priv->active_rate = priv->rates_mask;
5354 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5355
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005356 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005357
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005358 if (iwl3945_is_associated(priv)) {
5359 struct iwl3945_rxon_cmd *active_rxon =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005360 (struct iwl3945_rxon_cmd *)(&priv->active39_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005361
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005362 memcpy(&priv->staging39_rxon, &priv->active39_rxon,
5363 sizeof(priv->staging39_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07005364 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5365 } else {
5366 /* Initialize our rx_config data */
Zhu, Yi60294de2008-10-29 14:05:45 -07005367 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005368 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07005369 }
5370
Ben Cahill9fbab512007-11-29 11:09:47 +08005371 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005372 iwl3945_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005373
5374 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005375 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005376
Zhu Yib481de92007-09-25 17:54:57 -07005377 iwl3945_reg_txpower_periodic(priv);
5378
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07005379 iwl3945_led_register(priv);
5380
Zhu Yib481de92007-09-25 17:54:57 -07005381 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07005382 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08005383 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005384
5385 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005386 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005387
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08005388 /* reassociate for ADHOC mode */
5389 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5390 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5391 priv->vif);
5392 if (beacon)
5393 iwl3945_mac_beacon_update(priv->hw, beacon);
5394 }
5395
Zhu Yib481de92007-09-25 17:54:57 -07005396 return;
5397
5398 restart:
5399 queue_work(priv->workqueue, &priv->restart);
5400}
5401
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005402static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005403
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005404static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005405{
5406 unsigned long flags;
5407 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5408 struct ieee80211_conf *conf = NULL;
5409
5410 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5411
5412 conf = ieee80211_get_hw_conf(priv->hw);
5413
5414 if (!exit_pending)
5415 set_bit(STATUS_EXIT_PENDING, &priv->status);
5416
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07005417 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005418 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005419
5420 /* Unblock any waiting calls */
5421 wake_up_interruptible_all(&priv->wait_command_queue);
5422
Zhu Yib481de92007-09-25 17:54:57 -07005423 /* Wipe out the EXIT_PENDING status bit if we are not actually
5424 * exiting the module */
5425 if (!exit_pending)
5426 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5427
5428 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005429 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005430
5431 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005432 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005433 iwl3945_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005434 spin_unlock_irqrestore(&priv->lock, flags);
5435 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005436
5437 if (priv->mac80211_registered)
5438 ieee80211_stop_queues(priv->hw);
5439
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005440 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005441 * clear all bits but the RF Kill and SUSPEND bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005442 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005443 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5444 STATUS_RF_KILL_HW |
5445 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5446 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005447 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5448 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005449 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005450 STATUS_IN_SUSPEND |
5451 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5452 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005453 goto exit;
5454 }
5455
5456 /* ...otherwise clear out all the status bits but the RF Kill and
5457 * SUSPEND bits and continue taking the NIC down. */
5458 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5459 STATUS_RF_KILL_HW |
5460 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5461 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005462 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5463 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005464 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5465 STATUS_IN_SUSPEND |
5466 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005467 STATUS_FW_ERROR |
5468 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5469 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07005470
5471 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005472 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005473 spin_unlock_irqrestore(&priv->lock, flags);
5474
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005475 iwl3945_hw_txq_ctx_stop(priv);
5476 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005477
5478 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005479 if (!iwl_grab_nic_access(priv)) {
5480 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005481 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005482 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005483 }
5484 spin_unlock_irqrestore(&priv->lock, flags);
5485
5486 udelay(5);
5487
Kolekar, Abhijeet01ec6162008-12-19 10:37:38 +08005488 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005489 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08005490 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005491
5492 if (priv->ibss_beacon)
5493 dev_kfree_skb(priv->ibss_beacon);
5494 priv->ibss_beacon = NULL;
5495
5496 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005497 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005498}
5499
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005500static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005501{
5502 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005503 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005504 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005505
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005506 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005507}
5508
5509#define MAX_HW_RESTARTS 5
5510
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005511static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005512{
5513 int rc, i;
5514
5515 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005516 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07005517 return -EIO;
5518 }
5519
5520 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005521 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07005522 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005523 return -ENODEV;
5524 }
5525
Reinette Chatree903fbd2008-01-30 22:05:15 -08005526 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005527 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08005528 return -EIO;
5529 }
5530
Zhu Yie655b9f2008-01-24 02:19:38 -08005531 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005532 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08005533 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5534 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5535 else {
5536 set_bit(STATUS_RF_KILL_HW, &priv->status);
5537 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005538 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005539 return -ENODEV;
5540 }
Zhu Yib481de92007-09-25 17:54:57 -07005541 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005542
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005543 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005544
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005545 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005546 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005547 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07005548 return rc;
5549 }
5550
5551 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005552 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5553 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005554 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5555
5556 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005557 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005558 iwl3945_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005559
5560 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08005561 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5562 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005563
5564 /* Copy original ucode data image from disk into backup cache.
5565 * This will be used to initialize the on-board processor's
5566 * data SRAM for a clean start when the runtime program first loads. */
5567 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08005568 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005569
Zhu Yie655b9f2008-01-24 02:19:38 -08005570 /* We return success when we resume from suspend and rf_kill is on. */
5571 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5572 return 0;
5573
Zhu Yib481de92007-09-25 17:54:57 -07005574 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5575
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005576 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005577
5578 /* load bootstrap state machine,
5579 * load bootstrap program into processor's memory,
5580 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08005581 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005582
5583 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005584 IWL_ERR(priv,
5585 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07005586 continue;
5587 }
5588
5589 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005590 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005591
Zhu Yib481de92007-09-25 17:54:57 -07005592 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5593
5594 return 0;
5595 }
5596
5597 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005598 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005599 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005600
5601 /* tried to restart and config the device for as long as our
5602 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08005603 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07005604 return -EIO;
5605}
5606
5607
5608/*****************************************************************************
5609 *
5610 * Workqueue callbacks
5611 *
5612 *****************************************************************************/
5613
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005614static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005615{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005616 struct iwl_priv *priv =
5617 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005618
5619 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5620 return;
5621
5622 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005623 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005624 mutex_unlock(&priv->mutex);
5625}
5626
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005627static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005628{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005629 struct iwl_priv *priv =
5630 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005631
5632 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5633 return;
5634
5635 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005636 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005637 mutex_unlock(&priv->mutex);
5638}
5639
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005640static void iwl3945_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005641{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005642 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005643
5644 wake_up_interruptible(&priv->wait_command_queue);
5645
5646 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5647 return;
5648
5649 mutex_lock(&priv->mutex);
5650
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005651 if (!iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005652 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5653 "HW and/or SW RF Kill no longer active, restarting "
5654 "device\n");
5655 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5656 queue_work(priv->workqueue, &priv->restart);
5657 } else {
5658
5659 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5660 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5661 "disabled by SW switch\n");
5662 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005663 IWL_WARN(priv, "Radio Frequency Kill Switch is On:\n"
Zhu Yib481de92007-09-25 17:54:57 -07005664 "Kill switch must be turned off for "
5665 "wireless networking to work.\n");
5666 }
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005667
Zhu Yib481de92007-09-25 17:54:57 -07005668 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005669 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005670}
5671
5672#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
5673
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005674static void iwl3945_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005675{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005676 struct iwl_priv *priv =
5677 container_of(data, struct iwl_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07005678
5679 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5680 return;
5681
5682 mutex_lock(&priv->mutex);
5683 if (test_bit(STATUS_SCANNING, &priv->status) ||
5684 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5685 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
5686 "Scan completion watchdog resetting adapter (%dms)\n",
5687 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005688
Zhu Yib481de92007-09-25 17:54:57 -07005689 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005690 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005691 }
5692 mutex_unlock(&priv->mutex);
5693}
5694
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005695static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005696{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005697 struct iwl_priv *priv =
5698 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b42008-12-19 10:37:34 +08005699 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07005700 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005701 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07005702 .meta.flags = CMD_SIZE_HUGE,
5703 };
5704 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005705 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07005706 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005707 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01005708 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04005709 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07005710
5711 conf = ieee80211_get_hw_conf(priv->hw);
5712
5713 mutex_lock(&priv->mutex);
5714
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005715 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005716 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005717 goto done;
5718 }
5719
Tomas Winklera96a27f2008-10-23 23:48:56 -07005720 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07005721 * was given the chance to run... */
5722 if (!test_bit(STATUS_SCANNING, &priv->status))
5723 goto done;
5724
5725 /* This should never be called or scheduled if there is currently
5726 * a scan active in the hardware. */
5727 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
5728 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
5729 "Ignoring second request.\n");
5730 rc = -EIO;
5731 goto done;
5732 }
5733
5734 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5735 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
5736 goto done;
5737 }
5738
5739 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5740 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
5741 goto done;
5742 }
5743
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08005744 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005745 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
5746 goto done;
5747 }
5748
5749 if (!test_bit(STATUS_READY, &priv->status)) {
5750 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
5751 goto done;
5752 }
5753
5754 if (!priv->scan_bands) {
5755 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
5756 goto done;
5757 }
5758
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005759 if (!priv->scan39) {
5760 priv->scan39 = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07005761 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005762 if (!priv->scan39) {
Zhu Yib481de92007-09-25 17:54:57 -07005763 rc = -ENOMEM;
5764 goto done;
5765 }
5766 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005767 scan = priv->scan39;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005768 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07005769
5770 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
5771 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
5772
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005773 if (iwl3945_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005774 u16 interval = 0;
5775 u32 extra;
5776 u32 suspend_time = 100;
5777 u32 scan_suspend_time = 100;
5778 unsigned long flags;
5779
5780 IWL_DEBUG_INFO("Scanning while associated...\n");
5781
5782 spin_lock_irqsave(&priv->lock, flags);
5783 interval = priv->beacon_int;
5784 spin_unlock_irqrestore(&priv->lock, flags);
5785
5786 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005787 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07005788 if (!interval)
5789 interval = suspend_time;
5790 /*
5791 * suspend time format:
5792 * 0-19: beacon interval in usec (time before exec.)
5793 * 20-23: 0
5794 * 24-31: number of beacons (suspend between channels)
5795 */
5796
5797 extra = (suspend_time / interval) << 24;
5798 scan_suspend_time = 0xFF0FFFFF &
5799 (extra | ((suspend_time % interval) * 1024));
5800
5801 scan->suspend_time = cpu_to_le32(scan_suspend_time);
5802 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
5803 scan_suspend_time, interval);
5804 }
5805
5806 /* We should add the ability for user to lock to PASSIVE ONLY */
5807 if (priv->one_direct_scan) {
5808 IWL_DEBUG_SCAN
5809 ("Kicking off one direct scan for '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005810 print_ssid(ssid, priv->direct_ssid,
5811 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07005812 scan->direct_scan[0].id = WLAN_EID_SSID;
5813 scan->direct_scan[0].len = priv->direct_ssid_len;
5814 memcpy(scan->direct_scan[0].ssid,
5815 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005816 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005817 } else
Bill Moss786b4552008-04-17 16:03:40 -07005818 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005819
5820 /* We don't build a direct scan probe request; the uCode will do
5821 * that based on the direct_mask added to each channel entry */
5822 scan->tx_cmd.len = cpu_to_le16(
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005823 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
Johannes Berg430cfe92008-10-28 18:06:02 +01005824 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
Zhu Yib481de92007-09-25 17:54:57 -07005825 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08005826 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07005827 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
5828
5829 /* flags + rate selection */
5830
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005831 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005832 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
5833 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
5834 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01005835 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005836 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07005837 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
5838 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01005839 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08005840 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005841 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07005842 goto done;
5843 }
5844
5845 /* select Rx antennas */
5846 scan->flags |= iwl3945_get_antenna_flags(priv);
5847
Johannes Berg05c914f2008-09-11 00:01:58 +02005848 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07005849 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
5850
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08005851 scan->channel_count =
5852 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
5853 n_probes,
5854 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07005855
Reinette Chatre14b54332008-11-04 12:21:35 -08005856 if (scan->channel_count == 0) {
5857 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
5858 goto done;
5859 }
5860
Zhu Yib481de92007-09-25 17:54:57 -07005861 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005862 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07005863 cmd.data = scan;
5864 scan->len = cpu_to_le16(cmd.len);
5865
5866 set_bit(STATUS_SCAN_HW, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005867 rc = iwl3945_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07005868 if (rc)
5869 goto done;
5870
5871 queue_delayed_work(priv->workqueue, &priv->scan_check,
5872 IWL_SCAN_CHECK_WATCHDOG);
5873
5874 mutex_unlock(&priv->mutex);
5875 return;
5876
5877 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08005878 /* can not perform scan make sure we clear scanning
5879 * bits from status so next scan request can be performed.
5880 * if we dont clear scanning status bit here all next scan
5881 * will fail
5882 */
5883 clear_bit(STATUS_SCAN_HW, &priv->status);
5884 clear_bit(STATUS_SCANNING, &priv->status);
5885
Ian Schram01ebd062007-10-25 17:15:22 +08005886 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07005887 queue_work(priv->workqueue, &priv->scan_completed);
5888 mutex_unlock(&priv->mutex);
5889}
5890
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005891static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005892{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005893 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07005894
5895 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5896 return;
5897
5898 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005899 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005900 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02005901 iwl3945_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005902}
5903
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005904static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005905{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005906 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07005907
5908 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5909 return;
5910
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005911 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005912 queue_work(priv->workqueue, &priv->up);
5913}
5914
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005915static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005916{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005917 struct iwl_priv *priv =
5918 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07005919
5920 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5921 return;
5922
5923 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005924 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005925 mutex_unlock(&priv->mutex);
5926}
5927
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005928#define IWL_DELAY_NEXT_SCAN (HZ*2)
5929
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005930static void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005931{
Zhu Yib481de92007-09-25 17:54:57 -07005932 int rc = 0;
5933 struct ieee80211_conf *conf = NULL;
5934
Johannes Berg05c914f2008-09-11 00:01:58 +02005935 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005936 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07005937 return;
5938 }
5939
5940
Johannes Berge1749612008-10-27 15:59:26 -07005941 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005942 priv->assoc_id, priv->active39_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07005943
5944 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5945 return;
5946
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005947 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005948 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08005949
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005950 iwl3945_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08005951
Zhu Yib481de92007-09-25 17:54:57 -07005952 conf = ieee80211_get_hw_conf(priv->hw);
5953
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005954 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005955 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005956
Tomas Winkler28afaf92008-12-19 10:37:06 +08005957 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005958 iwl3945_setup_rxon_timing(priv);
5959 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07005960 sizeof(priv->rxon_timing), &priv->rxon_timing);
5961 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08005962 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07005963 "Attempting to continue.\n");
5964
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005965 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005966
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005967 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07005968
5969 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
5970 priv->assoc_id, priv->beacon_int);
5971
5972 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005973 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005974 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005975 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005976
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005977 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07005978 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005979 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005980 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005981 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005982
Johannes Berg05c914f2008-09-11 00:01:58 +02005983 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08005984 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07005985
5986 }
5987
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005988 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005989
5990 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02005991 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005992 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07005993 break;
5994
Johannes Berg05c914f2008-09-11 00:01:58 +02005995 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07005996
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08005997 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005998 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005999 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01006000 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07006001 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
6002 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006003 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
6004 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006005
6006 break;
6007
6008 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08006009 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03006010 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07006011 break;
6012 }
6013
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006014 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006015
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006016 /* we have just associated, don't start scan too early */
6017 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006018}
6019
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006020static void iwl3945_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006021{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006022 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006023
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006024 if (!iwl_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006025 return;
6026
6027 mutex_lock(&priv->mutex);
6028
6029 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006030 iwl3945_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006031
6032 mutex_unlock(&priv->mutex);
6033}
6034
Johannes Berge8975582008-10-09 12:18:51 +02006035static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006036
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006037static void iwl3945_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006038{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006039 struct iwl_priv *priv =
6040 container_of(work, struct iwl_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006041
6042 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6043
6044 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6045 return;
6046
Zhu Yia0646472007-12-20 14:10:01 +08006047 if (test_bit(STATUS_CONF_PENDING, &priv->status))
Johannes Berge8975582008-10-09 12:18:51 +02006048 iwl3945_mac_config(priv->hw, 0);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006049
Zhu Yib481de92007-09-25 17:54:57 -07006050 ieee80211_scan_completed(priv->hw);
6051
6052 /* Since setting the TXPOWER may have been deferred while
6053 * performing the scan, fire one off */
6054 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006055 iwl3945_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006056 mutex_unlock(&priv->mutex);
6057}
6058
6059/*****************************************************************************
6060 *
6061 * mac80211 entry point functions
6062 *
6063 *****************************************************************************/
6064
Zhu Yi5a669262008-01-14 17:46:18 -08006065#define UCODE_READY_TIMEOUT (2 * HZ)
6066
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006067static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006068{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006069 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08006070 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006071
6072 IWL_DEBUG_MAC80211("enter\n");
6073
Zhu Yi5a669262008-01-14 17:46:18 -08006074 if (pci_enable_device(priv->pci_dev)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08006075 IWL_ERR(priv, "Fail to pci_enable_device\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006076 return -ENODEV;
6077 }
6078 pci_restore_state(priv->pci_dev);
6079 pci_enable_msi(priv->pci_dev);
6080
6081 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
6082 DRV_NAME, priv);
6083 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08006084 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
Zhu Yi5a669262008-01-14 17:46:18 -08006085 goto out_disable_msi;
6086 }
6087
Zhu Yib481de92007-09-25 17:54:57 -07006088 /* we should be verifying the device is ready to be opened */
6089 mutex_lock(&priv->mutex);
6090
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006091 memset(&priv->staging39_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
Zhu Yi5a669262008-01-14 17:46:18 -08006092 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6093 * ucode filename and max sizes are card-specific. */
6094
6095 if (!priv->ucode_code.len) {
6096 ret = iwl3945_read_ucode(priv);
6097 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08006098 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a669262008-01-14 17:46:18 -08006099 mutex_unlock(&priv->mutex);
6100 goto out_release_irq;
6101 }
6102 }
6103
Zhu Yie655b9f2008-01-24 02:19:38 -08006104 ret = __iwl3945_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08006105
Zhu Yib481de92007-09-25 17:54:57 -07006106 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08006107
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02006108 iwl3945_rfkill_set_hw_state(priv);
6109
Zhu Yie655b9f2008-01-24 02:19:38 -08006110 if (ret)
6111 goto out_release_irq;
6112
6113 IWL_DEBUG_INFO("Start UP work.\n");
6114
6115 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6116 return 0;
6117
Zhu Yi5a669262008-01-14 17:46:18 -08006118 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6119 * mac80211 will not be run successfully. */
6120 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6121 test_bit(STATUS_READY, &priv->status),
6122 UCODE_READY_TIMEOUT);
6123 if (!ret) {
6124 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08006125 IWL_ERR(priv,
6126 "Wait for START_ALIVE timeout after %dms.\n",
6127 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a669262008-01-14 17:46:18 -08006128 ret = -ETIMEDOUT;
6129 goto out_release_irq;
6130 }
6131 }
6132
Zhu Yie655b9f2008-01-24 02:19:38 -08006133 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006134 IWL_DEBUG_MAC80211("leave\n");
6135 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006136
6137out_release_irq:
6138 free_irq(priv->pci_dev->irq, priv);
6139out_disable_msi:
6140 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006141 pci_disable_device(priv->pci_dev);
6142 priv->is_open = 0;
6143 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006144 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006145}
6146
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006147static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006148{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006149 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006150
6151 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006152
Zhu Yie655b9f2008-01-24 02:19:38 -08006153 if (!priv->is_open) {
6154 IWL_DEBUG_MAC80211("leave - skip\n");
6155 return;
6156 }
6157
Zhu Yib481de92007-09-25 17:54:57 -07006158 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006159
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006160 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006161 /* stop mac, cancel any scan request and clear
6162 * RXON_FILTER_ASSOC_MSK BIT
6163 */
Zhu Yi5a669262008-01-14 17:46:18 -08006164 mutex_lock(&priv->mutex);
6165 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006166 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006167 }
6168
Zhu Yi5a669262008-01-14 17:46:18 -08006169 iwl3945_down(priv);
6170
6171 flush_workqueue(priv->workqueue);
6172 free_irq(priv->pci_dev->irq, priv);
6173 pci_disable_msi(priv->pci_dev);
6174 pci_save_state(priv->pci_dev);
6175 pci_disable_device(priv->pci_dev);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006176
Zhu Yib481de92007-09-25 17:54:57 -07006177 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006178}
6179
Johannes Berge039fa42008-05-15 12:55:29 +02006180static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006181{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006182 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006183
6184 IWL_DEBUG_MAC80211("enter\n");
6185
Zhu Yib481de92007-09-25 17:54:57 -07006186 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02006187 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006188
Johannes Berge039fa42008-05-15 12:55:29 +02006189 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07006190 dev_kfree_skb_any(skb);
6191
6192 IWL_DEBUG_MAC80211("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08006193 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07006194}
6195
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006196static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006197 struct ieee80211_if_init_conf *conf)
6198{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006199 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006200 unsigned long flags;
6201
Johannes Berg32bfd352007-12-19 01:31:26 +01006202 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006203
Johannes Berg32bfd352007-12-19 01:31:26 +01006204 if (priv->vif) {
6205 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02006206 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006207 }
6208
6209 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006210 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07006211 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07006212
6213 spin_unlock_irqrestore(&priv->lock, flags);
6214
6215 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006216
6217 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07006218 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02006219 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6220 }
6221
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006222 if (iwl_is_ready(priv))
Zhu Yi5a669262008-01-14 17:46:18 -08006223 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006224
Zhu Yib481de92007-09-25 17:54:57 -07006225 mutex_unlock(&priv->mutex);
6226
Zhu Yi5a669262008-01-14 17:46:18 -08006227 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006228 return 0;
6229}
6230
6231/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006232 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006233 *
6234 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6235 * be set inappropriately and the driver currently sets the hardware up to
6236 * use it whenever needed.
6237 */
Johannes Berge8975582008-10-09 12:18:51 +02006238static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07006239{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006240 struct iwl_priv *priv = hw->priv;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006241 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02006242 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07006243 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006244 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006245
6246 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006247 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006248
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006249 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006250 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006251 ret = -EIO;
6252 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006253 }
6254
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006255 if (unlikely(!iwl3945_mod_params.disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006256 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006257 IWL_DEBUG_MAC80211("leave - scanning\n");
6258 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006259 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006260 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006261 }
6262
6263 spin_lock_irqsave(&priv->lock, flags);
6264
Johannes Berg8318d782008-01-24 19:38:38 +01006265 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6266 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006267 if (!is_channel_valid(ch_info)) {
Ron Rindjunsky66b50042008-06-25 16:46:31 +08006268 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
Johannes Berg8318d782008-01-24 19:38:38 +01006269 conf->channel->hw_value, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006270 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6271 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006272 ret = -EINVAL;
6273 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006274 }
6275
Johannes Berg8318d782008-01-24 19:38:38 +01006276 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006277
Johannes Berg8318d782008-01-24 19:38:38 +01006278 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006279
6280 /* The list of supported rates and rate mask can be different
6281 * for each phymode; since the phymode may have changed, reset
6282 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006283 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006284
6285 spin_unlock_irqrestore(&priv->lock, flags);
6286
6287#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6288 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006289 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006290 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006291 }
6292#endif
6293
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006294 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006295
6296 if (!conf->radio_enabled) {
6297 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006298 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006299 }
6300
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006301 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006302 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006303 ret = -EIO;
6304 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006305 }
6306
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006307 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006308
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006309 if (memcmp(&priv->active39_rxon,
6310 &priv->staging39_rxon, sizeof(priv->staging39_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006311 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006312 else
6313 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6314
6315 IWL_DEBUG_MAC80211("leave\n");
6316
Zhu Yi76bb77e2007-11-22 10:53:22 +08006317out:
Zhu Yia0646472007-12-20 14:10:01 +08006318 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006319 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006320 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006321}
6322
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006323static void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006324{
6325 int rc = 0;
6326
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006327 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006328 return;
6329
6330 /* The following should be done only at AP bring up */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +08006331 if (!(iwl3945_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07006332
6333 /* RXON - unassoc (to set timing command) */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006334 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006335 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006336
6337 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08006338 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006339 iwl3945_setup_rxon_timing(priv);
6340 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006341 sizeof(priv->rxon_timing), &priv->rxon_timing);
6342 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006343 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07006344 "Attempting to continue.\n");
6345
6346 /* FIXME: what should be the assoc_id for AP? */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006347 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07006348 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006349 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006350 RXON_FLG_SHORT_PREAMBLE_MSK;
6351 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006352 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006353 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6354
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006355 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07006356 if (priv->assoc_capability &
6357 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006358 priv->staging39_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07006359 RXON_FLG_SHORT_SLOT_MSK;
6360 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006361 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006362 ~RXON_FLG_SHORT_SLOT_MSK;
6363
Johannes Berg05c914f2008-09-11 00:01:58 +02006364 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006365 priv->staging39_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07006366 ~RXON_FLG_SHORT_SLOT_MSK;
6367 }
6368 /* restore RXON assoc */
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006369 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006370 iwl3945_commit_rxon(priv);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08006371 iwl3945_add_station(priv, iwl_bcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08006372 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006373 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006374
6375 /* FIXME - we need to add code here to detect a totally new
6376 * configuration, reset the AP, unassoc, rxon timing, assoc,
6377 * clear sta table, add BCAST sta... */
6378}
6379
Johannes Berg32bfd352007-12-19 01:31:26 +01006380static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6381 struct ieee80211_vif *vif,
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006382 struct ieee80211_if_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07006383{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006384 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006385 int rc;
6386
6387 if (conf == NULL)
6388 return -EIO;
6389
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006390 if (priv->vif != vif) {
6391 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006392 return 0;
6393 }
6394
Johannes Berg9d139c82008-07-09 14:40:37 +02006395 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02006396 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02006397 conf->changed & IEEE80211_IFCC_BEACON) {
6398 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6399 if (!beacon)
6400 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006401 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006402 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08006403 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02006404 if (rc)
6405 return rc;
6406 }
6407
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006408 if (!iwl_is_alive(priv))
Zhu Yi5a669262008-01-14 17:46:18 -08006409 return -EAGAIN;
6410
Zhu Yib481de92007-09-25 17:54:57 -07006411 mutex_lock(&priv->mutex);
6412
Zhu Yib481de92007-09-25 17:54:57 -07006413 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07006414 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006415
Johannes Berg4150c572007-09-17 01:29:23 -04006416/*
6417 * very dubious code was here; the probe filtering flag is never set:
6418 *
Zhu Yib481de92007-09-25 17:54:57 -07006419 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6420 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006421 */
Zhu Yib481de92007-09-25 17:54:57 -07006422
Johannes Berg05c914f2008-09-11 00:01:58 +02006423 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07006424 if (!conf->bssid) {
6425 conf->bssid = priv->mac_addr;
6426 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07006427 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6428 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07006429 }
6430 if (priv->ibss_beacon)
6431 dev_kfree_skb(priv->ibss_beacon);
6432
Johannes Berg9d139c82008-07-09 14:40:37 +02006433 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07006434 }
6435
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006436 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08006437 goto done;
6438
Zhu Yib481de92007-09-25 17:54:57 -07006439 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6440 !is_multicast_ether_addr(conf->bssid)) {
6441 /* If there is currently a HW scan going on in the background
6442 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006443 if (iwl3945_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006444 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07006445 "after 100ms\n");
6446 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6447 mutex_unlock(&priv->mutex);
6448 return -EAGAIN;
6449 }
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006450 memcpy(priv->staging39_rxon.bssid_addr, conf->bssid, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006451
6452 /* TODO: Audit driver for usage of these members and see
6453 * if mac80211 deprecates them (priv->bssid looks like it
6454 * shouldn't be there, but I haven't scanned the IBSS code
6455 * to verify) - jpk */
6456 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6457
Johannes Berg05c914f2008-09-11 00:01:58 +02006458 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006459 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006460 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006461 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02006462 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006463 iwl3945_add_station(priv,
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006464 priv->active39_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006465 }
6466
6467 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006468 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006469 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006470 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006471 }
6472
Mohamed Abbasfde35712007-11-29 11:10:15 +08006473 done:
Zhu Yib481de92007-09-25 17:54:57 -07006474 IWL_DEBUG_MAC80211("leave\n");
6475 mutex_unlock(&priv->mutex);
6476
6477 return 0;
6478}
6479
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006480static void iwl3945_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006481 unsigned int changed_flags,
6482 unsigned int *total_flags,
6483 int mc_count, struct dev_addr_list *mc_list)
6484{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006485 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006486 __le32 *filter_flags = &priv->staging39_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08006487
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006488 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6489 changed_flags, *total_flags);
6490
6491 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6492 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6493 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6494 else
6495 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar5ec03972008-05-05 10:22:48 +08006496 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08006497 if (changed_flags & FIF_ALLMULTI) {
6498 if (*total_flags & FIF_ALLMULTI)
6499 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6500 else
6501 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6502 }
6503 if (changed_flags & FIF_CONTROL) {
6504 if (*total_flags & FIF_CONTROL)
6505 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6506 else
6507 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6508 }
6509 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6510 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6511 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6512 else
6513 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6514 }
6515
6516 /* We avoid iwl_commit_rxon here to commit the new filter flags
6517 * since mac80211 will call ieee80211_hw_config immediately.
6518 * (mc_list is not supported at this time). Otherwise, we need to
6519 * queue a background iwl_commit_rxon work.
6520 */
6521
6522 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08006523 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04006524}
6525
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006526static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006527 struct ieee80211_if_init_conf *conf)
6528{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006529 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006530
6531 IWL_DEBUG_MAC80211("enter\n");
6532
6533 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006534
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006535 if (iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006536 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006537 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Mohamed Abbasfde35712007-11-29 11:10:15 +08006538 iwl3945_commit_rxon(priv);
6539 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006540 if (priv->vif == conf->vif) {
6541 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006542 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07006543 }
6544 mutex_unlock(&priv->mutex);
6545
6546 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006547}
6548
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006549#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6550
6551static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6552 struct ieee80211_vif *vif,
6553 struct ieee80211_bss_conf *bss_conf,
6554 u32 changes)
6555{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006556 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006557
6558 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6559
6560 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6561 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6562 bss_conf->use_short_preamble);
6563 if (bss_conf->use_short_preamble)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006564 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006565 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006566 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006567 }
6568
6569 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6570 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6571 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006572 priv->staging39_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006573 else
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006574 priv->staging39_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006575 }
6576
6577 if (changes & BSS_CHANGED_ASSOC) {
6578 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6579 /* This should never happen as this function should
6580 * never be called from interrupt context. */
6581 if (WARN_ON_ONCE(in_interrupt()))
6582 return;
6583 if (bss_conf->assoc) {
6584 priv->assoc_id = bss_conf->aid;
6585 priv->beacon_int = bss_conf->beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006586 priv->timestamp = bss_conf->timestamp;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08006587 priv->assoc_capability = bss_conf->assoc_capability;
6588 priv->next_scan_jiffies = jiffies +
6589 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6590 mutex_lock(&priv->mutex);
6591 iwl3945_post_associate(priv);
6592 mutex_unlock(&priv->mutex);
6593 } else {
6594 priv->assoc_id = 0;
6595 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6596 }
6597 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6598 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6599 iwl3945_send_rxon_assoc(priv);
6600 }
6601
6602}
6603
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006604static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006605{
6606 int rc = 0;
6607 unsigned long flags;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006608 struct iwl_priv *priv = hw->priv;
John W. Linville9387b7c2008-09-30 20:59:05 -04006609 DECLARE_SSID_BUF(ssid_buf);
Zhu Yib481de92007-09-25 17:54:57 -07006610
6611 IWL_DEBUG_MAC80211("enter\n");
6612
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006613 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006614 spin_lock_irqsave(&priv->lock, flags);
6615
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006616 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006617 rc = -EIO;
6618 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6619 goto out_unlock;
6620 }
6621
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006622 /* we don't schedule scan within next_scan_jiffies period */
6623 if (priv->next_scan_jiffies &&
6624 time_after(priv->next_scan_jiffies, jiffies)) {
6625 rc = -EAGAIN;
6626 goto out_unlock;
6627 }
Bill Moss15dbf1b2008-05-06 11:05:15 +08006628 /* if we just finished scan ask for delay for a broadcast scan */
6629 if ((len == 0) && priv->last_scan_jiffies &&
6630 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6631 jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006632 rc = -EAGAIN;
6633 goto out_unlock;
6634 }
6635 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006636 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
John W. Linville9387b7c2008-09-30 20:59:05 -04006637 print_ssid(ssid_buf, ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006638
6639 priv->one_direct_scan = 1;
6640 priv->direct_ssid_len = (u8)
6641 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6642 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08006643 } else
6644 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006645
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006646 rc = iwl3945_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006647
6648 IWL_DEBUG_MAC80211("leave\n");
6649
6650out_unlock:
6651 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006652 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006653
6654 return rc;
6655}
6656
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006657static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07006658 const u8 *local_addr, const u8 *addr,
6659 struct ieee80211_key_conf *key)
6660{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006661 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006662 int rc = 0;
6663 u8 sta_id;
6664
6665 IWL_DEBUG_MAC80211("enter\n");
6666
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08006667 if (iwl3945_mod_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07006668 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
6669 return -EOPNOTSUPP;
6670 }
6671
6672 if (is_zero_ether_addr(addr))
6673 /* only support pairwise keys */
6674 return -EOPNOTSUPP;
6675
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006676 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07006677 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07006678 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
6679 addr);
Zhu Yib481de92007-09-25 17:54:57 -07006680 return -EINVAL;
6681 }
6682
6683 mutex_lock(&priv->mutex);
6684
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006685 iwl3945_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006686
Zhu Yib481de92007-09-25 17:54:57 -07006687 switch (cmd) {
6688 case SET_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006689 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006690 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006691 iwl3945_set_rxon_hwcrypto(priv, 1);
6692 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006693 key->hw_key_idx = sta_id;
6694 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
6695 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
6696 }
6697 break;
6698 case DISABLE_KEY:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006699 rc = iwl3945_clear_sta_key_info(priv, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07006700 if (!rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006701 iwl3945_set_rxon_hwcrypto(priv, 0);
6702 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006703 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
6704 }
6705 break;
6706 default:
6707 rc = -EINVAL;
6708 }
6709
6710 IWL_DEBUG_MAC80211("leave\n");
6711 mutex_unlock(&priv->mutex);
6712
6713 return rc;
6714}
6715
Johannes Berge100bb62008-04-30 18:51:21 +02006716static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07006717 const struct ieee80211_tx_queue_params *params)
6718{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006719 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006720 unsigned long flags;
6721 int q;
Zhu Yib481de92007-09-25 17:54:57 -07006722
6723 IWL_DEBUG_MAC80211("enter\n");
6724
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006725 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006726 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6727 return -EIO;
6728 }
6729
6730 if (queue >= AC_NUM) {
6731 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
6732 return 0;
6733 }
6734
Zhu Yib481de92007-09-25 17:54:57 -07006735 q = AC_NUM - 1 - queue;
6736
6737 spin_lock_irqsave(&priv->lock, flags);
6738
6739 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
6740 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
6741 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
6742 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01006743 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07006744
6745 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
6746 priv->qos_data.qos_active = 1;
6747
6748 spin_unlock_irqrestore(&priv->lock, flags);
6749
6750 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02006751 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006752 iwl3945_activate_qos(priv, 1);
6753 else if (priv->assoc_id && iwl3945_is_associated(priv))
6754 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006755
6756 mutex_unlock(&priv->mutex);
6757
Zhu Yib481de92007-09-25 17:54:57 -07006758 IWL_DEBUG_MAC80211("leave\n");
6759 return 0;
6760}
6761
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006762static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006763 struct ieee80211_tx_queue_stats *stats)
6764{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006765 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006766 int i, avail;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006767 struct iwl_tx_queue *txq;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006768 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07006769 unsigned long flags;
6770
6771 IWL_DEBUG_MAC80211("enter\n");
6772
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006773 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006774 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6775 return -EIO;
6776 }
6777
6778 spin_lock_irqsave(&priv->lock, flags);
6779
6780 for (i = 0; i < AC_NUM; i++) {
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08006781 txq = &priv->txq[i];
Zhu Yib481de92007-09-25 17:54:57 -07006782 q = &txq->q;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08006783 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07006784
Johannes Berg57ffc582008-04-29 17:18:59 +02006785 stats[i].len = q->n_window - avail;
6786 stats[i].limit = q->n_window - q->high_mark;
6787 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07006788
6789 }
6790 spin_unlock_irqrestore(&priv->lock, flags);
6791
6792 IWL_DEBUG_MAC80211("leave\n");
6793
6794 return 0;
6795}
6796
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006797static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006798{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006799 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006800 unsigned long flags;
6801
6802 mutex_lock(&priv->mutex);
6803 IWL_DEBUG_MAC80211("enter\n");
6804
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006805 iwl_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006806
Zhu Yib481de92007-09-25 17:54:57 -07006807 spin_lock_irqsave(&priv->lock, flags);
6808 priv->assoc_id = 0;
6809 priv->assoc_capability = 0;
6810 priv->call_post_assoc_from_beacon = 0;
6811
6812 /* new association get rid of ibss beacon skb */
6813 if (priv->ibss_beacon)
6814 dev_kfree_skb(priv->ibss_beacon);
6815
6816 priv->ibss_beacon = NULL;
6817
6818 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08006819 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02006820 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07006821 priv->beacon_int = 0;
6822
6823 spin_unlock_irqrestore(&priv->lock, flags);
6824
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006825 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006826 IWL_DEBUG_MAC80211("leave - not ready\n");
6827 mutex_unlock(&priv->mutex);
6828 return;
6829 }
6830
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006831 /* we are restarting association process
6832 * clear RXON_FILTER_ASSOC_MSK bit
6833 */
Johannes Berg05c914f2008-09-11 00:01:58 +02006834 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006835 iwl3945_scan_cancel_timeout(priv, 100);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006836 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006837 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006838 }
6839
Zhu Yib481de92007-09-25 17:54:57 -07006840 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02006841 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08006842
Zhu Yib481de92007-09-25 17:54:57 -07006843 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
6844 mutex_unlock(&priv->mutex);
6845 return;
6846 }
6847
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006848 iwl3945_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006849
6850 mutex_unlock(&priv->mutex);
6851
6852 IWL_DEBUG_MAC80211("leave\n");
6853
6854}
6855
Johannes Berge039fa42008-05-15 12:55:29 +02006856static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07006857{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006858 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006859 unsigned long flags;
6860
Zhu Yib481de92007-09-25 17:54:57 -07006861 IWL_DEBUG_MAC80211("enter\n");
6862
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006863 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006864 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07006865 return -EIO;
6866 }
6867
Johannes Berg05c914f2008-09-11 00:01:58 +02006868 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07006869 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07006870 return -EIO;
6871 }
6872
6873 spin_lock_irqsave(&priv->lock, flags);
6874
6875 if (priv->ibss_beacon)
6876 dev_kfree_skb(priv->ibss_beacon);
6877
6878 priv->ibss_beacon = skb;
6879
6880 priv->assoc_id = 0;
6881
6882 IWL_DEBUG_MAC80211("leave\n");
6883 spin_unlock_irqrestore(&priv->lock, flags);
6884
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006885 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006886
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08006887 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006888
Zhu Yib481de92007-09-25 17:54:57 -07006889
6890 return 0;
6891}
6892
6893/*****************************************************************************
6894 *
6895 * sysfs attributes
6896 *
6897 *****************************************************************************/
6898
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006899#ifdef CONFIG_IWL3945_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07006900
6901/*
6902 * The following adds a new attribute to the sysfs representation
6903 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
6904 * used for controlling the debug level.
6905 *
6906 * See the level definitions in iwl for details.
6907 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006908static ssize_t show_debug_level(struct device *d,
6909 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07006910{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006911 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006912
6913 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006914}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006915static ssize_t store_debug_level(struct device *d,
6916 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07006917 const char *buf, size_t count)
6918{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006919 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006920 unsigned long val;
6921 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006922
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006923 ret = strict_strtoul(buf, 0, &val);
6924 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08006925 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006926 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006927 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07006928
6929 return strnlen(buf, count);
6930}
6931
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08006932static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
6933 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006934
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006935#endif /* CONFIG_IWL3945_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07006936
Zhu Yib481de92007-09-25 17:54:57 -07006937static ssize_t show_temperature(struct device *d,
6938 struct device_attribute *attr, char *buf)
6939{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006940 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006941
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08006942 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006943 return -EAGAIN;
6944
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006945 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07006946}
6947
6948static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
6949
Zhu Yib481de92007-09-25 17:54:57 -07006950static ssize_t show_tx_power(struct device *d,
6951 struct device_attribute *attr, char *buf)
6952{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006953 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006954 return sprintf(buf, "%d\n", priv->user_txpower_limit);
6955}
6956
6957static ssize_t store_tx_power(struct device *d,
6958 struct device_attribute *attr,
6959 const char *buf, size_t count)
6960{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006961 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006962 char *p = (char *)buf;
6963 u32 val;
6964
6965 val = simple_strtoul(p, &p, 10);
6966 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08006967 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07006968 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006969 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07006970
6971 return count;
6972}
6973
6974static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
6975
6976static ssize_t show_flags(struct device *d,
6977 struct device_attribute *attr, char *buf)
6978{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006979 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006980
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006981 return sprintf(buf, "0x%04X\n", priv->active39_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07006982}
6983
6984static ssize_t store_flags(struct device *d,
6985 struct device_attribute *attr,
6986 const char *buf, size_t count)
6987{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08006988 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006989 u32 flags = simple_strtoul(buf, NULL, 0);
6990
6991 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006992 if (le32_to_cpu(priv->staging39_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07006993 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006994 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08006995 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07006996 else {
6997 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
6998 flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08006999 priv->staging39_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007000 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007001 }
7002 }
7003 mutex_unlock(&priv->mutex);
7004
7005 return count;
7006}
7007
7008static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7009
7010static ssize_t show_filter_flags(struct device *d,
7011 struct device_attribute *attr, char *buf)
7012{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007013 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007014
7015 return sprintf(buf, "0x%04X\n",
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007016 le32_to_cpu(priv->active39_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07007017}
7018
7019static ssize_t store_filter_flags(struct device *d,
7020 struct device_attribute *attr,
7021 const char *buf, size_t count)
7022{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007023 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007024 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7025
7026 mutex_lock(&priv->mutex);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007027 if (le32_to_cpu(priv->staging39_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07007028 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007029 if (iwl3945_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08007030 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07007031 else {
7032 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7033 "0x%04X\n", filter_flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007034 priv->staging39_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07007035 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007036 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007037 }
7038 }
7039 mutex_unlock(&priv->mutex);
7040
7041 return count;
7042}
7043
7044static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7045 store_filter_flags);
7046
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007047#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007048
7049static ssize_t show_measurement(struct device *d,
7050 struct device_attribute *attr, char *buf)
7051{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007052 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08007053 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007054 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007055 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007056 unsigned long flags;
7057
7058 spin_lock_irqsave(&priv->lock, flags);
7059 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7060 spin_unlock_irqrestore(&priv->lock, flags);
7061 return 0;
7062 }
7063 memcpy(&measure_report, &priv->measure_report, size);
7064 priv->measurement_status = 0;
7065 spin_unlock_irqrestore(&priv->lock, flags);
7066
7067 while (size && (PAGE_SIZE - len)) {
7068 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7069 PAGE_SIZE - len, 1);
7070 len = strlen(buf);
7071 if (PAGE_SIZE - len)
7072 buf[len++] = '\n';
7073
7074 ofs += 16;
7075 size -= min(size, 16U);
7076 }
7077
7078 return len;
7079}
7080
7081static ssize_t store_measurement(struct device *d,
7082 struct device_attribute *attr,
7083 const char *buf, size_t count)
7084{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007085 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007086 struct ieee80211_measurement_params params = {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007087 .channel = le16_to_cpu(priv->active39_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07007088 .start_time = cpu_to_le64(priv->last_tsf),
7089 .duration = cpu_to_le16(1),
7090 };
7091 u8 type = IWL_MEASURE_BASIC;
7092 u8 buffer[32];
7093 u8 channel;
7094
7095 if (count) {
7096 char *p = buffer;
7097 strncpy(buffer, buf, min(sizeof(buffer), count));
7098 channel = simple_strtoul(p, NULL, 0);
7099 if (channel)
7100 params.channel = channel;
7101
7102 p = buffer;
7103 while (*p && *p != ' ')
7104 p++;
7105 if (*p)
7106 type = simple_strtoul(p + 1, NULL, 0);
7107 }
7108
7109 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7110 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007111 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007112
7113 return count;
7114}
7115
7116static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7117 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007118#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007119
Zhu Yib481de92007-09-25 17:54:57 -07007120static ssize_t store_retry_rate(struct device *d,
7121 struct device_attribute *attr,
7122 const char *buf, size_t count)
7123{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007124 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007125
7126 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7127 if (priv->retry_rate <= 0)
7128 priv->retry_rate = 1;
7129
7130 return count;
7131}
7132
7133static ssize_t show_retry_rate(struct device *d,
7134 struct device_attribute *attr, char *buf)
7135{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007136 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007137 return sprintf(buf, "%d", priv->retry_rate);
7138}
7139
7140static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7141 store_retry_rate);
7142
7143static ssize_t store_power_level(struct device *d,
7144 struct device_attribute *attr,
7145 const char *buf, size_t count)
7146{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007147 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007148 int rc;
7149 int mode;
7150
7151 mode = simple_strtoul(buf, NULL, 0);
7152 mutex_lock(&priv->mutex);
7153
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007154 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007155 rc = -EAGAIN;
7156 goto out;
7157 }
7158
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007159 if ((mode < 1) || (mode > IWL39_POWER_LIMIT) ||
7160 (mode == IWL39_POWER_AC))
7161 mode = IWL39_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07007162 else
7163 mode |= IWL_POWER_ENABLED;
7164
7165 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007166 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007167 if (rc) {
7168 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7169 goto out;
7170 }
7171 priv->power_mode = mode;
7172 }
7173
7174 rc = count;
7175
7176 out:
7177 mutex_unlock(&priv->mutex);
7178 return rc;
7179}
7180
7181#define MAX_WX_STRING 80
7182
7183/* Values are in microsecond */
7184static const s32 timeout_duration[] = {
7185 350000,
7186 250000,
7187 75000,
7188 37000,
7189 25000,
7190};
7191static const s32 period_duration[] = {
7192 400000,
7193 700000,
7194 1000000,
7195 1000000,
7196 1000000
7197};
7198
7199static ssize_t show_power_level(struct device *d,
7200 struct device_attribute *attr, char *buf)
7201{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007202 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007203 int level = IWL_POWER_LEVEL(priv->power_mode);
7204 char *p = buf;
7205
7206 p += sprintf(p, "%d ", level);
7207 switch (level) {
7208 case IWL_POWER_MODE_CAM:
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007209 case IWL39_POWER_AC:
Zhu Yib481de92007-09-25 17:54:57 -07007210 p += sprintf(p, "(AC)");
7211 break;
Samuel Ortiz1125eff2008-12-19 10:37:14 +08007212 case IWL39_POWER_BATTERY:
Zhu Yib481de92007-09-25 17:54:57 -07007213 p += sprintf(p, "(BATTERY)");
7214 break;
7215 default:
7216 p += sprintf(p,
7217 "(Timeout %dms, Period %dms)",
7218 timeout_duration[level - 1] / 1000,
7219 period_duration[level - 1] / 1000);
7220 }
7221
7222 if (!(priv->power_mode & IWL_POWER_ENABLED))
7223 p += sprintf(p, " OFF\n");
7224 else
7225 p += sprintf(p, " \n");
7226
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007227 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07007228
7229}
7230
7231static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7232 store_power_level);
7233
7234static ssize_t show_channels(struct device *d,
7235 struct device_attribute *attr, char *buf)
7236{
Johannes Berg8318d782008-01-24 19:38:38 +01007237 /* all this shit doesn't belong into sysfs anyway */
7238 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007239}
7240
7241static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7242
7243static ssize_t show_statistics(struct device *d,
7244 struct device_attribute *attr, char *buf)
7245{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007246 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007247 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007248 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007249 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07007250 int rc = 0;
7251
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007252 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007253 return -EAGAIN;
7254
7255 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007256 rc = iwl3945_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007257 mutex_unlock(&priv->mutex);
7258
7259 if (rc) {
7260 len = sprintf(buf,
7261 "Error sending statistics request: 0x%08X\n", rc);
7262 return len;
7263 }
7264
7265 while (size && (PAGE_SIZE - len)) {
7266 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7267 PAGE_SIZE - len, 1);
7268 len = strlen(buf);
7269 if (PAGE_SIZE - len)
7270 buf[len++] = '\n';
7271
7272 ofs += 16;
7273 size -= min(size, 16U);
7274 }
7275
7276 return len;
7277}
7278
7279static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7280
7281static ssize_t show_antenna(struct device *d,
7282 struct device_attribute *attr, char *buf)
7283{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007284 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007285
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007286 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007287 return -EAGAIN;
7288
7289 return sprintf(buf, "%d\n", priv->antenna);
7290}
7291
7292static ssize_t store_antenna(struct device *d,
7293 struct device_attribute *attr,
7294 const char *buf, size_t count)
7295{
7296 int ant;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007297 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007298
7299 if (count == 0)
7300 return 0;
7301
7302 if (sscanf(buf, "%1i", &ant) != 1) {
7303 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7304 return count;
7305 }
7306
7307 if ((ant >= 0) && (ant <= 2)) {
7308 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007309 priv->antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007310 } else
7311 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7312
7313
7314 return count;
7315}
7316
7317static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7318
7319static ssize_t show_status(struct device *d,
7320 struct device_attribute *attr, char *buf)
7321{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007322 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007323 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007324 return -EAGAIN;
7325 return sprintf(buf, "0x%08x\n", (int)priv->status);
7326}
7327
7328static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7329
7330static ssize_t dump_error_log(struct device *d,
7331 struct device_attribute *attr,
7332 const char *buf, size_t count)
7333{
7334 char *p = (char *)buf;
7335
7336 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007337 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007338
7339 return strnlen(buf, count);
7340}
7341
7342static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7343
7344static ssize_t dump_event_log(struct device *d,
7345 struct device_attribute *attr,
7346 const char *buf, size_t count)
7347{
7348 char *p = (char *)buf;
7349
7350 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007351 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007352
7353 return strnlen(buf, count);
7354}
7355
7356static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7357
7358/*****************************************************************************
7359 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07007360 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07007361 *
7362 *****************************************************************************/
7363
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007364static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007365{
7366 priv->workqueue = create_workqueue(DRV_NAME);
7367
7368 init_waitqueue_head(&priv->wait_command_queue);
7369
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007370 INIT_WORK(&priv->up, iwl3945_bg_up);
7371 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7372 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7373 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7374 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7375 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7376 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7377 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007378 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7379 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7380 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007381
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007382 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007383
7384 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007385 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007386}
7387
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007388static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007389{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007390 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007391
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09007392 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007393 cancel_delayed_work(&priv->scan_check);
7394 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007395 cancel_work_sync(&priv->beacon_update);
7396}
7397
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007398static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007399 &dev_attr_antenna.attr,
7400 &dev_attr_channels.attr,
7401 &dev_attr_dump_errors.attr,
7402 &dev_attr_dump_events.attr,
7403 &dev_attr_flags.attr,
7404 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007405#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007406 &dev_attr_measurement.attr,
7407#endif
7408 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007409 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007410 &dev_attr_statistics.attr,
7411 &dev_attr_status.attr,
7412 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007413 &dev_attr_tx_power.attr,
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007414#ifdef CONFIG_IWL3945_DEBUG
7415 &dev_attr_debug_level.attr,
7416#endif
Zhu Yib481de92007-09-25 17:54:57 -07007417 NULL
7418};
7419
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007420static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007421 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007422 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007423};
7424
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007425static struct ieee80211_ops iwl3945_hw_ops = {
7426 .tx = iwl3945_mac_tx,
7427 .start = iwl3945_mac_start,
7428 .stop = iwl3945_mac_stop,
7429 .add_interface = iwl3945_mac_add_interface,
7430 .remove_interface = iwl3945_mac_remove_interface,
7431 .config = iwl3945_mac_config,
7432 .config_interface = iwl3945_mac_config_interface,
7433 .configure_filter = iwl3945_configure_filter,
7434 .set_key = iwl3945_mac_set_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007435 .get_tx_stats = iwl3945_mac_get_tx_stats,
7436 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007437 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08007438 .bss_info_changed = iwl3945_bss_info_changed,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007439 .hw_scan = iwl3945_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007440};
7441
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007442int iwl3945_init_drv(struct iwl_priv *priv)
7443{
7444 int ret;
7445
7446 priv->retry_rate = 1;
7447 priv->ibss_beacon = NULL;
7448
7449 spin_lock_init(&priv->lock);
7450 spin_lock_init(&priv->power_data.lock);
7451 spin_lock_init(&priv->sta_lock);
7452 spin_lock_init(&priv->hcmd_lock);
7453
7454 INIT_LIST_HEAD(&priv->free_frames);
7455
7456 mutex_init(&priv->mutex);
7457
7458 /* Clear the driver's (not device's) station table */
7459 iwl3945_clear_stations_table(priv);
7460
7461 priv->data_retry_limit = -1;
7462 priv->ieee_channels = NULL;
7463 priv->ieee_rates = NULL;
7464 priv->band = IEEE80211_BAND_2GHZ;
7465
7466 priv->iw_mode = NL80211_IFTYPE_STATION;
7467
7468 iwl_reset_qos(priv);
7469
7470 priv->qos_data.qos_active = 0;
7471 priv->qos_data.qos_cap.val = 0;
7472
7473 priv->rates_mask = IWL_RATES_MASK;
7474 /* If power management is turned on, default to AC mode */
7475 priv->power_mode = IWL_POWER_AC;
7476 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7477
7478 ret = iwl3945_init_channel_map(priv);
7479 if (ret) {
7480 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
7481 goto err;
7482 }
7483
7484 ret = iwl3945_init_geos(priv);
7485 if (ret) {
7486 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
7487 goto err_free_channel_map;
7488 }
7489
7490 return 0;
7491
7492err_free_channel_map:
7493 iwl3945_free_channel_map(priv);
7494err:
7495 return ret;
7496}
7497
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007498static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007499{
7500 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007501 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007502 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08007503 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007504 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007505
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007506 /***********************
7507 * 1. Allocating HW data
7508 * ********************/
7509
Zhu Yib481de92007-09-25 17:54:57 -07007510 /* mac80211 allocates memory for this device instance, including
7511 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007512 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07007513 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007514 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07007515 err = -ENOMEM;
7516 goto out;
7517 }
Zhu Yib481de92007-09-25 17:54:57 -07007518 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007519 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007520
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007521 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
7522 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007523 IWL_ERR(priv,
7524 "invalid queues_num, should be between %d and %d\n",
7525 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08007526 err = -EINVAL;
7527 goto out;
7528 }
7529
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007530 /*
7531 * Disabling hardware scan means that mac80211 will perform scans
7532 * "the hard way", rather than using device's scan.
7533 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007534 if (iwl3945_mod_params.disable_hw_scan) {
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08007535 IWL_DEBUG_INFO("Disabling hw_scan\n");
7536 iwl3945_hw_ops.hw_scan = NULL;
7537 }
7538
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007539
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007540 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007541 priv->cfg = cfg;
7542 priv->pci_dev = pdev;
7543
7544#ifdef CONFIG_IWL3945_DEBUG
7545 priv->debug_level = iwl3945_mod_params.debug;
7546 atomic_set(&priv->restrict_refcnt, 0);
7547#endif
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007548 hw->rate_control_algorithm = "iwl-3945-rs";
7549 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7550
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007551 /* Select antenna (may be helpful if only one antenna is connected) */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007552 priv->antenna = (enum iwl3945_antenna)iwl3945_mod_params.antenna;
Zhu Yib481de92007-09-25 17:54:57 -07007553
Bruno Randolf566bfe52008-05-08 19:15:40 +02007554 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02007555 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02007556 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07007557
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007558 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07007559 BIT(NL80211_IFTYPE_STATION) |
7560 BIT(NL80211_IFTYPE_ADHOC);
7561
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08007562 hw->wiphy->fw_handles_regulatory = true;
7563
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007564 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07007565 hw->queues = 4;
7566
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007567 /***************************
7568 * 2. Initializing PCI bus
7569 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07007570 if (pci_enable_device(pdev)) {
7571 err = -ENODEV;
7572 goto out_ieee80211_free_hw;
7573 }
7574
7575 pci_set_master(pdev);
7576
Zhu Yib481de92007-09-25 17:54:57 -07007577 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7578 if (!err)
7579 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7580 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08007581 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07007582 goto out_pci_disable_device;
7583 }
7584
7585 pci_set_drvdata(pdev, priv);
7586 err = pci_request_regions(pdev, DRV_NAME);
7587 if (err)
7588 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08007589
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007590 /***********************
7591 * 3. Read REV Register
7592 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07007593 priv->hw_base = pci_iomap(pdev, 0, 0);
7594 if (!priv->hw_base) {
7595 err = -ENODEV;
7596 goto out_pci_release_regions;
7597 }
7598
7599 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7600 (unsigned long long) pci_resource_len(pdev, 0));
7601 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7602
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007603 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7604 * PCI Tx retries from interfering with C3 CPU state */
7605 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07007606
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007607 /* amp init */
7608 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007609 if (err < 0) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007610 IWL_DEBUG_INFO("Failed to init APMG\n");
7611 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03007612 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007613
7614 /***********************
7615 * 4. Read EEPROM
7616 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007617
Zhu Yi5a669262008-01-14 17:46:18 -08007618 /* Read the EEPROM */
7619 err = iwl3945_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007620 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007621 IWL_ERR(priv, "Unable to init EEPROM\n");
Zhu Yi5a669262008-01-14 17:46:18 -08007622 goto out_remove_sysfs;
7623 }
7624 /* MAC Address location in EEPROM same for 3945/4965 */
7625 get_eeprom_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07007626 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a669262008-01-14 17:46:18 -08007627 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7628
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007629 /***********************
7630 * 5. Setup HW Constants
7631 * ********************/
7632 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007633 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007634 IWL_ERR(priv, "failed to set hw settings\n");
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007635 goto out_iounmap;
7636 }
7637
7638 /***********************
7639 * 6. Setup priv
7640 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007641
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007642 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007643 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007644 IWL_ERR(priv, "initializing driver failed\n");
7645 goto out_free_geos;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007646 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007647
Tomas Winkler978785a2008-12-19 10:37:31 +08007648 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
7649 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007650
7651 /***********************************
7652 * 7. Initialize Module Parameters
7653 * **********************************/
7654
7655 /* Initialize module parameter values here */
7656 /* Disable radio (SW RF KILL) via parameter when loading driver */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007657 if (iwl3945_mod_params.disable) {
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007658 set_bit(STATUS_RF_KILL_SW, &priv->status);
7659 IWL_DEBUG_INFO("Radio disabled.\n");
7660 }
7661
7662
7663 /***********************
7664 * 8. Setup Services
7665 * ********************/
7666
7667 spin_lock_irqsave(&priv->lock, flags);
7668 iwl3945_disable_interrupts(priv);
7669 spin_unlock_irqrestore(&priv->lock, flags);
7670
7671 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7672 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007673 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08007674 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007675 }
7676
7677 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
7678 iwl3945_setup_deferred_work(priv);
7679 iwl3945_setup_rx_handlers(priv);
7680
7681 /***********************
7682 * 9. Conclude
7683 * ********************/
7684 pci_save_state(pdev);
7685 pci_disable_device(pdev);
7686
7687 /*********************************
7688 * 10. Setup and Register mac80211
7689 * *******************************/
7690
Zhu Yi5a669262008-01-14 17:46:18 -08007691 err = ieee80211_register_hw(priv->hw);
7692 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007693 IWL_ERR(priv, "Failed to register network device: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007694 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07007695 }
7696
Zhu Yi5a669262008-01-14 17:46:18 -08007697 priv->hw->conf.beacon_int = 100;
7698 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007699
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007700 err = iwl3945_rfkill_init(priv);
7701 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08007702 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007703 "Ignoring error: %d\n", err);
7704
Zhu Yib481de92007-09-25 17:54:57 -07007705 return 0;
7706
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08007707 out_remove_sysfs:
7708 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007709 out_free_geos:
7710 iwl3945_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007711
7712 out_release_irq:
Zhu Yib481de92007-09-25 17:54:57 -07007713 destroy_workqueue(priv->workqueue);
7714 priv->workqueue = NULL;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007715 iwl3945_unset_hw_params(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007716
7717 out_iounmap:
7718 pci_iounmap(pdev, priv->hw_base);
7719 out_pci_release_regions:
7720 pci_release_regions(pdev);
7721 out_pci_disable_device:
7722 pci_disable_device(pdev);
7723 pci_set_drvdata(pdev, NULL);
7724 out_ieee80211_free_hw:
7725 ieee80211_free_hw(priv->hw);
7726 out:
7727 return err;
7728}
7729
Reinette Chatrec83dbf62008-03-21 13:53:41 -07007730static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007731{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007732 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007733 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07007734
7735 if (!priv)
7736 return;
7737
7738 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
7739
Zhu Yib481de92007-09-25 17:54:57 -07007740 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08007741
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08007742 if (priv->mac80211_registered) {
7743 ieee80211_unregister_hw(priv->hw);
7744 priv->mac80211_registered = 0;
7745 } else {
7746 iwl3945_down(priv);
7747 }
Zhu Yib481de92007-09-25 17:54:57 -07007748
Mohamed Abbas0359fac2008-03-28 16:21:08 -07007749 /* make sure we flush any pending irq or
7750 * tasklet for the driver
7751 */
7752 spin_lock_irqsave(&priv->lock, flags);
7753 iwl3945_disable_interrupts(priv);
7754 spin_unlock_irqrestore(&priv->lock, flags);
7755
7756 iwl_synchronize_irq(priv);
7757
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007758 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07007759
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007760 iwl3945_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007761 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007762
7763 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007764 iwl3945_rx_queue_free(priv, &priv->rxq);
7765 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007766
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08007767 iwl3945_unset_hw_params(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007768 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007769
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08007770 /*netif_stop_queue(dev); */
7771 flush_workqueue(priv->workqueue);
7772
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007773 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07007774 * priv->workqueue... so we can't take down the workqueue
7775 * until now... */
7776 destroy_workqueue(priv->workqueue);
7777 priv->workqueue = NULL;
7778
Zhu Yib481de92007-09-25 17:54:57 -07007779 pci_iounmap(pdev, priv->hw_base);
7780 pci_release_regions(pdev);
7781 pci_disable_device(pdev);
7782 pci_set_drvdata(pdev, NULL);
7783
Reinette Chatre849e0dc2008-01-23 10:15:18 -08007784 iwl3945_free_channel_map(priv);
7785 iwl3945_free_geos(priv);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08007786 kfree(priv->scan39);
Zhu Yib481de92007-09-25 17:54:57 -07007787 if (priv->ibss_beacon)
7788 dev_kfree_skb(priv->ibss_beacon);
7789
7790 ieee80211_free_hw(priv->hw);
7791}
7792
7793#ifdef CONFIG_PM
7794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007795static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07007796{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007797 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007798
Zhu Yie655b9f2008-01-24 02:19:38 -08007799 if (priv->is_open) {
7800 set_bit(STATUS_IN_SUSPEND, &priv->status);
7801 iwl3945_mac_stop(priv->hw);
7802 priv->is_open = 1;
7803 }
Zhu Yib481de92007-09-25 17:54:57 -07007804
Zhu Yib481de92007-09-25 17:54:57 -07007805 pci_set_power_state(pdev, PCI_D3hot);
7806
Zhu Yib481de92007-09-25 17:54:57 -07007807 return 0;
7808}
7809
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007810static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07007811{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007812 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07007813
Zhu Yib481de92007-09-25 17:54:57 -07007814 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07007815
Zhu Yie655b9f2008-01-24 02:19:38 -08007816 if (priv->is_open)
7817 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07007818
Zhu Yie655b9f2008-01-24 02:19:38 -08007819 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07007820 return 0;
7821}
7822
7823#endif /* CONFIG_PM */
7824
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007825/*************** RFKILL FUNCTIONS **********/
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007826#ifdef CONFIG_IWL3945_RFKILL
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007827/* software rf-kill from user */
7828static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
7829{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007830 struct iwl_priv *priv = data;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007831 int err = 0;
7832
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007833 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007834 return 0;
7835
7836 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
7837 return 0;
7838
Tomas Winklera96a27f2008-10-23 23:48:56 -07007839 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007840 mutex_lock(&priv->mutex);
7841
7842 switch (state) {
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007843 case RFKILL_STATE_UNBLOCKED:
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007844 if (iwl_is_rfkill_hw(priv)) {
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007845 err = -EBUSY;
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007846 goto out_unlock;
7847 }
7848 iwl3945_radio_kill_sw(priv, 0);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007849 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007850 case RFKILL_STATE_SOFT_BLOCKED:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007851 iwl3945_radio_kill_sw(priv, 1);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007852 break;
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007853 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +08007854 IWL_WARN(priv, "received unexpected RFKILL state %d\n", state);
Zhu Yiacdfe9b2008-06-30 17:23:32 +08007855 break;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007856 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007857out_unlock:
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007858 mutex_unlock(&priv->mutex);
7859
7860 return err;
7861}
7862
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007863int iwl3945_rfkill_init(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007864{
7865 struct device *device = wiphy_dev(priv->hw->wiphy);
7866 int ret = 0;
7867
7868 BUG_ON(device == NULL);
7869
7870 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007871 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
7872 if (!priv->rfkill) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007873 IWL_ERR(priv, "Unable to allocate rfkill device.\n");
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007874 ret = -ENOMEM;
7875 goto error;
7876 }
7877
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007878 priv->rfkill->name = priv->cfg->name;
7879 priv->rfkill->data = priv;
7880 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
7881 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
7882 priv->rfkill->user_claim_unsupported = 1;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007883
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007884 priv->rfkill->dev.class->suspend = NULL;
7885 priv->rfkill->dev.class->resume = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007886
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007887 ret = rfkill_register(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007888 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08007889 IWL_ERR(priv, "Unable to register rfkill: %d\n", ret);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007890 goto freed_rfkill;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007891 }
7892
7893 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7894 return ret;
7895
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007896freed_rfkill:
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007897 if (priv->rfkill != NULL)
7898 rfkill_free(priv->rfkill);
7899 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007900
7901error:
7902 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7903 return ret;
7904}
7905
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007906void iwl3945_rfkill_unregister(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007907{
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007908 if (priv->rfkill)
7909 rfkill_unregister(priv->rfkill);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007910
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007911 priv->rfkill = NULL;
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007912}
7913
7914/* set rf-kill to the right state. */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08007915void iwl3945_rfkill_set_hw_state(struct iwl_priv *priv)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007916{
7917
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007918 if (!priv->rfkill)
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007919 return;
7920
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007921 if (iwl_is_rfkill_hw(priv)) {
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007922 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
7923 return;
7924 }
7925
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08007926 if (!iwl_is_rfkill_sw(priv))
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007927 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007928 else
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02007929 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08007930}
7931#endif
7932
Zhu Yib481de92007-09-25 17:54:57 -07007933/*****************************************************************************
7934 *
7935 * driver and module entry point
7936 *
7937 *****************************************************************************/
7938
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007939static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07007940 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007941 .id_table = iwl3945_hw_card_ids,
7942 .probe = iwl3945_pci_probe,
7943 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07007944#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007945 .suspend = iwl3945_pci_suspend,
7946 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07007947#endif
7948};
7949
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007950static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07007951{
7952
7953 int ret;
7954 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
7955 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007956
7957 ret = iwl3945_rate_control_register();
7958 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007959 printk(KERN_ERR DRV_NAME
7960 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007961 return ret;
7962 }
7963
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007964 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07007965 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08007966 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007967 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07007968 }
Zhu Yib481de92007-09-25 17:54:57 -07007969
7970 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007971
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007972error_register:
7973 iwl3945_rate_control_unregister();
7974 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07007975}
7976
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007977static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07007978{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007979 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007980 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07007981}
7982
Reinette Chatrea0987a82008-12-02 12:14:06 -08007983MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08007984
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007985module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007986MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007987module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007988MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007989module_param_named(hwcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007990MODULE_PARM_DESC(hwcrypto,
7991 "using hardware crypto engine (default 0 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007992module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007993MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007994module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007995MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
7996
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08007997module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07007998MODULE_PARM_DESC(queues_num, "number of hw queues.");
7999
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008000module_exit(iwl3945_exit);
8001module_init(iwl3945_init);