blob: 0500e8006a147daf7981b7c502ca9f84b3c731f0 [file] [log] [blame]
James Ketrenos43f66a62005-03-25 12:31:53 -06001/******************************************************************************
Jeff Garzikbf794512005-07-31 13:07:26 -04002
Zhu Yi171e7b22006-02-15 07:17:56 +08003 Copyright(c) 2003 - 2006 Intel Corporation. All rights reserved.
James Ketrenos43f66a62005-03-25 12:31:53 -06004
5 802.11 status code portion of this file from ethereal-0.10.6:
6 Copyright 2000, Axis Communications AB
7 Ethereal - Network traffic analyzer
8 By Gerald Combs <gerald@ethereal.com>
9 Copyright 1998 Gerald Combs
10
Jeff Garzikbf794512005-07-31 13:07:26 -040011 This program is free software; you can redistribute it and/or modify it
12 under the terms of version 2 of the GNU General Public License as
James Ketrenos43f66a62005-03-25 12:31:53 -060013 published by the Free Software Foundation.
Jeff Garzikbf794512005-07-31 13:07:26 -040014
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
James Ketrenos43f66a62005-03-25 12:31:53 -060018 more details.
Jeff Garzikbf794512005-07-31 13:07:26 -040019
James Ketrenos43f66a62005-03-25 12:31:53 -060020 You should have received a copy of the GNU General Public License along with
Jeff Garzikbf794512005-07-31 13:07:26 -040021 this program; if not, write to the Free Software Foundation, Inc., 59
James Ketrenos43f66a62005-03-25 12:31:53 -060022 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Jeff Garzikbf794512005-07-31 13:07:26 -040023
James Ketrenos43f66a62005-03-25 12:31:53 -060024 The full GNU General Public License is included in this distribution in the
25 file called LICENSE.
Jeff Garzikbf794512005-07-31 13:07:26 -040026
James Ketrenos43f66a62005-03-25 12:31:53 -060027 Contact Information:
28 James P. Ketrenos <ipw2100-admin@linux.intel.com>
29 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30
31******************************************************************************/
32
33#include "ipw2200.h"
Olaf Hering733482e2005-11-08 21:34:55 -080034#include <linux/version.h>
James Ketrenos43f66a62005-03-25 12:31:53 -060035
Zhu Yi7c567892006-02-24 04:20:48 +080036#define IPW2200_VERSION "git-1.1.1"
James Ketrenos43f66a62005-03-25 12:31:53 -060037#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +080038#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060039#define DRV_VERSION IPW2200_VERSION
40
James Ketrenosb095c382005-08-24 22:04:42 -050041#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
42
James Ketrenos43f66a62005-03-25 12:31:53 -060043MODULE_DESCRIPTION(DRV_DESCRIPTION);
44MODULE_VERSION(DRV_VERSION);
45MODULE_AUTHOR(DRV_COPYRIGHT);
46MODULE_LICENSE("GPL");
47
James Ketrenosf6c5cb72005-08-25 00:39:09 -050048static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060049static int debug = 0;
50static int channel = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060051static int mode = 0;
52
53static u32 ipw_debug_level;
54static int associate = 1;
55static int auto_create = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -050056static int led = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060057static int disable = 0;
Zhu Yi810dabd2006-01-24 16:36:59 +080058static int bt_coexist = 0;
Zhu Yibde37d02006-01-24 16:38:08 +080059static int hwcrypto = 0;
Zhu Yi4bfdb912006-01-24 16:37:16 +080060static int roaming = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -060061static const char ipw_modes[] = {
62 'a', 'b', 'g', '?'
63};
64
James Ketrenosb095c382005-08-24 22:04:42 -050065#ifdef CONFIG_IPW_QOS
66static int qos_enable = 0;
67static int qos_burst_enable = 0;
68static int qos_no_ack_mask = 0;
69static int burst_duration_CCK = 0;
70static int burst_duration_OFDM = 0;
71
72static struct ieee80211_qos_parameters def_qos_parameters_OFDM = {
73 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
74 QOS_TX3_CW_MIN_OFDM},
75 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
76 QOS_TX3_CW_MAX_OFDM},
77 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
78 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
79 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
80 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
81};
82
83static struct ieee80211_qos_parameters def_qos_parameters_CCK = {
84 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
85 QOS_TX3_CW_MIN_CCK},
86 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
87 QOS_TX3_CW_MAX_CCK},
88 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
89 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
90 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
91 QOS_TX3_TXOP_LIMIT_CCK}
92};
93
94static struct ieee80211_qos_parameters def_parameters_OFDM = {
95 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
96 DEF_TX3_CW_MIN_OFDM},
97 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
98 DEF_TX3_CW_MAX_OFDM},
99 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
100 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
101 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
102 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
103};
104
105static struct ieee80211_qos_parameters def_parameters_CCK = {
106 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
107 DEF_TX3_CW_MIN_CCK},
108 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
109 DEF_TX3_CW_MAX_CCK},
110 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
111 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
112 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
113 DEF_TX3_TXOP_LIMIT_CCK}
114};
115
116static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
117
118static int from_priority_to_tx_queue[] = {
119 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
120 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
121};
122
123static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
124
125static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
126 *qos_param);
127static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
128 *qos_param);
129#endif /* CONFIG_IPW_QOS */
130
Benoit Boissinot97a78ca2005-09-15 17:30:28 +0000131static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev);
James Ketrenosb095c382005-08-24 22:04:42 -0500132static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600133static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400134static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600135 struct clx2_tx_queue *txq, int qindex);
136static int ipw_queue_reset(struct ipw_priv *priv);
137
138static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
139 int len, int sync);
140
141static void ipw_tx_queue_free(struct ipw_priv *);
142
143static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
144static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
145static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600146static int ipw_up(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500147static void ipw_bg_up(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600148static void ipw_down(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500149static void ipw_bg_down(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600150static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400151static int init_supported_rates(struct ipw_priv *priv,
152 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500153static void ipw_set_hwcrypto_keys(struct ipw_priv *);
154static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600155
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500156static int snprint_line(char *buf, size_t count,
157 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600158{
159 int out, i, j, l;
160 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400161
James Ketrenos43f66a62005-03-25 12:31:53 -0600162 out = snprintf(buf, count, "%08X", ofs);
163
164 for (l = 0, i = 0; i < 2; i++) {
165 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400166 for (j = 0; j < 8 && l < len; j++, l++)
167 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600168 data[(i * 8 + j)]);
169 for (; j < 8; j++)
170 out += snprintf(buf + out, count - out, " ");
171 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400172
James Ketrenos43f66a62005-03-25 12:31:53 -0600173 out += snprintf(buf + out, count - out, " ");
174 for (l = 0, i = 0; i < 2; i++) {
175 out += snprintf(buf + out, count - out, " ");
176 for (j = 0; j < 8 && l < len; j++, l++) {
177 c = data[(i * 8 + j)];
178 if (!isascii(c) || !isprint(c))
179 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400180
James Ketrenos43f66a62005-03-25 12:31:53 -0600181 out += snprintf(buf + out, count - out, "%c", c);
182 }
183
184 for (; j < 8; j++)
185 out += snprintf(buf + out, count - out, " ");
186 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400187
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500188 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600189}
190
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400191static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600192{
193 char line[81];
194 u32 ofs = 0;
195 if (!(ipw_debug_level & level))
196 return;
197
198 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500199 snprint_line(line, sizeof(line), &data[ofs],
200 min(len, 16U), ofs);
201 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600202 ofs += 16;
203 len -= min(len, 16U);
204 }
205}
206
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500207static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
208{
209 size_t out = size;
210 u32 ofs = 0;
211 int total = 0;
212
213 while (size && len) {
214 out = snprint_line(output, size, &data[ofs],
215 min_t(size_t, len, 16U), ofs);
216
217 ofs += 16;
218 output += out;
219 size -= out;
220 len -= min_t(size_t, len, 16U);
221 total += out;
222 }
223 return total;
224}
225
Zhu Yic8fe6672006-01-24 16:36:36 +0800226/* alias for 32-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600227static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
228#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
229
Zhu Yic8fe6672006-01-24 16:36:36 +0800230/* alias for 8-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600231static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
232#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
233
Zhu Yic8fe6672006-01-24 16:36:36 +0800234/* 8-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600235static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
236static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
237{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400238 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
239 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600240 _ipw_write_reg8(a, b, c);
241}
242
Zhu Yic8fe6672006-01-24 16:36:36 +0800243/* 16-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600244static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
245static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
246{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400247 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
248 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600249 _ipw_write_reg16(a, b, c);
250}
251
Zhu Yic8fe6672006-01-24 16:36:36 +0800252/* 32-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600253static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
254static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
255{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400256 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
257 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600258 _ipw_write_reg32(a, b, c);
259}
260
Zhu Yic8fe6672006-01-24 16:36:36 +0800261/* 8-bit direct write (low 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600262#define _ipw_write8(ipw, ofs, val) writeb((val), (ipw)->hw_base + (ofs))
Zhu Yic8fe6672006-01-24 16:36:36 +0800263
264/* 8-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600265#define ipw_write8(ipw, ofs, val) \
266 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
267 _ipw_write8(ipw, ofs, val)
268
Zhu Yic8fe6672006-01-24 16:36:36 +0800269/* 16-bit direct write (low 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600270#define _ipw_write16(ipw, ofs, val) writew((val), (ipw)->hw_base + (ofs))
Zhu Yic8fe6672006-01-24 16:36:36 +0800271
272/* 16-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600273#define ipw_write16(ipw, ofs, val) \
274 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
275 _ipw_write16(ipw, ofs, val)
276
Zhu Yic8fe6672006-01-24 16:36:36 +0800277/* 32-bit direct write (low 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600278#define _ipw_write32(ipw, ofs, val) writel((val), (ipw)->hw_base + (ofs))
Zhu Yic8fe6672006-01-24 16:36:36 +0800279
280/* 32-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600281#define ipw_write32(ipw, ofs, val) \
282 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
283 _ipw_write32(ipw, ofs, val)
284
Zhu Yic8fe6672006-01-24 16:36:36 +0800285/* 8-bit direct read (low 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600286#define _ipw_read8(ipw, ofs) readb((ipw)->hw_base + (ofs))
Zhu Yic8fe6672006-01-24 16:36:36 +0800287
288/* 8-bit direct read (low 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400289static inline u8 __ipw_read8(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
290{
291 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600292 return _ipw_read8(ipw, ofs);
293}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400294
Zhu Yic8fe6672006-01-24 16:36:36 +0800295/* alias to 8-bit direct read (low 4K of SRAM/regs), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600296#define ipw_read8(ipw, ofs) __ipw_read8(__FILE__, __LINE__, ipw, ofs)
297
Zhu Yic8fe6672006-01-24 16:36:36 +0800298/* 16-bit direct read (low 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600299#define _ipw_read16(ipw, ofs) readw((ipw)->hw_base + (ofs))
Zhu Yic8fe6672006-01-24 16:36:36 +0800300
301/* 16-bit direct read (low 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400302static inline u16 __ipw_read16(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
303{
304 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600305 return _ipw_read16(ipw, ofs);
306}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400307
Zhu Yic8fe6672006-01-24 16:36:36 +0800308/* alias to 16-bit direct read (low 4K of SRAM/regs), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600309#define ipw_read16(ipw, ofs) __ipw_read16(__FILE__, __LINE__, ipw, ofs)
310
Zhu Yic8fe6672006-01-24 16:36:36 +0800311/* 32-bit direct read (low 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600312#define _ipw_read32(ipw, ofs) readl((ipw)->hw_base + (ofs))
Zhu Yic8fe6672006-01-24 16:36:36 +0800313
314/* 32-bit direct read (low 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400315static inline u32 __ipw_read32(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
316{
317 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600318 return _ipw_read32(ipw, ofs);
319}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400320
Zhu Yic8fe6672006-01-24 16:36:36 +0800321/* alias to 32-bit direct read (low 4K of SRAM/regs), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600322#define ipw_read32(ipw, ofs) __ipw_read32(__FILE__, __LINE__, ipw, ofs)
323
Zhu Yic8fe6672006-01-24 16:36:36 +0800324/* multi-byte read (above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600325static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500326static inline void __ipw_read_indirect(const char *f, int l,
327 struct ipw_priv *a, u32 b, u8 * c, int d)
328{
329 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %d bytes\n", f, l, (u32) (b),
330 d);
331 _ipw_read_indirect(a, b, c, d);
332}
333
Zhu Yic8fe6672006-01-24 16:36:36 +0800334/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500335#define ipw_read_indirect(a, b, c, d) __ipw_read_indirect(__FILE__, __LINE__, a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600336
Zhu Yic8fe6672006-01-24 16:36:36 +0800337/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400338static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
339 int num);
James Ketrenos43f66a62005-03-25 12:31:53 -0600340#define ipw_write_indirect(a, b, c, d) \
341 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %d bytes\n", __FILE__, __LINE__, (u32)(b), d); \
James Ketrenosafbf30a2005-08-25 00:05:33 -0500342 _ipw_write_indirect(a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600343
Zhu Yic8fe6672006-01-24 16:36:36 +0800344/* 32-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400345static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600346{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400347 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500348 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
349 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600350}
351
Zhu Yic8fe6672006-01-24 16:36:36 +0800352/* 8-bit indirect write (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600353static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
354{
Zhu Yi2638bc32006-01-24 16:37:52 +0800355 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800356 u32 dif_len = reg - aligned_addr;
357
James Ketrenos43f66a62005-03-25 12:31:53 -0600358 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800359 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
360 _ipw_write8(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600361}
362
Zhu Yic8fe6672006-01-24 16:36:36 +0800363/* 16-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400364static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600365{
Zhu Yi2638bc32006-01-24 16:37:52 +0800366 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800367 u32 dif_len = (reg - aligned_addr) & (~0x1ul);
368
James Ketrenos43f66a62005-03-25 12:31:53 -0600369 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800370 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
371 _ipw_write16(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600372}
373
Zhu Yic8fe6672006-01-24 16:36:36 +0800374/* 8-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600375static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
376{
377 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500378 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -0600379 IPW_DEBUG_IO(" reg = 0x%8X : \n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500380 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400381 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600382}
383
Zhu Yic8fe6672006-01-24 16:36:36 +0800384/* 32-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600385static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
386{
387 u32 value;
388
389 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
390
James Ketrenosb095c382005-08-24 22:04:42 -0500391 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
392 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
James Ketrenos43f66a62005-03-25 12:31:53 -0600393 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x \n", reg, value);
394 return value;
395}
396
Zhu Yic8fe6672006-01-24 16:36:36 +0800397/* General purpose, no alignment requirement, iterative (multi-byte) read, */
398/* for area above 1st 4K of SRAM/reg space */
James Ketrenos43f66a62005-03-25 12:31:53 -0600399static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
400 int num)
401{
Zhu Yi2638bc32006-01-24 16:37:52 +0800402 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600403 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600404 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400405
James Ketrenos43f66a62005-03-25 12:31:53 -0600406 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
407
James Ketrenosea2b26e2005-08-24 21:25:16 -0500408 if (num <= 0) {
409 return;
410 }
411
Zhu Yic8fe6672006-01-24 16:36:36 +0800412 /* Read the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600413 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500414 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600415 /* Start reading at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500416 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500417 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600418 aligned_addr += 4;
419 }
420
Zhu Yic8fe6672006-01-24 16:36:36 +0800421 /* Read all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500422 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500423 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500424 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400425
Zhu Yic8fe6672006-01-24 16:36:36 +0800426 /* Read the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500427 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500428 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500429 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500430 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500431 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600432}
433
Zhu Yic8fe6672006-01-24 16:36:36 +0800434/* General purpose, no alignment requirement, iterative (multi-byte) write, */
435/* for area above 1st 4K of SRAM/reg space */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400436static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600437 int num)
438{
Zhu Yi2638bc32006-01-24 16:37:52 +0800439 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600440 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600441 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400442
James Ketrenos43f66a62005-03-25 12:31:53 -0600443 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400444
James Ketrenosea2b26e2005-08-24 21:25:16 -0500445 if (num <= 0) {
446 return;
447 }
448
Zhu Yic8fe6672006-01-24 16:36:36 +0800449 /* Write the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600450 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500451 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
Zhu Yic8fe6672006-01-24 16:36:36 +0800452 /* Start writing at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500453 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500454 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600455 aligned_addr += 4;
456 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400457
Zhu Yic8fe6672006-01-24 16:36:36 +0800458 /* Write all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500459 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500460 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500461 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400462
Zhu Yic8fe6672006-01-24 16:36:36 +0800463 /* Write the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500464 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500465 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500466 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500467 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500468 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600469}
470
Zhu Yic8fe6672006-01-24 16:36:36 +0800471/* General purpose, no alignment requirement, iterative (multi-byte) write, */
472/* for 1st 4K of SRAM/regs space */
Jeff Garzikbf794512005-07-31 13:07:26 -0400473static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600474 int num)
475{
476 memcpy_toio((priv->hw_base + addr), buf, num);
477}
478
Zhu Yic8fe6672006-01-24 16:36:36 +0800479/* Set bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600480static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
481{
482 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
483}
484
Zhu Yic8fe6672006-01-24 16:36:36 +0800485/* Clear bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600486static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
487{
488 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
489}
490
491static inline void ipw_enable_interrupts(struct ipw_priv *priv)
492{
493 if (priv->status & STATUS_INT_ENABLED)
494 return;
495 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500496 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600497}
498
499static inline void ipw_disable_interrupts(struct ipw_priv *priv)
500{
501 if (!(priv->status & STATUS_INT_ENABLED))
502 return;
503 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500504 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600505}
506
Brice Goglin0f52bf92005-12-01 01:41:46 -0800507#ifdef CONFIG_IPW2200_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -0600508static char *ipw_error_desc(u32 val)
509{
510 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400511 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600512 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400513 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600514 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400515 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600516 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400517 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600518 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400519 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500520 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400521 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500522 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400523 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500524 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400525 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500526 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400527 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500528 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400529 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500530 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400531 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500532 return "DMA_STATUS";
533 case IPW_FW_ERROR_DINO_ERROR:
534 return "DINO_ERROR";
535 case IPW_FW_ERROR_EEPROM_ERROR:
536 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400537 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500538 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400539 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500540 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400541 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500542 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600543 }
544}
545
James Ketrenosb39860c2005-08-12 09:36:32 -0500546static void ipw_dump_error_log(struct ipw_priv *priv,
547 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600548{
James Ketrenosb39860c2005-08-12 09:36:32 -0500549 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600550
James Ketrenosb39860c2005-08-12 09:36:32 -0500551 if (!error) {
552 IPW_ERROR("Error allocating and capturing error log. "
553 "Nothing to dump.\n");
554 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600555 }
556
James Ketrenosb39860c2005-08-12 09:36:32 -0500557 IPW_ERROR("Start IPW Error Log Dump:\n");
558 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
559 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600560
James Ketrenosb39860c2005-08-12 09:36:32 -0500561 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400562 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500563 ipw_error_desc(error->elem[i].desc),
564 error->elem[i].time,
565 error->elem[i].blink1,
566 error->elem[i].blink2,
567 error->elem[i].link1,
568 error->elem[i].link2, error->elem[i].data);
569 for (i = 0; i < error->log_len; i++)
570 IPW_ERROR("%i\t0x%08x\t%i\n",
571 error->log[i].time,
James Ketrenos286568a2005-08-30 10:34:25 -0500572 error->log[i].data, error->log[i].event);
James Ketrenos43f66a62005-03-25 12:31:53 -0600573}
James Ketrenos43f66a62005-03-25 12:31:53 -0600574#endif
James Ketrenos43f66a62005-03-25 12:31:53 -0600575
James Ketrenosc848d0a2005-08-24 21:56:24 -0500576static inline int ipw_is_init(struct ipw_priv *priv)
577{
578 return (priv->status & STATUS_INIT) ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -0600579}
580
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400581static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600582{
583 u32 addr, field_info, field_len, field_count, total_len;
584
585 IPW_DEBUG_ORD("ordinal = %i\n", ord);
586
587 if (!priv || !val || !len) {
588 IPW_DEBUG_ORD("Invalid argument\n");
589 return -EINVAL;
590 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400591
James Ketrenos43f66a62005-03-25 12:31:53 -0600592 /* verify device ordinal tables have been initialized */
593 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
594 IPW_DEBUG_ORD("Access ordinals before initialization\n");
595 return -EINVAL;
596 }
597
598 switch (IPW_ORD_TABLE_ID_MASK & ord) {
599 case IPW_ORD_TABLE_0_MASK:
600 /*
601 * TABLE 0: Direct access to a table of 32 bit values
602 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400603 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600604 * read from the table
605 */
606
607 /* remove the table id from the ordinal */
608 ord &= IPW_ORD_TABLE_VALUE_MASK;
609
610 /* boundary check */
611 if (ord > priv->table0_len) {
612 IPW_DEBUG_ORD("ordinal value (%i) longer then "
613 "max (%i)\n", ord, priv->table0_len);
614 return -EINVAL;
615 }
616
617 /* verify we have enough room to store the value */
618 if (*len < sizeof(u32)) {
619 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200620 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600621 return -EINVAL;
622 }
623
624 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400625 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600626
627 *len = sizeof(u32);
628 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400629 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600630 break;
631
632 case IPW_ORD_TABLE_1_MASK:
633 /*
634 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400635 *
636 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600637 * representing starting addr for the data (which is
638 * also a u32)
639 */
640
641 /* remove the table id from the ordinal */
642 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400643
James Ketrenos43f66a62005-03-25 12:31:53 -0600644 /* boundary check */
645 if (ord > priv->table1_len) {
646 IPW_DEBUG_ORD("ordinal value too long\n");
647 return -EINVAL;
648 }
649
650 /* verify we have enough room to store the value */
651 if (*len < sizeof(u32)) {
652 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200653 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600654 return -EINVAL;
655 }
656
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400657 *((u32 *) val) =
658 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600659 *len = sizeof(u32);
660 break;
661
662 case IPW_ORD_TABLE_2_MASK:
663 /*
664 * TABLE 2: Indirect access to a table of variable sized values
665 *
666 * This table consist of six values, each containing
667 * - dword containing the starting offset of the data
668 * - dword containing the lengh in the first 16bits
669 * and the count in the second 16bits
670 */
671
672 /* remove the table id from the ordinal */
673 ord &= IPW_ORD_TABLE_VALUE_MASK;
674
675 /* boundary check */
676 if (ord > priv->table2_len) {
677 IPW_DEBUG_ORD("ordinal value too long\n");
678 return -EINVAL;
679 }
680
681 /* get the address of statistic */
682 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400683
684 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600685 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400686 field_info =
687 ipw_read_reg32(priv,
688 priv->table2_addr + (ord << 3) +
689 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400690
James Ketrenos43f66a62005-03-25 12:31:53 -0600691 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400692 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400693
James Ketrenos43f66a62005-03-25 12:31:53 -0600694 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400695 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400696
James Ketrenos43f66a62005-03-25 12:31:53 -0600697 /* abort if not enought memory */
698 total_len = field_len * field_count;
699 if (total_len > *len) {
700 *len = total_len;
701 return -EINVAL;
702 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400703
James Ketrenos43f66a62005-03-25 12:31:53 -0600704 *len = total_len;
705 if (!total_len)
706 return 0;
707
708 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400709 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600710 addr, total_len, field_info);
711 ipw_read_indirect(priv, addr, val, total_len);
712 break;
713
714 default:
715 IPW_DEBUG_ORD("Invalid ordinal!\n");
716 return -EINVAL;
717
718 }
719
James Ketrenos43f66a62005-03-25 12:31:53 -0600720 return 0;
721}
722
723static void ipw_init_ordinals(struct ipw_priv *priv)
724{
725 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400726 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600727
728 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
729 priv->table0_addr, priv->table0_len);
730
731 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
732 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
733
734 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
735 priv->table1_addr, priv->table1_len);
736
737 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
738 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400739 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600740
741 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
742 priv->table2_addr, priv->table2_len);
743
744}
745
Adrian Bunka73e22b2006-01-21 01:39:42 +0100746static u32 ipw_register_toggle(u32 reg)
James Ketrenosa613bff2005-08-24 21:43:11 -0500747{
James Ketrenosb095c382005-08-24 22:04:42 -0500748 reg &= ~IPW_START_STANDBY;
749 if (reg & IPW_GATE_ODMA)
750 reg &= ~IPW_GATE_ODMA;
751 if (reg & IPW_GATE_IDMA)
752 reg &= ~IPW_GATE_IDMA;
753 if (reg & IPW_GATE_ADMA)
754 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500755 return reg;
756}
757
758/*
759 * LED behavior:
760 * - On radio ON, turn on any LEDs that require to be on during start
761 * - On initialization, start unassociated blink
762 * - On association, disable unassociated blink
763 * - On disassociation, start unassociated blink
764 * - On radio OFF, turn off any LEDs started during radio on
765 *
766 */
Zhu Yiede61112006-01-24 16:37:10 +0800767#define LD_TIME_LINK_ON msecs_to_jiffies(300)
768#define LD_TIME_LINK_OFF msecs_to_jiffies(2700)
769#define LD_TIME_ACT_ON msecs_to_jiffies(250)
James Ketrenosa613bff2005-08-24 21:43:11 -0500770
Adrian Bunka73e22b2006-01-21 01:39:42 +0100771static void ipw_led_link_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500772{
773 unsigned long flags;
774 u32 led;
775
776 /* If configured to not use LEDs, or nic_type is 1,
777 * then we don't toggle a LINK led */
778 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
779 return;
780
781 spin_lock_irqsave(&priv->lock, flags);
782
783 if (!(priv->status & STATUS_RF_KILL_MASK) &&
784 !(priv->status & STATUS_LED_LINK_ON)) {
785 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500786 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500787 led |= priv->led_association_on;
788
789 led = ipw_register_toggle(led);
790
791 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500792 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500793
794 priv->status |= STATUS_LED_LINK_ON;
795
796 /* If we aren't associated, schedule turning the LED off */
797 if (!(priv->status & STATUS_ASSOCIATED))
798 queue_delayed_work(priv->workqueue,
799 &priv->led_link_off,
800 LD_TIME_LINK_ON);
801 }
802
803 spin_unlock_irqrestore(&priv->lock, flags);
804}
805
James Ketrenosc848d0a2005-08-24 21:56:24 -0500806static void ipw_bg_led_link_on(void *data)
807{
808 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +0800809 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500810 ipw_led_link_on(data);
Zhu Yi46441512006-01-24 16:37:59 +0800811 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500812}
813
Adrian Bunka73e22b2006-01-21 01:39:42 +0100814static void ipw_led_link_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500815{
816 unsigned long flags;
817 u32 led;
818
819 /* If configured not to use LEDs, or nic type is 1,
820 * then we don't goggle the LINK led. */
821 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
822 return;
823
824 spin_lock_irqsave(&priv->lock, flags);
825
826 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500827 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500828 led &= priv->led_association_off;
829 led = ipw_register_toggle(led);
830
831 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500832 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500833
834 IPW_DEBUG_LED("Link LED Off\n");
835
836 priv->status &= ~STATUS_LED_LINK_ON;
837
838 /* If we aren't associated and the radio is on, schedule
839 * turning the LED on (blink while unassociated) */
840 if (!(priv->status & STATUS_RF_KILL_MASK) &&
841 !(priv->status & STATUS_ASSOCIATED))
842 queue_delayed_work(priv->workqueue, &priv->led_link_on,
843 LD_TIME_LINK_OFF);
844
845 }
846
847 spin_unlock_irqrestore(&priv->lock, flags);
848}
849
James Ketrenosc848d0a2005-08-24 21:56:24 -0500850static void ipw_bg_led_link_off(void *data)
851{
852 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +0800853 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500854 ipw_led_link_off(data);
Zhu Yi46441512006-01-24 16:37:59 +0800855 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500856}
857
Arjan van de Ven858119e2006-01-14 13:20:43 -0800858static void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500859{
James Ketrenosa613bff2005-08-24 21:43:11 -0500860 u32 led;
861
862 if (priv->config & CFG_NO_LED)
863 return;
864
James Ketrenosb095c382005-08-24 22:04:42 -0500865 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500866 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500867
868 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500869 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500870 led |= priv->led_activity_on;
871
872 led = ipw_register_toggle(led);
873
874 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500875 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500876
877 IPW_DEBUG_LED("Activity LED On\n");
878
879 priv->status |= STATUS_LED_ACT_ON;
880
James Ketrenosc848d0a2005-08-24 21:56:24 -0500881 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500882 queue_delayed_work(priv->workqueue, &priv->led_act_off,
883 LD_TIME_ACT_ON);
884 } else {
885 /* Reschedule LED off for full time period */
886 cancel_delayed_work(&priv->led_act_off);
887 queue_delayed_work(priv->workqueue, &priv->led_act_off,
888 LD_TIME_ACT_ON);
889 }
James Ketrenosb095c382005-08-24 22:04:42 -0500890}
James Ketrenosa613bff2005-08-24 21:43:11 -0500891
Adrian Bunka73e22b2006-01-21 01:39:42 +0100892#if 0
James Ketrenosb095c382005-08-24 22:04:42 -0500893void ipw_led_activity_on(struct ipw_priv *priv)
894{
895 unsigned long flags;
896 spin_lock_irqsave(&priv->lock, flags);
897 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500898 spin_unlock_irqrestore(&priv->lock, flags);
899}
Adrian Bunka73e22b2006-01-21 01:39:42 +0100900#endif /* 0 */
James Ketrenosa613bff2005-08-24 21:43:11 -0500901
Adrian Bunka73e22b2006-01-21 01:39:42 +0100902static void ipw_led_activity_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500903{
904 unsigned long flags;
905 u32 led;
906
907 if (priv->config & CFG_NO_LED)
908 return;
909
910 spin_lock_irqsave(&priv->lock, flags);
911
912 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500913 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500914 led &= priv->led_activity_off;
915
916 led = ipw_register_toggle(led);
917
918 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500919 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500920
921 IPW_DEBUG_LED("Activity LED Off\n");
922
923 priv->status &= ~STATUS_LED_ACT_ON;
924 }
925
926 spin_unlock_irqrestore(&priv->lock, flags);
927}
928
James Ketrenosc848d0a2005-08-24 21:56:24 -0500929static void ipw_bg_led_activity_off(void *data)
930{
931 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +0800932 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500933 ipw_led_activity_off(data);
Zhu Yi46441512006-01-24 16:37:59 +0800934 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500935}
936
Adrian Bunka73e22b2006-01-21 01:39:42 +0100937static void ipw_led_band_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500938{
939 unsigned long flags;
940 u32 led;
941
942 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -0500943 if (priv->config & CFG_NO_LED ||
944 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -0500945 return;
946
947 spin_lock_irqsave(&priv->lock, flags);
948
James Ketrenosb095c382005-08-24 22:04:42 -0500949 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500950 if (priv->assoc_network->mode == IEEE_A) {
951 led |= priv->led_ofdm_on;
952 led &= priv->led_association_off;
953 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
954 } else if (priv->assoc_network->mode == IEEE_G) {
955 led |= priv->led_ofdm_on;
956 led |= priv->led_association_on;
957 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
958 } else {
959 led &= priv->led_ofdm_off;
960 led |= priv->led_association_on;
961 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
962 }
963
964 led = ipw_register_toggle(led);
965
966 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500967 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500968
969 spin_unlock_irqrestore(&priv->lock, flags);
970}
971
Adrian Bunka73e22b2006-01-21 01:39:42 +0100972static void ipw_led_band_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500973{
974 unsigned long flags;
975 u32 led;
976
977 /* Only nic type 1 supports mode LEDs */
978 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
979 return;
980
981 spin_lock_irqsave(&priv->lock, flags);
982
James Ketrenosb095c382005-08-24 22:04:42 -0500983 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500984 led &= priv->led_ofdm_off;
985 led &= priv->led_association_off;
986
987 led = ipw_register_toggle(led);
988
989 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500990 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500991
992 spin_unlock_irqrestore(&priv->lock, flags);
993}
994
Adrian Bunka73e22b2006-01-21 01:39:42 +0100995static void ipw_led_radio_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500996{
997 ipw_led_link_on(priv);
998}
999
Adrian Bunka73e22b2006-01-21 01:39:42 +01001000static void ipw_led_radio_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001001{
1002 ipw_led_activity_off(priv);
1003 ipw_led_link_off(priv);
1004}
1005
Adrian Bunka73e22b2006-01-21 01:39:42 +01001006static void ipw_led_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001007{
1008 /* Set the Link Led on for all nic types */
1009 ipw_led_link_on(priv);
1010}
1011
Adrian Bunka73e22b2006-01-21 01:39:42 +01001012static void ipw_led_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001013{
1014 ipw_led_activity_off(priv);
1015 ipw_led_link_off(priv);
1016
1017 if (priv->status & STATUS_RF_KILL_MASK)
1018 ipw_led_radio_off(priv);
1019}
1020
Adrian Bunka73e22b2006-01-21 01:39:42 +01001021static void ipw_led_init(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001022{
1023 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
1024
1025 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001026 priv->led_activity_on = IPW_ACTIVITY_LED;
1027 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001028
James Ketrenosb095c382005-08-24 22:04:42 -05001029 priv->led_association_on = IPW_ASSOCIATED_LED;
1030 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001031
1032 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001033 priv->led_ofdm_on = IPW_OFDM_LED;
1034 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001035
1036 switch (priv->nic_type) {
1037 case EEPROM_NIC_TYPE_1:
1038 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -05001039 priv->led_activity_on = IPW_ASSOCIATED_LED;
1040 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
1041 priv->led_association_on = IPW_ACTIVITY_LED;
1042 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001043
1044 if (!(priv->config & CFG_NO_LED))
1045 ipw_led_band_on(priv);
1046
1047 /* And we don't blink link LEDs for this nic, so
1048 * just return here */
1049 return;
1050
1051 case EEPROM_NIC_TYPE_3:
1052 case EEPROM_NIC_TYPE_2:
1053 case EEPROM_NIC_TYPE_4:
1054 case EEPROM_NIC_TYPE_0:
1055 break;
1056
1057 default:
1058 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1059 priv->nic_type);
1060 priv->nic_type = EEPROM_NIC_TYPE_0;
1061 break;
1062 }
1063
1064 if (!(priv->config & CFG_NO_LED)) {
1065 if (priv->status & STATUS_ASSOCIATED)
1066 ipw_led_link_on(priv);
1067 else
1068 ipw_led_link_off(priv);
1069 }
1070}
1071
Adrian Bunka73e22b2006-01-21 01:39:42 +01001072static void ipw_led_shutdown(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001073{
James Ketrenosa613bff2005-08-24 21:43:11 -05001074 ipw_led_activity_off(priv);
1075 ipw_led_link_off(priv);
1076 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001077 cancel_delayed_work(&priv->led_link_on);
1078 cancel_delayed_work(&priv->led_link_off);
1079 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001080}
1081
James Ketrenos43f66a62005-03-25 12:31:53 -06001082/*
1083 * The following adds a new attribute to the sysfs representation
1084 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1085 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001086 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001087 * See the level definitions in ipw for details.
1088 */
1089static ssize_t show_debug_level(struct device_driver *d, char *buf)
1090{
1091 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1092}
James Ketrenosa613bff2005-08-24 21:43:11 -05001093
1094static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1095 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001096{
1097 char *p = (char *)buf;
1098 u32 val;
1099
1100 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1101 p++;
1102 if (p[0] == 'x' || p[0] == 'X')
1103 p++;
1104 val = simple_strtoul(p, &p, 16);
1105 } else
1106 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001107 if (p == buf)
1108 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001109 ": %s is not in hex or decimal form.\n", buf);
1110 else
1111 ipw_debug_level = val;
1112
1113 return strnlen(buf, count);
1114}
1115
Jeff Garzikbf794512005-07-31 13:07:26 -04001116static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001117 show_debug_level, store_debug_level);
1118
James Ketrenosb39860c2005-08-12 09:36:32 -05001119static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1120{
Zhu Yic8fe6672006-01-24 16:36:36 +08001121 /* length = 1st dword in log */
James Ketrenosb39860c2005-08-12 09:36:32 -05001122 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1123}
1124
1125static void ipw_capture_event_log(struct ipw_priv *priv,
1126 u32 log_len, struct ipw_event *log)
1127{
1128 u32 base;
1129
1130 if (log_len) {
1131 base = ipw_read32(priv, IPW_EVENT_LOG);
1132 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1133 (u8 *) log, sizeof(*log) * log_len);
1134 }
1135}
1136
1137static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1138{
1139 struct ipw_fw_error *error;
1140 u32 log_len = ipw_get_event_log_len(priv);
1141 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1142 u32 elem_len = ipw_read_reg32(priv, base);
1143
1144 error = kmalloc(sizeof(*error) +
1145 sizeof(*error->elem) * elem_len +
1146 sizeof(*error->log) * log_len, GFP_ATOMIC);
1147 if (!error) {
1148 IPW_ERROR("Memory allocation for firmware error log "
1149 "failed.\n");
1150 return NULL;
1151 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001152 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001153 error->status = priv->status;
1154 error->config = priv->config;
1155 error->elem_len = elem_len;
1156 error->log_len = log_len;
1157 error->elem = (struct ipw_error_elem *)error->payload;
Zhu Yi3b26b112005-11-17 13:58:30 +08001158 error->log = (struct ipw_event *)(error->elem + elem_len);
James Ketrenosb39860c2005-08-12 09:36:32 -05001159
1160 ipw_capture_event_log(priv, log_len, error->log);
1161
1162 if (elem_len)
1163 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1164 sizeof(*error->elem) * elem_len);
1165
1166 return error;
1167}
1168
1169static void ipw_free_error_log(struct ipw_fw_error *error)
1170{
1171 if (error)
1172 kfree(error);
1173}
1174
1175static ssize_t show_event_log(struct device *d,
1176 struct device_attribute *attr, char *buf)
1177{
1178 struct ipw_priv *priv = dev_get_drvdata(d);
1179 u32 log_len = ipw_get_event_log_len(priv);
1180 struct ipw_event log[log_len];
1181 u32 len = 0, i;
1182
1183 ipw_capture_event_log(priv, log_len, log);
1184
1185 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1186 for (i = 0; i < log_len; i++)
1187 len += snprintf(buf + len, PAGE_SIZE - len,
1188 "\n%08X%08X%08X",
1189 log[i].time, log[i].event, log[i].data);
1190 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1191 return len;
1192}
1193
1194static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1195
1196static ssize_t show_error(struct device *d,
1197 struct device_attribute *attr, char *buf)
1198{
1199 struct ipw_priv *priv = dev_get_drvdata(d);
1200 u32 len = 0, i;
1201 if (!priv->error)
1202 return 0;
1203 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001204 "%08lX%08X%08X%08X",
1205 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001206 priv->error->status,
1207 priv->error->config, priv->error->elem_len);
1208 for (i = 0; i < priv->error->elem_len; i++)
1209 len += snprintf(buf + len, PAGE_SIZE - len,
1210 "\n%08X%08X%08X%08X%08X%08X%08X",
1211 priv->error->elem[i].time,
1212 priv->error->elem[i].desc,
1213 priv->error->elem[i].blink1,
1214 priv->error->elem[i].blink2,
1215 priv->error->elem[i].link1,
1216 priv->error->elem[i].link2,
1217 priv->error->elem[i].data);
1218
1219 len += snprintf(buf + len, PAGE_SIZE - len,
1220 "\n%08X", priv->error->log_len);
1221 for (i = 0; i < priv->error->log_len; i++)
1222 len += snprintf(buf + len, PAGE_SIZE - len,
1223 "\n%08X%08X%08X",
1224 priv->error->log[i].time,
1225 priv->error->log[i].event,
1226 priv->error->log[i].data);
1227 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1228 return len;
1229}
1230
1231static ssize_t clear_error(struct device *d,
1232 struct device_attribute *attr,
1233 const char *buf, size_t count)
1234{
1235 struct ipw_priv *priv = dev_get_drvdata(d);
1236 if (priv->error) {
1237 ipw_free_error_log(priv->error);
1238 priv->error = NULL;
1239 }
1240 return count;
1241}
1242
1243static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1244
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001245static ssize_t show_cmd_log(struct device *d,
1246 struct device_attribute *attr, char *buf)
1247{
1248 struct ipw_priv *priv = dev_get_drvdata(d);
1249 u32 len = 0, i;
1250 if (!priv->cmdlog)
1251 return 0;
1252 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1253 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1254 i = (i + 1) % priv->cmdlog_len) {
1255 len +=
1256 snprintf(buf + len, PAGE_SIZE - len,
1257 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1258 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1259 priv->cmdlog[i].cmd.len);
1260 len +=
1261 snprintk_buf(buf + len, PAGE_SIZE - len,
1262 (u8 *) priv->cmdlog[i].cmd.param,
1263 priv->cmdlog[i].cmd.len);
1264 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1265 }
1266 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1267 return len;
1268}
1269
1270static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1271
James Ketrenosa613bff2005-08-24 21:43:11 -05001272static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1273 char *buf)
1274{
1275 struct ipw_priv *priv = dev_get_drvdata(d);
1276 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1277}
1278
1279static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1280 const char *buf, size_t count)
1281{
1282 struct ipw_priv *priv = dev_get_drvdata(d);
Brice Goglin0f52bf92005-12-01 01:41:46 -08001283#ifdef CONFIG_IPW2200_DEBUG
James Ketrenosa613bff2005-08-24 21:43:11 -05001284 struct net_device *dev = priv->net_dev;
James Ketrenosc848d0a2005-08-24 21:56:24 -05001285#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05001286 char buffer[] = "00000000";
1287 unsigned long len =
1288 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1289 unsigned long val;
1290 char *p = buffer;
1291
1292 IPW_DEBUG_INFO("enter\n");
1293
1294 strncpy(buffer, buf, len);
1295 buffer[len] = 0;
1296
1297 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1298 p++;
1299 if (p[0] == 'x' || p[0] == 'X')
1300 p++;
1301 val = simple_strtoul(p, &p, 16);
1302 } else
1303 val = simple_strtoul(p, &p, 10);
1304 if (p == buffer) {
1305 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1306 } else {
1307 priv->ieee->scan_age = val;
1308 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1309 }
1310
1311 IPW_DEBUG_INFO("exit\n");
1312 return len;
1313}
1314
1315static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1316
1317static ssize_t show_led(struct device *d, struct device_attribute *attr,
1318 char *buf)
1319{
1320 struct ipw_priv *priv = dev_get_drvdata(d);
1321 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1322}
1323
1324static ssize_t store_led(struct device *d, struct device_attribute *attr,
1325 const char *buf, size_t count)
1326{
1327 struct ipw_priv *priv = dev_get_drvdata(d);
1328
1329 IPW_DEBUG_INFO("enter\n");
1330
1331 if (count == 0)
1332 return 0;
1333
1334 if (*buf == 0) {
1335 IPW_DEBUG_LED("Disabling LED control.\n");
1336 priv->config |= CFG_NO_LED;
1337 ipw_led_shutdown(priv);
1338 } else {
1339 IPW_DEBUG_LED("Enabling LED control.\n");
1340 priv->config &= ~CFG_NO_LED;
1341 ipw_led_init(priv);
1342 }
1343
1344 IPW_DEBUG_INFO("exit\n");
1345 return count;
1346}
1347
1348static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1349
Andrew Mortonad3fee52005-06-20 14:30:36 -07001350static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001351 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001352{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001353 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001354 return sprintf(buf, "0x%08x\n", (int)p->status);
1355}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001356
James Ketrenos43f66a62005-03-25 12:31:53 -06001357static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1358
Andrew Mortonad3fee52005-06-20 14:30:36 -07001359static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1360 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001361{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001362 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001363 return sprintf(buf, "0x%08x\n", (int)p->config);
1364}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001365
James Ketrenos43f66a62005-03-25 12:31:53 -06001366static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1367
Andrew Mortonad3fee52005-06-20 14:30:36 -07001368static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001369 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001370{
James Ketrenosa613bff2005-08-24 21:43:11 -05001371 struct ipw_priv *priv = d->driver_data;
1372 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001373}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001374
James Ketrenos43f66a62005-03-25 12:31:53 -06001375static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1376
Andrew Mortonad3fee52005-06-20 14:30:36 -07001377static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001378 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001379{
1380 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001381 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001382
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001383 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001384 return 0;
1385
1386 return sprintf(buf, "0x%08x\n", tmp);
1387}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001388
1389static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001390
Andrew Mortonad3fee52005-06-20 14:30:36 -07001391static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1392 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001393{
1394 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001395 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001396
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001397 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001398 return 0;
1399
1400 return sprintf(buf, "0x%08x\n", tmp);
1401}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001402
1403static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001404
1405/*
1406 * Add a device attribute to view/control the delay between eeprom
1407 * operations.
1408 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001409static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001410 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001411{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001412 int n = ((struct ipw_priv *)d->driver_data)->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001413 return sprintf(buf, "%i\n", n);
1414}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001415static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001416 struct device_attribute *attr,
1417 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001418{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001419 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001420 sscanf(buf, "%i", &p->eeprom_delay);
1421 return strnlen(buf, count);
1422}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001423
1424static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1425 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001426
Andrew Mortonad3fee52005-06-20 14:30:36 -07001427static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001428 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001429{
1430 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001431 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001432
James Ketrenosb095c382005-08-24 22:04:42 -05001433 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001434 return sprintf(buf, "0x%08x\n", reg);
1435}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001436static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001437 struct device_attribute *attr,
1438 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001439{
1440 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001441 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001442
1443 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001444 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001445 return strnlen(buf, count);
1446}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001447
1448static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1449 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001450
Andrew Mortonad3fee52005-06-20 14:30:36 -07001451static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001452 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001453{
1454 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001455 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001456
1457 reg = ipw_read_reg32(p, 0x301100);
1458 return sprintf(buf, "0x%08x\n", reg);
1459}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001460static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001461 struct device_attribute *attr,
1462 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001463{
1464 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001465 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001466
1467 sscanf(buf, "%x", &reg);
1468 ipw_write_reg32(p, 0x301100, reg);
1469 return strnlen(buf, count);
1470}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001471
1472static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1473 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001474
Andrew Mortonad3fee52005-06-20 14:30:36 -07001475static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001476 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001477{
1478 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001479 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001480
Jeff Garzikbf794512005-07-31 13:07:26 -04001481 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001482 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001483 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001484 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001485
James Ketrenos43f66a62005-03-25 12:31:53 -06001486 return sprintf(buf, "0x%08x\n", reg);
1487}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001488static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001489 struct device_attribute *attr,
1490 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001491{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001492 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001493
1494 sscanf(buf, "%x", &priv->indirect_dword);
1495 priv->status |= STATUS_INDIRECT_DWORD;
1496 return strnlen(buf, count);
1497}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001498
1499static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1500 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001501
Andrew Mortonad3fee52005-06-20 14:30:36 -07001502static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001503 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001504{
1505 u8 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001506 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001507
Jeff Garzikbf794512005-07-31 13:07:26 -04001508 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001509 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001510 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001511 reg = 0;
1512
1513 return sprintf(buf, "0x%02x\n", reg);
1514}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001515static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001516 struct device_attribute *attr,
1517 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001518{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001519 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001520
1521 sscanf(buf, "%x", &priv->indirect_byte);
1522 priv->status |= STATUS_INDIRECT_BYTE;
1523 return strnlen(buf, count);
1524}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001525
1526static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001527 show_indirect_byte, store_indirect_byte);
1528
Andrew Mortonad3fee52005-06-20 14:30:36 -07001529static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001530 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001531{
1532 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001533 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001534
Jeff Garzikbf794512005-07-31 13:07:26 -04001535 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001536 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001537 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001538 reg = 0;
1539
1540 return sprintf(buf, "0x%08x\n", reg);
1541}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001542static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001543 struct device_attribute *attr,
1544 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001545{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001546 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001547
1548 sscanf(buf, "%x", &priv->direct_dword);
1549 priv->status |= STATUS_DIRECT_DWORD;
1550 return strnlen(buf, count);
1551}
James Ketrenos43f66a62005-03-25 12:31:53 -06001552
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001553static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1554 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001555
Arjan van de Ven858119e2006-01-14 13:20:43 -08001556static int rf_kill_active(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06001557{
1558 if (0 == (ipw_read32(priv, 0x30) & 0x10000))
1559 priv->status |= STATUS_RF_KILL_HW;
1560 else
1561 priv->status &= ~STATUS_RF_KILL_HW;
1562
1563 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1564}
1565
Andrew Mortonad3fee52005-06-20 14:30:36 -07001566static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001567 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001568{
1569 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001570 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001571 2 - HW based RF kill active
1572 3 - Both HW and SW baed RF kill active */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001573 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001574 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001575 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001576 return sprintf(buf, "%i\n", val);
1577}
1578
1579static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1580{
Jeff Garzikbf794512005-07-31 13:07:26 -04001581 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001582 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001583 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001584
1585 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1586 disable_radio ? "OFF" : "ON");
1587
1588 if (disable_radio) {
1589 priv->status |= STATUS_RF_KILL_SW;
1590
James Ketrenosa613bff2005-08-24 21:43:11 -05001591 if (priv->workqueue)
James Ketrenos43f66a62005-03-25 12:31:53 -06001592 cancel_delayed_work(&priv->request_scan);
James Ketrenos43f66a62005-03-25 12:31:53 -06001593 queue_work(priv->workqueue, &priv->down);
1594 } else {
1595 priv->status &= ~STATUS_RF_KILL_SW;
1596 if (rf_kill_active(priv)) {
1597 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1598 "disabled by HW switch\n");
1599 /* Make sure the RF_KILL check timer is running */
1600 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001601 queue_delayed_work(priv->workqueue, &priv->rf_kill,
James Ketrenos43f66a62005-03-25 12:31:53 -06001602 2 * HZ);
Jeff Garzikbf794512005-07-31 13:07:26 -04001603 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001604 queue_work(priv->workqueue, &priv->up);
1605 }
1606
1607 return 1;
1608}
1609
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001610static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1611 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001612{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001613 struct ipw_priv *priv = d->driver_data;
Jeff Garzikbf794512005-07-31 13:07:26 -04001614
James Ketrenos43f66a62005-03-25 12:31:53 -06001615 ipw_radio_kill_sw(priv, buf[0] == '1');
1616
1617 return count;
1618}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001619
1620static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001621
James Ketrenosb095c382005-08-24 22:04:42 -05001622static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1623 char *buf)
1624{
1625 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1626 int pos = 0, len = 0;
1627 if (priv->config & CFG_SPEED_SCAN) {
1628 while (priv->speed_scan[pos] != 0)
1629 len += sprintf(&buf[len], "%d ",
1630 priv->speed_scan[pos++]);
1631 return len + sprintf(&buf[len], "\n");
1632 }
1633
1634 return sprintf(buf, "0\n");
1635}
1636
1637static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1638 const char *buf, size_t count)
1639{
1640 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1641 int channel, pos = 0;
1642 const char *p = buf;
1643
1644 /* list of space separated channels to scan, optionally ending with 0 */
1645 while ((channel = simple_strtol(p, NULL, 0))) {
1646 if (pos == MAX_SPEED_SCAN - 1) {
1647 priv->speed_scan[pos] = 0;
1648 break;
1649 }
1650
Larry Finger1867b112006-02-28 09:48:28 -06001651 if (ieee80211_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001652 priv->speed_scan[pos++] = channel;
1653 else
1654 IPW_WARNING("Skipping invalid channel request: %d\n",
1655 channel);
1656 p = strchr(p, ' ');
1657 if (!p)
1658 break;
1659 while (*p == ' ' || *p == '\t')
1660 p++;
1661 }
1662
1663 if (pos == 0)
1664 priv->config &= ~CFG_SPEED_SCAN;
1665 else {
1666 priv->speed_scan_pos = 0;
1667 priv->config |= CFG_SPEED_SCAN;
1668 }
1669
1670 return count;
1671}
1672
1673static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1674 store_speed_scan);
1675
1676static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1677 char *buf)
1678{
1679 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1680 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1681}
1682
1683static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1684 const char *buf, size_t count)
1685{
1686 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1687 if (buf[0] == '1')
1688 priv->config |= CFG_NET_STATS;
1689 else
1690 priv->config &= ~CFG_NET_STATS;
1691
1692 return count;
1693}
1694
James Ketrenosafbf30a2005-08-25 00:05:33 -05001695static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1696 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001697
James Ketrenosea2b26e2005-08-24 21:25:16 -05001698static void notify_wx_assoc_event(struct ipw_priv *priv)
1699{
1700 union iwreq_data wrqu;
1701 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1702 if (priv->status & STATUS_ASSOCIATED)
1703 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1704 else
1705 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1706 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1707}
1708
James Ketrenos43f66a62005-03-25 12:31:53 -06001709static void ipw_irq_tasklet(struct ipw_priv *priv)
1710{
1711 u32 inta, inta_mask, handled = 0;
1712 unsigned long flags;
1713 int rc = 0;
1714
1715 spin_lock_irqsave(&priv->lock, flags);
1716
James Ketrenosb095c382005-08-24 22:04:42 -05001717 inta = ipw_read32(priv, IPW_INTA_RW);
1718 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1719 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001720
1721 /* Add any cached INTA values that need to be handled */
1722 inta |= priv->isr_inta;
1723
1724 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001725 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001726 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001727 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001728 }
1729
James Ketrenosb095c382005-08-24 22:04:42 -05001730 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001731 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001732 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001733 priv->status &= ~STATUS_HCMD_ACTIVE;
1734 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001735 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001736 }
1737
James Ketrenosb095c382005-08-24 22:04:42 -05001738 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001739 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001740 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05001741 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06001742 }
1743
James Ketrenosb095c382005-08-24 22:04:42 -05001744 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001745 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001746 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05001747 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06001748 }
1749
James Ketrenosb095c382005-08-24 22:04:42 -05001750 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001751 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001752 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05001753 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06001754 }
1755
James Ketrenosb095c382005-08-24 22:04:42 -05001756 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001757 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001758 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05001759 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06001760 }
1761
James Ketrenosb095c382005-08-24 22:04:42 -05001762 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001763 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001764 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001765 }
1766
James Ketrenosb095c382005-08-24 22:04:42 -05001767 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001768 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001769 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06001770 }
1771
James Ketrenosb095c382005-08-24 22:04:42 -05001772 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001773 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001774 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001775 }
1776
James Ketrenosb095c382005-08-24 22:04:42 -05001777 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001778 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001779 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001780 }
1781
James Ketrenosb095c382005-08-24 22:04:42 -05001782 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001783 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001784 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001785 }
1786
James Ketrenosb095c382005-08-24 22:04:42 -05001787 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001788 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
1789 priv->status |= STATUS_RF_KILL_HW;
1790 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001791 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06001792 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05001793 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001794 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05001795 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001796 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001797
James Ketrenosb095c382005-08-24 22:04:42 -05001798 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08001799 IPW_WARNING("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05001800 if (priv->error) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08001801 IPW_DEBUG_FW("Sysfs 'error' log already exists.\n");
Brice Goglin0f52bf92005-12-01 01:41:46 -08001802#ifdef CONFIG_IPW2200_DEBUG
James Ketrenosb39860c2005-08-12 09:36:32 -05001803 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
1804 struct ipw_fw_error *error =
1805 ipw_alloc_error_log(priv);
1806 ipw_dump_error_log(priv, error);
1807 if (error)
1808 ipw_free_error_log(error);
1809 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001810#endif
James Ketrenosb39860c2005-08-12 09:36:32 -05001811 } else {
1812 priv->error = ipw_alloc_error_log(priv);
1813 if (priv->error)
Zhu Yi1d1b09e2006-03-02 06:40:59 +08001814 IPW_DEBUG_FW("Sysfs 'error' log captured.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05001815 else
Zhu Yi1d1b09e2006-03-02 06:40:59 +08001816 IPW_DEBUG_FW("Error allocating sysfs 'error' "
1817 "log.\n");
Brice Goglin0f52bf92005-12-01 01:41:46 -08001818#ifdef CONFIG_IPW2200_DEBUG
James Ketrenosb39860c2005-08-12 09:36:32 -05001819 if (ipw_debug_level & IPW_DL_FW_ERRORS)
1820 ipw_dump_error_log(priv, priv->error);
1821#endif
1822 }
1823
James Ketrenosb095c382005-08-24 22:04:42 -05001824 /* XXX: If hardware encryption is for WPA/WPA2,
1825 * we have to notify the supplicant. */
1826 if (priv->ieee->sec.encrypt) {
1827 priv->status &= ~STATUS_ASSOCIATED;
1828 notify_wx_assoc_event(priv);
1829 }
1830
1831 /* Keep the restart process from trying to send host
1832 * commands by clearing the INIT status bit */
1833 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001834
1835 /* Cancel currently queued command. */
1836 priv->status &= ~STATUS_HCMD_ACTIVE;
1837 wake_up_interruptible(&priv->wait_command_queue);
1838
James Ketrenos43f66a62005-03-25 12:31:53 -06001839 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05001840 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001841 }
1842
James Ketrenosb095c382005-08-24 22:04:42 -05001843 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001844 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001845 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001846 }
1847
1848 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001849 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06001850 }
1851
1852 /* enable all interrupts */
1853 ipw_enable_interrupts(priv);
1854
1855 spin_unlock_irqrestore(&priv->lock, flags);
1856}
Jeff Garzikbf794512005-07-31 13:07:26 -04001857
James Ketrenos43f66a62005-03-25 12:31:53 -06001858#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
1859static char *get_cmd_string(u8 cmd)
1860{
1861 switch (cmd) {
1862 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04001863 IPW_CMD(POWER_DOWN);
1864 IPW_CMD(SYSTEM_CONFIG);
1865 IPW_CMD(MULTICAST_ADDRESS);
1866 IPW_CMD(SSID);
1867 IPW_CMD(ADAPTER_ADDRESS);
1868 IPW_CMD(PORT_TYPE);
1869 IPW_CMD(RTS_THRESHOLD);
1870 IPW_CMD(FRAG_THRESHOLD);
1871 IPW_CMD(POWER_MODE);
1872 IPW_CMD(WEP_KEY);
1873 IPW_CMD(TGI_TX_KEY);
1874 IPW_CMD(SCAN_REQUEST);
1875 IPW_CMD(SCAN_REQUEST_EXT);
1876 IPW_CMD(ASSOCIATE);
1877 IPW_CMD(SUPPORTED_RATES);
1878 IPW_CMD(SCAN_ABORT);
1879 IPW_CMD(TX_FLUSH);
1880 IPW_CMD(QOS_PARAMETERS);
1881 IPW_CMD(DINO_CONFIG);
1882 IPW_CMD(RSN_CAPABILITIES);
1883 IPW_CMD(RX_KEY);
1884 IPW_CMD(CARD_DISABLE);
1885 IPW_CMD(SEED_NUMBER);
1886 IPW_CMD(TX_POWER);
1887 IPW_CMD(COUNTRY_INFO);
1888 IPW_CMD(AIRONET_INFO);
1889 IPW_CMD(AP_TX_POWER);
1890 IPW_CMD(CCKM_INFO);
1891 IPW_CMD(CCX_VER_INFO);
1892 IPW_CMD(SET_CALIBRATION);
1893 IPW_CMD(SENSITIVITY_CALIB);
1894 IPW_CMD(RETRY_LIMIT);
1895 IPW_CMD(IPW_PRE_POWER_DOWN);
1896 IPW_CMD(VAP_BEACON_TEMPLATE);
1897 IPW_CMD(VAP_DTIM_PERIOD);
1898 IPW_CMD(EXT_SUPPORTED_RATES);
1899 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
1900 IPW_CMD(VAP_QUIET_INTERVALS);
1901 IPW_CMD(VAP_CHANNEL_SWITCH);
1902 IPW_CMD(VAP_MANDATORY_CHANNELS);
1903 IPW_CMD(VAP_CELL_PWR_LIMIT);
1904 IPW_CMD(VAP_CF_PARAM_SET);
1905 IPW_CMD(VAP_SET_BEACONING_STATE);
1906 IPW_CMD(MEASUREMENT);
1907 IPW_CMD(POWER_CAPABILITY);
1908 IPW_CMD(SUPPORTED_CHANNELS);
1909 IPW_CMD(TPC_REPORT);
1910 IPW_CMD(WME_INFO);
1911 IPW_CMD(PRODUCTION_COMMAND);
1912 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06001913 return "UNKNOWN";
1914 }
1915}
James Ketrenos43f66a62005-03-25 12:31:53 -06001916
1917#define HOST_COMPLETE_TIMEOUT HZ
Zhu Yi0a7bcf22006-01-24 16:37:28 +08001918
1919static int __ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
James Ketrenos43f66a62005-03-25 12:31:53 -06001920{
1921 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001922 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06001923
James Ketrenosa613bff2005-08-24 21:43:11 -05001924 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001925 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001926 IPW_ERROR("Failed to send %s: Already sending a command.\n",
1927 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001928 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001929 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06001930 }
1931
1932 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001933
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001934 if (priv->cmdlog) {
1935 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
1936 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
1937 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
1938 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
1939 cmd->len);
1940 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
1941 }
1942
James Ketrenosb095c382005-08-24 22:04:42 -05001943 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1944 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1945 priv->status);
Zhu Yif516dbc2006-01-24 16:36:44 +08001946
1947#ifndef DEBUG_CMD_WEP_KEY
1948 if (cmd->cmd == IPW_CMD_WEP_KEY)
1949 IPW_DEBUG_HC("WEP_KEY command masked out for secure.\n");
1950 else
1951#endif
1952 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
1953
Zhu Yi0a7bcf22006-01-24 16:37:28 +08001954 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001955 if (rc) {
1956 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001957 IPW_ERROR("Failed to send %s: Reason %d\n",
1958 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05001959 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001960 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001961 }
1962 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001963
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001964 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1965 !(priv->
1966 status & STATUS_HCMD_ACTIVE),
1967 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001968 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001969 spin_lock_irqsave(&priv->lock, flags);
1970 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001971 IPW_ERROR("Failed to send %s: Command timed out.\n",
1972 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001973 priv->status &= ~STATUS_HCMD_ACTIVE;
1974 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001975 rc = -EIO;
1976 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001977 }
1978 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05001979 } else
1980 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001981
James Ketrenosb095c382005-08-24 22:04:42 -05001982 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001983 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
1984 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001985 rc = -EIO;
1986 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06001987 }
1988
Zhu Yi2638bc32006-01-24 16:37:52 +08001989 exit:
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001990 if (priv->cmdlog) {
1991 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
1992 priv->cmdlog_pos %= priv->cmdlog_len;
1993 }
1994 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06001995}
1996
Zhu Yi0a7bcf22006-01-24 16:37:28 +08001997static int ipw_send_cmd_simple(struct ipw_priv *priv, u8 command)
James Ketrenos43f66a62005-03-25 12:31:53 -06001998{
1999 struct host_cmd cmd = {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002000 .cmd = command,
James Ketrenos43f66a62005-03-25 12:31:53 -06002001 };
2002
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002003 return __ipw_send_cmd(priv, &cmd);
2004}
2005
2006static int ipw_send_cmd_pdu(struct ipw_priv *priv, u8 command, u8 len,
2007 void *data)
2008{
2009 struct host_cmd cmd = {
2010 .cmd = command,
2011 .len = len,
2012 .param = data,
2013 };
2014
2015 return __ipw_send_cmd(priv, &cmd);
2016}
2017
2018static int ipw_send_host_complete(struct ipw_priv *priv)
2019{
James Ketrenos43f66a62005-03-25 12:31:53 -06002020 if (!priv) {
2021 IPW_ERROR("Invalid args\n");
2022 return -1;
2023 }
2024
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002025 return ipw_send_cmd_simple(priv, IPW_CMD_HOST_COMPLETE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002026}
2027
Jeff Garzikbf794512005-07-31 13:07:26 -04002028static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06002029 struct ipw_sys_config *config)
2030{
James Ketrenos43f66a62005-03-25 12:31:53 -06002031 if (!priv || !config) {
2032 IPW_ERROR("Invalid args\n");
2033 return -1;
2034 }
2035
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002036 return ipw_send_cmd_pdu(priv, IPW_CMD_SYSTEM_CONFIG, sizeof(*config),
Zhu Yi2638bc32006-01-24 16:37:52 +08002037 config);
James Ketrenos43f66a62005-03-25 12:31:53 -06002038}
2039
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002040static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002041{
James Ketrenos43f66a62005-03-25 12:31:53 -06002042 if (!priv || !ssid) {
2043 IPW_ERROR("Invalid args\n");
2044 return -1;
2045 }
2046
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002047 return ipw_send_cmd_pdu(priv, IPW_CMD_SSID, min(len, IW_ESSID_MAX_SIZE),
Zhu Yi2638bc32006-01-24 16:37:52 +08002048 ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06002049}
2050
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002051static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002052{
James Ketrenos43f66a62005-03-25 12:31:53 -06002053 if (!priv || !mac) {
2054 IPW_ERROR("Invalid args\n");
2055 return -1;
2056 }
2057
2058 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
2059 priv->net_dev->name, MAC_ARG(mac));
2060
Zhu Yi2638bc32006-01-24 16:37:52 +08002061 return ipw_send_cmd_pdu(priv, IPW_CMD_ADAPTER_ADDRESS, ETH_ALEN, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002062}
2063
James Ketrenosa613bff2005-08-24 21:43:11 -05002064/*
2065 * NOTE: This must be executed from our workqueue as it results in udelay
2066 * being called which may corrupt the keyboard if executed on default
2067 * workqueue
2068 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002069static void ipw_adapter_restart(void *adapter)
2070{
2071 struct ipw_priv *priv = adapter;
2072
2073 if (priv->status & STATUS_RF_KILL_MASK)
2074 return;
2075
2076 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002077
2078 if (priv->assoc_network &&
2079 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2080 ipw_remove_current_network(priv);
2081
James Ketrenos43f66a62005-03-25 12:31:53 -06002082 if (ipw_up(priv)) {
2083 IPW_ERROR("Failed to up device\n");
2084 return;
2085 }
2086}
2087
James Ketrenosc848d0a2005-08-24 21:56:24 -05002088static void ipw_bg_adapter_restart(void *data)
2089{
2090 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08002091 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002092 ipw_adapter_restart(data);
Zhu Yi46441512006-01-24 16:37:59 +08002093 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002094}
2095
James Ketrenos43f66a62005-03-25 12:31:53 -06002096#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2097
2098static void ipw_scan_check(void *data)
2099{
2100 struct ipw_priv *priv = data;
2101 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2102 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Zhu Yic7b6a672006-01-24 16:37:05 +08002103 "adapter after (%dms).\n",
2104 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
James Ketrenosa613bff2005-08-24 21:43:11 -05002105 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002106 }
2107}
2108
James Ketrenosc848d0a2005-08-24 21:56:24 -05002109static void ipw_bg_scan_check(void *data)
2110{
2111 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08002112 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002113 ipw_scan_check(data);
Zhu Yi46441512006-01-24 16:37:59 +08002114 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002115}
2116
James Ketrenos43f66a62005-03-25 12:31:53 -06002117static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2118 struct ipw_scan_request_ext *request)
2119{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002120 return ipw_send_cmd_pdu(priv, IPW_CMD_SCAN_REQUEST_EXT,
Zhu Yi2638bc32006-01-24 16:37:52 +08002121 sizeof(*request), request);
James Ketrenos43f66a62005-03-25 12:31:53 -06002122}
2123
2124static int ipw_send_scan_abort(struct ipw_priv *priv)
2125{
James Ketrenos43f66a62005-03-25 12:31:53 -06002126 if (!priv) {
2127 IPW_ERROR("Invalid args\n");
2128 return -1;
2129 }
2130
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002131 return ipw_send_cmd_simple(priv, IPW_CMD_SCAN_ABORT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002132}
2133
2134static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2135{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002136 struct ipw_sensitivity_calib calib = {
2137 .beacon_rssi_raw = sens,
James Ketrenos43f66a62005-03-25 12:31:53 -06002138 };
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002139
2140 return ipw_send_cmd_pdu(priv, IPW_CMD_SENSITIVITY_CALIB, sizeof(calib),
Zhu Yi2638bc32006-01-24 16:37:52 +08002141 &calib);
James Ketrenos43f66a62005-03-25 12:31:53 -06002142}
2143
2144static int ipw_send_associate(struct ipw_priv *priv,
2145 struct ipw_associate *associate)
2146{
James Ketrenosa613bff2005-08-24 21:43:11 -05002147 struct ipw_associate tmp_associate;
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002148
2149 if (!priv || !associate) {
2150 IPW_ERROR("Invalid args\n");
2151 return -1;
2152 }
2153
James Ketrenosa613bff2005-08-24 21:43:11 -05002154 memcpy(&tmp_associate, associate, sizeof(*associate));
2155 tmp_associate.policy_support =
2156 cpu_to_le16(tmp_associate.policy_support);
2157 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
2158 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
2159 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
2160 tmp_associate.listen_interval =
2161 cpu_to_le16(tmp_associate.listen_interval);
2162 tmp_associate.beacon_interval =
2163 cpu_to_le16(tmp_associate.beacon_interval);
2164 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
2165
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002166 return ipw_send_cmd_pdu(priv, IPW_CMD_ASSOCIATE, sizeof(tmp_associate),
Zhu Yi2638bc32006-01-24 16:37:52 +08002167 &tmp_associate);
James Ketrenos43f66a62005-03-25 12:31:53 -06002168}
2169
2170static int ipw_send_supported_rates(struct ipw_priv *priv,
2171 struct ipw_supported_rates *rates)
2172{
James Ketrenos43f66a62005-03-25 12:31:53 -06002173 if (!priv || !rates) {
2174 IPW_ERROR("Invalid args\n");
2175 return -1;
2176 }
2177
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002178 return ipw_send_cmd_pdu(priv, IPW_CMD_SUPPORTED_RATES, sizeof(*rates),
Zhu Yi2638bc32006-01-24 16:37:52 +08002179 rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06002180}
2181
2182static int ipw_set_random_seed(struct ipw_priv *priv)
2183{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002184 u32 val;
James Ketrenos43f66a62005-03-25 12:31:53 -06002185
2186 if (!priv) {
2187 IPW_ERROR("Invalid args\n");
2188 return -1;
2189 }
2190
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002191 get_random_bytes(&val, sizeof(val));
James Ketrenos43f66a62005-03-25 12:31:53 -06002192
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002193 return ipw_send_cmd_pdu(priv, IPW_CMD_SEED_NUMBER, sizeof(val), &val);
James Ketrenos43f66a62005-03-25 12:31:53 -06002194}
2195
James Ketrenos43f66a62005-03-25 12:31:53 -06002196static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2197{
James Ketrenos43f66a62005-03-25 12:31:53 -06002198 if (!priv) {
2199 IPW_ERROR("Invalid args\n");
2200 return -1;
2201 }
2202
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002203 return ipw_send_cmd_pdu(priv, IPW_CMD_CARD_DISABLE, sizeof(phy_off),
Zhu Yi2638bc32006-01-24 16:37:52 +08002204 &phy_off);
James Ketrenos43f66a62005-03-25 12:31:53 -06002205}
James Ketrenos43f66a62005-03-25 12:31:53 -06002206
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002207static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002208{
James Ketrenos43f66a62005-03-25 12:31:53 -06002209 if (!priv || !power) {
2210 IPW_ERROR("Invalid args\n");
2211 return -1;
2212 }
2213
Zhu Yi2638bc32006-01-24 16:37:52 +08002214 return ipw_send_cmd_pdu(priv, IPW_CMD_TX_POWER, sizeof(*power), power);
James Ketrenos43f66a62005-03-25 12:31:53 -06002215}
James Ketrenos43f66a62005-03-25 12:31:53 -06002216
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002217static int ipw_set_tx_power(struct ipw_priv *priv)
2218{
Larry Finger1867b112006-02-28 09:48:28 -06002219 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002220 struct ipw_tx_power tx_power;
2221 s8 max_power;
2222 int i;
2223
2224 memset(&tx_power, 0, sizeof(tx_power));
2225
2226 /* configure device for 'G' band */
2227 tx_power.ieee_mode = IPW_G_MODE;
2228 tx_power.num_channels = geo->bg_channels;
2229 for (i = 0; i < geo->bg_channels; i++) {
2230 max_power = geo->bg[i].max_power;
2231 tx_power.channels_tx_power[i].channel_number =
2232 geo->bg[i].channel;
2233 tx_power.channels_tx_power[i].tx_power = max_power ?
2234 min(max_power, priv->tx_power) : priv->tx_power;
2235 }
2236 if (ipw_send_tx_power(priv, &tx_power))
2237 return -EIO;
2238
2239 /* configure device to also handle 'B' band */
2240 tx_power.ieee_mode = IPW_B_MODE;
2241 if (ipw_send_tx_power(priv, &tx_power))
2242 return -EIO;
2243
2244 /* configure device to also handle 'A' band */
2245 if (priv->ieee->abg_true) {
2246 tx_power.ieee_mode = IPW_A_MODE;
2247 tx_power.num_channels = geo->a_channels;
2248 for (i = 0; i < tx_power.num_channels; i++) {
2249 max_power = geo->a[i].max_power;
2250 tx_power.channels_tx_power[i].channel_number =
2251 geo->a[i].channel;
2252 tx_power.channels_tx_power[i].tx_power = max_power ?
2253 min(max_power, priv->tx_power) : priv->tx_power;
2254 }
2255 if (ipw_send_tx_power(priv, &tx_power))
2256 return -EIO;
2257 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002258 return 0;
2259}
2260
2261static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2262{
2263 struct ipw_rts_threshold rts_threshold = {
2264 .rts_threshold = rts,
2265 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002266
2267 if (!priv) {
2268 IPW_ERROR("Invalid args\n");
2269 return -1;
2270 }
2271
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002272 return ipw_send_cmd_pdu(priv, IPW_CMD_RTS_THRESHOLD,
2273 sizeof(rts_threshold), &rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002274}
2275
2276static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2277{
2278 struct ipw_frag_threshold frag_threshold = {
2279 .frag_threshold = frag,
2280 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002281
2282 if (!priv) {
2283 IPW_ERROR("Invalid args\n");
2284 return -1;
2285 }
2286
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002287 return ipw_send_cmd_pdu(priv, IPW_CMD_FRAG_THRESHOLD,
2288 sizeof(frag_threshold), &frag_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002289}
2290
2291static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2292{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002293 u32 param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002294
2295 if (!priv) {
2296 IPW_ERROR("Invalid args\n");
2297 return -1;
2298 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002299
James Ketrenos43f66a62005-03-25 12:31:53 -06002300 /* If on battery, set to 3, if AC set to CAM, else user
2301 * level */
2302 switch (mode) {
2303 case IPW_POWER_BATTERY:
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002304 param = IPW_POWER_INDEX_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06002305 break;
2306 case IPW_POWER_AC:
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002307 param = IPW_POWER_MODE_CAM;
James Ketrenos43f66a62005-03-25 12:31:53 -06002308 break;
2309 default:
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002310 param = mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06002311 break;
2312 }
2313
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002314 return ipw_send_cmd_pdu(priv, IPW_CMD_POWER_MODE, sizeof(param),
Zhu Yi2638bc32006-01-24 16:37:52 +08002315 &param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002316}
2317
James Ketrenosafbf30a2005-08-25 00:05:33 -05002318static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2319{
2320 struct ipw_retry_limit retry_limit = {
2321 .short_retry_limit = slimit,
2322 .long_retry_limit = llimit
2323 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05002324
2325 if (!priv) {
2326 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002327 return -1;
2328 }
2329
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002330 return ipw_send_cmd_pdu(priv, IPW_CMD_RETRY_LIMIT, sizeof(retry_limit),
Zhu Yi2638bc32006-01-24 16:37:52 +08002331 &retry_limit);
James Ketrenos43f66a62005-03-25 12:31:53 -06002332}
2333
2334/*
2335 * The IPW device contains a Microwire compatible EEPROM that stores
2336 * various data like the MAC address. Usually the firmware has exclusive
2337 * access to the eeprom, but during device initialization (before the
2338 * device driver has sent the HostComplete command to the firmware) the
2339 * device driver has read access to the EEPROM by way of indirect addressing
2340 * through a couple of memory mapped registers.
2341 *
2342 * The following is a simplified implementation for pulling data out of the
2343 * the eeprom, along with some helper functions to find information in
2344 * the per device private data's copy of the eeprom.
2345 *
2346 * NOTE: To better understand how these functions work (i.e what is a chip
2347 * select and why do have to keep driving the eeprom clock?), read
2348 * just about any data sheet for a Microwire compatible EEPROM.
2349 */
2350
2351/* write a 32 bit value into the indirect accessor register */
2352static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2353{
2354 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002355
James Ketrenos43f66a62005-03-25 12:31:53 -06002356 /* the eeprom requires some time to complete the operation */
2357 udelay(p->eeprom_delay);
2358
2359 return;
2360}
2361
2362/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002363static void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002364{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002365 eeprom_write_reg(priv, 0);
2366 eeprom_write_reg(priv, EEPROM_BIT_CS);
2367 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2368 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002369}
2370
2371/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002372static void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002373{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002374 eeprom_write_reg(priv, EEPROM_BIT_CS);
2375 eeprom_write_reg(priv, 0);
2376 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002377}
2378
2379/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002380static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002381{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002382 int d = (bit ? EEPROM_BIT_DI : 0);
2383 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2384 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002385}
2386
2387/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002388static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002389{
2390 int i;
2391
2392 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002393 eeprom_write_bit(priv, 1);
2394 eeprom_write_bit(priv, op & 2);
2395 eeprom_write_bit(priv, op & 1);
2396 for (i = 7; i >= 0; i--) {
2397 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002398 }
2399}
2400
2401/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002402static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002403{
2404 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002405 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002406
James Ketrenos43f66a62005-03-25 12:31:53 -06002407 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002408 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002409
2410 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002411 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002412
2413 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002414 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002415 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002416 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2417 eeprom_write_reg(priv, EEPROM_BIT_CS);
2418 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2419 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002420 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002421
James Ketrenos43f66a62005-03-25 12:31:53 -06002422 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002423 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002424 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002425
James Ketrenos43f66a62005-03-25 12:31:53 -06002426 return r;
2427}
2428
2429/* helper function for pulling the mac address out of the private */
2430/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002431static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002432{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002433 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002434}
2435
2436/*
2437 * Either the device driver (i.e. the host) or the firmware can
2438 * load eeprom data into the designated region in SRAM. If neither
2439 * happens then the FW will shutdown with a fatal error.
2440 *
2441 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2442 * bit needs region of shared SRAM needs to be non-zero.
2443 */
2444static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2445{
2446 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002447 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002448
James Ketrenos43f66a62005-03-25 12:31:53 -06002449 IPW_DEBUG_TRACE(">>\n");
2450
2451 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002452 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002453 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002454
Jeff Garzikbf794512005-07-31 13:07:26 -04002455 /*
2456 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002457 copy. Otherwise let the firmware know to perform the operation
Zhu Yic7b6a672006-01-24 16:37:05 +08002458 on its own.
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002459 */
Alexey Dobriyan386093e2006-02-01 03:04:57 -08002460 if (priv->eeprom[EEPROM_VERSION] != 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002461 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2462
2463 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002464 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002465 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002466
2467 /* Do not load eeprom data on fatal error or suspend */
2468 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2469 } else {
2470 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2471
2472 /* Load eeprom data on fatal error or suspend */
2473 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2474 }
2475
2476 IPW_DEBUG_TRACE("<<\n");
2477}
2478
Arjan van de Ven858119e2006-01-14 13:20:43 -08002479static void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
James Ketrenos43f66a62005-03-25 12:31:53 -06002480{
2481 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002482 if (!count)
2483 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002484 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002485 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002486 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002487}
2488
2489static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2490{
James Ketrenosb095c382005-08-24 22:04:42 -05002491 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002492 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002493 sizeof(struct command_block));
2494}
2495
2496static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002497{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002498
2499 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002500
James Ketrenos43f66a62005-03-25 12:31:53 -06002501 /* Start the dma */
2502 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002503
James Ketrenos43f66a62005-03-25 12:31:53 -06002504 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002505 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002506
2507 IPW_DEBUG_FW("<< : \n");
2508 return 0;
2509}
2510
2511static void ipw_fw_dma_abort(struct ipw_priv *priv)
2512{
2513 u32 control = 0;
2514
2515 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002516
2517 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002518 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002519 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002520 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002521
James Ketrenos43f66a62005-03-25 12:31:53 -06002522 IPW_DEBUG_FW("<< \n");
2523}
2524
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002525static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2526 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002527{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002528 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002529 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002530 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002531 IPW_DEBUG_FW(">> :\n");
2532
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002533 ipw_write_indirect(priv, address, (u8 *) cb,
2534 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002535
2536 IPW_DEBUG_FW("<< :\n");
2537 return 0;
2538
2539}
2540
2541static int ipw_fw_dma_kick(struct ipw_priv *priv)
2542{
2543 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002544 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002545
2546 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002547
James Ketrenos43f66a62005-03-25 12:31:53 -06002548 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002549 ipw_fw_dma_write_command_block(priv, index,
2550 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002551
2552 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002553 ipw_clear_bit(priv, IPW_RESET_REG,
2554 IPW_RESET_REG_MASTER_DISABLED |
2555 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002556
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002557 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002558 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002559 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002560
2561 IPW_DEBUG_FW("<< :\n");
2562 return 0;
2563}
2564
2565static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2566{
2567 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002568 u32 register_value = 0;
2569 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002570
2571 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002572 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002573 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002574
2575 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002576 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2577 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002578
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002579 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002580 cb_fields_address = address;
2581 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002582 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002583
2584 cb_fields_address += sizeof(u32);
2585 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002586 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002587
2588 cb_fields_address += sizeof(u32);
2589 register_value = ipw_read_reg32(priv, cb_fields_address);
2590 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2591 register_value);
2592
2593 cb_fields_address += sizeof(u32);
2594 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002595 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002596
2597 IPW_DEBUG_FW(">> :\n");
2598}
2599
2600static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2601{
2602 u32 current_cb_address = 0;
2603 u32 current_cb_index = 0;
2604
2605 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002606 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002607
James Ketrenosb095c382005-08-24 22:04:42 -05002608 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002609 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002610
James Ketrenos43f66a62005-03-25 12:31:53 -06002611 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002612 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002613
2614 IPW_DEBUG_FW(">> :\n");
2615 return current_cb_index;
2616
2617}
2618
2619static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2620 u32 src_address,
2621 u32 dest_address,
2622 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002623 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002624{
2625
Jeff Garzikbf794512005-07-31 13:07:26 -04002626 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002627 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2628 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002629 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002630 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002631
2632 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2633 src_address, dest_address, length);
2634
2635 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2636 return -1;
2637
2638 last_cb_element = priv->sram_desc.last_cb_index;
2639 cb = &priv->sram_desc.cb_list[last_cb_element];
2640 priv->sram_desc.last_cb_index++;
2641
2642 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002643 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002644 control |= CB_INT_ENABLED;
2645
2646 if (is_last)
2647 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002648
James Ketrenos43f66a62005-03-25 12:31:53 -06002649 control |= length;
2650
2651 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002652 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002653
2654 /* Copy the Source and Destination addresses */
2655 cb->dest_addr = dest_address;
2656 cb->source_addr = src_address;
2657
2658 /* Copy the Control Word last */
2659 cb->control = control;
2660
2661 return 0;
2662}
2663
2664static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002665 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002666{
2667 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002668 u32 src_offset = 0;
2669 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002670 int status = 0;
2671 IPW_DEBUG_FW(">> \n");
2672 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2673 src_phys, dest_address, length);
2674 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002675 status = ipw_fw_dma_add_command_block(priv,
2676 src_phys + src_offset,
2677 dest_address +
2678 dest_offset,
2679 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002680 if (status) {
2681 IPW_DEBUG_FW_INFO(": Failed\n");
2682 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002683 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002684 IPW_DEBUG_FW_INFO(": Added new cb\n");
2685
2686 src_offset += CB_MAX_LENGTH;
2687 dest_offset += CB_MAX_LENGTH;
2688 bytes_left -= CB_MAX_LENGTH;
2689 }
2690
2691 /* add the buffer tail */
2692 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002693 status =
2694 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2695 dest_address + dest_offset,
2696 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002697 if (status) {
2698 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2699 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002700 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002701 IPW_DEBUG_FW_INFO
2702 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002703 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002704
James Ketrenos43f66a62005-03-25 12:31:53 -06002705 IPW_DEBUG_FW("<< \n");
2706 return 0;
2707}
2708
2709static int ipw_fw_dma_wait(struct ipw_priv *priv)
2710{
Zhu Yi397ae122006-01-24 16:37:22 +08002711 u32 current_index = 0, previous_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002712 u32 watchdog = 0;
2713
2714 IPW_DEBUG_FW(">> : \n");
2715
2716 current_index = ipw_fw_dma_command_block_index(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08002717 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%08X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002718 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002719
2720 while (current_index < priv->sram_desc.last_cb_index) {
2721 udelay(50);
Zhu Yi397ae122006-01-24 16:37:22 +08002722 previous_index = current_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002723 current_index = ipw_fw_dma_command_block_index(priv);
2724
Zhu Yi397ae122006-01-24 16:37:22 +08002725 if (previous_index < current_index) {
2726 watchdog = 0;
2727 continue;
2728 }
2729 if (++watchdog > 400) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002730 IPW_DEBUG_FW_INFO("Timeout\n");
2731 ipw_fw_dma_dump_command_block(priv);
2732 ipw_fw_dma_abort(priv);
2733 return -1;
2734 }
2735 }
2736
2737 ipw_fw_dma_abort(priv);
2738
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002739 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002740 ipw_set_bit(priv, IPW_RESET_REG,
2741 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002742
2743 IPW_DEBUG_FW("<< dmaWaitSync \n");
2744 return 0;
2745}
2746
Jeff Garzikbf794512005-07-31 13:07:26 -04002747static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002748{
2749 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002750 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002751 unsigned long flags;
2752
2753 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002754 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2755 network = list_entry(element, struct ieee80211_network, list);
2756 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2757 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002758 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002759 &priv->ieee->network_free_list);
2760 }
2761 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002762 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002763}
2764
2765/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002766 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002767 * Reads debug register from domain0.
2768 * If card is present, pre-defined value should
2769 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002770 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002771 * @param priv
2772 * @return 1 if card is present, 0 otherwise
2773 */
2774static inline int ipw_alive(struct ipw_priv *priv)
2775{
2776 return ipw_read32(priv, 0x90) == 0xd55555d5;
2777}
2778
Zhu Yic7b6a672006-01-24 16:37:05 +08002779/* timeout in msec, attempted in 10-msec quanta */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002780static int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
James Ketrenos43f66a62005-03-25 12:31:53 -06002781 int timeout)
2782{
2783 int i = 0;
2784
2785 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002786 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002787 return i;
2788 mdelay(10);
2789 i += 10;
2790 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002791
James Ketrenos43f66a62005-03-25 12:31:53 -06002792 return -ETIME;
2793}
2794
Jeff Garzikbf794512005-07-31 13:07:26 -04002795/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002796 * the ipw hardware. It assumes the buffer has all the bits for the
2797 * image and the caller is handling the memory allocation and clean up.
2798 */
2799
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002800static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002801{
2802 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002803
James Ketrenos43f66a62005-03-25 12:31:53 -06002804 IPW_DEBUG_TRACE(">> \n");
2805 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002806 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002807
Zhu Yic7b6a672006-01-24 16:37:05 +08002808 /* timeout is in msec, polled in 10-msec quanta */
James Ketrenosb095c382005-08-24 22:04:42 -05002809 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2810 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002811 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08002812 IPW_ERROR("wait for stop master failed after 100ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002813 return -1;
2814 }
2815
2816 IPW_DEBUG_INFO("stop master %dms\n", rc);
2817
2818 return rc;
2819}
2820
2821static void ipw_arc_release(struct ipw_priv *priv)
2822{
2823 IPW_DEBUG_TRACE(">> \n");
2824 mdelay(5);
2825
James Ketrenosb095c382005-08-24 22:04:42 -05002826 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002827
2828 /* no one knows timing, for safety add some delay */
2829 mdelay(5);
2830}
2831
James Ketrenos43f66a62005-03-25 12:31:53 -06002832struct fw_chunk {
2833 u32 address;
2834 u32 length;
2835};
2836
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002837static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002838{
2839 int rc = 0, i, addr;
2840 u8 cr = 0;
2841 u16 *image;
2842
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002843 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002844
James Ketrenos43f66a62005-03-25 12:31:53 -06002845 IPW_DEBUG_TRACE(">> \n");
2846
2847 rc = ipw_stop_master(priv);
2848
2849 if (rc < 0)
2850 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002851
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002852// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002853
James Ketrenosb095c382005-08-24 22:04:42 -05002854 for (addr = IPW_SHARED_LOWER_BOUND;
2855 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002856 ipw_write32(priv, addr, 0);
2857 }
2858
2859 /* no ucode (yet) */
2860 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2861 /* destroy DMA queues */
2862 /* reset sequence */
2863
James Ketrenosb095c382005-08-24 22:04:42 -05002864 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002865 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002866 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002867 mdelay(1);
2868
2869 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002870 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002871 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002872
James Ketrenosb095c382005-08-24 22:04:42 -05002873 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002874 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002875
James Ketrenos43f66a62005-03-25 12:31:53 -06002876 /* enable ucode store */
Zhu Yic8fe6672006-01-24 16:36:36 +08002877 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0x0);
2878 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002879 mdelay(1);
2880
2881 /* write ucode */
2882 /**
2883 * @bug
2884 * Do NOT set indirect address register once and then
2885 * store data to indirect data register in the loop.
2886 * It seems very reasonable, but in this case DINO do not
2887 * accept ucode. It is essential to set address each time.
2888 */
2889 /* load new ipw uCode */
2890 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002891 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002892 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002893
James Ketrenos43f66a62005-03-25 12:31:53 -06002894 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002895 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2896 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002897
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002898 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002899
2900 /* wait for alive response */
2901 for (i = 0; i < 100; i++) {
2902 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002903 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002904 if (cr & DINO_RXFIFO_DATA)
2905 break;
2906 mdelay(1);
2907 }
2908
2909 if (cr & DINO_RXFIFO_DATA) {
2910 /* alive_command_responce size is NOT multiple of 4 */
2911 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002912
2913 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002914 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002915 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002916 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002917 memcpy(&priv->dino_alive, response_buffer,
2918 sizeof(priv->dino_alive));
2919 if (priv->dino_alive.alive_command == 1
2920 && priv->dino_alive.ucode_valid == 1) {
2921 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002922 IPW_DEBUG_INFO
2923 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2924 "of %02d/%02d/%02d %02d:%02d\n",
2925 priv->dino_alive.software_revision,
2926 priv->dino_alive.software_revision,
2927 priv->dino_alive.device_identifier,
2928 priv->dino_alive.device_identifier,
2929 priv->dino_alive.time_stamp[0],
2930 priv->dino_alive.time_stamp[1],
2931 priv->dino_alive.time_stamp[2],
2932 priv->dino_alive.time_stamp[3],
2933 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002934 } else {
2935 IPW_DEBUG_INFO("Microcode is not alive\n");
2936 rc = -EINVAL;
2937 }
2938 } else {
2939 IPW_DEBUG_INFO("No alive response from DINO\n");
2940 rc = -ETIME;
2941 }
2942
2943 /* disable DINO, otherwise for some reason
2944 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002945 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002946
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002947// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002948
2949 return rc;
2950}
2951
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002952static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002953{
2954 int rc = -1;
2955 int offset = 0;
2956 struct fw_chunk *chunk;
2957 dma_addr_t shared_phys;
2958 u8 *shared_virt;
2959
2960 IPW_DEBUG_TRACE("<< : \n");
2961 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2962
2963 if (!shared_virt)
2964 return -ENOMEM;
2965
2966 memmove(shared_virt, data, len);
2967
2968 /* Start the Dma */
2969 rc = ipw_fw_dma_enable(priv);
2970
2971 if (priv->sram_desc.last_cb_index > 0) {
2972 /* the DMA is already ready this would be a bug. */
2973 BUG();
2974 goto out;
2975 }
2976
2977 do {
2978 chunk = (struct fw_chunk *)(data + offset);
2979 offset += sizeof(struct fw_chunk);
2980 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04002981 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06002982 * offeset*/
2983 /* Dma loading */
2984 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05002985 le32_to_cpu(chunk->address),
2986 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06002987 if (rc) {
2988 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
2989 goto out;
2990 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002991
James Ketrenosa613bff2005-08-24 21:43:11 -05002992 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06002993 } while (offset < len);
2994
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002995 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06002996 rc = ipw_fw_dma_kick(priv);
2997 if (rc) {
2998 IPW_ERROR("dmaKick Failed\n");
2999 goto out;
3000 }
3001
3002 rc = ipw_fw_dma_wait(priv);
3003 if (rc) {
3004 IPW_ERROR("dmaWaitSync Failed\n");
3005 goto out;
3006 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003007 out:
3008 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06003009 return rc;
3010}
3011
3012/* stop nic */
3013static int ipw_stop_nic(struct ipw_priv *priv)
3014{
3015 int rc = 0;
3016
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003017 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003018 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003019
James Ketrenosb095c382005-08-24 22:04:42 -05003020 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3021 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003022 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003023 IPW_ERROR("wait for reg master disabled failed after 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003024 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003025 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003026
James Ketrenosb095c382005-08-24 22:04:42 -05003027 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003028
James Ketrenos43f66a62005-03-25 12:31:53 -06003029 return rc;
3030}
3031
3032static void ipw_start_nic(struct ipw_priv *priv)
3033{
3034 IPW_DEBUG_TRACE(">>\n");
3035
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003036 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003037 ipw_clear_bit(priv, IPW_RESET_REG,
3038 IPW_RESET_REG_MASTER_DISABLED |
3039 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003040 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003041
James Ketrenos43f66a62005-03-25 12:31:53 -06003042 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003043 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3044 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003045
3046 IPW_DEBUG_TRACE("<<\n");
3047}
Jeff Garzikbf794512005-07-31 13:07:26 -04003048
James Ketrenos43f66a62005-03-25 12:31:53 -06003049static int ipw_init_nic(struct ipw_priv *priv)
3050{
3051 int rc;
3052
3053 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003054 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003055 /*prvHwInitNic */
3056 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003057 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003058
3059 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003060 ipw_write32(priv, IPW_READ_INT_REGISTER,
3061 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003062
3063 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003064 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3065 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003066 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003067 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3068
3069 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003070 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003071
3072 udelay(10);
3073
3074 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003075 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003076
3077 IPW_DEBUG_TRACE(">>\n");
3078 return 0;
3079}
3080
Jeff Garzikbf794512005-07-31 13:07:26 -04003081/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003082 * Probe is an ok place to call this from.
3083 */
3084static int ipw_reset_nic(struct ipw_priv *priv)
3085{
3086 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003087 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003088
3089 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003090
James Ketrenos43f66a62005-03-25 12:31:53 -06003091 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003092
James Ketrenosa613bff2005-08-24 21:43:11 -05003093 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003094 /* Clear the 'host command active' bit... */
3095 priv->status &= ~STATUS_HCMD_ACTIVE;
3096 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003097 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3098 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003099 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003100
3101 IPW_DEBUG_TRACE("<<\n");
3102 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003103}
James Ketrenos43f66a62005-03-25 12:31:53 -06003104
James Ketrenos9006ea72006-03-08 03:22:28 +08003105
3106struct ipw_fw {
3107 u32 ver;
3108 u32 boot_size;
3109 u32 ucode_size;
3110 u32 fw_size;
3111 u8 data[0];
3112};
3113
Jeff Garzikbf794512005-07-31 13:07:26 -04003114static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos9006ea72006-03-08 03:22:28 +08003115 const struct firmware **raw, const char *name)
James Ketrenos43f66a62005-03-25 12:31:53 -06003116{
James Ketrenos9006ea72006-03-08 03:22:28 +08003117 struct ipw_fw *fw;
James Ketrenos43f66a62005-03-25 12:31:53 -06003118 int rc;
3119
3120 /* ask firmware_class module to get the boot firmware off disk */
James Ketrenos9006ea72006-03-08 03:22:28 +08003121 rc = request_firmware(raw, name, &priv->pci_dev->dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06003122 if (rc < 0) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003123 IPW_ERROR("%s request_firmware failed: Reason %d\n", name, rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003124 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003125 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003126
James Ketrenos9006ea72006-03-08 03:22:28 +08003127 if ((*raw)->size < sizeof(*fw)) {
3128 IPW_ERROR("%s is too small (%zd)\n", name, (*raw)->size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003129 return -EINVAL;
3130 }
3131
James Ketrenos9006ea72006-03-08 03:22:28 +08003132 fw = (void *)(*raw)->data;
3133
3134 if ((*raw)->size < sizeof(*fw) +
3135 fw->boot_size + fw->ucode_size + fw->fw_size) {
3136 IPW_ERROR("%s is too small or corrupt (%zd)\n",
3137 name, (*raw)->size);
3138 return -EINVAL;
3139 }
3140
3141 IPW_DEBUG_INFO("Read firmware '%s' image v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003142 name,
James Ketrenos9006ea72006-03-08 03:22:28 +08003143 le32_to_cpu(fw->ver) >> 16,
3144 le32_to_cpu(fw->ver) & 0xff,
3145 (*raw)->size - sizeof(*fw));
James Ketrenos43f66a62005-03-25 12:31:53 -06003146 return 0;
3147}
3148
James Ketrenosb095c382005-08-24 22:04:42 -05003149#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003150
Arjan van de Ven858119e2006-01-14 13:20:43 -08003151static void ipw_rx_queue_reset(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003152 struct ipw_rx_queue *rxq)
3153{
3154 unsigned long flags;
3155 int i;
3156
3157 spin_lock_irqsave(&rxq->lock, flags);
3158
3159 INIT_LIST_HEAD(&rxq->rx_free);
3160 INIT_LIST_HEAD(&rxq->rx_used);
3161
3162 /* Fill the rx_used queue with _all_ of the Rx buffers */
3163 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3164 /* In the reset function, these buffers may have been allocated
3165 * to an SKB, so we need to unmap and free potential storage */
3166 if (rxq->pool[i].skb != NULL) {
3167 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003168 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003169 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003170 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003171 }
3172 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3173 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003174
James Ketrenos43f66a62005-03-25 12:31:53 -06003175 /* Set us so that we have processed and used all buffers, but have
3176 * not restocked the Rx queue with fresh buffers */
3177 rxq->read = rxq->write = 0;
3178 rxq->processed = RX_QUEUE_SIZE - 1;
3179 rxq->free_count = 0;
3180 spin_unlock_irqrestore(&rxq->lock, flags);
3181}
3182
3183#ifdef CONFIG_PM
3184static int fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003185static const struct firmware *raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003186
3187static void free_firmware(void)
3188{
3189 if (fw_loaded) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003190 release_firmware(raw);
3191 raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003192 fw_loaded = 0;
3193 }
3194}
3195#else
3196#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003197#endif
3198
3199static int ipw_load(struct ipw_priv *priv)
3200{
3201#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003202 const struct firmware *raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003203#endif
James Ketrenos9006ea72006-03-08 03:22:28 +08003204 struct ipw_fw *fw;
3205 u8 *boot_img, *ucode_img, *fw_img;
3206 u8 *name = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003207 int rc = 0, retries = 3;
3208
Zhu Yi397ae122006-01-24 16:37:22 +08003209 switch (priv->ieee->iw_mode) {
3210 case IW_MODE_ADHOC:
James Ketrenos9006ea72006-03-08 03:22:28 +08003211 name = "ipw2200-ibss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003212 break;
James Ketrenosb095c382005-08-24 22:04:42 -05003213#ifdef CONFIG_IPW2200_MONITOR
Zhu Yi397ae122006-01-24 16:37:22 +08003214 case IW_MODE_MONITOR:
James Ketrenos9006ea72006-03-08 03:22:28 +08003215 name = "ipw2200-sniffer.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003216 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003217#endif
Zhu Yi397ae122006-01-24 16:37:22 +08003218 case IW_MODE_INFRA:
James Ketrenos9006ea72006-03-08 03:22:28 +08003219 name = "ipw2200-bss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003220 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003221 }
Zhu Yi397ae122006-01-24 16:37:22 +08003222
James Ketrenos9006ea72006-03-08 03:22:28 +08003223 if (!name) {
3224 rc = -EINVAL;
3225 goto error;
3226 }
3227
3228#ifdef CONFIG_PM
3229 if (!fw_loaded) {
3230#endif
3231 rc = ipw_get_fw(priv, &raw, name);
3232 if (rc < 0)
3233 goto error;
3234#ifdef CONFIG_PM
3235 }
3236#endif
3237
3238 fw = (void *)raw->data;
3239 boot_img = &fw->data[0];
3240 ucode_img = &fw->data[fw->boot_size];
3241 fw_img = &fw->data[fw->boot_size + fw->ucode_size];
3242
Zhu Yi397ae122006-01-24 16:37:22 +08003243 if (rc < 0)
3244 goto error;
James Ketrenos43f66a62005-03-25 12:31:53 -06003245
3246 if (!priv->rxq)
3247 priv->rxq = ipw_rx_queue_alloc(priv);
3248 else
3249 ipw_rx_queue_reset(priv, priv->rxq);
3250 if (!priv->rxq) {
3251 IPW_ERROR("Unable to initialize Rx queue\n");
3252 goto error;
3253 }
3254
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003255 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003256 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003257 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003258 priv->status &= ~STATUS_INT_ENABLED;
3259
3260 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003261 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003262
James Ketrenos43f66a62005-03-25 12:31:53 -06003263 ipw_stop_nic(priv);
3264
3265 rc = ipw_reset_nic(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003266 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003267 IPW_ERROR("Unable to reset NIC\n");
3268 goto error;
3269 }
3270
James Ketrenosb095c382005-08-24 22:04:42 -05003271 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3272 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003273
3274 /* DMA the initial boot firmware into the device */
James Ketrenos9006ea72006-03-08 03:22:28 +08003275 rc = ipw_load_firmware(priv, boot_img, fw->boot_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003276 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003277 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003278 goto error;
3279 }
3280
3281 /* kick start the device */
3282 ipw_start_nic(priv);
3283
Zhu Yic7b6a672006-01-24 16:37:05 +08003284 /* wait for the device to finish its initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003285 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3286 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003287 if (rc < 0) {
3288 IPW_ERROR("device failed to boot initial fw image\n");
3289 goto error;
3290 }
3291 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3292
Jeff Garzikbf794512005-07-31 13:07:26 -04003293 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003294 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003295
3296 /* DMA the ucode into the device */
James Ketrenos9006ea72006-03-08 03:22:28 +08003297 rc = ipw_load_ucode(priv, ucode_img, fw->ucode_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003298 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003299 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003300 goto error;
3301 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003302
James Ketrenos43f66a62005-03-25 12:31:53 -06003303 /* stop nic */
3304 ipw_stop_nic(priv);
3305
3306 /* DMA bss firmware into the device */
James Ketrenos9006ea72006-03-08 03:22:28 +08003307 rc = ipw_load_firmware(priv, fw_img, fw->fw_size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003308 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003309 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003310 goto error;
3311 }
Zhu Yi397ae122006-01-24 16:37:22 +08003312#ifdef CONFIG_PM
3313 fw_loaded = 1;
3314#endif
3315
James Ketrenos43f66a62005-03-25 12:31:53 -06003316 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3317
3318 rc = ipw_queue_reset(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003319 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003320 IPW_ERROR("Unable to initialize queues\n");
3321 goto error;
3322 }
3323
3324 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003325 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003326 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003327 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003328
James Ketrenos43f66a62005-03-25 12:31:53 -06003329 /* kick start the device */
3330 ipw_start_nic(priv);
3331
James Ketrenosb095c382005-08-24 22:04:42 -05003332 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003333 if (retries > 0) {
3334 IPW_WARNING("Parity error. Retrying init.\n");
3335 retries--;
3336 goto retry;
3337 }
3338
3339 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3340 rc = -EIO;
3341 goto error;
3342 }
3343
3344 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003345 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3346 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003347 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003348 IPW_ERROR("device failed to start within 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003349 goto error;
3350 }
3351 IPW_DEBUG_INFO("device response after %dms\n", rc);
3352
3353 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003354 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003355
3356 /* read eeprom data and initialize the eeprom region of sram */
3357 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003358 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003359
3360 /* enable interrupts */
3361 ipw_enable_interrupts(priv);
3362
3363 /* Ensure our queue has valid packets */
3364 ipw_rx_queue_replenish(priv);
3365
James Ketrenosb095c382005-08-24 22:04:42 -05003366 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003367
3368 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003369 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003370
3371#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003372 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003373#endif
3374 return 0;
3375
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003376 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003377 if (priv->rxq) {
3378 ipw_rx_queue_free(priv, priv->rxq);
3379 priv->rxq = NULL;
3380 }
3381 ipw_tx_queue_free(priv);
James Ketrenos9006ea72006-03-08 03:22:28 +08003382 if (raw)
3383 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003384#ifdef CONFIG_PM
3385 fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003386 raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003387#endif
3388
3389 return rc;
3390}
3391
Jeff Garzikbf794512005-07-31 13:07:26 -04003392/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003393 * DMA services
3394 *
3395 * Theory of operation
3396 *
3397 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3398 * 2 empty entries always kept in the buffer to protect from overflow.
3399 *
3400 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003401 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3402 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003403 * Tx queue resumed.
3404 *
3405 * The IPW operates with six queues, one receive queue in the device's
3406 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003407 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003408 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003409 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003410 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003411 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003412 * we only utilize the first data transmit queue (queue1).
3413 */
3414
3415/**
3416 * Driver allocates buffers of this size for Rx
3417 */
3418
3419static inline int ipw_queue_space(const struct clx2_queue *q)
3420{
3421 int s = q->last_used - q->first_empty;
3422 if (s <= 0)
3423 s += q->n_bd;
3424 s -= 2; /* keep some reserve to not confuse empty and full situations */
3425 if (s < 0)
3426 s = 0;
3427 return s;
3428}
3429
3430static inline int ipw_queue_inc_wrap(int index, int n_bd)
3431{
3432 return (++index == n_bd) ? 0 : index;
3433}
3434
3435/**
3436 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003437 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003438 * @param q queue to init
3439 * @param count Number of BD's to allocate. Should be power of 2
3440 * @param read_register Address for 'read' register
3441 * (not offset within BAR, full address)
3442 * @param write_register Address for 'write' register
3443 * (not offset within BAR, full address)
3444 * @param base_register Address for 'base' register
3445 * (not offset within BAR, full address)
3446 * @param size Address for 'size' register
3447 * (not offset within BAR, full address)
3448 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003449static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003450 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003451{
3452 q->n_bd = count;
3453
3454 q->low_mark = q->n_bd / 4;
3455 if (q->low_mark < 4)
3456 q->low_mark = 4;
3457
3458 q->high_mark = q->n_bd / 8;
3459 if (q->high_mark < 2)
3460 q->high_mark = 2;
3461
3462 q->first_empty = q->last_used = 0;
3463 q->reg_r = read;
3464 q->reg_w = write;
3465
3466 ipw_write32(priv, base, q->dma_addr);
3467 ipw_write32(priv, size, count);
3468 ipw_write32(priv, read, 0);
3469 ipw_write32(priv, write, 0);
3470
3471 _ipw_read32(priv, 0x90);
3472}
3473
Jeff Garzikbf794512005-07-31 13:07:26 -04003474static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003475 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003476 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003477{
3478 struct pci_dev *dev = priv->pci_dev;
3479
3480 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3481 if (!q->txb) {
3482 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3483 return -ENOMEM;
3484 }
3485
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003486 q->bd =
3487 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003488 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003489 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003490 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003491 kfree(q->txb);
3492 q->txb = NULL;
3493 return -ENOMEM;
3494 }
3495
3496 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3497 return 0;
3498}
3499
3500/**
3501 * Free one TFD, those at index [txq->q.last_used].
3502 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003503 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003504 * @param dev
3505 * @param txq
3506 */
3507static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3508 struct clx2_tx_queue *txq)
3509{
3510 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3511 struct pci_dev *dev = priv->pci_dev;
3512 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003513
James Ketrenos43f66a62005-03-25 12:31:53 -06003514 /* classify bd */
3515 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3516 /* nothing to cleanup after for host commands */
3517 return;
3518
3519 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003520 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3521 IPW_ERROR("Too many chunks: %i\n",
3522 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003523 /** @todo issue fatal error, it is quite serious situation */
3524 return;
3525 }
3526
3527 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003528 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3529 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3530 le16_to_cpu(bd->u.data.chunk_len[i]),
3531 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003532 if (txq->txb[txq->q.last_used]) {
3533 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3534 txq->txb[txq->q.last_used] = NULL;
3535 }
3536 }
3537}
3538
3539/**
3540 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003541 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003542 * Empty queue by removing and destroying all BD's.
3543 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003544 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003545 * @param dev
3546 * @param q
3547 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003548static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003549{
3550 struct clx2_queue *q = &txq->q;
3551 struct pci_dev *dev = priv->pci_dev;
3552
Jeff Garzikbf794512005-07-31 13:07:26 -04003553 if (q->n_bd == 0)
3554 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003555
3556 /* first, empty all BD's */
3557 for (; q->first_empty != q->last_used;
3558 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3559 ipw_queue_tx_free_tfd(priv, txq);
3560 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003561
James Ketrenos43f66a62005-03-25 12:31:53 -06003562 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003563 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003564 q->dma_addr);
3565 kfree(txq->txb);
3566
3567 /* 0 fill whole structure */
3568 memset(txq, 0, sizeof(*txq));
3569}
3570
James Ketrenos43f66a62005-03-25 12:31:53 -06003571/**
3572 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003573 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003574 * @param priv
3575 */
3576static void ipw_tx_queue_free(struct ipw_priv *priv)
3577{
3578 /* Tx CMD queue */
3579 ipw_queue_tx_free(priv, &priv->txq_cmd);
3580
3581 /* Tx queues */
3582 ipw_queue_tx_free(priv, &priv->txq[0]);
3583 ipw_queue_tx_free(priv, &priv->txq[1]);
3584 ipw_queue_tx_free(priv, &priv->txq[2]);
3585 ipw_queue_tx_free(priv, &priv->txq[3]);
3586}
3587
Arjan van de Ven858119e2006-01-14 13:20:43 -08003588static void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003589{
3590 /* First 3 bytes are manufacturer */
3591 bssid[0] = priv->mac_addr[0];
3592 bssid[1] = priv->mac_addr[1];
3593 bssid[2] = priv->mac_addr[2];
3594
3595 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003596 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003597
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003598 bssid[0] &= 0xfe; /* clear multicast bit */
3599 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003600}
3601
Arjan van de Ven858119e2006-01-14 13:20:43 -08003602static u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003603{
3604 struct ipw_station_entry entry;
3605 int i;
3606
3607 for (i = 0; i < priv->num_stations; i++) {
3608 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3609 /* Another node is active in network */
3610 priv->missed_adhoc_beacons = 0;
3611 if (!(priv->config & CFG_STATIC_CHANNEL))
3612 /* when other nodes drop out, we drop out */
3613 priv->config &= ~CFG_ADHOC_PERSIST;
3614
3615 return i;
3616 }
3617 }
3618
3619 if (i == MAX_STATIONS)
3620 return IPW_INVALID_STATION;
3621
3622 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3623
3624 entry.reserved = 0;
3625 entry.support_mode = 0;
3626 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3627 memcpy(priv->stations[i], bssid, ETH_ALEN);
3628 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003629 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003630 priv->num_stations++;
3631
3632 return i;
3633}
3634
Arjan van de Ven858119e2006-01-14 13:20:43 -08003635static u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003636{
3637 int i;
3638
Jeff Garzikbf794512005-07-31 13:07:26 -04003639 for (i = 0; i < priv->num_stations; i++)
3640 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003641 return i;
3642
3643 return IPW_INVALID_STATION;
3644}
3645
3646static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3647{
3648 int err;
3649
Hong Liu7b996592005-08-25 17:36:13 +08003650 if (priv->status & STATUS_ASSOCIATING) {
3651 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3652 queue_work(priv->workqueue, &priv->disassociate);
3653 return;
3654 }
3655
3656 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003657 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3658 return;
3659 }
3660
3661 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3662 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003663 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003664 priv->assoc_request.channel);
3665
3666 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3667 priv->status |= STATUS_DISASSOCIATING;
3668
3669 if (quiet)
3670 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3671 else
3672 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003673
James Ketrenos43f66a62005-03-25 12:31:53 -06003674 err = ipw_send_associate(priv, &priv->assoc_request);
3675 if (err) {
3676 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3677 "failed.\n");
3678 return;
3679 }
3680
3681}
3682
James Ketrenosc848d0a2005-08-24 21:56:24 -05003683static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003684{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003685 struct ipw_priv *priv = data;
3686 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3687 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003688 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003689 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003690}
3691
James Ketrenosc848d0a2005-08-24 21:56:24 -05003692static void ipw_bg_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003693{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003694 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08003695 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003696 ipw_disassociate(data);
Zhu Yi46441512006-01-24 16:37:59 +08003697 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06003698}
3699
Zhu Yid8bad6d2005-07-13 12:25:38 -05003700static void ipw_system_config(void *data)
3701{
3702 struct ipw_priv *priv = data;
3703 ipw_send_system_config(priv, &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06003704}
3705
3706struct ipw_status_code {
3707 u16 status;
3708 const char *reason;
3709};
3710
3711static const struct ipw_status_code ipw_status_codes[] = {
3712 {0x00, "Successful"},
3713 {0x01, "Unspecified failure"},
3714 {0x0A, "Cannot support all requested capabilities in the "
3715 "Capability information field"},
3716 {0x0B, "Reassociation denied due to inability to confirm that "
3717 "association exists"},
3718 {0x0C, "Association denied due to reason outside the scope of this "
3719 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003720 {0x0D,
3721 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003722 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003723 {0x0E,
3724 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003725 "transaction sequence number out of expected sequence"},
3726 {0x0F, "Authentication rejected because of challenge failure"},
3727 {0x10, "Authentication rejected due to timeout waiting for next "
3728 "frame in sequence"},
3729 {0x11, "Association denied because AP is unable to handle additional "
3730 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003731 {0x12,
3732 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003733 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003734 {0x13,
3735 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003736 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003737 {0x14,
3738 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003739 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003740 {0x15,
3741 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003742 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003743 {0x19,
3744 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003745 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003746 {0x1A,
3747 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003748 "DSSS-OFDM operation"},
3749 {0x28, "Invalid Information Element"},
3750 {0x29, "Group Cipher is not valid"},
3751 {0x2A, "Pairwise Cipher is not valid"},
3752 {0x2B, "AKMP is not valid"},
3753 {0x2C, "Unsupported RSN IE version"},
3754 {0x2D, "Invalid RSN IE Capabilities"},
3755 {0x2E, "Cipher suite is rejected per security policy"},
3756};
3757
Brice Goglin0f52bf92005-12-01 01:41:46 -08003758#ifdef CONFIG_IPW2200_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003759static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003760{
3761 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003762 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003763 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003764 return ipw_status_codes[i].reason;
3765 return "Unknown status value.";
3766}
3767#endif
3768
3769static void inline average_init(struct average *avg)
3770{
3771 memset(avg, 0, sizeof(*avg));
3772}
3773
Zhu Yi00d21de2006-04-13 17:19:02 +08003774#define DEPTH_RSSI 8
3775#define DEPTH_NOISE 16
3776static s16 exponential_average(s16 prev_avg, s16 val, u8 depth)
3777{
3778 return ((depth-1)*prev_avg + val)/depth;
3779}
3780
Arjan van de Ven858119e2006-01-14 13:20:43 -08003781static void average_add(struct average *avg, s16 val)
James Ketrenos43f66a62005-03-25 12:31:53 -06003782{
3783 avg->sum -= avg->entries[avg->pos];
3784 avg->sum += val;
3785 avg->entries[avg->pos++] = val;
3786 if (unlikely(avg->pos == AVG_ENTRIES)) {
3787 avg->init = 1;
3788 avg->pos = 0;
3789 }
3790}
3791
Arjan van de Ven858119e2006-01-14 13:20:43 -08003792static s16 average_value(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06003793{
3794 if (!unlikely(avg->init)) {
3795 if (avg->pos)
3796 return avg->sum / avg->pos;
3797 return 0;
3798 }
3799
3800 return avg->sum / AVG_ENTRIES;
3801}
3802
3803static void ipw_reset_stats(struct ipw_priv *priv)
3804{
3805 u32 len = sizeof(u32);
3806
3807 priv->quality = 0;
3808
3809 average_init(&priv->average_missed_beacons);
Zhu Yi00d21de2006-04-13 17:19:02 +08003810 priv->exp_avg_rssi = -60;
3811 priv->exp_avg_noise = -85 + 0x100;
James Ketrenos43f66a62005-03-25 12:31:53 -06003812
3813 priv->last_rate = 0;
3814 priv->last_missed_beacons = 0;
3815 priv->last_rx_packets = 0;
3816 priv->last_tx_packets = 0;
3817 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003818
James Ketrenos43f66a62005-03-25 12:31:53 -06003819 /* Firmware managed, reset only when NIC is restarted, so we have to
3820 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003821 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003822 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003823 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003824 &priv->last_tx_failures, &len);
3825
3826 /* Driver managed, reset with each association */
3827 priv->missed_adhoc_beacons = 0;
3828 priv->missed_beacons = 0;
3829 priv->tx_packets = 0;
3830 priv->rx_packets = 0;
3831
3832}
3833
Arjan van de Ven858119e2006-01-14 13:20:43 -08003834static u32 ipw_get_max_rate(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003835{
3836 u32 i = 0x80000000;
3837 u32 mask = priv->rates_mask;
3838 /* If currently associated in B mode, restrict the maximum
3839 * rate match to B rates */
3840 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3841 mask &= IEEE80211_CCK_RATES_MASK;
3842
3843 /* TODO: Verify that the rate is supported by the current rates
3844 * list. */
3845
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003846 while (i && !(mask & i))
3847 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003848 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003849 case IEEE80211_CCK_RATE_1MB_MASK:
3850 return 1000000;
3851 case IEEE80211_CCK_RATE_2MB_MASK:
3852 return 2000000;
3853 case IEEE80211_CCK_RATE_5MB_MASK:
3854 return 5500000;
3855 case IEEE80211_OFDM_RATE_6MB_MASK:
3856 return 6000000;
3857 case IEEE80211_OFDM_RATE_9MB_MASK:
3858 return 9000000;
3859 case IEEE80211_CCK_RATE_11MB_MASK:
3860 return 11000000;
3861 case IEEE80211_OFDM_RATE_12MB_MASK:
3862 return 12000000;
3863 case IEEE80211_OFDM_RATE_18MB_MASK:
3864 return 18000000;
3865 case IEEE80211_OFDM_RATE_24MB_MASK:
3866 return 24000000;
3867 case IEEE80211_OFDM_RATE_36MB_MASK:
3868 return 36000000;
3869 case IEEE80211_OFDM_RATE_48MB_MASK:
3870 return 48000000;
3871 case IEEE80211_OFDM_RATE_54MB_MASK:
3872 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003873 }
3874
Jeff Garzikbf794512005-07-31 13:07:26 -04003875 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003876 return 11000000;
3877 else
3878 return 54000000;
3879}
3880
3881static u32 ipw_get_current_rate(struct ipw_priv *priv)
3882{
3883 u32 rate, len = sizeof(rate);
3884 int err;
3885
Jeff Garzikbf794512005-07-31 13:07:26 -04003886 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003887 return 0;
3888
3889 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003890 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003891 &len);
3892 if (err) {
3893 IPW_DEBUG_INFO("failed querying ordinals.\n");
3894 return 0;
3895 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003896 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003897 return ipw_get_max_rate(priv);
3898
3899 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003900 case IPW_TX_RATE_1MB:
3901 return 1000000;
3902 case IPW_TX_RATE_2MB:
3903 return 2000000;
3904 case IPW_TX_RATE_5MB:
3905 return 5500000;
3906 case IPW_TX_RATE_6MB:
3907 return 6000000;
3908 case IPW_TX_RATE_9MB:
3909 return 9000000;
3910 case IPW_TX_RATE_11MB:
3911 return 11000000;
3912 case IPW_TX_RATE_12MB:
3913 return 12000000;
3914 case IPW_TX_RATE_18MB:
3915 return 18000000;
3916 case IPW_TX_RATE_24MB:
3917 return 24000000;
3918 case IPW_TX_RATE_36MB:
3919 return 36000000;
3920 case IPW_TX_RATE_48MB:
3921 return 48000000;
3922 case IPW_TX_RATE_54MB:
3923 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003924 }
3925
3926 return 0;
3927}
3928
James Ketrenos43f66a62005-03-25 12:31:53 -06003929#define IPW_STATS_INTERVAL (2 * HZ)
3930static void ipw_gather_stats(struct ipw_priv *priv)
3931{
3932 u32 rx_err, rx_err_delta, rx_packets_delta;
3933 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3934 u32 missed_beacons_percent, missed_beacons_delta;
3935 u32 quality = 0;
3936 u32 len = sizeof(u32);
3937 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003938 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003939 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003940 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003941
3942 if (!(priv->status & STATUS_ASSOCIATED)) {
3943 priv->quality = 0;
3944 return;
3945 }
3946
3947 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003948 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003949 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003950 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003951 priv->last_missed_beacons = priv->missed_beacons;
3952 if (priv->assoc_request.beacon_interval) {
3953 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003954 (HZ * priv->assoc_request.beacon_interval) /
3955 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003956 } else {
3957 missed_beacons_percent = 0;
3958 }
3959 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3960
3961 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3962 rx_err_delta = rx_err - priv->last_rx_err;
3963 priv->last_rx_err = rx_err;
3964
3965 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3966 tx_failures_delta = tx_failures - priv->last_tx_failures;
3967 priv->last_tx_failures = tx_failures;
3968
3969 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3970 priv->last_rx_packets = priv->rx_packets;
3971
3972 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
3973 priv->last_tx_packets = priv->tx_packets;
3974
3975 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04003976 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003977 * Missed beacon: 100% = 0, 0% = 70% missed
3978 * Rate: 60% = 1Mbs, 100% = Max
3979 * Rx and Tx errors represent a straight % of total Rx/Tx
3980 * RSSI: 100% = > -50, 0% = < -80
3981 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04003982 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003983 * The lowest computed quality is used.
3984 *
3985 */
3986#define BEACON_THRESHOLD 5
3987 beacon_quality = 100 - missed_beacons_percent;
3988 if (beacon_quality < BEACON_THRESHOLD)
3989 beacon_quality = 0;
3990 else
Jeff Garzikbf794512005-07-31 13:07:26 -04003991 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003992 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04003993 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003994 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04003995
James Ketrenos43f66a62005-03-25 12:31:53 -06003996 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05003997 max_rate = ipw_get_max_rate(priv);
3998 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06003999 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4000 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004001
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004002 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004003 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004004 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004005 else
4006 rx_quality = 100;
4007 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4008 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004009
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004010 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004011 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004012 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004013 else
4014 tx_quality = 100;
4015 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4016 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004017
Zhu Yi00d21de2006-04-13 17:19:02 +08004018 rssi = priv->exp_avg_rssi;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004019 signal_quality =
4020 (100 *
4021 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4022 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4023 (priv->ieee->perfect_rssi - rssi) *
4024 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4025 62 * (priv->ieee->perfect_rssi - rssi))) /
4026 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4027 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4028 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004029 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004030 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004031 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004032
Zhu Yi00d21de2006-04-13 17:19:02 +08004033 IPW_ERROR("Signal level : %3d%% (%d dBm)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004034 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004035
4036 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06004037 min(rate_quality,
4038 min(tx_quality, min(rx_quality, signal_quality))));
4039 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004040 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4041 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004042 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004043 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4044 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004045 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004046 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4047 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004048 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004049 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4050 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004051 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004052 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4053 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004054
4055 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004056
4057 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004058 IPW_STATS_INTERVAL);
4059}
4060
James Ketrenosc848d0a2005-08-24 21:56:24 -05004061static void ipw_bg_gather_stats(void *data)
4062{
4063 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08004064 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004065 ipw_gather_stats(data);
Zhu Yi46441512006-01-24 16:37:59 +08004066 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004067}
4068
Ben Cahille7582562005-10-06 15:34:41 -05004069/* Missed beacon behavior:
4070 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4071 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4072 * Above disassociate threshold, give up and stop scanning.
4073 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004074static void ipw_handle_missed_beacon(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004075 int missed_count)
4076{
4077 priv->notif_missed_beacons = missed_count;
4078
James Ketrenosafbf30a2005-08-25 00:05:33 -05004079 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004080 priv->status & STATUS_ASSOCIATED) {
4081 /* If associated and we've hit the missed
4082 * beacon threshold, disassociate, turn
4083 * off roaming, and abort any active scans */
4084 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004085 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004086 "Missed beacon: %d - disassociate\n", missed_count);
4087 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004088 if (priv->status & STATUS_SCANNING) {
4089 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4090 IPW_DL_STATE,
4091 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004092 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004093 }
4094
James Ketrenosea2b26e2005-08-24 21:25:16 -05004095 queue_work(priv->workqueue, &priv->disassociate);
4096 return;
4097 }
4098
4099 if (priv->status & STATUS_ROAMING) {
4100 /* If we are currently roaming, then just
4101 * print a debug statement... */
4102 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4103 "Missed beacon: %d - roam in progress\n",
4104 missed_count);
4105 return;
4106 }
4107
Zhu Yi4bfdb912006-01-24 16:37:16 +08004108 if (roaming &&
4109 (missed_count > priv->roaming_threshold &&
4110 missed_count <= priv->disassociate_threshold)) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004111 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004112 * bit in the status and kick off a scan.
4113 * This can happen several times before we reach
4114 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004115 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4116 "Missed beacon: %d - initiate "
4117 "roaming\n", missed_count);
4118 if (!(priv->status & STATUS_ROAMING)) {
4119 priv->status |= STATUS_ROAMING;
4120 if (!(priv->status & STATUS_SCANNING))
4121 queue_work(priv->workqueue,
4122 &priv->request_scan);
4123 }
4124 return;
4125 }
4126
4127 if (priv->status & STATUS_SCANNING) {
4128 /* Stop scan to keep fw from getting
4129 * stuck (only if we aren't roaming --
4130 * otherwise we'll never scan more than 2 or 3
4131 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004132 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4133 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004134 queue_work(priv->workqueue, &priv->abort_scan);
4135 }
4136
4137 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004138}
4139
James Ketrenos43f66a62005-03-25 12:31:53 -06004140/**
4141 * Handle host notification packet.
4142 * Called from interrupt routine
4143 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004144static void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004145 struct ipw_rx_notification *notif)
4146{
James Ketrenosa613bff2005-08-24 21:43:11 -05004147 notif->size = le16_to_cpu(notif->size);
4148
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004149 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004150
James Ketrenos43f66a62005-03-25 12:31:53 -06004151 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004152 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4153 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004154
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004155 switch (assoc->state) {
4156 case CMAS_ASSOCIATED:{
4157 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4158 IPW_DL_ASSOC,
4159 "associated: '%s' " MAC_FMT
4160 " \n",
4161 escape_essid(priv->essid,
4162 priv->essid_len),
4163 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004164
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004165 switch (priv->ieee->iw_mode) {
4166 case IW_MODE_INFRA:
4167 memcpy(priv->ieee->bssid,
4168 priv->bssid, ETH_ALEN);
4169 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004170
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004171 case IW_MODE_ADHOC:
4172 memcpy(priv->ieee->bssid,
4173 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004174
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004175 /* clear out the station table */
4176 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004177
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004178 IPW_DEBUG_ASSOC
4179 ("queueing adhoc check\n");
4180 queue_delayed_work(priv->
4181 workqueue,
4182 &priv->
4183 adhoc_check,
4184 priv->
4185 assoc_request.
4186 beacon_interval);
4187 break;
4188 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004189
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004190 priv->status &= ~STATUS_ASSOCIATING;
4191 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004192 queue_work(priv->workqueue,
4193 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004194
James Ketrenosb095c382005-08-24 22:04:42 -05004195#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004196#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4197 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4198 if ((priv->status & STATUS_AUTH) &&
4199 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4200 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004201 if ((sizeof
4202 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004203 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004204 <= notif->size)
4205 && (notif->size <= 2314)) {
4206 struct
4207 ieee80211_rx_stats
4208 stats = {
4209 .len =
4210 notif->
4211 size - 1,
4212 };
4213
4214 IPW_DEBUG_QOS
4215 ("QoS Associate "
4216 "size %d\n",
4217 notif->size);
4218 ieee80211_rx_mgt(priv->
4219 ieee,
4220 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004221 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004222 *)
4223 &notif->u.raw, &stats);
4224 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004225 }
James Ketrenosb095c382005-08-24 22:04:42 -05004226#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004227
James Ketrenosa613bff2005-08-24 21:43:11 -05004228 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004229
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004230 break;
4231 }
4232
4233 case CMAS_AUTHENTICATED:{
4234 if (priv->
4235 status & (STATUS_ASSOCIATED |
4236 STATUS_AUTH)) {
Brice Goglin0f52bf92005-12-01 01:41:46 -08004237#ifdef CONFIG_IPW2200_DEBUG
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004238 struct notif_authenticate *auth
4239 = &notif->u.auth;
4240 IPW_DEBUG(IPW_DL_NOTIF |
4241 IPW_DL_STATE |
4242 IPW_DL_ASSOC,
4243 "deauthenticated: '%s' "
4244 MAC_FMT
4245 ": (0x%04X) - %s \n",
4246 escape_essid(priv->
4247 essid,
4248 priv->
4249 essid_len),
4250 MAC_ARG(priv->bssid),
4251 ntohs(auth->status),
4252 ipw_get_status_code
4253 (ntohs
4254 (auth->status)));
4255#endif
4256
4257 priv->status &=
4258 ~(STATUS_ASSOCIATING |
4259 STATUS_AUTH |
4260 STATUS_ASSOCIATED);
4261
James Ketrenosa613bff2005-08-24 21:43:11 -05004262 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004263 break;
4264 }
4265
4266 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4267 IPW_DL_ASSOC,
4268 "authenticated: '%s' " MAC_FMT
4269 "\n",
4270 escape_essid(priv->essid,
4271 priv->essid_len),
4272 MAC_ARG(priv->bssid));
4273 break;
4274 }
4275
4276 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004277 if (priv->status & STATUS_AUTH) {
4278 struct
4279 ieee80211_assoc_response
4280 *resp;
4281 resp =
4282 (struct
4283 ieee80211_assoc_response
4284 *)&notif->u.raw;
4285 IPW_DEBUG(IPW_DL_NOTIF |
4286 IPW_DL_STATE |
4287 IPW_DL_ASSOC,
4288 "association failed (0x%04X): %s\n",
4289 ntohs(resp->status),
4290 ipw_get_status_code
4291 (ntohs
4292 (resp->status)));
4293 }
4294
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004295 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4296 IPW_DL_ASSOC,
4297 "disassociated: '%s' " MAC_FMT
4298 " \n",
4299 escape_essid(priv->essid,
4300 priv->essid_len),
4301 MAC_ARG(priv->bssid));
4302
4303 priv->status &=
4304 ~(STATUS_DISASSOCIATING |
4305 STATUS_ASSOCIATING |
4306 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004307 if (priv->assoc_network
4308 && (priv->assoc_network->
4309 capability &
4310 WLAN_CAPABILITY_IBSS))
4311 ipw_remove_current_network
4312 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004313
James Ketrenosa613bff2005-08-24 21:43:11 -05004314 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004315
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004316 break;
4317 }
4318
James Ketrenosb095c382005-08-24 22:04:42 -05004319 case CMAS_RX_ASSOC_RESP:
4320 break;
4321
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004322 default:
4323 IPW_ERROR("assoc: unknown (%d)\n",
4324 assoc->state);
4325 break;
4326 }
4327
James Ketrenos43f66a62005-03-25 12:31:53 -06004328 break;
4329 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004330
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004331 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4332 struct notif_authenticate *auth = &notif->u.auth;
4333 switch (auth->state) {
4334 case CMAS_AUTHENTICATED:
4335 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4336 "authenticated: '%s' " MAC_FMT " \n",
4337 escape_essid(priv->essid,
4338 priv->essid_len),
4339 MAC_ARG(priv->bssid));
4340 priv->status |= STATUS_AUTH;
4341 break;
4342
4343 case CMAS_INIT:
4344 if (priv->status & STATUS_AUTH) {
4345 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4346 IPW_DL_ASSOC,
4347 "authentication failed (0x%04X): %s\n",
4348 ntohs(auth->status),
4349 ipw_get_status_code(ntohs
4350 (auth->
4351 status)));
4352 }
4353 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4354 IPW_DL_ASSOC,
4355 "deauthenticated: '%s' " MAC_FMT "\n",
4356 escape_essid(priv->essid,
4357 priv->essid_len),
4358 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004359
4360 priv->status &= ~(STATUS_ASSOCIATING |
4361 STATUS_AUTH |
4362 STATUS_ASSOCIATED);
4363
James Ketrenosa613bff2005-08-24 21:43:11 -05004364 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004365 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004366
4367 case CMAS_TX_AUTH_SEQ_1:
4368 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4369 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4370 break;
4371 case CMAS_RX_AUTH_SEQ_2:
4372 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4373 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4374 break;
4375 case CMAS_AUTH_SEQ_1_PASS:
4376 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4377 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4378 break;
4379 case CMAS_AUTH_SEQ_1_FAIL:
4380 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4381 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4382 break;
4383 case CMAS_TX_AUTH_SEQ_3:
4384 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4385 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4386 break;
4387 case CMAS_RX_AUTH_SEQ_4:
4388 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4389 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4390 break;
4391 case CMAS_AUTH_SEQ_2_PASS:
4392 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4393 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4394 break;
4395 case CMAS_AUTH_SEQ_2_FAIL:
4396 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4397 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4398 break;
4399 case CMAS_TX_ASSOC:
4400 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4401 IPW_DL_ASSOC, "TX_ASSOC\n");
4402 break;
4403 case CMAS_RX_ASSOC_RESP:
4404 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4405 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004406
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004407 break;
4408 case CMAS_ASSOCIATED:
4409 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4410 IPW_DL_ASSOC, "ASSOCIATED\n");
4411 break;
4412 default:
4413 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4414 auth->state);
4415 break;
4416 }
4417 break;
4418 }
4419
4420 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4421 struct notif_channel_result *x =
4422 &notif->u.channel_result;
4423
4424 if (notif->size == sizeof(*x)) {
4425 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4426 x->channel_num);
4427 } else {
4428 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4429 "(should be %zd)\n",
4430 notif->size, sizeof(*x));
4431 }
4432 break;
4433 }
4434
4435 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4436 struct notif_scan_complete *x = &notif->u.scan_complete;
4437 if (notif->size == sizeof(*x)) {
4438 IPW_DEBUG_SCAN
4439 ("Scan completed: type %d, %d channels, "
4440 "%d status\n", x->scan_type,
4441 x->num_channels, x->status);
4442 } else {
4443 IPW_ERROR("Scan completed of wrong size %d "
4444 "(should be %zd)\n",
4445 notif->size, sizeof(*x));
4446 }
4447
4448 priv->status &=
4449 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4450
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004451 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004452 cancel_delayed_work(&priv->scan_check);
4453
James Ketrenosb095c382005-08-24 22:04:42 -05004454 if (priv->status & STATUS_EXIT_PENDING)
4455 break;
4456
4457 priv->ieee->scans++;
4458
4459#ifdef CONFIG_IPW2200_MONITOR
4460 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004461 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004462 queue_work(priv->workqueue,
4463 &priv->request_scan);
4464 break;
4465 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004466 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004467#endif /* CONFIG_IPW2200_MONITOR */
4468
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004469 if (!(priv->status & (STATUS_ASSOCIATED |
4470 STATUS_ASSOCIATING |
4471 STATUS_ROAMING |
4472 STATUS_DISASSOCIATING)))
4473 queue_work(priv->workqueue, &priv->associate);
4474 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004475 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4476 /* If a scan completed and we are in roam mode, then
4477 * the scan that completed was the one requested as a
4478 * result of entering roam... so, schedule the
4479 * roam work */
4480 queue_work(priv->workqueue,
4481 &priv->roam);
4482 else
4483 /* Don't schedule if we aborted the scan */
4484 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004485 } else if (priv->status & STATUS_SCAN_PENDING)
4486 queue_work(priv->workqueue,
4487 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004488 else if (priv->config & CFG_BACKGROUND_SCAN
4489 && priv->status & STATUS_ASSOCIATED)
4490 queue_delayed_work(priv->workqueue,
4491 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004492 break;
4493 }
4494
4495 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4496 struct notif_frag_length *x = &notif->u.frag_len;
4497
James Ketrenosa613bff2005-08-24 21:43:11 -05004498 if (notif->size == sizeof(*x))
4499 IPW_ERROR("Frag length: %d\n",
4500 le16_to_cpu(x->frag_length));
4501 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004502 IPW_ERROR("Frag length of wrong size %d "
4503 "(should be %zd)\n",
4504 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004505 break;
4506 }
4507
4508 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4509 struct notif_link_deterioration *x =
4510 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004511
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004512 if (notif->size == sizeof(*x)) {
4513 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Cahill, Ben M12977152006-03-08 02:58:02 +08004514 "link deterioration: type %d, cnt %d\n",
4515 x->silence_notification_type,
4516 x->silence_count);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004517 memcpy(&priv->last_link_deterioration, x,
4518 sizeof(*x));
4519 } else {
4520 IPW_ERROR("Link Deterioration of wrong size %d "
4521 "(should be %zd)\n",
4522 notif->size, sizeof(*x));
4523 }
4524 break;
4525 }
4526
4527 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4528 IPW_ERROR("Dino config\n");
4529 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004530 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004531 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004532
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004533 break;
4534 }
4535
4536 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4537 struct notif_beacon_state *x = &notif->u.beacon_state;
4538 if (notif->size != sizeof(*x)) {
4539 IPW_ERROR
4540 ("Beacon state of wrong size %d (should "
4541 "be %zd)\n", notif->size, sizeof(*x));
4542 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004543 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004544
James Ketrenosa613bff2005-08-24 21:43:11 -05004545 if (le32_to_cpu(x->state) ==
4546 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4547 ipw_handle_missed_beacon(priv,
4548 le32_to_cpu(x->
4549 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004550
James Ketrenos43f66a62005-03-25 12:31:53 -06004551 break;
4552 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004553
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004554 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4555 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4556 if (notif->size == sizeof(*x)) {
4557 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4558 "0x%02x station %d\n",
4559 x->key_state, x->security_type,
4560 x->station_index);
4561 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004562 }
4563
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004564 IPW_ERROR
4565 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4566 notif->size, sizeof(*x));
4567 break;
4568 }
4569
4570 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4571 struct notif_calibration *x = &notif->u.calibration;
4572
4573 if (notif->size == sizeof(*x)) {
4574 memcpy(&priv->calib, x, sizeof(*x));
4575 IPW_DEBUG_INFO("TODO: Calibration\n");
4576 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004577 }
4578
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004579 IPW_ERROR
4580 ("Calibration of wrong size %d (should be %zd)\n",
4581 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004582 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004583 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004584
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004585 case HOST_NOTIFICATION_NOISE_STATS:{
4586 if (notif->size == sizeof(u32)) {
Zhu Yi00d21de2006-04-13 17:19:02 +08004587 priv->exp_avg_noise =
4588 exponential_average(priv->exp_avg_noise,
4589 (u8) (le32_to_cpu(notif->u.noise.value) & 0xff),
4590 DEPTH_NOISE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004591 break;
4592 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004593
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004594 IPW_ERROR
4595 ("Noise stat is wrong size %d (should be %zd)\n",
4596 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004597 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004598 }
4599
James Ketrenos43f66a62005-03-25 12:31:53 -06004600 default:
Zhu Yi1dd31b62006-02-20 18:28:09 -08004601 IPW_DEBUG_NOTIF("Unknown notification: "
4602 "subtype=%d,flags=0x%2x,size=%d\n",
4603 notif->subtype, notif->flags, notif->size);
James Ketrenos43f66a62005-03-25 12:31:53 -06004604 }
4605}
4606
4607/**
4608 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004609 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004610 * @param priv
4611 * @return error code
4612 */
4613static int ipw_queue_reset(struct ipw_priv *priv)
4614{
4615 int rc = 0;
4616 /** @todo customize queue sizes */
4617 int nTx = 64, nTxCmd = 8;
4618 ipw_tx_queue_free(priv);
4619 /* Tx CMD queue */
4620 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004621 IPW_TX_CMD_QUEUE_READ_INDEX,
4622 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4623 IPW_TX_CMD_QUEUE_BD_BASE,
4624 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004625 if (rc) {
4626 IPW_ERROR("Tx Cmd queue init failed\n");
4627 goto error;
4628 }
4629 /* Tx queue(s) */
4630 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004631 IPW_TX_QUEUE_0_READ_INDEX,
4632 IPW_TX_QUEUE_0_WRITE_INDEX,
4633 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004634 if (rc) {
4635 IPW_ERROR("Tx 0 queue init failed\n");
4636 goto error;
4637 }
4638 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004639 IPW_TX_QUEUE_1_READ_INDEX,
4640 IPW_TX_QUEUE_1_WRITE_INDEX,
4641 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004642 if (rc) {
4643 IPW_ERROR("Tx 1 queue init failed\n");
4644 goto error;
4645 }
4646 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004647 IPW_TX_QUEUE_2_READ_INDEX,
4648 IPW_TX_QUEUE_2_WRITE_INDEX,
4649 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004650 if (rc) {
4651 IPW_ERROR("Tx 2 queue init failed\n");
4652 goto error;
4653 }
4654 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004655 IPW_TX_QUEUE_3_READ_INDEX,
4656 IPW_TX_QUEUE_3_WRITE_INDEX,
4657 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004658 if (rc) {
4659 IPW_ERROR("Tx 3 queue init failed\n");
4660 goto error;
4661 }
4662 /* statistics */
4663 priv->rx_bufs_min = 0;
4664 priv->rx_pend_max = 0;
4665 return rc;
4666
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004667 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004668 ipw_tx_queue_free(priv);
4669 return rc;
4670}
4671
4672/**
4673 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004674 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004675 * When FW adwances 'R' index, all entries between old and
4676 * new 'R' index need to be reclaimed. As result, some free space
4677 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004678 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004679 * @note Need to protect against garbage in 'R' index
4680 * @param priv
4681 * @param txq
4682 * @param qindex
4683 * @return Number of used entries remains in the queue
4684 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004685static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004686 struct clx2_tx_queue *txq, int qindex)
4687{
4688 u32 hw_tail;
4689 int used;
4690 struct clx2_queue *q = &txq->q;
4691
4692 hw_tail = ipw_read32(priv, q->reg_r);
4693 if (hw_tail >= q->n_bd) {
4694 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004695 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4696 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004697 goto done;
4698 }
4699 for (; q->last_used != hw_tail;
4700 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4701 ipw_queue_tx_free_tfd(priv, txq);
4702 priv->tx_packets++;
4703 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004704 done:
James Ketrenos9ddf84f2005-08-16 17:07:11 -05004705 if ((ipw_queue_space(q) > q->low_mark) &&
4706 (qindex >= 0) &&
4707 (priv->status & STATUS_ASSOCIATED) && netif_running(priv->net_dev))
4708 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06004709 used = q->first_empty - q->last_used;
4710 if (used < 0)
4711 used += q->n_bd;
4712
4713 return used;
4714}
4715
4716static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4717 int len, int sync)
4718{
4719 struct clx2_tx_queue *txq = &priv->txq_cmd;
4720 struct clx2_queue *q = &txq->q;
4721 struct tfd_frame *tfd;
4722
4723 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4724 IPW_ERROR("No space for Tx\n");
4725 return -EBUSY;
4726 }
4727
4728 tfd = &txq->bd[q->first_empty];
4729 txq->txb[q->first_empty] = NULL;
4730
4731 memset(tfd, 0, sizeof(*tfd));
4732 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4733 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4734 priv->hcmd_seq++;
4735 tfd->u.cmd.index = hcmd;
4736 tfd->u.cmd.length = len;
4737 memcpy(tfd->u.cmd.payload, buf, len);
4738 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4739 ipw_write32(priv, q->reg_w, q->first_empty);
4740 _ipw_read32(priv, 0x90);
4741
4742 return 0;
4743}
4744
Jeff Garzikbf794512005-07-31 13:07:26 -04004745/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004746 * Rx theory of operation
4747 *
4748 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004749 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004750 * 0 to 31
4751 *
4752 * Rx Queue Indexes
4753 * The host/firmware share two index registers for managing the Rx buffers.
4754 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004755 * The READ index maps to the first position that the firmware may be writing
4756 * to -- the driver can read up to (but not including) this position and get
4757 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004758 * The READ index is managed by the firmware once the card is enabled.
4759 *
4760 * The WRITE index maps to the last position the driver has read from -- the
4761 * position preceding WRITE is the last slot the firmware can place a packet.
4762 *
4763 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004764 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004765 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004766 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004767 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4768 *
4769 * When the firmware places a packet in a buffer it will advance the READ index
4770 * and fire the RX interrupt. The driver can then query the READ index and
4771 * process as many packets as possible, moving the WRITE index forward as it
4772 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004773 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004774 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004775 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004776 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004777 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004778 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4779 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4780 * 'processed' and 'read' driver indexes as well)
4781 * + A received packet is processed and handed to the kernel network stack,
4782 * detached from the ipw->rxq. The driver 'processed' index is updated.
4783 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004784 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4785 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004786 * were enough free buffers and RX_STALLED is set it is cleared.
4787 *
4788 *
4789 * Driver sequence:
4790 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004791 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004792 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4793 * ipw_rx_queue_restock
4794 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4795 * queue, updates firmware pointers, and updates
4796 * the WRITE index. If insufficient rx_free buffers
4797 * are available, schedules ipw_rx_queue_replenish
4798 *
4799 * -- enable interrupts --
4800 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004801 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004802 * Moves the packet buffer from queue to rx_used.
4803 * Calls ipw_rx_queue_restock to refill any empty
4804 * slots.
4805 * ...
4806 *
4807 */
4808
Jeff Garzikbf794512005-07-31 13:07:26 -04004809/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004810 * If there are slots in the RX queue that need to be restocked,
4811 * and we have free pre-allocated buffers, fill the ranks as much
4812 * as we can pulling from rx_free.
4813 *
4814 * This moves the 'write' index forward to catch up with 'processed', and
4815 * also updates the memory address in the firmware to reference the new
4816 * target buffer.
4817 */
4818static void ipw_rx_queue_restock(struct ipw_priv *priv)
4819{
4820 struct ipw_rx_queue *rxq = priv->rxq;
4821 struct list_head *element;
4822 struct ipw_rx_mem_buffer *rxb;
4823 unsigned long flags;
4824 int write;
4825
4826 spin_lock_irqsave(&rxq->lock, flags);
4827 write = rxq->write;
4828 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4829 element = rxq->rx_free.next;
4830 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4831 list_del(element);
4832
James Ketrenosb095c382005-08-24 22:04:42 -05004833 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004834 rxb->dma_addr);
4835 rxq->queue[rxq->write] = rxb;
4836 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4837 rxq->free_count--;
4838 }
4839 spin_unlock_irqrestore(&rxq->lock, flags);
4840
Jeff Garzikbf794512005-07-31 13:07:26 -04004841 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004842 * refill it */
4843 if (rxq->free_count <= RX_LOW_WATERMARK)
4844 queue_work(priv->workqueue, &priv->rx_replenish);
4845
4846 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004847 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004848 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004849}
4850
4851/*
4852 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004853 * Also restock the Rx queue via ipw_rx_queue_restock.
4854 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004855 * This is called as a scheduled work item (except for during intialization)
4856 */
4857static void ipw_rx_queue_replenish(void *data)
4858{
4859 struct ipw_priv *priv = data;
4860 struct ipw_rx_queue *rxq = priv->rxq;
4861 struct list_head *element;
4862 struct ipw_rx_mem_buffer *rxb;
4863 unsigned long flags;
4864
4865 spin_lock_irqsave(&rxq->lock, flags);
4866 while (!list_empty(&rxq->rx_used)) {
4867 element = rxq->rx_used.next;
4868 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004869 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004870 if (!rxb->skb) {
4871 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4872 priv->net_dev->name);
4873 /* We don't reschedule replenish work here -- we will
4874 * call the restock method and if it still needs
4875 * more buffers it will schedule replenish */
4876 break;
4877 }
4878 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004879
James Ketrenos43f66a62005-03-25 12:31:53 -06004880 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004881 rxb->dma_addr =
4882 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004883 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004884
James Ketrenos43f66a62005-03-25 12:31:53 -06004885 list_add_tail(&rxb->list, &rxq->rx_free);
4886 rxq->free_count++;
4887 }
4888 spin_unlock_irqrestore(&rxq->lock, flags);
4889
4890 ipw_rx_queue_restock(priv);
4891}
4892
James Ketrenosc848d0a2005-08-24 21:56:24 -05004893static void ipw_bg_rx_queue_replenish(void *data)
4894{
4895 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08004896 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004897 ipw_rx_queue_replenish(data);
Zhu Yi46441512006-01-24 16:37:59 +08004898 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004899}
4900
James Ketrenos43f66a62005-03-25 12:31:53 -06004901/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Zhu Yic7b6a672006-01-24 16:37:05 +08004902 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004903 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004904 * non NULL it is unmapped and freed
4905 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004906static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004907{
4908 int i;
4909
4910 if (!rxq)
4911 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004912
James Ketrenos43f66a62005-03-25 12:31:53 -06004913 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4914 if (rxq->pool[i].skb != NULL) {
4915 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004916 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004917 dev_kfree_skb(rxq->pool[i].skb);
4918 }
4919 }
4920
4921 kfree(rxq);
4922}
4923
4924static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4925{
4926 struct ipw_rx_queue *rxq;
4927 int i;
4928
Takisc75f4742005-12-01 01:41:45 -08004929 rxq = kzalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004930 if (unlikely(!rxq)) {
4931 IPW_ERROR("memory allocation failed\n");
4932 return NULL;
4933 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004934 spin_lock_init(&rxq->lock);
4935 INIT_LIST_HEAD(&rxq->rx_free);
4936 INIT_LIST_HEAD(&rxq->rx_used);
4937
4938 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004939 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004940 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4941
4942 /* Set us so that we have processed and used all buffers, but have
4943 * not restocked the Rx queue with fresh buffers */
4944 rxq->read = rxq->write = 0;
4945 rxq->processed = RX_QUEUE_SIZE - 1;
4946 rxq->free_count = 0;
4947
4948 return rxq;
4949}
4950
4951static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4952{
4953 rate &= ~IEEE80211_BASIC_RATE_MASK;
4954 if (ieee_mode == IEEE_A) {
4955 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004956 case IEEE80211_OFDM_RATE_6MB:
4957 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004958 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004959 case IEEE80211_OFDM_RATE_9MB:
4960 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004961 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004962 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004963 return priv->
4964 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004965 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004966 return priv->
4967 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004968 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004969 return priv->
4970 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004971 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004972 return priv->
4973 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004974 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004975 return priv->
4976 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004977 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004978 return priv->
4979 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004980 default:
4981 return 0;
4982 }
4983 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004984
James Ketrenos43f66a62005-03-25 12:31:53 -06004985 /* B and G mixed */
4986 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004987 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004988 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004989 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004990 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004991 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004992 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004993 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004994 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
4995 }
4996
4997 /* If we are limited to B modulations, bail at this point */
4998 if (ieee_mode == IEEE_B)
4999 return 0;
5000
5001 /* G */
5002 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005003 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005004 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005005 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005006 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005007 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005008 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005009 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005010 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005011 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005012 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005013 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005014 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005015 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005016 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005017 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005018 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
5019 }
5020
5021 return 0;
5022}
5023
Jeff Garzikbf794512005-07-31 13:07:26 -04005024static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005025 const struct ieee80211_network *network,
5026 struct ipw_supported_rates *rates)
5027{
5028 int num_rates, i;
5029
5030 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005031 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005032 rates->num_rates = 0;
5033 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005034 if (!ipw_is_rate_in_mask(priv, network->mode,
5035 network->rates[i])) {
5036
James Ketrenosea2b26e2005-08-24 21:25:16 -05005037 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005038 IPW_DEBUG_SCAN("Adding masked mandatory "
5039 "rate %02X\n",
5040 network->rates[i]);
5041 rates->supported_rates[rates->num_rates++] =
5042 network->rates[i];
5043 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005044 }
5045
James Ketrenos43f66a62005-03-25 12:31:53 -06005046 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5047 network->rates[i], priv->rates_mask);
5048 continue;
5049 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005050
James Ketrenos43f66a62005-03-25 12:31:53 -06005051 rates->supported_rates[rates->num_rates++] = network->rates[i];
5052 }
5053
James Ketrenosa613bff2005-08-24 21:43:11 -05005054 num_rates = min(network->rates_ex_len,
5055 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005056 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005057 if (!ipw_is_rate_in_mask(priv, network->mode,
5058 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005059 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005060 IPW_DEBUG_SCAN("Adding masked mandatory "
5061 "rate %02X\n",
5062 network->rates_ex[i]);
5063 rates->supported_rates[rates->num_rates++] =
5064 network->rates[i];
5065 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005066 }
5067
James Ketrenos43f66a62005-03-25 12:31:53 -06005068 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5069 network->rates_ex[i], priv->rates_mask);
5070 continue;
5071 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005072
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005073 rates->supported_rates[rates->num_rates++] =
5074 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005075 }
5076
James Ketrenosea2b26e2005-08-24 21:25:16 -05005077 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005078}
5079
Arjan van de Ven858119e2006-01-14 13:20:43 -08005080static void ipw_copy_rates(struct ipw_supported_rates *dest,
James Ketrenos43f66a62005-03-25 12:31:53 -06005081 const struct ipw_supported_rates *src)
5082{
5083 u8 i;
5084 for (i = 0; i < src->num_rates; i++)
5085 dest->supported_rates[i] = src->supported_rates[i];
5086 dest->num_rates = src->num_rates;
5087}
5088
5089/* TODO: Look at sniffed packets in the air to determine if the basic rate
5090 * mask should ever be used -- right now all callers to add the scan rates are
5091 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5092static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005093 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005094{
Jeff Garzikbf794512005-07-31 13:07:26 -04005095 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005096 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005097
James Ketrenos43f66a62005-03-25 12:31:53 -06005098 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005099 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005100 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005101
5102 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005103 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005104 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005105
5106 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005107 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005108 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005109
5110 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005111 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005112 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005113}
5114
5115static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005116 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005117{
Jeff Garzikbf794512005-07-31 13:07:26 -04005118 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005119 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005120
5121 if (rate_mask & IEEE80211_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005122 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005123 IEEE80211_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005124
5125 if (rate_mask & IEEE80211_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005126 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005127 IEEE80211_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005128
5129 if (rate_mask & IEEE80211_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005130 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005131 IEEE80211_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005132
5133 if (rate_mask & IEEE80211_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005134 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005135 IEEE80211_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005136
5137 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005138 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005139 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005140
5141 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005142 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005143 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005144
5145 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005146 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005147 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005148
5149 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005150 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005151 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005152}
5153
5154struct ipw_network_match {
5155 struct ieee80211_network *network;
5156 struct ipw_supported_rates rates;
5157};
5158
James Ketrenosc848d0a2005-08-24 21:56:24 -05005159static int ipw_find_adhoc_network(struct ipw_priv *priv,
5160 struct ipw_network_match *match,
5161 struct ieee80211_network *network,
5162 int roaming)
5163{
5164 struct ipw_supported_rates rates;
5165
5166 /* Verify that this network's capability is compatible with the
5167 * current mode (AdHoc or Infrastructure) */
5168 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5169 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5170 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5171 "capability mismatch.\n",
5172 escape_essid(network->ssid, network->ssid_len),
5173 MAC_ARG(network->bssid));
5174 return 0;
5175 }
5176
5177 /* If we do not have an ESSID for this AP, we can not associate with
5178 * it */
5179 if (network->flags & NETWORK_EMPTY_ESSID) {
5180 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5181 "because of hidden ESSID.\n",
5182 escape_essid(network->ssid, network->ssid_len),
5183 MAC_ARG(network->bssid));
5184 return 0;
5185 }
5186
5187 if (unlikely(roaming)) {
5188 /* If we are roaming, then ensure check if this is a valid
5189 * network to try and roam to */
5190 if ((network->ssid_len != match->network->ssid_len) ||
5191 memcmp(network->ssid, match->network->ssid,
5192 network->ssid_len)) {
5193 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5194 "because of non-network ESSID.\n",
5195 escape_essid(network->ssid,
5196 network->ssid_len),
5197 MAC_ARG(network->bssid));
5198 return 0;
5199 }
5200 } else {
5201 /* If an ESSID has been configured then compare the broadcast
5202 * ESSID to ours */
5203 if ((priv->config & CFG_STATIC_ESSID) &&
5204 ((network->ssid_len != priv->essid_len) ||
5205 memcmp(network->ssid, priv->essid,
5206 min(network->ssid_len, priv->essid_len)))) {
5207 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005208
James Ketrenosc848d0a2005-08-24 21:56:24 -05005209 strncpy(escaped,
5210 escape_essid(network->ssid, network->ssid_len),
5211 sizeof(escaped));
5212 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5213 "because of ESSID mismatch: '%s'.\n",
5214 escaped, MAC_ARG(network->bssid),
5215 escape_essid(priv->essid,
5216 priv->essid_len));
5217 return 0;
5218 }
5219 }
5220
5221 /* If the old network rate is better than this one, don't bother
5222 * testing everything else. */
5223
5224 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005225 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5226 "current network.\n",
5227 escape_essid(match->network->ssid,
5228 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005229 return 0;
5230 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005231 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5232 "current network.\n",
5233 escape_essid(match->network->ssid,
5234 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005235 return 0;
5236 }
5237
5238 /* Now go through and see if the requested network is valid... */
5239 if (priv->ieee->scan_age != 0 &&
5240 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5241 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005242 "because of age: %ums.\n",
James Ketrenosc848d0a2005-08-24 21:56:24 -05005243 escape_essid(network->ssid, network->ssid_len),
5244 MAC_ARG(network->bssid),
Zhu Yi2638bc32006-01-24 16:37:52 +08005245 jiffies_to_msecs(jiffies -
5246 network->last_scanned));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005247 return 0;
5248 }
5249
5250 if ((priv->config & CFG_STATIC_CHANNEL) &&
5251 (network->channel != priv->channel)) {
5252 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5253 "because of channel mismatch: %d != %d.\n",
5254 escape_essid(network->ssid, network->ssid_len),
5255 MAC_ARG(network->bssid),
5256 network->channel, priv->channel);
5257 return 0;
5258 }
5259
5260 /* Verify privacy compatability */
5261 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5262 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5263 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5264 "because of privacy mismatch: %s != %s.\n",
5265 escape_essid(network->ssid, network->ssid_len),
5266 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005267 priv->
5268 capability & CAP_PRIVACY_ON ? "on" : "off",
5269 network->
5270 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5271 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005272 return 0;
5273 }
5274
5275 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5276 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5277 "because of the same BSSID match: " MAC_FMT
5278 ".\n", escape_essid(network->ssid,
5279 network->ssid_len),
5280 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5281 return 0;
5282 }
5283
5284 /* Filter out any incompatible freq / mode combinations */
5285 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5286 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5287 "because of invalid frequency/mode "
5288 "combination.\n",
5289 escape_essid(network->ssid, network->ssid_len),
5290 MAC_ARG(network->bssid));
5291 return 0;
5292 }
5293
5294 /* Ensure that the rates supported by the driver are compatible with
5295 * this AP, including verification of basic rates (mandatory) */
5296 if (!ipw_compatible_rates(priv, network, &rates)) {
5297 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5298 "because configured rate mask excludes "
5299 "AP mandatory rate.\n",
5300 escape_essid(network->ssid, network->ssid_len),
5301 MAC_ARG(network->bssid));
5302 return 0;
5303 }
5304
5305 if (rates.num_rates == 0) {
5306 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5307 "because of no compatible rates.\n",
5308 escape_essid(network->ssid, network->ssid_len),
5309 MAC_ARG(network->bssid));
5310 return 0;
5311 }
5312
5313 /* TODO: Perform any further minimal comparititive tests. We do not
5314 * want to put too much policy logic here; intelligent scan selection
5315 * should occur within a generic IEEE 802.11 user space tool. */
5316
5317 /* Set up 'new' AP to this network */
5318 ipw_copy_rates(&match->rates, &rates);
5319 match->network = network;
5320 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5321 escape_essid(network->ssid, network->ssid_len),
5322 MAC_ARG(network->bssid));
5323
5324 return 1;
5325}
5326
5327static void ipw_merge_adhoc_network(void *data)
5328{
5329 struct ipw_priv *priv = data;
5330 struct ieee80211_network *network = NULL;
5331 struct ipw_network_match match = {
5332 .network = priv->assoc_network
5333 };
5334
James Ketrenosafbf30a2005-08-25 00:05:33 -05005335 if ((priv->status & STATUS_ASSOCIATED) &&
5336 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005337 /* First pass through ROAM process -- look for a better
5338 * network */
5339 unsigned long flags;
5340
5341 spin_lock_irqsave(&priv->ieee->lock, flags);
5342 list_for_each_entry(network, &priv->ieee->network_list, list) {
5343 if (network != priv->assoc_network)
5344 ipw_find_adhoc_network(priv, &match, network,
5345 1);
5346 }
5347 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5348
5349 if (match.network == priv->assoc_network) {
5350 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5351 "merge to.\n");
5352 return;
5353 }
5354
Zhu Yi46441512006-01-24 16:37:59 +08005355 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005356 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5357 IPW_DEBUG_MERGE("remove network %s\n",
5358 escape_essid(priv->essid,
5359 priv->essid_len));
5360 ipw_remove_current_network(priv);
5361 }
5362
5363 ipw_disassociate(priv);
5364 priv->assoc_network = match.network;
Zhu Yi46441512006-01-24 16:37:59 +08005365 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005366 return;
5367 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005368}
5369
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005370static int ipw_best_network(struct ipw_priv *priv,
5371 struct ipw_network_match *match,
5372 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005373{
5374 struct ipw_supported_rates rates;
5375
5376 /* Verify that this network's capability is compatible with the
5377 * current mode (AdHoc or Infrastructure) */
5378 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005379 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005380 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5381 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5382 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005383 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005384 escape_essid(network->ssid, network->ssid_len),
5385 MAC_ARG(network->bssid));
5386 return 0;
5387 }
5388
5389 /* If we do not have an ESSID for this AP, we can not associate with
5390 * it */
5391 if (network->flags & NETWORK_EMPTY_ESSID) {
5392 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5393 "because of hidden ESSID.\n",
5394 escape_essid(network->ssid, network->ssid_len),
5395 MAC_ARG(network->bssid));
5396 return 0;
5397 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005398
James Ketrenos43f66a62005-03-25 12:31:53 -06005399 if (unlikely(roaming)) {
5400 /* If we are roaming, then ensure check if this is a valid
5401 * network to try and roam to */
5402 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005403 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005404 network->ssid_len)) {
5405 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5406 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005407 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005408 network->ssid_len),
5409 MAC_ARG(network->bssid));
5410 return 0;
5411 }
5412 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005413 /* If an ESSID has been configured then compare the broadcast
5414 * ESSID to ours */
5415 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005416 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005417 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005418 min(network->ssid_len, priv->essid_len)))) {
5419 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005420 strncpy(escaped,
5421 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005422 sizeof(escaped));
5423 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005424 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005425 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005426 escape_essid(priv->essid,
5427 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005428 return 0;
5429 }
5430 }
5431
5432 /* If the old network rate is better than this one, don't bother
5433 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005434 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005435 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005436 strncpy(escaped,
5437 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005438 sizeof(escaped));
5439 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5440 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5441 escaped, MAC_ARG(network->bssid),
5442 escape_essid(match->network->ssid,
5443 match->network->ssid_len),
5444 MAC_ARG(match->network->bssid));
5445 return 0;
5446 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005447
James Ketrenos43f66a62005-03-25 12:31:53 -06005448 /* If this network has already had an association attempt within the
5449 * last 3 seconds, do not try and associate again... */
5450 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005451 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005452 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005453 "because of storming (%ums since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005454 "assoc attempt).\n",
5455 escape_essid(network->ssid, network->ssid_len),
5456 MAC_ARG(network->bssid),
Zhu Yi2638bc32006-01-24 16:37:52 +08005457 jiffies_to_msecs(jiffies -
5458 network->last_associate));
James Ketrenos43f66a62005-03-25 12:31:53 -06005459 return 0;
5460 }
5461
5462 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005463 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005464 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005465 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005466 "because of age: %ums.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005467 escape_essid(network->ssid, network->ssid_len),
5468 MAC_ARG(network->bssid),
Zhu Yi2638bc32006-01-24 16:37:52 +08005469 jiffies_to_msecs(jiffies -
5470 network->last_scanned));
James Ketrenos43f66a62005-03-25 12:31:53 -06005471 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005472 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005473
Jeff Garzikbf794512005-07-31 13:07:26 -04005474 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005475 (network->channel != priv->channel)) {
5476 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5477 "because of channel mismatch: %d != %d.\n",
5478 escape_essid(network->ssid, network->ssid_len),
5479 MAC_ARG(network->bssid),
5480 network->channel, priv->channel);
5481 return 0;
5482 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005483
James Ketrenos43f66a62005-03-25 12:31:53 -06005484 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005485 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005486 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5487 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5488 "because of privacy mismatch: %s != %s.\n",
5489 escape_essid(network->ssid, network->ssid_len),
5490 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005491 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005492 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005493 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005494 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005495 return 0;
5496 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005497
5498 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005499 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5500 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5501 "because of BSSID mismatch: " MAC_FMT ".\n",
5502 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005503 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005504 return 0;
5505 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005506
James Ketrenos43f66a62005-03-25 12:31:53 -06005507 /* Filter out any incompatible freq / mode combinations */
5508 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5509 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5510 "because of invalid frequency/mode "
5511 "combination.\n",
5512 escape_essid(network->ssid, network->ssid_len),
5513 MAC_ARG(network->bssid));
5514 return 0;
5515 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005516
Liu Hong1fe0adb2005-08-19 09:33:10 -05005517 /* Filter out invalid channel in current GEO */
Larry Finger1867b112006-02-28 09:48:28 -06005518 if (!ieee80211_is_valid_channel(priv->ieee, network->channel)) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005519 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5520 "because of invalid channel in current GEO\n",
5521 escape_essid(network->ssid, network->ssid_len),
5522 MAC_ARG(network->bssid));
5523 return 0;
5524 }
5525
James Ketrenosea2b26e2005-08-24 21:25:16 -05005526 /* Ensure that the rates supported by the driver are compatible with
5527 * this AP, including verification of basic rates (mandatory) */
5528 if (!ipw_compatible_rates(priv, network, &rates)) {
5529 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5530 "because configured rate mask excludes "
5531 "AP mandatory rate.\n",
5532 escape_essid(network->ssid, network->ssid_len),
5533 MAC_ARG(network->bssid));
5534 return 0;
5535 }
5536
James Ketrenos43f66a62005-03-25 12:31:53 -06005537 if (rates.num_rates == 0) {
5538 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5539 "because of no compatible rates.\n",
5540 escape_essid(network->ssid, network->ssid_len),
5541 MAC_ARG(network->bssid));
5542 return 0;
5543 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005544
James Ketrenos43f66a62005-03-25 12:31:53 -06005545 /* TODO: Perform any further minimal comparititive tests. We do not
5546 * want to put too much policy logic here; intelligent scan selection
5547 * should occur within a generic IEEE 802.11 user space tool. */
5548
5549 /* Set up 'new' AP to this network */
5550 ipw_copy_rates(&match->rates, &rates);
5551 match->network = network;
5552
5553 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5554 escape_essid(network->ssid, network->ssid_len),
5555 MAC_ARG(network->bssid));
5556
5557 return 1;
5558}
5559
Jeff Garzikbf794512005-07-31 13:07:26 -04005560static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005561 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005562{
Larry Finger1867b112006-02-28 09:48:28 -06005563 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005564 int i;
5565
James Ketrenos43f66a62005-03-25 12:31:53 -06005566 /*
5567 * For the purposes of scanning, we can set our wireless mode
5568 * to trigger scans across combinations of bands, but when it
5569 * comes to creating a new ad-hoc network, we have tell the FW
5570 * exactly which band to use.
5571 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005572 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005573 * chossen band. Attempting to create a new ad-hoc network
5574 * with an invalid channel for wireless mode will trigger a
5575 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005576 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005577 */
Larry Finger1867b112006-02-28 09:48:28 -06005578 switch (ieee80211_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005579 case IEEE80211_52GHZ_BAND:
5580 network->mode = IEEE_A;
Larry Finger1867b112006-02-28 09:48:28 -06005581 i = ieee80211_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005582 BUG_ON(i == -1);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005583 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5584 IPW_WARNING("Overriding invalid channel\n");
5585 priv->channel = geo->a[0].channel;
5586 }
5587 break;
5588
5589 case IEEE80211_24GHZ_BAND:
5590 if (priv->ieee->mode & IEEE_G)
5591 network->mode = IEEE_G;
5592 else
5593 network->mode = IEEE_B;
Larry Finger1867b112006-02-28 09:48:28 -06005594 i = ieee80211_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005595 BUG_ON(i == -1);
Liu Hong1fe0adb2005-08-19 09:33:10 -05005596 if (geo->bg[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5597 IPW_WARNING("Overriding invalid channel\n");
5598 priv->channel = geo->bg[0].channel;
5599 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005600 break;
5601
5602 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005603 IPW_WARNING("Overriding invalid channel\n");
5604 if (priv->ieee->mode & IEEE_A) {
5605 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005606 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005607 } else if (priv->ieee->mode & IEEE_G) {
5608 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005609 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005610 } else {
5611 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005612 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005613 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005614 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005615 }
5616
5617 network->channel = priv->channel;
5618 priv->config |= CFG_ADHOC_PERSIST;
5619 ipw_create_bssid(priv, network->bssid);
5620 network->ssid_len = priv->essid_len;
5621 memcpy(network->ssid, priv->essid, priv->essid_len);
5622 memset(&network->stats, 0, sizeof(network->stats));
5623 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005624 if (!(priv->config & CFG_PREAMBLE_LONG))
5625 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005626 if (priv->capability & CAP_PRIVACY_ON)
5627 network->capability |= WLAN_CAPABILITY_PRIVACY;
5628 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005629 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005630 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005631 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005632 &priv->rates.supported_rates[network->rates_len],
5633 network->rates_ex_len);
5634 network->last_scanned = 0;
5635 network->flags = 0;
5636 network->last_associate = 0;
5637 network->time_stamp[0] = 0;
5638 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005639 network->beacon_interval = 100; /* Default */
5640 network->listen_interval = 10; /* Default */
5641 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005642 network->wpa_ie_len = 0;
5643 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005644}
5645
James Ketrenosb095c382005-08-24 22:04:42 -05005646static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5647{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005648 struct ipw_tgi_tx_key key;
James Ketrenosb095c382005-08-24 22:04:42 -05005649
5650 if (!(priv->ieee->sec.flags & (1 << index)))
5651 return;
5652
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005653 key.key_id = index;
5654 memcpy(key.key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5655 key.security_type = type;
5656 key.station_index = 0; /* always 0 for BSS */
5657 key.flags = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005658 /* 0 for new key; previous value of counter (after fatal error) */
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005659 key.tx_counter[0] = 0;
5660 key.tx_counter[1] = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005661
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005662 ipw_send_cmd_pdu(priv, IPW_CMD_TGI_TX_KEY, sizeof(key), &key);
James Ketrenosb095c382005-08-24 22:04:42 -05005663}
5664
5665static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005666{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005667 struct ipw_wep_key key;
James Ketrenos43f66a62005-03-25 12:31:53 -06005668 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -06005669
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005670 key.cmd_id = DINO_CMD_WEP_KEY;
5671 key.seq_num = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005672
James Ketrenosb095c382005-08-24 22:04:42 -05005673 /* Note: AES keys cannot be set for multiple times.
5674 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005675 for (i = 0; i < 4; i++) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005676 key.key_index = i | type;
James Ketrenosb095c382005-08-24 22:04:42 -05005677 if (!(priv->ieee->sec.flags & (1 << i))) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005678 key.key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005679 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005680 }
5681
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005682 key.key_size = priv->ieee->sec.key_sizes[i];
5683 memcpy(key.key, priv->ieee->sec.keys[i], key.key_size);
James Ketrenosb095c382005-08-24 22:04:42 -05005684
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005685 ipw_send_cmd_pdu(priv, IPW_CMD_WEP_KEY, sizeof(key), &key);
Jeff Garzikbf794512005-07-31 13:07:26 -04005686 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005687}
5688
Zhu Yi1fbfea52005-08-05 17:22:56 +08005689static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5690{
5691 if (priv->ieee->host_encrypt)
5692 return;
5693
5694 switch (level) {
5695 case SEC_LEVEL_3:
5696 priv->sys_config.disable_unicast_decryption = 0;
5697 priv->ieee->host_decrypt = 0;
5698 break;
5699 case SEC_LEVEL_2:
5700 priv->sys_config.disable_unicast_decryption = 1;
5701 priv->ieee->host_decrypt = 1;
5702 break;
5703 case SEC_LEVEL_1:
5704 priv->sys_config.disable_unicast_decryption = 0;
5705 priv->ieee->host_decrypt = 0;
5706 break;
5707 case SEC_LEVEL_0:
5708 priv->sys_config.disable_unicast_decryption = 1;
5709 break;
5710 default:
5711 break;
5712 }
5713}
5714
5715static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5716{
5717 if (priv->ieee->host_encrypt)
5718 return;
5719
5720 switch (level) {
5721 case SEC_LEVEL_3:
5722 priv->sys_config.disable_multicast_decryption = 0;
5723 break;
5724 case SEC_LEVEL_2:
5725 priv->sys_config.disable_multicast_decryption = 1;
5726 break;
5727 case SEC_LEVEL_1:
5728 priv->sys_config.disable_multicast_decryption = 0;
5729 break;
5730 case SEC_LEVEL_0:
5731 priv->sys_config.disable_multicast_decryption = 1;
5732 break;
5733 default:
5734 break;
5735 }
5736}
5737
James Ketrenosb095c382005-08-24 22:04:42 -05005738static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5739{
5740 switch (priv->ieee->sec.level) {
5741 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005742 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5743 ipw_send_tgi_tx_key(priv,
5744 DCT_FLAG_EXT_SECURITY_CCM,
5745 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005746
Hong Liu567deaf2005-08-31 18:07:22 +08005747 if (!priv->ieee->host_mc_decrypt)
5748 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005749 break;
5750 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005751 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5752 ipw_send_tgi_tx_key(priv,
5753 DCT_FLAG_EXT_SECURITY_TKIP,
5754 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005755 break;
5756 case SEC_LEVEL_1:
5757 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05005758 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
5759 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05005760 break;
5761 case SEC_LEVEL_0:
5762 default:
5763 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005764 }
5765}
5766
5767static void ipw_adhoc_check(void *data)
5768{
5769 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005770
James Ketrenosafbf30a2005-08-25 00:05:33 -05005771 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005772 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005773 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5774 IPW_DL_STATE | IPW_DL_ASSOC,
5775 "Missed beacon: %d - disassociate\n",
5776 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005777 ipw_remove_current_network(priv);
5778 ipw_disassociate(priv);
5779 return;
5780 }
5781
Jeff Garzikbf794512005-07-31 13:07:26 -04005782 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005783 priv->assoc_request.beacon_interval);
5784}
5785
James Ketrenosc848d0a2005-08-24 21:56:24 -05005786static void ipw_bg_adhoc_check(void *data)
5787{
5788 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08005789 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005790 ipw_adhoc_check(data);
Zhu Yi46441512006-01-24 16:37:59 +08005791 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005792}
5793
Brice Goglin0f52bf92005-12-01 01:41:46 -08005794#ifdef CONFIG_IPW2200_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -06005795static void ipw_debug_config(struct ipw_priv *priv)
5796{
5797 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5798 "[CFG 0x%08X]\n", priv->config);
5799 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005800 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005801 else
5802 IPW_DEBUG_INFO("Channel unlocked.\n");
5803 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005804 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005805 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005806 else
5807 IPW_DEBUG_INFO("ESSID unlocked.\n");
5808 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005809 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5810 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005811 else
5812 IPW_DEBUG_INFO("BSSID unlocked.\n");
5813 if (priv->capability & CAP_PRIVACY_ON)
5814 IPW_DEBUG_INFO("PRIVACY on\n");
5815 else
5816 IPW_DEBUG_INFO("PRIVACY off\n");
5817 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5818}
5819#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005820#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005821#endif
5822
Arjan van de Ven858119e2006-01-14 13:20:43 -08005823static void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005824{
5825 /* TODO: Verify that this works... */
5826 struct ipw_fixed_rate fr = {
5827 .tx_rates = priv->rates_mask
5828 };
5829 u32 reg;
5830 u16 mask = 0;
5831
Jeff Garzikbf794512005-07-31 13:07:26 -04005832 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005833 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005834
James Ketrenos43f66a62005-03-25 12:31:53 -06005835 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005836 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005837 /* IEEE_A */
5838 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5839 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005840 IPW_DEBUG_WX
5841 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005842 fr.tx_rates = 0;
5843 break;
5844 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005845
James Ketrenos43f66a62005-03-25 12:31:53 -06005846 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5847 break;
5848
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005849 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005850 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005851 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005852 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5853 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005854 IPW_DEBUG_WX
5855 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005856 fr.tx_rates = 0;
5857 }
5858 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005859 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005860
5861 /* IEEE_G */
5862 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5863 IEEE80211_OFDM_RATES_MASK)) {
5864 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005865 IPW_DEBUG_WX
5866 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005867 fr.tx_rates = 0;
5868 break;
5869 }
5870
5871 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5872 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5873 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5874 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005875
James Ketrenos43f66a62005-03-25 12:31:53 -06005876 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5877 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5878 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5879 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005880
James Ketrenos43f66a62005-03-25 12:31:53 -06005881 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5882 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5883 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5884 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005885
James Ketrenos43f66a62005-03-25 12:31:53 -06005886 fr.tx_rates |= mask;
5887 break;
5888 }
5889
5890 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005891 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005892}
5893
James Ketrenosea2b26e2005-08-24 21:25:16 -05005894static void ipw_abort_scan(struct ipw_priv *priv)
5895{
5896 int err;
5897
5898 if (priv->status & STATUS_SCAN_ABORTING) {
5899 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5900 return;
5901 }
5902 priv->status |= STATUS_SCAN_ABORTING;
5903
5904 err = ipw_send_scan_abort(priv);
5905 if (err)
5906 IPW_DEBUG_HC("Request to abort scan failed.\n");
5907}
5908
James Ketrenosafbf30a2005-08-25 00:05:33 -05005909static void ipw_add_scan_channels(struct ipw_priv *priv,
5910 struct ipw_scan_request_ext *scan,
5911 int scan_type)
5912{
5913 int channel_index = 0;
5914 const struct ieee80211_geo *geo;
5915 int i;
5916
Larry Finger1867b112006-02-28 09:48:28 -06005917 geo = ieee80211_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005918
5919 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5920 int start = channel_index;
5921 for (i = 0; i < geo->a_channels; i++) {
5922 if ((priv->status & STATUS_ASSOCIATED) &&
5923 geo->a[i].channel == priv->channel)
5924 continue;
5925 channel_index++;
5926 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005927 ipw_set_scan_type(scan, channel_index,
5928 geo->a[i].
5929 flags & IEEE80211_CH_PASSIVE_ONLY ?
5930 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
5931 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005932 }
5933
5934 if (start != channel_index) {
5935 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5936 (channel_index - start);
5937 channel_index++;
5938 }
5939 }
5940
5941 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5942 int start = channel_index;
5943 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005944 int index;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005945 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5946 /* nop out the list */
5947 [0] = 0
5948 };
5949
5950 u8 channel;
5951 while (channel_index < IPW_SCAN_CHANNELS) {
5952 channel =
5953 priv->speed_scan[priv->speed_scan_pos];
5954 if (channel == 0) {
5955 priv->speed_scan_pos = 0;
5956 channel = priv->speed_scan[0];
5957 }
5958 if ((priv->status & STATUS_ASSOCIATED) &&
5959 channel == priv->channel) {
5960 priv->speed_scan_pos++;
5961 continue;
5962 }
5963
5964 /* If this channel has already been
5965 * added in scan, break from loop
5966 * and this will be the first channel
5967 * in the next scan.
5968 */
5969 if (channels[channel - 1] != 0)
5970 break;
5971
5972 channels[channel - 1] = 1;
5973 priv->speed_scan_pos++;
5974 channel_index++;
5975 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005976 index =
Larry Finger1867b112006-02-28 09:48:28 -06005977 ieee80211_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005978 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05005979 geo->bg[index].
5980 flags &
5981 IEEE80211_CH_PASSIVE_ONLY ?
5982 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
5983 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005984 }
5985 } else {
5986 for (i = 0; i < geo->bg_channels; i++) {
5987 if ((priv->status & STATUS_ASSOCIATED) &&
5988 geo->bg[i].channel == priv->channel)
5989 continue;
5990 channel_index++;
5991 scan->channels_list[channel_index] =
5992 geo->bg[i].channel;
5993 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05005994 geo->bg[i].
5995 flags &
5996 IEEE80211_CH_PASSIVE_ONLY ?
5997 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
5998 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005999 }
6000 }
6001
6002 if (start != channel_index) {
6003 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6004 (channel_index - start);
6005 }
6006 }
6007}
6008
James Ketrenosea2b26e2005-08-24 21:25:16 -05006009static int ipw_request_scan(struct ipw_priv *priv)
6010{
6011 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006012 int err = 0, scan_type;
6013
6014 if (!(priv->status & STATUS_INIT) ||
6015 (priv->status & STATUS_EXIT_PENDING))
6016 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006017
Zhu Yi46441512006-01-24 16:37:59 +08006018 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006019
James Ketrenosea2b26e2005-08-24 21:25:16 -05006020 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05006021 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05006022 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006023 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006024 }
6025
James Ketrenosafbf30a2005-08-25 00:05:33 -05006026 if (!(priv->status & STATUS_SCAN_FORCED) &&
6027 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006028 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6029 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006030 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006031 }
6032
6033 if (priv->status & STATUS_RF_KILL_MASK) {
6034 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6035 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006036 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006037 }
6038
6039 memset(&scan, 0, sizeof(scan));
6040
James Ketrenosb095c382005-08-24 22:04:42 -05006041 if (priv->config & CFG_SPEED_SCAN)
6042 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6043 cpu_to_le16(30);
6044 else
6045 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6046 cpu_to_le16(20);
6047
James Ketrenosa613bff2005-08-24 21:43:11 -05006048 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
6049 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05006050 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006051
James Ketrenosa613bff2005-08-24 21:43:11 -05006052 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006053
James Ketrenosb095c382005-08-24 22:04:42 -05006054#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006055 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006056 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006057 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006058
Larry Finger1867b112006-02-28 09:48:28 -06006059 switch (ieee80211_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006060 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006061 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006062 channel = priv->channel;
6063 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006064
James Ketrenosb095c382005-08-24 22:04:42 -05006065 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006066 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006067 channel = priv->channel;
6068 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006069
James Ketrenosb095c382005-08-24 22:04:42 -05006070 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006071 band = (u8) (IPW_B_MODE << 6) | 1;
6072 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006073 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006074 }
6075
James Ketrenosb095c382005-08-24 22:04:42 -05006076 scan.channels_list[0] = band;
6077 scan.channels_list[1] = channel;
6078 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006079
James Ketrenosb095c382005-08-24 22:04:42 -05006080 /* NOTE: The card will sit on this channel for this time
6081 * period. Scan aborts are timing sensitive and frequently
6082 * result in firmware restarts. As such, it is best to
6083 * set a small dwell_time here and just keep re-issuing
6084 * scans. Otherwise fast channel hopping will not actually
6085 * hop channels.
6086 *
6087 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006088 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6089 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006090 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006091#endif /* CONFIG_IPW2200_MONITOR */
6092 /* If we are roaming, then make this a directed scan for the
6093 * current network. Otherwise, ensure that every other scan
6094 * is a fast channel hop scan */
6095 if ((priv->status & STATUS_ROAMING)
6096 || (!(priv->status & STATUS_ASSOCIATED)
6097 && (priv->config & CFG_STATIC_ESSID)
6098 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006099 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6100 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006101 IPW_DEBUG_HC("Attempt to send SSID command "
6102 "failed.\n");
6103 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006104 }
6105
6106 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006107 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006108 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006109
James Ketrenosafbf30a2005-08-25 00:05:33 -05006110 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006111#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006112 }
6113#endif
6114
6115 err = ipw_send_scan_request_ext(priv, &scan);
6116 if (err) {
6117 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006118 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006119 }
6120
6121 priv->status |= STATUS_SCANNING;
6122 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006123 queue_delayed_work(priv->workqueue, &priv->scan_check,
6124 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05006125 done:
Zhu Yi46441512006-01-24 16:37:59 +08006126 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006127 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006128}
6129
6130static void ipw_bg_abort_scan(void *data)
6131{
6132 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08006133 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006134 ipw_abort_scan(data);
Zhu Yi46441512006-01-24 16:37:59 +08006135 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006136}
6137
James Ketrenosea2b26e2005-08-24 21:25:16 -05006138static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6139{
James Ketrenosb095c382005-08-24 22:04:42 -05006140 /* This is called when wpa_supplicant loads and closes the driver
6141 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006142 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006143 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006144}
6145
James Ketrenosea2b26e2005-08-24 21:25:16 -05006146static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6147{
6148 struct ieee80211_device *ieee = priv->ieee;
6149 struct ieee80211_security sec = {
6150 .flags = SEC_AUTH_MODE,
6151 };
6152 int ret = 0;
6153
James Ketrenosafbf30a2005-08-25 00:05:33 -05006154 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006155 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6156 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006157 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006158 sec.auth_mode = WLAN_AUTH_OPEN;
6159 ieee->open_wep = 1;
Zhu Yi3e234b42006-01-24 16:36:52 +08006160 } else if (value & IW_AUTH_ALG_LEAP) {
6161 sec.auth_mode = WLAN_AUTH_LEAP;
6162 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006163 } else
6164 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006165
6166 if (ieee->set_security)
6167 ieee->set_security(ieee->dev, &sec);
6168 else
6169 ret = -EOPNOTSUPP;
6170
6171 return ret;
6172}
6173
Adrian Bunka73e22b2006-01-21 01:39:42 +01006174static void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie,
6175 int wpa_ie_len)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006176{
6177 /* make sure WPA is enabled */
6178 ipw_wpa_enable(priv, 1);
6179
6180 ipw_disassociate(priv);
6181}
6182
6183static int ipw_set_rsn_capa(struct ipw_priv *priv,
6184 char *capabilities, int length)
6185{
James Ketrenosafbf30a2005-08-25 00:05:33 -05006186 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6187
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006188 return ipw_send_cmd_pdu(priv, IPW_CMD_RSN_CAPABILITIES, length,
Zhu Yi2638bc32006-01-24 16:37:52 +08006189 capabilities);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006190}
6191
James Ketrenosafbf30a2005-08-25 00:05:33 -05006192/*
6193 * WE-18 support
6194 */
6195
6196/* SIOCSIWGENIE */
6197static int ipw_wx_set_genie(struct net_device *dev,
6198 struct iw_request_info *info,
6199 union iwreq_data *wrqu, char *extra)
6200{
6201 struct ipw_priv *priv = ieee80211_priv(dev);
6202 struct ieee80211_device *ieee = priv->ieee;
6203 u8 *buf;
6204 int err = 0;
6205
6206 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6207 (wrqu->data.length && extra == NULL))
6208 return -EINVAL;
6209
Zhu Yi46441512006-01-24 16:37:59 +08006210 //mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006211
6212 //if (!ieee->wpa_enabled) {
6213 // err = -EOPNOTSUPP;
6214 // goto out;
6215 //}
6216
6217 if (wrqu->data.length) {
6218 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6219 if (buf == NULL) {
6220 err = -ENOMEM;
6221 goto out;
6222 }
6223
6224 memcpy(buf, extra, wrqu->data.length);
6225 kfree(ieee->wpa_ie);
6226 ieee->wpa_ie = buf;
6227 ieee->wpa_ie_len = wrqu->data.length;
6228 } else {
6229 kfree(ieee->wpa_ie);
6230 ieee->wpa_ie = NULL;
6231 ieee->wpa_ie_len = 0;
6232 }
6233
6234 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6235 out:
Zhu Yi46441512006-01-24 16:37:59 +08006236 //mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006237 return err;
6238}
6239
6240/* SIOCGIWGENIE */
6241static int ipw_wx_get_genie(struct net_device *dev,
6242 struct iw_request_info *info,
6243 union iwreq_data *wrqu, char *extra)
6244{
6245 struct ipw_priv *priv = ieee80211_priv(dev);
6246 struct ieee80211_device *ieee = priv->ieee;
6247 int err = 0;
6248
Zhu Yi46441512006-01-24 16:37:59 +08006249 //mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006250
6251 //if (!ieee->wpa_enabled) {
6252 // err = -EOPNOTSUPP;
6253 // goto out;
6254 //}
6255
6256 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6257 wrqu->data.length = 0;
6258 goto out;
6259 }
6260
6261 if (wrqu->data.length < ieee->wpa_ie_len) {
6262 err = -E2BIG;
6263 goto out;
6264 }
6265
6266 wrqu->data.length = ieee->wpa_ie_len;
6267 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6268
6269 out:
Zhu Yi46441512006-01-24 16:37:59 +08006270 //mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006271 return err;
6272}
6273
Zhu Yi1fbfea52005-08-05 17:22:56 +08006274static int wext_cipher2level(int cipher)
6275{
6276 switch (cipher) {
6277 case IW_AUTH_CIPHER_NONE:
6278 return SEC_LEVEL_0;
6279 case IW_AUTH_CIPHER_WEP40:
6280 case IW_AUTH_CIPHER_WEP104:
6281 return SEC_LEVEL_1;
6282 case IW_AUTH_CIPHER_TKIP:
6283 return SEC_LEVEL_2;
6284 case IW_AUTH_CIPHER_CCMP:
6285 return SEC_LEVEL_3;
6286 default:
6287 return -1;
6288 }
6289}
6290
James Ketrenosafbf30a2005-08-25 00:05:33 -05006291/* SIOCSIWAUTH */
6292static int ipw_wx_set_auth(struct net_device *dev,
6293 struct iw_request_info *info,
6294 union iwreq_data *wrqu, char *extra)
6295{
6296 struct ipw_priv *priv = ieee80211_priv(dev);
6297 struct ieee80211_device *ieee = priv->ieee;
6298 struct iw_param *param = &wrqu->param;
6299 struct ieee80211_crypt_data *crypt;
6300 unsigned long flags;
6301 int ret = 0;
6302
6303 switch (param->flags & IW_AUTH_INDEX) {
6304 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006305 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006306 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006307 ipw_set_hw_decrypt_unicast(priv,
6308 wext_cipher2level(param->value));
6309 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006310 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006311 ipw_set_hw_decrypt_multicast(priv,
6312 wext_cipher2level(param->value));
6313 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006314 case IW_AUTH_KEY_MGMT:
6315 /*
6316 * ipw2200 does not use these parameters
6317 */
6318 break;
6319
6320 case IW_AUTH_TKIP_COUNTERMEASURES:
6321 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006322 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006323 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006324
6325 flags = crypt->ops->get_flags(crypt->priv);
6326
6327 if (param->value)
6328 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6329 else
6330 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6331
6332 crypt->ops->set_flags(flags, crypt->priv);
6333
6334 break;
6335
6336 case IW_AUTH_DROP_UNENCRYPTED:{
6337 /* HACK:
6338 *
6339 * wpa_supplicant calls set_wpa_enabled when the driver
6340 * is loaded and unloaded, regardless of if WPA is being
6341 * used. No other calls are made which can be used to
6342 * determine if encryption will be used or not prior to
6343 * association being expected. If encryption is not being
6344 * used, drop_unencrypted is set to false, else true -- we
6345 * can use this to determine if the CAP_PRIVACY_ON bit should
6346 * be set.
6347 */
6348 struct ieee80211_security sec = {
6349 .flags = SEC_ENABLED,
6350 .enabled = param->value,
6351 };
6352 priv->ieee->drop_unencrypted = param->value;
6353 /* We only change SEC_LEVEL for open mode. Others
6354 * are set by ipw_wpa_set_encryption.
6355 */
6356 if (!param->value) {
6357 sec.flags |= SEC_LEVEL;
6358 sec.level = SEC_LEVEL_0;
6359 } else {
6360 sec.flags |= SEC_LEVEL;
6361 sec.level = SEC_LEVEL_1;
6362 }
6363 if (priv->ieee->set_security)
6364 priv->ieee->set_security(priv->ieee->dev, &sec);
6365 break;
6366 }
6367
6368 case IW_AUTH_80211_AUTH_ALG:
6369 ret = ipw_wpa_set_auth_algs(priv, param->value);
6370 break;
6371
6372 case IW_AUTH_WPA_ENABLED:
6373 ret = ipw_wpa_enable(priv, param->value);
6374 break;
6375
6376 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6377 ieee->ieee802_1x = param->value;
6378 break;
6379
6380 //case IW_AUTH_ROAMING_CONTROL:
6381 case IW_AUTH_PRIVACY_INVOKED:
6382 ieee->privacy_invoked = param->value;
6383 break;
6384
6385 default:
6386 return -EOPNOTSUPP;
6387 }
6388 return ret;
6389}
6390
6391/* SIOCGIWAUTH */
6392static int ipw_wx_get_auth(struct net_device *dev,
6393 struct iw_request_info *info,
6394 union iwreq_data *wrqu, char *extra)
6395{
6396 struct ipw_priv *priv = ieee80211_priv(dev);
6397 struct ieee80211_device *ieee = priv->ieee;
6398 struct ieee80211_crypt_data *crypt;
6399 struct iw_param *param = &wrqu->param;
6400 int ret = 0;
6401
6402 switch (param->flags & IW_AUTH_INDEX) {
6403 case IW_AUTH_WPA_VERSION:
6404 case IW_AUTH_CIPHER_PAIRWISE:
6405 case IW_AUTH_CIPHER_GROUP:
6406 case IW_AUTH_KEY_MGMT:
6407 /*
6408 * wpa_supplicant will control these internally
6409 */
6410 ret = -EOPNOTSUPP;
6411 break;
6412
6413 case IW_AUTH_TKIP_COUNTERMEASURES:
6414 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006415 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006416 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006417
6418 param->value = (crypt->ops->get_flags(crypt->priv) &
6419 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6420
6421 break;
6422
6423 case IW_AUTH_DROP_UNENCRYPTED:
6424 param->value = ieee->drop_unencrypted;
6425 break;
6426
6427 case IW_AUTH_80211_AUTH_ALG:
6428 param->value = ieee->sec.auth_mode;
6429 break;
6430
6431 case IW_AUTH_WPA_ENABLED:
6432 param->value = ieee->wpa_enabled;
6433 break;
6434
6435 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6436 param->value = ieee->ieee802_1x;
6437 break;
6438
6439 case IW_AUTH_ROAMING_CONTROL:
6440 case IW_AUTH_PRIVACY_INVOKED:
6441 param->value = ieee->privacy_invoked;
6442 break;
6443
6444 default:
6445 return -EOPNOTSUPP;
6446 }
6447 return 0;
6448}
6449
6450/* SIOCSIWENCODEEXT */
6451static int ipw_wx_set_encodeext(struct net_device *dev,
6452 struct iw_request_info *info,
6453 union iwreq_data *wrqu, char *extra)
6454{
6455 struct ipw_priv *priv = ieee80211_priv(dev);
6456 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6457
6458 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006459 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006460 /* IPW HW can't build TKIP MIC,
6461 host decryption still needed */
6462 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6463 priv->ieee->host_mc_decrypt = 1;
6464 else {
6465 priv->ieee->host_encrypt = 0;
6466 priv->ieee->host_encrypt_msdu = 1;
6467 priv->ieee->host_decrypt = 1;
6468 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006469 } else {
6470 priv->ieee->host_encrypt = 0;
6471 priv->ieee->host_encrypt_msdu = 0;
6472 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006473 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006474 }
6475 }
6476
6477 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6478}
6479
6480/* SIOCGIWENCODEEXT */
6481static int ipw_wx_get_encodeext(struct net_device *dev,
6482 struct iw_request_info *info,
6483 union iwreq_data *wrqu, char *extra)
6484{
6485 struct ipw_priv *priv = ieee80211_priv(dev);
6486 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
6487}
6488
6489/* SIOCSIWMLME */
6490static int ipw_wx_set_mlme(struct net_device *dev,
6491 struct iw_request_info *info,
6492 union iwreq_data *wrqu, char *extra)
6493{
6494 struct ipw_priv *priv = ieee80211_priv(dev);
6495 struct iw_mlme *mlme = (struct iw_mlme *)extra;
6496 u16 reason;
6497
6498 reason = cpu_to_le16(mlme->reason_code);
6499
6500 switch (mlme->cmd) {
6501 case IW_MLME_DEAUTH:
6502 // silently ignore
6503 break;
6504
6505 case IW_MLME_DISASSOC:
6506 ipw_disassociate(priv);
6507 break;
6508
6509 default:
6510 return -EOPNOTSUPP;
6511 }
6512 return 0;
6513}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006514
James Ketrenosb095c382005-08-24 22:04:42 -05006515#ifdef CONFIG_IPW_QOS
6516
6517/* QoS */
6518/*
6519* get the modulation type of the current network or
6520* the card current mode
6521*/
Adrian Bunk53d0bcf2006-03-04 13:14:31 +01006522static u8 ipw_qos_current_mode(struct ipw_priv * priv)
James Ketrenosb095c382005-08-24 22:04:42 -05006523{
6524 u8 mode = 0;
6525
6526 if (priv->status & STATUS_ASSOCIATED) {
6527 unsigned long flags;
6528
6529 spin_lock_irqsave(&priv->ieee->lock, flags);
6530 mode = priv->assoc_network->mode;
6531 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6532 } else {
6533 mode = priv->ieee->mode;
6534 }
6535 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
6536 return mode;
6537}
6538
6539/*
6540* Handle management frame beacon and probe response
6541*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006542static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6543 int active_network,
6544 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006545{
6546 u32 size = sizeof(struct ieee80211_qos_parameters);
6547
James Ketrenosafbf30a2005-08-25 00:05:33 -05006548 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006549 network->qos_data.active = network->qos_data.supported;
6550
6551 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006552 if (active_network &&
6553 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006554 network->qos_data.active = network->qos_data.supported;
6555
6556 if ((network->qos_data.active == 1) && (active_network == 1) &&
6557 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6558 (network->qos_data.old_param_count !=
6559 network->qos_data.param_count)) {
6560 network->qos_data.old_param_count =
6561 network->qos_data.param_count;
6562 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006563 IPW_DEBUG_QOS("QoS parameters change call "
6564 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006565 }
6566 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006567 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6568 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006569 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006570 else
6571 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006572 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006573
James Ketrenosb095c382005-08-24 22:04:42 -05006574 if ((network->qos_data.active == 1) && (active_network == 1)) {
6575 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
6576 schedule_work(&priv->qos_activate);
6577 }
6578
6579 network->qos_data.active = 0;
6580 network->qos_data.supported = 0;
6581 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006582 if ((priv->status & STATUS_ASSOCIATED) &&
6583 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
6584 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
6585 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
6586 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05006587 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006588 priv->assoc_network->ssid_len) &&
6589 !memcmp(network->ssid,
6590 priv->assoc_network->ssid,
6591 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006592 queue_work(priv->workqueue,
6593 &priv->merge_networks);
6594 }
James Ketrenosb095c382005-08-24 22:04:42 -05006595 }
6596
6597 return 0;
6598}
6599
6600/*
6601* This function set up the firmware to support QoS. It sends
6602* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6603*/
6604static int ipw_qos_activate(struct ipw_priv *priv,
6605 struct ieee80211_qos_data *qos_network_data)
6606{
6607 int err;
6608 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
6609 struct ieee80211_qos_parameters *active_one = NULL;
6610 u32 size = sizeof(struct ieee80211_qos_parameters);
6611 u32 burst_duration;
6612 int i;
6613 u8 type;
6614
6615 type = ipw_qos_current_mode(priv);
6616
6617 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6618 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6619 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6620 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6621
6622 if (qos_network_data == NULL) {
6623 if (type == IEEE_B) {
6624 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
6625 active_one = &def_parameters_CCK;
6626 } else
6627 active_one = &def_parameters_OFDM;
6628
James Ketrenosafbf30a2005-08-25 00:05:33 -05006629 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006630 burst_duration = ipw_qos_get_burst_duration(priv);
6631 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006632 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
6633 (u16) burst_duration;
6634 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05006635 if (type == IEEE_B) {
6636 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
6637 type);
6638 if (priv->qos_data.qos_enable == 0)
6639 active_one = &def_parameters_CCK;
6640 else
6641 active_one = priv->qos_data.def_qos_parm_CCK;
6642 } else {
6643 if (priv->qos_data.qos_enable == 0)
6644 active_one = &def_parameters_OFDM;
6645 else
6646 active_one = priv->qos_data.def_qos_parm_OFDM;
6647 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006648 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006649 } else {
6650 unsigned long flags;
6651 int active;
6652
6653 spin_lock_irqsave(&priv->ieee->lock, flags);
6654 active_one = &(qos_network_data->parameters);
6655 qos_network_data->old_param_count =
6656 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006657 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006658 active = qos_network_data->supported;
6659 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6660
6661 if (active == 0) {
6662 burst_duration = ipw_qos_get_burst_duration(priv);
6663 for (i = 0; i < QOS_QUEUE_NUM; i++)
6664 qos_parameters[QOS_PARAM_SET_ACTIVE].
6665 tx_op_limit[i] = (u16) burst_duration;
6666 }
6667 }
6668
6669 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05006670 err = ipw_send_qos_params_command(priv,
6671 (struct ieee80211_qos_parameters *)
6672 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05006673 if (err)
6674 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
6675
6676 return err;
6677}
6678
6679/*
6680* send IPW_CMD_WME_INFO to the firmware
6681*/
6682static int ipw_qos_set_info_element(struct ipw_priv *priv)
6683{
6684 int ret = 0;
6685 struct ieee80211_qos_information_element qos_info;
6686
6687 if (priv == NULL)
6688 return -1;
6689
6690 qos_info.elementID = QOS_ELEMENT_ID;
6691 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
6692
6693 qos_info.version = QOS_VERSION_1;
6694 qos_info.ac_info = 0;
6695
6696 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
6697 qos_info.qui_type = QOS_OUI_TYPE;
6698 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
6699
6700 ret = ipw_send_qos_info_command(priv, &qos_info);
6701 if (ret != 0) {
6702 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
6703 }
6704 return ret;
6705}
6706
6707/*
6708* Set the QoS parameter with the association request structure
6709*/
6710static int ipw_qos_association(struct ipw_priv *priv,
6711 struct ieee80211_network *network)
6712{
6713 int err = 0;
6714 struct ieee80211_qos_data *qos_data = NULL;
6715 struct ieee80211_qos_data ibss_data = {
6716 .supported = 1,
6717 .active = 1,
6718 };
6719
6720 switch (priv->ieee->iw_mode) {
6721 case IW_MODE_ADHOC:
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02006722 BUG_ON(!(network->capability & WLAN_CAPABILITY_IBSS));
James Ketrenosb095c382005-08-24 22:04:42 -05006723
6724 qos_data = &ibss_data;
6725 break;
6726
6727 case IW_MODE_INFRA:
6728 qos_data = &network->qos_data;
6729 break;
6730
6731 default:
6732 BUG();
6733 break;
6734 }
6735
6736 err = ipw_qos_activate(priv, qos_data);
6737 if (err) {
6738 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
6739 return err;
6740 }
6741
6742 if (priv->qos_data.qos_enable && qos_data->supported) {
6743 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
6744 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
6745 return ipw_qos_set_info_element(priv);
6746 }
6747
6748 return 0;
6749}
6750
6751/*
6752* handling the beaconing responces. if we get different QoS setting
6753* of the network from the the associated setting adjust the QoS
6754* setting
6755*/
6756static int ipw_qos_association_resp(struct ipw_priv *priv,
6757 struct ieee80211_network *network)
6758{
6759 int ret = 0;
6760 unsigned long flags;
6761 u32 size = sizeof(struct ieee80211_qos_parameters);
6762 int set_qos_param = 0;
6763
James Ketrenosafbf30a2005-08-25 00:05:33 -05006764 if ((priv == NULL) || (network == NULL) ||
6765 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05006766 return ret;
6767
6768 if (!(priv->status & STATUS_ASSOCIATED))
6769 return ret;
6770
James Ketrenosafbf30a2005-08-25 00:05:33 -05006771 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05006772 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05006773
6774 spin_lock_irqsave(&priv->ieee->lock, flags);
6775 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006776 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05006777 sizeof(struct ieee80211_qos_data));
6778 priv->assoc_network->qos_data.active = 1;
6779 if ((network->qos_data.old_param_count !=
6780 network->qos_data.param_count)) {
6781 set_qos_param = 1;
6782 network->qos_data.old_param_count =
6783 network->qos_data.param_count;
6784 }
6785
6786 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006787 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
6788 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006789 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006790 else
6791 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006792 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006793 priv->assoc_network->qos_data.active = 0;
6794 priv->assoc_network->qos_data.supported = 0;
6795 set_qos_param = 1;
6796 }
6797
6798 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6799
6800 if (set_qos_param == 1)
6801 schedule_work(&priv->qos_activate);
6802
6803 return ret;
6804}
6805
6806static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
6807{
6808 u32 ret = 0;
6809
6810 if ((priv == NULL))
6811 return 0;
6812
James Ketrenosafbf30a2005-08-25 00:05:33 -05006813 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05006814 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006815 else
James Ketrenosb095c382005-08-24 22:04:42 -05006816 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006817
James Ketrenosb095c382005-08-24 22:04:42 -05006818 return ret;
6819}
6820
6821/*
6822* Initialize the setting of QoS global
6823*/
6824static void ipw_qos_init(struct ipw_priv *priv, int enable,
6825 int burst_enable, u32 burst_duration_CCK,
6826 u32 burst_duration_OFDM)
6827{
6828 priv->qos_data.qos_enable = enable;
6829
6830 if (priv->qos_data.qos_enable) {
6831 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
6832 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
6833 IPW_DEBUG_QOS("QoS is enabled\n");
6834 } else {
6835 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
6836 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
6837 IPW_DEBUG_QOS("QoS is not enabled\n");
6838 }
6839
6840 priv->qos_data.burst_enable = burst_enable;
6841
6842 if (burst_enable) {
6843 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
6844 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
6845 } else {
6846 priv->qos_data.burst_duration_CCK = 0;
6847 priv->qos_data.burst_duration_OFDM = 0;
6848 }
6849}
6850
6851/*
6852* map the packet priority to the right TX Queue
6853*/
6854static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
6855{
6856 if (priority > 7 || !priv->qos_data.qos_enable)
6857 priority = 0;
6858
6859 return from_priority_to_tx_queue[priority] - 1;
6860}
6861
Zhu Yia5cf4fe2006-04-13 17:19:11 +08006862static int ipw_is_qos_active(struct net_device *dev,
6863 struct sk_buff *skb)
James Ketrenosb095c382005-08-24 22:04:42 -05006864{
Zhu Yia5cf4fe2006-04-13 17:19:11 +08006865 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosb095c382005-08-24 22:04:42 -05006866 struct ieee80211_qos_data *qos_data = NULL;
6867 int active, supported;
Zhu Yia5cf4fe2006-04-13 17:19:11 +08006868 u8 *daddr = skb->data + ETH_ALEN;
6869 int unicast = !is_multicast_ether_addr(daddr);
James Ketrenosb095c382005-08-24 22:04:42 -05006870
6871 if (!(priv->status & STATUS_ASSOCIATED))
6872 return 0;
6873
6874 qos_data = &priv->assoc_network->qos_data;
6875
James Ketrenosb095c382005-08-24 22:04:42 -05006876 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
6877 if (unicast == 0)
6878 qos_data->active = 0;
6879 else
6880 qos_data->active = qos_data->supported;
6881 }
James Ketrenosb095c382005-08-24 22:04:42 -05006882 active = qos_data->active;
6883 supported = qos_data->supported;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006884 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
6885 "unicast %d\n",
6886 priv->qos_data.qos_enable, active, supported, unicast);
Zhu Yia5cf4fe2006-04-13 17:19:11 +08006887 if (active && priv->qos_data.qos_enable)
6888 return 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006889
Zhu Yia5cf4fe2006-04-13 17:19:11 +08006890 return 0;
6891
6892}
6893/*
6894* add QoS parameter to the TX command
6895*/
6896static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
6897 u16 priority,
6898 struct tfd_data *tfd)
6899{
6900 int tx_queue_id = 0;
6901
6902
6903 tx_queue_id = from_priority_to_tx_queue[priority] - 1;
6904 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
6905
6906 if (priv->qos_data.qos_no_ack_mask & (1UL << tx_queue_id)) {
6907 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
6908 tfd->tfd.tfd_26.mchdr.qos_ctrl |= CTRL_QOS_NO_ACK;
James Ketrenosb095c382005-08-24 22:04:42 -05006909 }
Zhu Yia5cf4fe2006-04-13 17:19:11 +08006910 return 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006911}
6912
6913/*
6914* background support to run QoS activate functionality
6915*/
6916static void ipw_bg_qos_activate(void *data)
6917{
6918 struct ipw_priv *priv = data;
6919
6920 if (priv == NULL)
6921 return;
6922
Zhu Yi46441512006-01-24 16:37:59 +08006923 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006924
6925 if (priv->status & STATUS_ASSOCIATED)
6926 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
6927
Zhu Yi46441512006-01-24 16:37:59 +08006928 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006929}
6930
James Ketrenos3b9990c2005-08-19 13:18:55 -05006931static int ipw_handle_probe_response(struct net_device *dev,
6932 struct ieee80211_probe_response *resp,
6933 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006934{
6935 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05006936 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
6937 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05006938
James Ketrenos3b9990c2005-08-19 13:18:55 -05006939 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05006940
James Ketrenos3b9990c2005-08-19 13:18:55 -05006941 return 0;
6942}
James Ketrenosb095c382005-08-24 22:04:42 -05006943
James Ketrenos3b9990c2005-08-19 13:18:55 -05006944static int ipw_handle_beacon(struct net_device *dev,
6945 struct ieee80211_beacon *resp,
6946 struct ieee80211_network *network)
6947{
6948 struct ipw_priv *priv = ieee80211_priv(dev);
6949 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
6950 (network == priv->assoc_network));
6951
6952 ipw_qos_handle_probe_response(priv, active_network, network);
6953
6954 return 0;
6955}
6956
6957static int ipw_handle_assoc_response(struct net_device *dev,
6958 struct ieee80211_assoc_response *resp,
6959 struct ieee80211_network *network)
6960{
6961 struct ipw_priv *priv = ieee80211_priv(dev);
6962 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05006963 return 0;
6964}
6965
6966static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
6967 *qos_param)
6968{
Zhu Yi4e226992006-01-24 16:37:36 +08006969 return ipw_send_cmd_pdu(priv, IPW_CMD_QOS_PARAMETERS,
6970 sizeof(*qos_param) * 3, qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05006971}
6972
6973static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
6974 *qos_param)
6975{
Zhu Yi4e226992006-01-24 16:37:36 +08006976 return ipw_send_cmd_pdu(priv, IPW_CMD_WME_INFO, sizeof(*qos_param),
6977 qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05006978}
6979
6980#endif /* CONFIG_IPW_QOS */
6981
James Ketrenos43f66a62005-03-25 12:31:53 -06006982static int ipw_associate_network(struct ipw_priv *priv,
6983 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006984 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06006985{
6986 int err;
6987
6988 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05006989 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06006990
6991 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04006992 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006993 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06006994 memcpy(priv->essid, network->ssid, priv->essid_len);
6995 }
6996
6997 network->last_associate = jiffies;
6998
6999 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7000 priv->assoc_request.channel = network->channel;
Zhu Yi3e234b42006-01-24 16:36:52 +08007001 priv->assoc_request.auth_key = 0;
7002
James Ketrenos43f66a62005-03-25 12:31:53 -06007003 if ((priv->capability & CAP_PRIVACY_ON) &&
Zhu Yi3e234b42006-01-24 16:36:52 +08007004 (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007005 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007006 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7007
Zhu Yi1ba61e02006-02-15 13:00:55 +08007008 if (priv->ieee->sec.level == SEC_LEVEL_1)
James Ketrenosb095c382005-08-24 22:04:42 -05007009 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Zhu Yi3e234b42006-01-24 16:36:52 +08007010
7011 } else if ((priv->capability & CAP_PRIVACY_ON) &&
7012 (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP))
7013 priv->assoc_request.auth_type = AUTH_LEAP;
7014 else
James Ketrenos43f66a62005-03-25 12:31:53 -06007015 priv->assoc_request.auth_type = AUTH_OPEN;
James Ketrenos43f66a62005-03-25 12:31:53 -06007016
James Ketrenosa613bff2005-08-24 21:43:11 -05007017 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007018 priv->assoc_request.policy_support = 0x02; /* RSN active */
7019 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7020 priv->ieee->wpa_ie_len);
7021 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007022
Jeff Garzikbf794512005-07-31 13:07:26 -04007023 /*
7024 * It is valid for our ieee device to support multiple modes, but
7025 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007026 * just one mode.
7027 */
7028 if (network->mode & priv->ieee->mode & IEEE_A)
7029 priv->assoc_request.ieee_mode = IPW_A_MODE;
7030 else if (network->mode & priv->ieee->mode & IEEE_G)
7031 priv->assoc_request.ieee_mode = IPW_G_MODE;
7032 else if (network->mode & priv->ieee->mode & IEEE_B)
7033 priv->assoc_request.ieee_mode = IPW_B_MODE;
7034
James Ketrenosea2b26e2005-08-24 21:25:16 -05007035 priv->assoc_request.capability = network->capability;
7036 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7037 && !(priv->config & CFG_PREAMBLE_LONG)) {
7038 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7039 } else {
7040 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7041
7042 /* Clear the short preamble if we won't be supporting it */
7043 priv->assoc_request.capability &=
7044 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7045 }
7046
James Ketrenosafbf30a2005-08-25 00:05:33 -05007047 /* Clear capability bits that aren't used in Ad Hoc */
7048 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7049 priv->assoc_request.capability &=
7050 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7051
James Ketrenos43f66a62005-03-25 12:31:53 -06007052 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007053 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007054 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007055 escape_essid(priv->essid, priv->essid_len),
7056 network->channel,
7057 ipw_modes[priv->assoc_request.ieee_mode],
7058 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007059 (priv->assoc_request.preamble_length ==
7060 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7061 network->capability &
7062 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007063 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007064 priv->capability & CAP_PRIVACY_ON ?
7065 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007066 "(open)") : "",
7067 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007068 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007069 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007070 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007071
7072 priv->assoc_request.beacon_interval = network->beacon_interval;
7073 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007074 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007075 priv->assoc_request.assoc_type = HC_IBSS_START;
7076 priv->assoc_request.assoc_tsf_msw = 0;
7077 priv->assoc_request.assoc_tsf_lsw = 0;
7078 } else {
7079 if (unlikely(roaming))
7080 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7081 else
7082 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7083 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7084 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7085 }
7086
James Ketrenosafbf30a2005-08-25 00:05:33 -05007087 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007088
7089 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7090 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7091 priv->assoc_request.atim_window = network->atim_window;
7092 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007093 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007094 priv->assoc_request.atim_window = 0;
7095 }
7096
James Ketrenos43f66a62005-03-25 12:31:53 -06007097 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007098
James Ketrenos43f66a62005-03-25 12:31:53 -06007099 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7100 if (err) {
7101 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7102 return err;
7103 }
7104
7105 rates->ieee_mode = priv->assoc_request.ieee_mode;
7106 rates->purpose = IPW_RATE_CONNECT;
7107 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007108
James Ketrenos43f66a62005-03-25 12:31:53 -06007109 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7110 priv->sys_config.dot11g_auto_detection = 1;
7111 else
7112 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007113
7114 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7115 priv->sys_config.answer_broadcast_ssid_probe = 1;
7116 else
7117 priv->sys_config.answer_broadcast_ssid_probe = 0;
7118
James Ketrenos43f66a62005-03-25 12:31:53 -06007119 err = ipw_send_system_config(priv, &priv->sys_config);
7120 if (err) {
7121 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7122 return err;
7123 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007124
James Ketrenos43f66a62005-03-25 12:31:53 -06007125 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007126 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007127 if (err) {
7128 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7129 return err;
7130 }
7131
7132 /*
7133 * If preemption is enabled, it is possible for the association
7134 * to complete before we return from ipw_send_associate. Therefore
7135 * we have to be sure and update our priviate data first.
7136 */
7137 priv->channel = network->channel;
7138 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007139 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007140 priv->status &= ~STATUS_SECURITY_UPDATED;
7141
7142 priv->assoc_network = network;
7143
James Ketrenosb095c382005-08-24 22:04:42 -05007144#ifdef CONFIG_IPW_QOS
7145 ipw_qos_association(priv, network);
7146#endif
7147
James Ketrenos43f66a62005-03-25 12:31:53 -06007148 err = ipw_send_associate(priv, &priv->assoc_request);
7149 if (err) {
7150 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7151 return err;
7152 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007153
7154 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007155 escape_essid(priv->essid, priv->essid_len),
7156 MAC_ARG(priv->bssid));
7157
7158 return 0;
7159}
7160
7161static void ipw_roam(void *data)
7162{
7163 struct ipw_priv *priv = data;
7164 struct ieee80211_network *network = NULL;
7165 struct ipw_network_match match = {
7166 .network = priv->assoc_network
7167 };
7168
7169 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007170 *
7171 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007172 * setting the status ROAM bit and requesting a scan.
7173 * 2. When the scan completes, it schedules the ROAM work
7174 * 3. The ROAM work looks at all of the known networks for one that
7175 * is a better network than the currently associated. If none
7176 * found, the ROAM process is over (ROAM bit cleared)
7177 * 4. If a better network is found, a disassociation request is
7178 * sent.
7179 * 5. When the disassociation completes, the roam work is again
7180 * scheduled. The second time through, the driver is no longer
7181 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007182 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007183 * 6. At this point ,the roaming process is complete and the ROAM
7184 * status bit is cleared.
7185 */
7186
7187 /* If we are no longer associated, and the roaming bit is no longer
7188 * set, then we are not actively roaming, so just return */
7189 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7190 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007191
James Ketrenos43f66a62005-03-25 12:31:53 -06007192 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007193 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007194 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007195 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007196 u8 rssi = priv->assoc_network->stats.rssi;
7197 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007198 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007199 list_for_each_entry(network, &priv->ieee->network_list, list) {
7200 if (network != priv->assoc_network)
7201 ipw_best_network(priv, &match, network, 1);
7202 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007203 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007204 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007205
James Ketrenos43f66a62005-03-25 12:31:53 -06007206 if (match.network == priv->assoc_network) {
7207 IPW_DEBUG_ASSOC("No better APs in this network to "
7208 "roam to.\n");
7209 priv->status &= ~STATUS_ROAMING;
7210 ipw_debug_config(priv);
7211 return;
7212 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007213
James Ketrenos43f66a62005-03-25 12:31:53 -06007214 ipw_send_disassociate(priv, 1);
7215 priv->assoc_network = match.network;
7216
7217 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007218 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007219
7220 /* Second pass through ROAM process -- request association */
7221 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7222 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7223 priv->status &= ~STATUS_ROAMING;
7224}
7225
James Ketrenosc848d0a2005-08-24 21:56:24 -05007226static void ipw_bg_roam(void *data)
7227{
7228 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08007229 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007230 ipw_roam(data);
Zhu Yi46441512006-01-24 16:37:59 +08007231 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007232}
7233
7234static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007235{
7236 struct ipw_priv *priv = data;
7237
7238 struct ieee80211_network *network = NULL;
7239 struct ipw_network_match match = {
7240 .network = NULL
7241 };
7242 struct ipw_supported_rates *rates;
7243 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007244 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007245
James Ketrenosb095c382005-08-24 22:04:42 -05007246 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7247 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7248 return 0;
7249 }
7250
James Ketrenosc848d0a2005-08-24 21:56:24 -05007251 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007252 IPW_DEBUG_ASSOC("Not attempting association (already in "
7253 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007254 return 0;
7255 }
7256
Hong Liue6324722005-09-14 21:04:15 -05007257 if (priv->status & STATUS_DISASSOCIATING) {
7258 IPW_DEBUG_ASSOC("Not attempting association (in "
7259 "disassociating)\n ");
7260 queue_work(priv->workqueue, &priv->associate);
7261 return 0;
7262 }
7263
James Ketrenosc848d0a2005-08-24 21:56:24 -05007264 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007265 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7266 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007267 return 0;
7268 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007269
7270 if (!(priv->config & CFG_ASSOCIATE) &&
7271 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007272 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007273 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007274 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007275 }
7276
James Ketrenosa613bff2005-08-24 21:43:11 -05007277 /* Protect our use of the network_list */
7278 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007279 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007280 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007281
7282 network = match.network;
7283 rates = &match.rates;
7284
7285 if (network == NULL &&
7286 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7287 priv->config & CFG_ADHOC_CREATE &&
7288 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007289 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007290 !list_empty(&priv->ieee->network_free_list)) {
7291 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007292 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007293 ipw_adhoc_create(priv, network);
7294 rates = &priv->rates;
7295 list_del(element);
7296 list_add_tail(&network->list, &priv->ieee->network_list);
7297 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007298 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007299
James Ketrenos43f66a62005-03-25 12:31:53 -06007300 /* If we reached the end of the list, then we don't have any valid
7301 * matching APs */
7302 if (!network) {
7303 ipw_debug_config(priv);
7304
James Ketrenosb095c382005-08-24 22:04:42 -05007305 if (!(priv->status & STATUS_SCANNING)) {
7306 if (!(priv->config & CFG_SPEED_SCAN))
7307 queue_delayed_work(priv->workqueue,
7308 &priv->request_scan,
7309 SCAN_INTERVAL);
7310 else
7311 queue_work(priv->workqueue,
7312 &priv->request_scan);
7313 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007314
James Ketrenosc848d0a2005-08-24 21:56:24 -05007315 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007316 }
7317
7318 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007319
7320 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007321}
Jeff Garzikbf794512005-07-31 13:07:26 -04007322
James Ketrenosc848d0a2005-08-24 21:56:24 -05007323static void ipw_bg_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007324{
James Ketrenosc848d0a2005-08-24 21:56:24 -05007325 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +08007326 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007327 ipw_associate(data);
Zhu Yi46441512006-01-24 16:37:59 +08007328 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06007329}
7330
James Ketrenosb095c382005-08-24 22:04:42 -05007331static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7332 struct sk_buff *skb)
7333{
7334 struct ieee80211_hdr *hdr;
7335 u16 fc;
7336
7337 hdr = (struct ieee80211_hdr *)skb->data;
7338 fc = le16_to_cpu(hdr->frame_ctl);
7339 if (!(fc & IEEE80211_FCTL_PROTECTED))
7340 return;
7341
7342 fc &= ~IEEE80211_FCTL_PROTECTED;
7343 hdr->frame_ctl = cpu_to_le16(fc);
7344 switch (priv->ieee->sec.level) {
7345 case SEC_LEVEL_3:
7346 /* Remove CCMP HDR */
7347 memmove(skb->data + IEEE80211_3ADDR_LEN,
7348 skb->data + IEEE80211_3ADDR_LEN + 8,
7349 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007350 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007351 break;
7352 case SEC_LEVEL_2:
7353 break;
7354 case SEC_LEVEL_1:
7355 /* Remove IV */
7356 memmove(skb->data + IEEE80211_3ADDR_LEN,
7357 skb->data + IEEE80211_3ADDR_LEN + 4,
7358 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007359 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007360 break;
7361 case SEC_LEVEL_0:
7362 break;
7363 default:
7364 printk(KERN_ERR "Unknow security level %d\n",
7365 priv->ieee->sec.level);
7366 break;
7367 }
7368}
7369
7370static void ipw_handle_data_packet(struct ipw_priv *priv,
7371 struct ipw_rx_mem_buffer *rxb,
7372 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007373{
Hong Liu567deaf2005-08-31 18:07:22 +08007374 struct ieee80211_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007375 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7376
7377 /* We received data from the HW, so stop the watchdog */
7378 priv->net_dev->trans_start = jiffies;
7379
Jeff Garzikbf794512005-07-31 13:07:26 -04007380 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007381 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007382 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007383 skb_tailroom(rxb->skb))) {
7384 priv->ieee->stats.rx_errors++;
7385 priv->wstats.discard.misc++;
7386 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7387 return;
7388 } else if (unlikely(!netif_running(priv->net_dev))) {
7389 priv->ieee->stats.rx_dropped++;
7390 priv->wstats.discard.misc++;
7391 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7392 return;
7393 }
7394
7395 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007396 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007397
7398 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007399 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007400
7401 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7402
James Ketrenosb095c382005-08-24 22:04:42 -05007403 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
Hong Liu567deaf2005-08-31 18:07:22 +08007404 hdr = (struct ieee80211_hdr_4addr *)rxb->skb->data;
7405 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Stephen Hemminger3c190652006-01-03 15:27:38 -08007406 (is_multicast_ether_addr(hdr->addr1) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007407 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007408 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7409
Jeff Garzikbf794512005-07-31 13:07:26 -04007410 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007411 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007412 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007413 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007414 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007415 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007416}
7417
Mike Kershaw24a47db2005-08-26 00:41:54 -05007418#ifdef CONFIG_IEEE80211_RADIOTAP
7419static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7420 struct ipw_rx_mem_buffer *rxb,
7421 struct ieee80211_rx_stats *stats)
7422{
7423 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7424 struct ipw_rx_frame *frame = &pkt->u.frame;
7425
7426 /* initial pull of some data */
7427 u16 received_channel = frame->received_channel;
7428 u8 antennaAndPhy = frame->antennaAndPhy;
7429 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7430 u16 pktrate = frame->rate;
7431
7432 /* Magic struct that slots into the radiotap header -- no reason
7433 * to build this manually element by element, we can write it much
7434 * more efficiently than we can parse it. ORDER MATTERS HERE */
7435 struct ipw_rt_hdr {
7436 struct ieee80211_radiotap_header rt_hdr;
7437 u8 rt_flags; /* radiotap packet flags */
7438 u8 rt_rate; /* rate in 500kb/s */
7439 u16 rt_channel; /* channel in mhz */
7440 u16 rt_chbitmask; /* channel bitfield */
7441 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
7442 u8 rt_antenna; /* antenna number */
7443 } *ipw_rt;
7444
7445 short len = le16_to_cpu(pkt->u.frame.length);
7446
7447 /* We received data from the HW, so stop the watchdog */
7448 priv->net_dev->trans_start = jiffies;
7449
7450 /* We only process data packets if the
7451 * interface is open */
7452 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7453 skb_tailroom(rxb->skb))) {
7454 priv->ieee->stats.rx_errors++;
7455 priv->wstats.discard.misc++;
7456 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7457 return;
7458 } else if (unlikely(!netif_running(priv->net_dev))) {
7459 priv->ieee->stats.rx_dropped++;
7460 priv->wstats.discard.misc++;
7461 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7462 return;
7463 }
7464
7465 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7466 * that now */
7467 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7468 /* FIXME: Should alloc bigger skb instead */
7469 priv->ieee->stats.rx_dropped++;
7470 priv->wstats.discard.misc++;
7471 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7472 return;
7473 }
7474
7475 /* copy the frame itself */
7476 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7477 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7478
7479 /* Zero the radiotap static buffer ... We only need to zero the bytes NOT
7480 * part of our real header, saves a little time.
7481 *
7482 * No longer necessary since we fill in all our data. Purge before merging
7483 * patch officially.
7484 * memset(rxb->skb->data + sizeof(struct ipw_rt_hdr), 0,
7485 * IEEE80211_RADIOTAP_HDRLEN - sizeof(struct ipw_rt_hdr));
7486 */
7487
7488 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7489
7490 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7491 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
7492 ipw_rt->rt_hdr.it_len = sizeof(struct ipw_rt_hdr); /* total header+data */
7493
7494 /* Big bitfield of all the fields we provide in radiotap */
7495 ipw_rt->rt_hdr.it_present =
7496 ((1 << IEEE80211_RADIOTAP_FLAGS) |
7497 (1 << IEEE80211_RADIOTAP_RATE) |
7498 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7499 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
7500 (1 << IEEE80211_RADIOTAP_ANTENNA));
7501
7502 /* Zero the flags, we'll add to them as we go */
7503 ipw_rt->rt_flags = 0;
7504
7505 /* Convert signal to DBM */
7506 ipw_rt->rt_dbmsignal = antsignal;
7507
7508 /* Convert the channel data and set the flags */
7509 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7510 if (received_channel > 14) { /* 802.11a */
7511 ipw_rt->rt_chbitmask =
7512 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7513 } else if (antennaAndPhy & 32) { /* 802.11b */
7514 ipw_rt->rt_chbitmask =
7515 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7516 } else { /* 802.11g */
7517 ipw_rt->rt_chbitmask =
7518 (IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
7519 }
7520
7521 /* set the rate in multiples of 500k/s */
7522 switch (pktrate) {
7523 case IPW_TX_RATE_1MB:
7524 ipw_rt->rt_rate = 2;
7525 break;
7526 case IPW_TX_RATE_2MB:
7527 ipw_rt->rt_rate = 4;
7528 break;
7529 case IPW_TX_RATE_5MB:
7530 ipw_rt->rt_rate = 10;
7531 break;
7532 case IPW_TX_RATE_6MB:
7533 ipw_rt->rt_rate = 12;
7534 break;
7535 case IPW_TX_RATE_9MB:
7536 ipw_rt->rt_rate = 18;
7537 break;
7538 case IPW_TX_RATE_11MB:
7539 ipw_rt->rt_rate = 22;
7540 break;
7541 case IPW_TX_RATE_12MB:
7542 ipw_rt->rt_rate = 24;
7543 break;
7544 case IPW_TX_RATE_18MB:
7545 ipw_rt->rt_rate = 36;
7546 break;
7547 case IPW_TX_RATE_24MB:
7548 ipw_rt->rt_rate = 48;
7549 break;
7550 case IPW_TX_RATE_36MB:
7551 ipw_rt->rt_rate = 72;
7552 break;
7553 case IPW_TX_RATE_48MB:
7554 ipw_rt->rt_rate = 96;
7555 break;
7556 case IPW_TX_RATE_54MB:
7557 ipw_rt->rt_rate = 108;
7558 break;
7559 default:
7560 ipw_rt->rt_rate = 0;
7561 break;
7562 }
7563
7564 /* antenna number */
7565 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7566
7567 /* set the preamble flag if we have it */
7568 if ((antennaAndPhy & 64))
7569 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7570
7571 /* Set the size of the skb to the size of the frame */
7572 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007573
7574 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7575
7576 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
7577 priv->ieee->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007578 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007579 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007580 /* no LED during capture */
7581 }
7582}
7583#endif
7584
Arjan van de Ven858119e2006-01-14 13:20:43 -08007585static int is_network_packet(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007586 struct ieee80211_hdr_4addr *header)
7587{
7588 /* Filter incoming packets to determine if they are targetted toward
7589 * this network, discarding packets coming from ourselves */
7590 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05007591 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007592 /* packets from our adapter are dropped (echo) */
7593 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
7594 return 0;
7595
Peter Jones90700fd2005-08-26 16:51:06 -05007596 /* {broad,multi}cast packets to our BSSID go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08007597 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05007598 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007599
7600 /* packets to our adapter go through */
7601 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7602 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007603
Peter Jones90700fd2005-08-26 16:51:06 -05007604 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007605 /* packets from our adapter are dropped (echo) */
7606 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
7607 return 0;
7608
Peter Jones90700fd2005-08-26 16:51:06 -05007609 /* {broad,multi}cast packets to our BSS go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08007610 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05007611 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
7612
7613 /* packets to our adapter go through */
7614 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7615 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007616 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007617
James Ketrenosea2b26e2005-08-24 21:25:16 -05007618 return 1;
7619}
7620
James Ketrenosafbf30a2005-08-25 00:05:33 -05007621#define IPW_PACKET_RETRY_TIME HZ
7622
Arjan van de Ven858119e2006-01-14 13:20:43 -08007623static int is_duplicate_packet(struct ipw_priv *priv,
James Ketrenosafbf30a2005-08-25 00:05:33 -05007624 struct ieee80211_hdr_4addr *header)
7625{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007626 u16 sc = le16_to_cpu(header->seq_ctl);
7627 u16 seq = WLAN_GET_SEQ_SEQ(sc);
7628 u16 frag = WLAN_GET_SEQ_FRAG(sc);
7629 u16 *last_seq, *last_frag;
7630 unsigned long *last_time;
7631
7632 switch (priv->ieee->iw_mode) {
7633 case IW_MODE_ADHOC:
7634 {
7635 struct list_head *p;
7636 struct ipw_ibss_seq *entry = NULL;
7637 u8 *mac = header->addr2;
7638 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
7639
7640 __list_for_each(p, &priv->ibss_mac_hash[index]) {
7641 entry =
7642 list_entry(p, struct ipw_ibss_seq, list);
7643 if (!memcmp(entry->mac, mac, ETH_ALEN))
7644 break;
7645 }
7646 if (p == &priv->ibss_mac_hash[index]) {
7647 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
7648 if (!entry) {
7649 IPW_ERROR
7650 ("Cannot malloc new mac entry\n");
7651 return 0;
7652 }
7653 memcpy(entry->mac, mac, ETH_ALEN);
7654 entry->seq_num = seq;
7655 entry->frag_num = frag;
7656 entry->packet_time = jiffies;
7657 list_add(&entry->list,
7658 &priv->ibss_mac_hash[index]);
7659 return 0;
7660 }
7661 last_seq = &entry->seq_num;
7662 last_frag = &entry->frag_num;
7663 last_time = &entry->packet_time;
7664 break;
7665 }
7666 case IW_MODE_INFRA:
7667 last_seq = &priv->last_seq_num;
7668 last_frag = &priv->last_frag_num;
7669 last_time = &priv->last_packet_time;
7670 break;
7671 default:
7672 return 0;
7673 }
7674 if ((*last_seq == seq) &&
7675 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
7676 if (*last_frag == frag)
7677 goto drop;
7678 if (*last_frag + 1 != frag)
7679 /* out-of-order fragment */
7680 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007681 } else
7682 *last_seq = seq;
7683
Zhu Yif57ce7c2005-07-13 12:22:15 -05007684 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007685 *last_time = jiffies;
7686 return 0;
7687
7688 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08007689 /* Comment this line now since we observed the card receives
7690 * duplicate packets but the FCTL_RETRY bit is not set in the
7691 * IBSS mode with fragmentation enabled.
7692 BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05007693 return 1;
7694}
7695
James Ketrenosb095c382005-08-24 22:04:42 -05007696static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
7697 struct ipw_rx_mem_buffer *rxb,
7698 struct ieee80211_rx_stats *stats)
7699{
7700 struct sk_buff *skb = rxb->skb;
7701 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
7702 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
7703 (skb->data + IPW_RX_FRAME_SIZE);
7704
7705 ieee80211_rx_mgt(priv->ieee, header, stats);
7706
7707 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
7708 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7709 IEEE80211_STYPE_PROBE_RESP) ||
7710 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7711 IEEE80211_STYPE_BEACON))) {
7712 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
7713 ipw_add_station(priv, header->addr2);
7714 }
7715
7716 if (priv->config & CFG_NET_STATS) {
7717 IPW_DEBUG_HC("sending stat packet\n");
7718
7719 /* Set the size of the skb to the size of the full
7720 * ipw header and 802.11 frame */
7721 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
7722 IPW_RX_FRAME_SIZE);
7723
7724 /* Advance past the ipw packet header to the 802.11 frame */
7725 skb_pull(skb, IPW_RX_FRAME_SIZE);
7726
7727 /* Push the ieee80211_rx_stats before the 802.11 frame */
7728 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
7729
7730 skb->dev = priv->ieee->dev;
7731
7732 /* Point raw at the ieee80211_stats */
7733 skb->mac.raw = skb->data;
7734
7735 skb->pkt_type = PACKET_OTHERHOST;
7736 skb->protocol = __constant_htons(ETH_P_80211_STATS);
7737 memset(skb->cb, 0, sizeof(rxb->skb->cb));
7738 netif_rx(skb);
7739 rxb->skb = NULL;
7740 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007741}
7742
James Ketrenos43f66a62005-03-25 12:31:53 -06007743/*
7744 * Main entry function for recieving a packet with 80211 headers. This
7745 * should be called when ever the FW has notified us that there is a new
7746 * skb in the recieve queue.
7747 */
7748static void ipw_rx(struct ipw_priv *priv)
7749{
7750 struct ipw_rx_mem_buffer *rxb;
7751 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05007752 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06007753 u32 r, w, i;
7754 u8 network_packet;
7755
James Ketrenosb095c382005-08-24 22:04:42 -05007756 r = ipw_read32(priv, IPW_RX_READ_INDEX);
7757 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06007758 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
7759
7760 while (i != r) {
7761 rxb = priv->rxq->queue[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06007762 if (unlikely(rxb == NULL)) {
7763 printk(KERN_CRIT "Queue not allocated!\n");
7764 break;
7765 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007766 priv->rxq->queue[i] = NULL;
7767
7768 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007769 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06007770 PCI_DMA_FROMDEVICE);
7771
7772 pkt = (struct ipw_rx_packet *)rxb->skb->data;
7773 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
7774 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007775 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06007776
7777 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007778 case RX_FRAME_TYPE: /* 802.11 frame */ {
7779 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05007780 .rssi =
7781 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007782 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05007783 .signal =
Bill Mossb1916082006-02-15 08:50:18 +08007784 le16_to_cpu(pkt->u.frame.rssi_dbm) -
7785 IPW_RSSI_TO_DBM + 0x100,
James Ketrenosc848d0a2005-08-24 21:56:24 -05007786 .noise =
7787 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007788 .rate = pkt->u.frame.rate,
7789 .mac_time = jiffies,
7790 .received_channel =
7791 pkt->u.frame.received_channel,
7792 .freq =
7793 (pkt->u.frame.
7794 control & (1 << 0)) ?
7795 IEEE80211_24GHZ_BAND :
7796 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05007797 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007798 };
James Ketrenos43f66a62005-03-25 12:31:53 -06007799
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007800 if (stats.rssi != 0)
7801 stats.mask |= IEEE80211_STATMASK_RSSI;
7802 if (stats.signal != 0)
7803 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007804 if (stats.noise != 0)
7805 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007806 if (stats.rate != 0)
7807 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06007808
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007809 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007810
James Ketrenosb095c382005-08-24 22:04:42 -05007811#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007812 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05007813#ifdef CONFIG_IEEE80211_RADIOTAP
7814 ipw_handle_data_packet_monitor(priv,
7815 rxb,
7816 &stats);
7817#else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007818 ipw_handle_data_packet(priv, rxb,
7819 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007820#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007821 break;
7822 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007823#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04007824
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007825 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05007826 (struct ieee80211_hdr_4addr *)(rxb->skb->
7827 data +
7828 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007829 /* TODO: Check Ad-Hoc dest/source and make sure
7830 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04007831 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06007832 * frame control of the packet and disregard
7833 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06007834
James Ketrenosea2b26e2005-08-24 21:25:16 -05007835 network_packet =
7836 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007837 if (network_packet && priv->assoc_network) {
7838 priv->assoc_network->stats.rssi =
7839 stats.rssi;
Zhu Yi00d21de2006-04-13 17:19:02 +08007840 priv->exp_avg_rssi =
7841 exponential_average(priv->exp_avg_rssi,
7842 stats.rssi, DEPTH_RSSI);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007843 }
7844
7845 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05007846 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007847
James Ketrenosa613bff2005-08-24 21:43:11 -05007848 if (le16_to_cpu(pkt->u.frame.length) <
Zhu Yi9d0be032006-02-15 06:18:19 +08007849 ieee80211_get_hdrlen(le16_to_cpu(
7850 header->frame_ctl))) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007851 IPW_DEBUG_DROP
7852 ("Received packet is too small. "
7853 "Dropping.\n");
7854 priv->ieee->stats.rx_errors++;
7855 priv->wstats.discard.misc++;
7856 break;
7857 }
7858
James Ketrenosa613bff2005-08-24 21:43:11 -05007859 switch (WLAN_FC_GET_TYPE
7860 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05007861
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007862 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05007863 ipw_handle_mgmt_packet(priv, rxb,
7864 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007865 break;
7866
7867 case IEEE80211_FTYPE_CTL:
7868 break;
7869
7870 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05007871 if (unlikely(!network_packet ||
7872 is_duplicate_packet(priv,
7873 header)))
7874 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007875 IPW_DEBUG_DROP("Dropping: "
7876 MAC_FMT ", "
7877 MAC_FMT ", "
7878 MAC_FMT "\n",
7879 MAC_ARG(header->
7880 addr1),
7881 MAC_ARG(header->
7882 addr2),
7883 MAC_ARG(header->
7884 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05007885 break;
7886 }
7887
7888 ipw_handle_data_packet(priv, rxb,
7889 &stats);
7890
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007891 break;
7892 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007893 break;
7894 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007895
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007896 case RX_HOST_NOTIFICATION_TYPE:{
7897 IPW_DEBUG_RX
7898 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007899 pkt->u.notification.subtype,
7900 pkt->u.notification.flags,
7901 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007902 ipw_rx_notification(priv, &pkt->u.notification);
7903 break;
7904 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007905
7906 default:
7907 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
7908 pkt->header.message_type);
7909 break;
7910 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007911
7912 /* For now we just don't re-use anything. We can tweak this
7913 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06007914 * fail to Rx correctly */
7915 if (rxb->skb != NULL) {
7916 dev_kfree_skb_any(rxb->skb);
7917 rxb->skb = NULL;
7918 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007919
James Ketrenos43f66a62005-03-25 12:31:53 -06007920 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007921 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007922 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04007923
James Ketrenos43f66a62005-03-25 12:31:53 -06007924 i = (i + 1) % RX_QUEUE_SIZE;
7925 }
7926
7927 /* Backtrack one entry */
7928 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
7929
7930 ipw_rx_queue_restock(priv);
7931}
7932
James Ketrenosafbf30a2005-08-25 00:05:33 -05007933#define DEFAULT_RTS_THRESHOLD 2304U
7934#define MIN_RTS_THRESHOLD 1U
7935#define MAX_RTS_THRESHOLD 2304U
7936#define DEFAULT_BEACON_INTERVAL 100U
7937#define DEFAULT_SHORT_RETRY_LIMIT 7U
7938#define DEFAULT_LONG_RETRY_LIMIT 4U
7939
Zhu Yid6d5b5c2006-02-16 16:21:09 +08007940/**
7941 * ipw_sw_reset
7942 * @option: options to control different reset behaviour
7943 * 0 = reset everything except the 'disable' module_param
7944 * 1 = reset everything and print out driver info (for probe only)
7945 * 2 = reset everything
7946 */
7947static int ipw_sw_reset(struct ipw_priv *priv, int option)
James Ketrenos43f66a62005-03-25 12:31:53 -06007948{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007949 int band, modulation;
7950 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06007951
James Ketrenosafbf30a2005-08-25 00:05:33 -05007952 /* Initialize module parameter values here */
7953 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007954
James Ketrenosafbf30a2005-08-25 00:05:33 -05007955 /* We default to disabling the LED code as right now it causes
7956 * too many systems to lock up... */
7957 if (!led)
7958 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06007959
James Ketrenosafbf30a2005-08-25 00:05:33 -05007960 if (associate)
7961 priv->config |= CFG_ASSOCIATE;
7962 else
7963 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04007964
James Ketrenosafbf30a2005-08-25 00:05:33 -05007965 if (auto_create)
7966 priv->config |= CFG_ADHOC_CREATE;
7967 else
7968 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
7969
Zhu Yi17ed0812006-01-24 16:36:31 +08007970 priv->config &= ~CFG_STATIC_ESSID;
7971 priv->essid_len = 0;
7972 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
7973
Zhu Yid6d5b5c2006-02-16 16:21:09 +08007974 if (disable && option) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007975 priv->status |= STATUS_RF_KILL_SW;
7976 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06007977 }
7978
James Ketrenosafbf30a2005-08-25 00:05:33 -05007979 if (channel != 0) {
7980 priv->config |= CFG_STATIC_CHANNEL;
7981 priv->channel = channel;
7982 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
7983 /* TODO: Validate that provided channel is in range */
7984 }
7985#ifdef CONFIG_IPW_QOS
7986 ipw_qos_init(priv, qos_enable, qos_burst_enable,
7987 burst_duration_CCK, burst_duration_OFDM);
7988#endif /* CONFIG_IPW_QOS */
7989
7990 switch (mode) {
7991 case 1:
7992 priv->ieee->iw_mode = IW_MODE_ADHOC;
7993 priv->net_dev->type = ARPHRD_ETHER;
7994
7995 break;
7996#ifdef CONFIG_IPW2200_MONITOR
7997 case 2:
7998 priv->ieee->iw_mode = IW_MODE_MONITOR;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007999#ifdef CONFIG_IEEE80211_RADIOTAP
8000 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8001#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008002 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008003#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008004 break;
8005#endif
8006 default:
8007 case 0:
8008 priv->net_dev->type = ARPHRD_ETHER;
8009 priv->ieee->iw_mode = IW_MODE_INFRA;
8010 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008011 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008012
James Ketrenosafbf30a2005-08-25 00:05:33 -05008013 if (hwcrypto) {
8014 priv->ieee->host_encrypt = 0;
8015 priv->ieee->host_encrypt_msdu = 0;
8016 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008017 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008018 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008019 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008020
Zhu Yie402c932005-08-05 17:20:40 +08008021 /* IPW2200/2915 is abled to do hardware fragmentation. */
8022 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008023
James Ketrenosafbf30a2005-08-25 00:05:33 -05008024 if ((priv->pci_dev->device == 0x4223) ||
8025 (priv->pci_dev->device == 0x4224)) {
Zhu Yie8c69e22006-02-17 08:25:12 +08008026 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008027 printk(KERN_INFO DRV_NAME
8028 ": Detected Intel PRO/Wireless 2915ABG Network "
8029 "Connection\n");
8030 priv->ieee->abg_true = 1;
8031 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8032 modulation = IEEE80211_OFDM_MODULATION |
8033 IEEE80211_CCK_MODULATION;
8034 priv->adapter = IPW_2915ABG;
8035 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008036 } else {
Zhu Yie8c69e22006-02-17 08:25:12 +08008037 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008038 printk(KERN_INFO DRV_NAME
8039 ": Detected Intel PRO/Wireless 2200BG Network "
8040 "Connection\n");
8041
8042 priv->ieee->abg_true = 0;
8043 band = IEEE80211_24GHZ_BAND;
8044 modulation = IEEE80211_OFDM_MODULATION |
8045 IEEE80211_CCK_MODULATION;
8046 priv->adapter = IPW_2200BG;
8047 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008048 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008049
James Ketrenosafbf30a2005-08-25 00:05:33 -05008050 priv->ieee->freq_band = band;
8051 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008052
James Ketrenosafbf30a2005-08-25 00:05:33 -05008053 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008054
James Ketrenosafbf30a2005-08-25 00:05:33 -05008055 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8056 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008057
James Ketrenosafbf30a2005-08-25 00:05:33 -05008058 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8059 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8060 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008061
James Ketrenosafbf30a2005-08-25 00:05:33 -05008062 /* If power management is turned on, default to AC mode */
8063 priv->power_mode = IPW_POWER_AC;
8064 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008065
Zhu Yi0ece35b2005-08-05 17:26:51 +08008066 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008067}
8068
8069/*
8070 * This file defines the Wireless Extension handlers. It does not
8071 * define any methods of hardware manipulation and relies on the
8072 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008073 *
8074 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008075 * function used to poll the hardware vs. making unecessary calls.
8076 *
8077 */
8078
Jeff Garzikbf794512005-07-31 13:07:26 -04008079static int ipw_wx_get_name(struct net_device *dev,
8080 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008081 union iwreq_data *wrqu, char *extra)
8082{
8083 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008084 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008085 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008086 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008087 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008088 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008089 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008090 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8091 ipw_modes[priv->assoc_request.ieee_mode]);
8092 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
Zhu Yi46441512006-01-24 16:37:59 +08008093 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008094 return 0;
8095}
8096
8097static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8098{
8099 if (channel == 0) {
8100 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8101 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008102 IPW_DEBUG_ASSOC("Attempting to associate with new "
8103 "parameters.\n");
8104 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008105 return 0;
8106 }
8107
8108 priv->config |= CFG_STATIC_CHANNEL;
8109
8110 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008111 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8112 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008113 return 0;
8114 }
8115
8116 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8117 priv->channel = channel;
8118
James Ketrenosb095c382005-08-24 22:04:42 -05008119#ifdef CONFIG_IPW2200_MONITOR
8120 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008121 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008122 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008123 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008124 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008125 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008126 }
8127
8128 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8129 udelay(10);
8130
8131 if (priv->status & STATUS_SCANNING)
8132 IPW_DEBUG_SCAN("Still scanning...\n");
8133 else
8134 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8135 1000 - i);
8136
8137 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008138 }
James Ketrenosb095c382005-08-24 22:04:42 -05008139#endif /* CONFIG_IPW2200_MONITOR */
8140
James Ketrenosc848d0a2005-08-24 21:56:24 -05008141 /* Network configuration changed -- force [re]association */
8142 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8143 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008144 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008145
8146 return 0;
8147}
8148
Jeff Garzikbf794512005-07-31 13:07:26 -04008149static int ipw_wx_set_freq(struct net_device *dev,
8150 struct iw_request_info *info,
8151 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008152{
8153 struct ipw_priv *priv = ieee80211_priv(dev);
Larry Finger1867b112006-02-28 09:48:28 -06008154 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008155 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008156 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008157 u8 channel, flags;
8158 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008159
James Ketrenosb095c382005-08-24 22:04:42 -05008160 if (fwrq->m == 0) {
8161 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
Zhu Yi46441512006-01-24 16:37:59 +08008162 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008163 ret = ipw_set_channel(priv, 0);
Zhu Yi46441512006-01-24 16:37:59 +08008164 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008165 return ret;
8166 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008167 /* if setting by freq convert to channel */
8168 if (fwrq->e == 1) {
Larry Finger1867b112006-02-28 09:48:28 -06008169 channel = ieee80211_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008170 if (channel == 0)
8171 return -EINVAL;
8172 } else
8173 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008174
Larry Finger1867b112006-02-28 09:48:28 -06008175 if (!(band = ieee80211_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008176 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008177
Liu Hong1fe0adb2005-08-19 09:33:10 -05008178 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
Larry Finger1867b112006-02-28 09:48:28 -06008179 i = ieee80211_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008180 if (i == -1)
8181 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008182
8183 flags = (band == IEEE80211_24GHZ_BAND) ?
8184 geo->bg[i].flags : geo->a[i].flags;
8185 if (flags & IEEE80211_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008186 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8187 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008188 }
8189 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008190
James Ketrenos43f66a62005-03-25 12:31:53 -06008191 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
Zhu Yi46441512006-01-24 16:37:59 +08008192 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008193 ret = ipw_set_channel(priv, channel);
Zhu Yi46441512006-01-24 16:37:59 +08008194 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008195 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008196}
8197
Jeff Garzikbf794512005-07-31 13:07:26 -04008198static int ipw_wx_get_freq(struct net_device *dev,
8199 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008200 union iwreq_data *wrqu, char *extra)
8201{
8202 struct ipw_priv *priv = ieee80211_priv(dev);
8203
8204 wrqu->freq.e = 0;
8205
8206 /* If we are associated, trying to associate, or have a statically
8207 * configured CHANNEL then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008208 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008209 if (priv->config & CFG_STATIC_CHANNEL ||
8210 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8211 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008212 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008213 wrqu->freq.m = 0;
8214
Zhu Yi46441512006-01-24 16:37:59 +08008215 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008216 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8217 return 0;
8218}
8219
Jeff Garzikbf794512005-07-31 13:07:26 -04008220static int ipw_wx_set_mode(struct net_device *dev,
8221 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008222 union iwreq_data *wrqu, char *extra)
8223{
8224 struct ipw_priv *priv = ieee80211_priv(dev);
8225 int err = 0;
8226
8227 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8228
James Ketrenos43f66a62005-03-25 12:31:53 -06008229 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008230#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008231 case IW_MODE_MONITOR:
8232#endif
8233 case IW_MODE_ADHOC:
8234 case IW_MODE_INFRA:
8235 break;
8236 case IW_MODE_AUTO:
8237 wrqu->mode = IW_MODE_INFRA;
8238 break;
8239 default:
8240 return -EINVAL;
8241 }
James Ketrenosb095c382005-08-24 22:04:42 -05008242 if (wrqu->mode == priv->ieee->iw_mode)
8243 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008244
Zhu Yi46441512006-01-24 16:37:59 +08008245 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008246
8247 ipw_sw_reset(priv, 0);
8248
James Ketrenosb095c382005-08-24 22:04:42 -05008249#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008250 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008251 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008252
8253 if (wrqu->mode == IW_MODE_MONITOR)
Mike Kershaw24a47db2005-08-26 00:41:54 -05008254#ifdef CONFIG_IEEE80211_RADIOTAP
8255 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8256#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008257 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008258#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008259#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008260
Jeff Garzikbf794512005-07-31 13:07:26 -04008261 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008262 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008263 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008264
8265 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008266
James Ketrenosc848d0a2005-08-24 21:56:24 -05008267 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08008268 mutex_unlock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008269 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008270}
8271
Jeff Garzikbf794512005-07-31 13:07:26 -04008272static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008273 struct iw_request_info *info,
8274 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008275{
8276 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008277 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008278 wrqu->mode = priv->ieee->iw_mode;
8279 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
Zhu Yi46441512006-01-24 16:37:59 +08008280 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008281 return 0;
8282}
8283
James Ketrenos43f66a62005-03-25 12:31:53 -06008284/* Values are in microsecond */
8285static const s32 timeout_duration[] = {
8286 350000,
8287 250000,
8288 75000,
8289 37000,
8290 25000,
8291};
8292
8293static const s32 period_duration[] = {
8294 400000,
8295 700000,
8296 1000000,
8297 1000000,
8298 1000000
8299};
8300
Jeff Garzikbf794512005-07-31 13:07:26 -04008301static int ipw_wx_get_range(struct net_device *dev,
8302 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008303 union iwreq_data *wrqu, char *extra)
8304{
8305 struct ipw_priv *priv = ieee80211_priv(dev);
8306 struct iw_range *range = (struct iw_range *)extra;
Larry Finger1867b112006-02-28 09:48:28 -06008307 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008308 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008309
8310 wrqu->data.length = sizeof(*range);
8311 memset(range, 0, sizeof(*range));
8312
8313 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008314 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008315
8316 range->max_qual.qual = 100;
8317 /* TODO: Find real max RSSI and stick here */
8318 range->max_qual.level = 0;
Bill Mossb1916082006-02-15 08:50:18 +08008319 range->max_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008320 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008321
8322 range->avg_qual.qual = 70;
8323 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008324 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008325 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008326 range->avg_qual.updated = 7; /* Updated all three */
Zhu Yi46441512006-01-24 16:37:59 +08008327 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008328 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008329
Jeff Garzikbf794512005-07-31 13:07:26 -04008330 for (i = 0; i < range->num_bitrates; i++)
8331 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008332 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008333
James Ketrenos43f66a62005-03-25 12:31:53 -06008334 range->max_rts = DEFAULT_RTS_THRESHOLD;
8335 range->min_frag = MIN_FRAG_THRESHOLD;
8336 range->max_frag = MAX_FRAG_THRESHOLD;
8337
8338 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008339 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008340 range->num_encoding_sizes = 2;
8341 range->max_encoding_tokens = WEP_KEYS;
8342
8343 /* Set the Wireless Extension versions */
8344 range->we_version_compiled = WIRELESS_EXT;
Dan Williamsf1b50862006-01-30 13:58:56 -05008345 range->we_version_source = 18;
James Ketrenos43f66a62005-03-25 12:31:53 -06008346
James Ketrenosb095c382005-08-24 22:04:42 -05008347 i = 0;
8348 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
Zhu Yie815de42006-03-02 05:55:51 +08008349 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES; j++) {
8350 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
8351 (geo->bg[j].flags & IEEE80211_CH_PASSIVE_ONLY))
8352 continue;
8353
James Ketrenosb095c382005-08-24 22:04:42 -05008354 range->freq[i].i = geo->bg[j].channel;
8355 range->freq[i].m = geo->bg[j].freq * 100000;
8356 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008357 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008358 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008359 }
James Ketrenosb095c382005-08-24 22:04:42 -05008360
8361 if (priv->ieee->mode & IEEE_A) {
Zhu Yie815de42006-03-02 05:55:51 +08008362 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES; j++) {
8363 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
8364 (geo->a[j].flags & IEEE80211_CH_PASSIVE_ONLY))
8365 continue;
8366
James Ketrenosb095c382005-08-24 22:04:42 -05008367 range->freq[i].i = geo->a[j].channel;
8368 range->freq[i].m = geo->a[j].freq * 100000;
8369 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008370 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008371 }
8372 }
8373
8374 range->num_channels = i;
8375 range->num_frequency = i;
8376
Zhu Yi46441512006-01-24 16:37:59 +08008377 mutex_unlock(&priv->mutex);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008378
8379 /* Event capability (kernel + driver) */
8380 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
8381 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
8382 IW_EVENT_CAPA_MASK(SIOCGIWAP));
8383 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008384
Dan Williamsf1b50862006-01-30 13:58:56 -05008385 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
8386 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
8387
James Ketrenos43f66a62005-03-25 12:31:53 -06008388 IPW_DEBUG_WX("GET Range\n");
8389 return 0;
8390}
8391
Jeff Garzikbf794512005-07-31 13:07:26 -04008392static int ipw_wx_set_wap(struct net_device *dev,
8393 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008394 union iwreq_data *wrqu, char *extra)
8395{
8396 struct ipw_priv *priv = ieee80211_priv(dev);
8397
8398 static const unsigned char any[] = {
8399 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8400 };
8401 static const unsigned char off[] = {
8402 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8403 };
8404
Jeff Garzikbf794512005-07-31 13:07:26 -04008405 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008406 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08008407 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008408 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8409 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8410 /* we disable mandatory BSSID association */
8411 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8412 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008413 IPW_DEBUG_ASSOC("Attempting to associate with new "
8414 "parameters.\n");
8415 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08008416 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008417 return 0;
8418 }
8419
8420 priv->config |= CFG_STATIC_BSSID;
8421 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8422 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08008423 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008424 return 0;
8425 }
8426
8427 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8428 MAC_ARG(wrqu->ap_addr.sa_data));
8429
8430 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8431
James Ketrenosc848d0a2005-08-24 21:56:24 -05008432 /* Network configuration changed -- force [re]association */
8433 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8434 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008435 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008436
Zhu Yi46441512006-01-24 16:37:59 +08008437 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008438 return 0;
8439}
8440
Jeff Garzikbf794512005-07-31 13:07:26 -04008441static int ipw_wx_get_wap(struct net_device *dev,
8442 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008443 union iwreq_data *wrqu, char *extra)
8444{
8445 struct ipw_priv *priv = ieee80211_priv(dev);
8446 /* If we are associated, trying to associate, or have a statically
8447 * configured BSSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008448 mutex_lock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04008449 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008450 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8451 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008452 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008453 } else
8454 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8455
8456 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8457 MAC_ARG(wrqu->ap_addr.sa_data));
Zhu Yi46441512006-01-24 16:37:59 +08008458 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008459 return 0;
8460}
8461
Jeff Garzikbf794512005-07-31 13:07:26 -04008462static int ipw_wx_set_essid(struct net_device *dev,
8463 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008464 union iwreq_data *wrqu, char *extra)
8465{
8466 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008467 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008468 int length = 0;
Zhu Yi46441512006-01-24 16:37:59 +08008469 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008470 if (wrqu->essid.flags && wrqu->essid.length) {
8471 length = wrqu->essid.length - 1;
8472 essid = extra;
8473 }
8474 if (length == 0) {
8475 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008476 if ((priv->config & CFG_STATIC_ESSID) &&
8477 !(priv->status & (STATUS_ASSOCIATED |
James Ketrenos43f66a62005-03-25 12:31:53 -06008478 STATUS_ASSOCIATING))) {
8479 IPW_DEBUG_ASSOC("Attempting to associate with new "
8480 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008481 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008482 ipw_associate(priv);
8483 }
Zhu Yi46441512006-01-24 16:37:59 +08008484 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008485 return 0;
8486 }
8487
8488 length = min(length, IW_ESSID_MAX_SIZE);
8489
8490 priv->config |= CFG_STATIC_ESSID;
8491
8492 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
8493 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08008494 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008495 return 0;
8496 }
8497
8498 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
8499 length);
8500
8501 priv->essid_len = length;
8502 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04008503
James Ketrenosc848d0a2005-08-24 21:56:24 -05008504 /* Network configuration changed -- force [re]association */
8505 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
8506 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008507 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008508
Zhu Yi46441512006-01-24 16:37:59 +08008509 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008510 return 0;
8511}
8512
Jeff Garzikbf794512005-07-31 13:07:26 -04008513static int ipw_wx_get_essid(struct net_device *dev,
8514 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008515 union iwreq_data *wrqu, char *extra)
8516{
8517 struct ipw_priv *priv = ieee80211_priv(dev);
8518
8519 /* If we are associated, trying to associate, or have a statically
8520 * configured ESSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008521 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008522 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04008523 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8524 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008525 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04008526 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06008527 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008528 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008529 } else {
8530 IPW_DEBUG_WX("Getting essid: ANY\n");
8531 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008532 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008533 }
Zhu Yi46441512006-01-24 16:37:59 +08008534 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008535 return 0;
8536}
8537
Jeff Garzikbf794512005-07-31 13:07:26 -04008538static int ipw_wx_set_nick(struct net_device *dev,
8539 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008540 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008541{
James Ketrenos43f66a62005-03-25 12:31:53 -06008542 struct ipw_priv *priv = ieee80211_priv(dev);
8543
8544 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
8545 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
8546 return -E2BIG;
Zhu Yi46441512006-01-24 16:37:59 +08008547 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008548 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06008549 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008550 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06008551 IPW_DEBUG_TRACE("<<\n");
Zhu Yi46441512006-01-24 16:37:59 +08008552 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008553 return 0;
8554
8555}
8556
Jeff Garzikbf794512005-07-31 13:07:26 -04008557static int ipw_wx_get_nick(struct net_device *dev,
8558 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008559 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008560{
James Ketrenos43f66a62005-03-25 12:31:53 -06008561 struct ipw_priv *priv = ieee80211_priv(dev);
8562 IPW_DEBUG_WX("Getting nick\n");
Zhu Yi46441512006-01-24 16:37:59 +08008563 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008564 wrqu->data.length = strlen(priv->nick) + 1;
8565 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008566 wrqu->data.flags = 1; /* active */
Zhu Yi46441512006-01-24 16:37:59 +08008567 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008568 return 0;
8569}
8570
Olivier Hochreutiner651be262006-03-08 03:13:55 +08008571static int ipw_wx_set_sens(struct net_device *dev,
8572 struct iw_request_info *info,
8573 union iwreq_data *wrqu, char *extra)
8574{
8575 struct ipw_priv *priv = ieee80211_priv(dev);
8576 int err = 0;
8577
8578 IPW_DEBUG_WX("Setting roaming threshold to %d\n", wrqu->sens.value);
8579 IPW_DEBUG_WX("Setting disassociate threshold to %d\n", 3*wrqu->sens.value);
8580 mutex_lock(&priv->mutex);
8581
8582 if (wrqu->sens.fixed == 0)
8583 {
8584 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
8585 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8586 goto out;
8587 }
8588 if ((wrqu->sens.value > IPW_MB_ROAMING_THRESHOLD_MAX) ||
8589 (wrqu->sens.value < IPW_MB_ROAMING_THRESHOLD_MIN)) {
8590 err = -EINVAL;
8591 goto out;
8592 }
8593
8594 priv->roaming_threshold = wrqu->sens.value;
8595 priv->disassociate_threshold = 3*wrqu->sens.value;
8596 out:
8597 mutex_unlock(&priv->mutex);
8598 return err;
8599}
8600
8601static int ipw_wx_get_sens(struct net_device *dev,
8602 struct iw_request_info *info,
8603 union iwreq_data *wrqu, char *extra)
8604{
8605 struct ipw_priv *priv = ieee80211_priv(dev);
8606 mutex_lock(&priv->mutex);
8607 wrqu->sens.fixed = 1;
8608 wrqu->sens.value = priv->roaming_threshold;
8609 mutex_unlock(&priv->mutex);
8610
8611 IPW_DEBUG_WX("GET roaming threshold -> %s %d \n",
8612 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
8613
8614 return 0;
8615}
8616
James Ketrenos43f66a62005-03-25 12:31:53 -06008617static int ipw_wx_set_rate(struct net_device *dev,
8618 struct iw_request_info *info,
8619 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008620{
James Ketrenosea2b26e2005-08-24 21:25:16 -05008621 /* TODO: We should use semaphores or locks for access to priv */
8622 struct ipw_priv *priv = ieee80211_priv(dev);
8623 u32 target_rate = wrqu->bitrate.value;
8624 u32 fixed, mask;
8625
8626 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
8627 /* value = X, fixed = 1 means only rate X */
8628 /* value = X, fixed = 0 means all rates lower equal X */
8629
8630 if (target_rate == -1) {
8631 fixed = 0;
8632 mask = IEEE80211_DEFAULT_RATES_MASK;
8633 /* Now we should reassociate */
8634 goto apply;
8635 }
8636
8637 mask = 0;
8638 fixed = wrqu->bitrate.fixed;
8639
8640 if (target_rate == 1000000 || !fixed)
8641 mask |= IEEE80211_CCK_RATE_1MB_MASK;
8642 if (target_rate == 1000000)
8643 goto apply;
8644
8645 if (target_rate == 2000000 || !fixed)
8646 mask |= IEEE80211_CCK_RATE_2MB_MASK;
8647 if (target_rate == 2000000)
8648 goto apply;
8649
8650 if (target_rate == 5500000 || !fixed)
8651 mask |= IEEE80211_CCK_RATE_5MB_MASK;
8652 if (target_rate == 5500000)
8653 goto apply;
8654
8655 if (target_rate == 6000000 || !fixed)
8656 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
8657 if (target_rate == 6000000)
8658 goto apply;
8659
8660 if (target_rate == 9000000 || !fixed)
8661 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
8662 if (target_rate == 9000000)
8663 goto apply;
8664
8665 if (target_rate == 11000000 || !fixed)
8666 mask |= IEEE80211_CCK_RATE_11MB_MASK;
8667 if (target_rate == 11000000)
8668 goto apply;
8669
8670 if (target_rate == 12000000 || !fixed)
8671 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
8672 if (target_rate == 12000000)
8673 goto apply;
8674
8675 if (target_rate == 18000000 || !fixed)
8676 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
8677 if (target_rate == 18000000)
8678 goto apply;
8679
8680 if (target_rate == 24000000 || !fixed)
8681 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
8682 if (target_rate == 24000000)
8683 goto apply;
8684
8685 if (target_rate == 36000000 || !fixed)
8686 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
8687 if (target_rate == 36000000)
8688 goto apply;
8689
8690 if (target_rate == 48000000 || !fixed)
8691 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
8692 if (target_rate == 48000000)
8693 goto apply;
8694
8695 if (target_rate == 54000000 || !fixed)
8696 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
8697 if (target_rate == 54000000)
8698 goto apply;
8699
8700 IPW_DEBUG_WX("invalid rate specified, returning error\n");
8701 return -EINVAL;
8702
8703 apply:
8704 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
8705 mask, fixed ? "fixed" : "sub-rates");
Zhu Yi46441512006-01-24 16:37:59 +08008706 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008707 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05008708 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05008709 ipw_set_fixed_rate(priv, priv->ieee->mode);
8710 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05008711 priv->config |= CFG_FIXED_RATE;
8712
James Ketrenosc848d0a2005-08-24 21:56:24 -05008713 if (priv->rates_mask == mask) {
8714 IPW_DEBUG_WX("Mask set to current mask.\n");
Zhu Yi46441512006-01-24 16:37:59 +08008715 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008716 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05008717 }
8718
James Ketrenosc848d0a2005-08-24 21:56:24 -05008719 priv->rates_mask = mask;
8720
8721 /* Network configuration changed -- force [re]association */
8722 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
8723 if (!ipw_disassociate(priv))
8724 ipw_associate(priv);
8725
Zhu Yi46441512006-01-24 16:37:59 +08008726 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008727 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008728}
8729
Jeff Garzikbf794512005-07-31 13:07:26 -04008730static int ipw_wx_get_rate(struct net_device *dev,
8731 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008732 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008733{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008734 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008735 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008736 wrqu->bitrate.value = priv->last_rate;
Zhu Yi46441512006-01-24 16:37:59 +08008737 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008738 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
8739 return 0;
8740}
8741
Jeff Garzikbf794512005-07-31 13:07:26 -04008742static int ipw_wx_set_rts(struct net_device *dev,
8743 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008744 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008745{
James Ketrenos43f66a62005-03-25 12:31:53 -06008746 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008747 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008748 if (wrqu->rts.disabled)
8749 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8750 else {
8751 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05008752 wrqu->rts.value > MAX_RTS_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08008753 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008754 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008755 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008756 priv->rts_threshold = wrqu->rts.value;
8757 }
8758
8759 ipw_send_rts_threshold(priv, priv->rts_threshold);
Zhu Yi46441512006-01-24 16:37:59 +08008760 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008761 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
8762 return 0;
8763}
8764
Jeff Garzikbf794512005-07-31 13:07:26 -04008765static int ipw_wx_get_rts(struct net_device *dev,
8766 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008767 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008768{
James Ketrenos43f66a62005-03-25 12:31:53 -06008769 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008770 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008771 wrqu->rts.value = priv->rts_threshold;
8772 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008773 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
Zhu Yi46441512006-01-24 16:37:59 +08008774 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008775 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
8776 return 0;
8777}
8778
Jeff Garzikbf794512005-07-31 13:07:26 -04008779static int ipw_wx_set_txpow(struct net_device *dev,
8780 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008781 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008782{
James Ketrenos43f66a62005-03-25 12:31:53 -06008783 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008784 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008785
Zhu Yi46441512006-01-24 16:37:59 +08008786 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008787 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008788 err = -EINPROGRESS;
8789 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008790 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008791
James Ketrenosb095c382005-08-24 22:04:42 -05008792 if (!wrqu->power.fixed)
8793 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008794
James Ketrenosc848d0a2005-08-24 21:56:24 -05008795 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008796 err = -EINVAL;
8797 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008798 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008799
James Ketrenosb095c382005-08-24 22:04:42 -05008800 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05008801 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008802 err = -EINVAL;
8803 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008804 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008805
8806 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008807 err = ipw_set_tx_power(priv);
8808 out:
Zhu Yi46441512006-01-24 16:37:59 +08008809 mutex_unlock(&priv->mutex);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008810 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008811}
8812
Jeff Garzikbf794512005-07-31 13:07:26 -04008813static int ipw_wx_get_txpow(struct net_device *dev,
8814 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008815 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008816{
James Ketrenos43f66a62005-03-25 12:31:53 -06008817 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008818 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008819 wrqu->power.value = priv->tx_power;
8820 wrqu->power.fixed = 1;
8821 wrqu->power.flags = IW_TXPOW_DBM;
8822 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08008823 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008824
Jeff Garzikbf794512005-07-31 13:07:26 -04008825 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08008826 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06008827
8828 return 0;
8829}
8830
Jeff Garzikbf794512005-07-31 13:07:26 -04008831static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008832 struct iw_request_info *info,
8833 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008834{
8835 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008836 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008837 if (wrqu->frag.disabled)
8838 priv->ieee->fts = DEFAULT_FTS;
8839 else {
8840 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05008841 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08008842 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008843 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05008844 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008845
James Ketrenos43f66a62005-03-25 12:31:53 -06008846 priv->ieee->fts = wrqu->frag.value & ~0x1;
8847 }
8848
8849 ipw_send_frag_threshold(priv, wrqu->frag.value);
Zhu Yi46441512006-01-24 16:37:59 +08008850 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008851 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
8852 return 0;
8853}
8854
Jeff Garzikbf794512005-07-31 13:07:26 -04008855static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008856 struct iw_request_info *info,
8857 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008858{
8859 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008860 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008861 wrqu->frag.value = priv->ieee->fts;
8862 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008863 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
Zhu Yi46441512006-01-24 16:37:59 +08008864 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008865 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
8866
8867 return 0;
8868}
8869
Jeff Garzikbf794512005-07-31 13:07:26 -04008870static int ipw_wx_set_retry(struct net_device *dev,
8871 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008872 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008873{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008874 struct ipw_priv *priv = ieee80211_priv(dev);
8875
8876 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
8877 return -EINVAL;
8878
8879 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
8880 return 0;
8881
8882 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
8883 return -EINVAL;
8884
Zhu Yi46441512006-01-24 16:37:59 +08008885 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008886 if (wrqu->retry.flags & IW_RETRY_MIN)
8887 priv->short_retry_limit = (u8) wrqu->retry.value;
8888 else if (wrqu->retry.flags & IW_RETRY_MAX)
8889 priv->long_retry_limit = (u8) wrqu->retry.value;
8890 else {
8891 priv->short_retry_limit = (u8) wrqu->retry.value;
8892 priv->long_retry_limit = (u8) wrqu->retry.value;
8893 }
8894
8895 ipw_send_retry_limit(priv, priv->short_retry_limit,
8896 priv->long_retry_limit);
Zhu Yi46441512006-01-24 16:37:59 +08008897 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008898 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
8899 priv->short_retry_limit, priv->long_retry_limit);
8900 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008901}
8902
Jeff Garzikbf794512005-07-31 13:07:26 -04008903static int ipw_wx_get_retry(struct net_device *dev,
8904 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008905 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008906{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008907 struct ipw_priv *priv = ieee80211_priv(dev);
8908
Zhu Yi46441512006-01-24 16:37:59 +08008909 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008910 wrqu->retry.disabled = 0;
8911
8912 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
Zhu Yi46441512006-01-24 16:37:59 +08008913 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008914 return -EINVAL;
8915 }
8916
8917 if (wrqu->retry.flags & IW_RETRY_MAX) {
8918 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
8919 wrqu->retry.value = priv->long_retry_limit;
8920 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
8921 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
8922 wrqu->retry.value = priv->short_retry_limit;
8923 } else {
8924 wrqu->retry.flags = IW_RETRY_LIMIT;
8925 wrqu->retry.value = priv->short_retry_limit;
8926 }
Zhu Yi46441512006-01-24 16:37:59 +08008927 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008928
8929 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
8930
8931 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008932}
8933
James Ketrenosafbf30a2005-08-25 00:05:33 -05008934static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
8935 int essid_len)
8936{
8937 struct ipw_scan_request_ext scan;
8938 int err = 0, scan_type;
8939
Pekka Enbergefb34422005-11-16 21:55:05 +02008940 if (!(priv->status & STATUS_INIT) ||
8941 (priv->status & STATUS_EXIT_PENDING))
8942 return 0;
8943
Zhu Yi46441512006-01-24 16:37:59 +08008944 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008945
8946 if (priv->status & STATUS_RF_KILL_MASK) {
8947 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
8948 priv->status |= STATUS_SCAN_PENDING;
8949 goto done;
8950 }
8951
8952 IPW_DEBUG_HC("starting request direct scan!\n");
8953
8954 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
Olaf Kirchd834a412006-01-09 17:00:37 +01008955 /* We should not sleep here; otherwise we will block most
8956 * of the system (for instance, we hold rtnl_lock when we
8957 * get here).
8958 */
8959 err = -EAGAIN;
8960 goto done;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008961 }
8962 memset(&scan, 0, sizeof(scan));
8963
8964 if (priv->config & CFG_SPEED_SCAN)
8965 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8966 cpu_to_le16(30);
8967 else
8968 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8969 cpu_to_le16(20);
8970
8971 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
8972 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008973 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008974 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
8975
8976 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
8977
8978 err = ipw_send_ssid(priv, essid, essid_len);
8979 if (err) {
8980 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
8981 goto done;
8982 }
8983 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
8984
8985 ipw_add_scan_channels(priv, &scan, scan_type);
8986
8987 err = ipw_send_scan_request_ext(priv, &scan);
8988 if (err) {
8989 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
8990 goto done;
8991 }
8992
8993 priv->status |= STATUS_SCANNING;
8994
8995 done:
Zhu Yi46441512006-01-24 16:37:59 +08008996 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008997 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008998}
8999
Jeff Garzikbf794512005-07-31 13:07:26 -04009000static int ipw_wx_set_scan(struct net_device *dev,
9001 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009002 union iwreq_data *wrqu, char *extra)
9003{
9004 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009005 struct iw_scan_req *req = NULL;
9006 if (wrqu->data.length
9007 && wrqu->data.length == sizeof(struct iw_scan_req)) {
9008 req = (struct iw_scan_req *)extra;
9009 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
9010 ipw_request_direct_scan(priv, req->essid,
9011 req->essid_len);
9012 return 0;
9013 }
9014 }
James Ketrenos8935f392005-10-05 15:59:08 -05009015
James Ketrenos43f66a62005-03-25 12:31:53 -06009016 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009017
9018 queue_work(priv->workqueue, &priv->request_scan);
9019
James Ketrenos43f66a62005-03-25 12:31:53 -06009020 return 0;
9021}
9022
Jeff Garzikbf794512005-07-31 13:07:26 -04009023static int ipw_wx_get_scan(struct net_device *dev,
9024 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009025 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009026{
James Ketrenos43f66a62005-03-25 12:31:53 -06009027 struct ipw_priv *priv = ieee80211_priv(dev);
9028 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9029}
9030
Jeff Garzikbf794512005-07-31 13:07:26 -04009031static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009032 struct iw_request_info *info,
9033 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009034{
9035 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009036 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009037 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009038
Zhu Yi46441512006-01-24 16:37:59 +08009039 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009040 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009041
Hong Liucaeff812005-08-05 17:25:50 +08009042 /* In IBSS mode, we need to notify the firmware to update
9043 * the beacon info after we changed the capability. */
9044 if (cap != priv->capability &&
9045 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9046 priv->status & STATUS_ASSOCIATED)
9047 ipw_disassociate(priv);
9048
Zhu Yi46441512006-01-24 16:37:59 +08009049 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009050 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009051}
9052
Jeff Garzikbf794512005-07-31 13:07:26 -04009053static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009054 struct iw_request_info *info,
9055 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009056{
9057 struct ipw_priv *priv = ieee80211_priv(dev);
9058 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9059}
9060
Jeff Garzikbf794512005-07-31 13:07:26 -04009061static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009062 struct iw_request_info *info,
9063 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009064{
9065 struct ipw_priv *priv = ieee80211_priv(dev);
9066 int err;
Zhu Yi46441512006-01-24 16:37:59 +08009067 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009068 if (wrqu->power.disabled) {
9069 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9070 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9071 if (err) {
9072 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009073 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009074 return err;
9075 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009076 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
Zhu Yi46441512006-01-24 16:37:59 +08009077 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009078 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009079 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009080
9081 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009082 case IW_POWER_ON: /* If not specified */
9083 case IW_POWER_MODE: /* If set all mask */
9084 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009085 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009086 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009087 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9088 wrqu->power.flags);
Zhu Yi46441512006-01-24 16:37:59 +08009089 mutex_unlock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009090 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009091 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009092
James Ketrenos43f66a62005-03-25 12:31:53 -06009093 /* If the user hasn't specified a power management mode yet, default
9094 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009095 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009096 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009097 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009098 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9099 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9100 if (err) {
9101 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009102 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009103 return err;
9104 }
9105
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009106 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
Zhu Yi46441512006-01-24 16:37:59 +08009107 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009108 return 0;
9109}
9110
Jeff Garzikbf794512005-07-31 13:07:26 -04009111static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009112 struct iw_request_info *info,
9113 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009114{
9115 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009116 mutex_lock(&priv->mutex);
James Ketrenosa613bff2005-08-24 21:43:11 -05009117 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009118 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009119 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009120 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009121
Zhu Yi46441512006-01-24 16:37:59 +08009122 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009123 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009124
James Ketrenos43f66a62005-03-25 12:31:53 -06009125 return 0;
9126}
9127
Jeff Garzikbf794512005-07-31 13:07:26 -04009128static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009129 struct iw_request_info *info,
9130 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009131{
9132 struct ipw_priv *priv = ieee80211_priv(dev);
9133 int mode = *(int *)extra;
9134 int err;
Zhu Yi46441512006-01-24 16:37:59 +08009135 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009136 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9137 mode = IPW_POWER_AC;
9138 priv->power_mode = mode;
9139 } else {
9140 priv->power_mode = IPW_POWER_ENABLED | mode;
9141 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009142
James Ketrenos43f66a62005-03-25 12:31:53 -06009143 if (priv->power_mode != mode) {
9144 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009145
James Ketrenos43f66a62005-03-25 12:31:53 -06009146 if (err) {
9147 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009148 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009149 return err;
9150 }
9151 }
Zhu Yi46441512006-01-24 16:37:59 +08009152 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009153 return 0;
9154}
9155
9156#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009157static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009158 struct iw_request_info *info,
9159 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009160{
9161 struct ipw_priv *priv = ieee80211_priv(dev);
9162 int level = IPW_POWER_LEVEL(priv->power_mode);
9163 char *p = extra;
9164
9165 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9166
9167 switch (level) {
9168 case IPW_POWER_AC:
9169 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9170 break;
9171 case IPW_POWER_BATTERY:
9172 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9173 break;
9174 default:
9175 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009176 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009177 timeout_duration[level - 1] / 1000,
9178 period_duration[level - 1] / 1000);
9179 }
9180
9181 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009182 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009183
9184 wrqu->data.length = p - extra + 1;
9185
9186 return 0;
9187}
9188
9189static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009190 struct iw_request_info *info,
9191 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009192{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009193 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009194 int mode = *(int *)extra;
9195 u8 band = 0, modulation = 0;
9196
9197 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009198 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009199 return -EINVAL;
9200 }
Zhu Yi46441512006-01-24 16:37:59 +08009201 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009202 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009203 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009204 if (mode & IEEE_A) {
9205 band |= IEEE80211_52GHZ_BAND;
9206 modulation |= IEEE80211_OFDM_MODULATION;
9207 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009208 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009209 } else {
9210 if (mode & IEEE_A) {
9211 IPW_WARNING("Attempt to set 2200BG into "
9212 "802.11a mode\n");
Zhu Yi46441512006-01-24 16:37:59 +08009213 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009214 return -EINVAL;
9215 }
9216
James Ketrenosa33a1982005-09-14 14:28:59 -05009217 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009218 }
9219
9220 if (mode & IEEE_B) {
9221 band |= IEEE80211_24GHZ_BAND;
9222 modulation |= IEEE80211_CCK_MODULATION;
9223 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009224 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009225
James Ketrenos43f66a62005-03-25 12:31:53 -06009226 if (mode & IEEE_G) {
9227 band |= IEEE80211_24GHZ_BAND;
9228 modulation |= IEEE80211_OFDM_MODULATION;
9229 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009230 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009231
9232 priv->ieee->mode = mode;
9233 priv->ieee->freq_band = band;
9234 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009235 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009236
James Ketrenosc848d0a2005-08-24 21:56:24 -05009237 /* Network configuration changed -- force [re]association */
9238 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9239 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009240 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009241 ipw_associate(priv);
9242 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009243
James Ketrenosa613bff2005-08-24 21:43:11 -05009244 /* Update the band LEDs */
9245 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009246
Jeff Garzikbf794512005-07-31 13:07:26 -04009247 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009248 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009249 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
Zhu Yi46441512006-01-24 16:37:59 +08009250 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009251 return 0;
9252}
9253
9254static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009255 struct iw_request_info *info,
9256 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009257{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009258 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009259 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009260 switch (priv->ieee->mode) {
9261 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009262 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9263 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009264 case IEEE_B:
9265 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9266 break;
9267 case IEEE_A | IEEE_B:
9268 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9269 break;
9270 case IEEE_G:
9271 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9272 break;
9273 case IEEE_A | IEEE_G:
9274 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9275 break;
9276 case IEEE_B | IEEE_G:
9277 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9278 break;
9279 case IEEE_A | IEEE_B | IEEE_G:
9280 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9281 break;
9282 default:
9283 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009284 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009285 }
9286
James Ketrenos43f66a62005-03-25 12:31:53 -06009287 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9288
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009289 wrqu->data.length = strlen(extra) + 1;
Zhu Yi46441512006-01-24 16:37:59 +08009290 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009291
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009292 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009293}
9294
James Ketrenosea2b26e2005-08-24 21:25:16 -05009295static int ipw_wx_set_preamble(struct net_device *dev,
9296 struct iw_request_info *info,
9297 union iwreq_data *wrqu, char *extra)
9298{
9299 struct ipw_priv *priv = ieee80211_priv(dev);
9300 int mode = *(int *)extra;
Zhu Yi46441512006-01-24 16:37:59 +08009301 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009302 /* Switching from SHORT -> LONG requires a disassociation */
9303 if (mode == 1) {
9304 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9305 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009306
9307 /* Network configuration changed -- force [re]association */
9308 IPW_DEBUG_ASSOC
9309 ("[re]association triggered due to preamble change.\n");
9310 if (!ipw_disassociate(priv))
9311 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009312 }
9313 goto done;
9314 }
9315
9316 if (mode == 0) {
9317 priv->config &= ~CFG_PREAMBLE_LONG;
9318 goto done;
9319 }
Zhu Yi46441512006-01-24 16:37:59 +08009320 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009321 return -EINVAL;
9322
9323 done:
Zhu Yi46441512006-01-24 16:37:59 +08009324 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009325 return 0;
9326}
9327
9328static int ipw_wx_get_preamble(struct net_device *dev,
9329 struct iw_request_info *info,
9330 union iwreq_data *wrqu, char *extra)
9331{
9332 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009333 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009334 if (priv->config & CFG_PREAMBLE_LONG)
9335 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9336 else
9337 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
Zhu Yi46441512006-01-24 16:37:59 +08009338 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009339 return 0;
9340}
9341
James Ketrenosb095c382005-08-24 22:04:42 -05009342#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009343static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009344 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009345 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009346{
James Ketrenos43f66a62005-03-25 12:31:53 -06009347 struct ipw_priv *priv = ieee80211_priv(dev);
9348 int *parms = (int *)extra;
9349 int enable = (parms[0] > 0);
Zhu Yi46441512006-01-24 16:37:59 +08009350 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009351 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009352 if (enable) {
9353 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05009354#ifdef CONFIG_IEEE80211_RADIOTAP
9355 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9356#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009357 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009358#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009359 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009360 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009361
James Ketrenos43f66a62005-03-25 12:31:53 -06009362 ipw_set_channel(priv, parms[1]);
9363 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009364 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi46441512006-01-24 16:37:59 +08009365 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009366 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009367 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009368 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009369 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009370 }
Zhu Yi46441512006-01-24 16:37:59 +08009371 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009372 return 0;
9373}
9374
James Ketrenosb095c382005-08-24 22:04:42 -05009375#endif // CONFIG_IPW2200_MONITOR
9376
Jeff Garzikbf794512005-07-31 13:07:26 -04009377static int ipw_wx_reset(struct net_device *dev,
9378 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009379 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009380{
James Ketrenos43f66a62005-03-25 12:31:53 -06009381 struct ipw_priv *priv = ieee80211_priv(dev);
9382 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009383 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009384 return 0;
9385}
James Ketrenosb095c382005-08-24 22:04:42 -05009386
James Ketrenosb095c382005-08-24 22:04:42 -05009387static int ipw_wx_sw_reset(struct net_device *dev,
9388 struct iw_request_info *info,
9389 union iwreq_data *wrqu, char *extra)
9390{
9391 struct ipw_priv *priv = ieee80211_priv(dev);
9392 union iwreq_data wrqu_sec = {
9393 .encoding = {
9394 .flags = IW_ENCODE_DISABLED,
9395 },
9396 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009397 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009398
9399 IPW_DEBUG_WX("SW_RESET\n");
9400
Zhu Yi46441512006-01-24 16:37:59 +08009401 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009402
Zhu Yid6d5b5c2006-02-16 16:21:09 +08009403 ret = ipw_sw_reset(priv, 2);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009404 if (!ret) {
9405 free_firmware();
9406 ipw_adapter_restart(priv);
9407 }
James Ketrenosb095c382005-08-24 22:04:42 -05009408
9409 /* The SW reset bit might have been toggled on by the 'disable'
9410 * module parameter, so take appropriate action */
9411 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9412
Zhu Yi46441512006-01-24 16:37:59 +08009413 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009414 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
Zhu Yi46441512006-01-24 16:37:59 +08009415 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009416
9417 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9418 /* Configuration likely changed -- force [re]association */
9419 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9420 "reset.\n");
9421 if (!ipw_disassociate(priv))
9422 ipw_associate(priv);
9423 }
9424
Zhu Yi46441512006-01-24 16:37:59 +08009425 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009426
9427 return 0;
9428}
James Ketrenos43f66a62005-03-25 12:31:53 -06009429
9430/* Rebase the WE IOCTLs to zero for the handler array */
9431#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009432static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009433 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9434 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9435 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9436 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9437 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009438 IW_IOCTL(SIOCSIWSENS) = ipw_wx_set_sens,
9439 IW_IOCTL(SIOCGIWSENS) = ipw_wx_get_sens,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009440 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9441 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9442 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9443 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9444 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9445 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9446 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9447 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9448 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9449 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9450 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9451 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9452 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9453 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9454 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9455 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9456 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9457 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9458 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9459 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9460 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9461 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9462 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009463 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9464 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9465 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9466 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009467 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9468 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9469 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9470 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9471 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9472 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9473 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
James Ketrenos43f66a62005-03-25 12:31:53 -06009474};
9475
James Ketrenosb095c382005-08-24 22:04:42 -05009476enum {
9477 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9478 IPW_PRIV_GET_POWER,
9479 IPW_PRIV_SET_MODE,
9480 IPW_PRIV_GET_MODE,
9481 IPW_PRIV_SET_PREAMBLE,
9482 IPW_PRIV_GET_PREAMBLE,
9483 IPW_PRIV_RESET,
9484 IPW_PRIV_SW_RESET,
9485#ifdef CONFIG_IPW2200_MONITOR
9486 IPW_PRIV_SET_MONITOR,
9487#endif
9488};
James Ketrenos43f66a62005-03-25 12:31:53 -06009489
Jeff Garzikbf794512005-07-31 13:07:26 -04009490static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009491 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009492 .cmd = IPW_PRIV_SET_POWER,
9493 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9494 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009495 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009496 .cmd = IPW_PRIV_GET_POWER,
9497 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9498 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009499 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009500 .cmd = IPW_PRIV_SET_MODE,
9501 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9502 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009503 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009504 .cmd = IPW_PRIV_GET_MODE,
9505 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9506 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009507 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009508 .cmd = IPW_PRIV_SET_PREAMBLE,
9509 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9510 .name = "set_preamble"},
9511 {
9512 .cmd = IPW_PRIV_GET_PREAMBLE,
9513 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9514 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009515 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009516 IPW_PRIV_RESET,
9517 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009518 {
9519 IPW_PRIV_SW_RESET,
9520 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9521#ifdef CONFIG_IPW2200_MONITOR
9522 {
9523 IPW_PRIV_SET_MONITOR,
9524 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9525#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009526};
9527
9528static iw_handler ipw_priv_handler[] = {
9529 ipw_wx_set_powermode,
9530 ipw_wx_get_powermode,
9531 ipw_wx_set_wireless_mode,
9532 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009533 ipw_wx_set_preamble,
9534 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009535 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -05009536 ipw_wx_sw_reset,
9537#ifdef CONFIG_IPW2200_MONITOR
9538 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -06009539#endif
9540};
9541
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009542static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009543 .standard = ipw_wx_handlers,
9544 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
9545 .num_private = ARRAY_SIZE(ipw_priv_handler),
9546 .num_private_args = ARRAY_SIZE(ipw_priv_args),
9547 .private = ipw_priv_handler,
9548 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00009549 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06009550};
9551
James Ketrenos43f66a62005-03-25 12:31:53 -06009552/*
9553 * Get wireless statistics.
9554 * Called by /proc/net/wireless
9555 * Also called by SIOCGIWSTATS
9556 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009557static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -06009558{
9559 struct ipw_priv *priv = ieee80211_priv(dev);
9560 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009561
James Ketrenos43f66a62005-03-25 12:31:53 -06009562 wstats = &priv->wstats;
9563
James Ketrenosea2b26e2005-08-24 21:25:16 -05009564 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -05009565 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -06009566 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
9567 * and associated; if not associcated, the values are all meaningless
9568 * anyway, so set them all to NULL and INVALID */
9569 if (!(priv->status & STATUS_ASSOCIATED)) {
9570 wstats->miss.beacon = 0;
9571 wstats->discard.retries = 0;
9572 wstats->qual.qual = 0;
9573 wstats->qual.level = 0;
9574 wstats->qual.noise = 0;
9575 wstats->qual.updated = 7;
9576 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009577 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -06009578 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009579 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009580
9581 wstats->qual.qual = priv->quality;
Zhu Yi00d21de2006-04-13 17:19:02 +08009582 wstats->qual.level = priv->exp_avg_rssi;
9583 wstats->qual.noise = priv->exp_avg_noise;
James Ketrenos43f66a62005-03-25 12:31:53 -06009584 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Bill Mossb1916082006-02-15 08:50:18 +08009585 IW_QUAL_NOISE_UPDATED | IW_QUAL_DBM;
James Ketrenos43f66a62005-03-25 12:31:53 -06009586
9587 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
9588 wstats->discard.retries = priv->last_tx_failures;
9589 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -04009590
James Ketrenos43f66a62005-03-25 12:31:53 -06009591/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
9592 goto fail_get_ordinal;
9593 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -04009594
James Ketrenos43f66a62005-03-25 12:31:53 -06009595 return wstats;
9596}
9597
James Ketrenos43f66a62005-03-25 12:31:53 -06009598/* net device stuff */
9599
Arjan van de Ven858119e2006-01-14 13:20:43 -08009600static void init_sys_config(struct ipw_sys_config *sys_config)
James Ketrenos43f66a62005-03-25 12:31:53 -06009601{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009602 memset(sys_config, 0, sizeof(struct ipw_sys_config));
Zhu Yi810dabd2006-01-24 16:36:59 +08009603 sys_config->bt_coexistence = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009604 sys_config->answer_broadcast_ssid_probe = 0;
9605 sys_config->accept_all_data_frames = 0;
9606 sys_config->accept_non_directed_frames = 1;
9607 sys_config->exclude_unicast_unencrypted = 0;
9608 sys_config->disable_unicast_decryption = 1;
9609 sys_config->exclude_multicast_unencrypted = 0;
9610 sys_config->disable_multicast_decryption = 1;
Cahill, Ben M71de1f32006-03-08 03:02:27 +08009611 sys_config->antenna_diversity = CFG_SYS_ANTENNA_SLOW_DIV;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009612 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -06009613 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009614 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009615 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009616 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
Cahill, Ben M12977152006-03-08 02:58:02 +08009617 sys_config->silence_threshold = 0x1e;
James Ketrenos43f66a62005-03-25 12:31:53 -06009618}
9619
9620static int ipw_net_open(struct net_device *dev)
9621{
9622 struct ipw_priv *priv = ieee80211_priv(dev);
9623 IPW_DEBUG_INFO("dev->open\n");
9624 /* we should be verifying the device is ready to be opened */
Zhu Yi46441512006-01-24 16:37:59 +08009625 mutex_lock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009626 if (!(priv->status & STATUS_RF_KILL_MASK) &&
9627 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009628 netif_start_queue(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009629 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009630 return 0;
9631}
9632
9633static int ipw_net_stop(struct net_device *dev)
9634{
9635 IPW_DEBUG_INFO("dev->close\n");
9636 netif_stop_queue(dev);
9637 return 0;
9638}
9639
9640/*
9641todo:
9642
9643modify to send one tfd per fragment instead of using chunking. otherwise
9644we need to heavily modify the ieee80211_skb_to_txb.
9645*/
9646
Arjan van de Ven858119e2006-01-14 13:20:43 -08009647static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
James Ketrenos227d2dc2005-07-28 16:25:55 -05009648 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009649{
Zhu Yia5cf4fe2006-04-13 17:19:11 +08009650 struct ieee80211_hdr_3addrqos *hdr = (struct ieee80211_hdr_3addrqos *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009651 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -06009652 int i = 0;
9653 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -05009654#ifdef CONFIG_IPW_QOS
9655 int tx_id = ipw_get_tx_queue_number(priv, pri);
9656 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9657#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009658 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -05009659#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009660 struct clx2_queue *q = &txq->q;
9661 u8 id, hdr_len, unicast;
9662 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009663 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -06009664
Zhu Yia5cf4fe2006-04-13 17:19:11 +08009665 hdr_len = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
James Ketrenos43f66a62005-03-25 12:31:53 -06009666 switch (priv->ieee->iw_mode) {
9667 case IW_MODE_ADHOC:
Stephen Hemminger3c190652006-01-03 15:27:38 -08009668 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -06009669 id = ipw_find_station(priv, hdr->addr1);
9670 if (id == IPW_INVALID_STATION) {
9671 id = ipw_add_station(priv, hdr->addr1);
9672 if (id == IPW_INVALID_STATION) {
9673 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -04009674 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009675 MAC_ARG(hdr->addr1));
9676 goto drop;
9677 }
9678 }
9679 break;
9680
9681 case IW_MODE_INFRA:
9682 default:
Stephen Hemminger3c190652006-01-03 15:27:38 -08009683 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -06009684 id = 0;
9685 break;
9686 }
9687
9688 tfd = &txq->bd[q->first_empty];
9689 txq->txb[q->first_empty] = txb;
9690 memset(tfd, 0, sizeof(*tfd));
9691 tfd->u.data.station_number = id;
9692
9693 tfd->control_flags.message_type = TX_FRAME_TYPE;
9694 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
9695
9696 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -05009697 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009698 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -04009699
James Ketrenos43f66a62005-03-25 12:31:53 -06009700 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -05009701 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009702 else
James Ketrenosb095c382005-08-24 22:04:42 -05009703 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -06009704
James Ketrenosea2b26e2005-08-24 21:25:16 -05009705 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
9706 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009707
James Ketrenosc848d0a2005-08-24 21:56:24 -05009708 fc = le16_to_cpu(hdr->frame_ctl);
9709 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -06009710
9711 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
9712
James Ketrenosb095c382005-08-24 22:04:42 -05009713 if (likely(unicast))
9714 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9715
9716 if (txb->encrypted && !priv->ieee->host_encrypt) {
9717 switch (priv->ieee->sec.level) {
9718 case SEC_LEVEL_3:
9719 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9720 IEEE80211_FCTL_PROTECTED;
9721 /* XXX: ACK flag must be set for CCMP even if it
9722 * is a multicast/broadcast packet, because CCMP
9723 * group communication encrypted by GTK is
9724 * actually done by the AP. */
9725 if (!unicast)
9726 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9727
9728 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9729 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
9730 tfd->u.data.key_index = 0;
9731 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
9732 break;
9733 case SEC_LEVEL_2:
9734 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9735 IEEE80211_FCTL_PROTECTED;
9736 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9737 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
9738 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
9739 break;
9740 case SEC_LEVEL_1:
9741 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9742 IEEE80211_FCTL_PROTECTED;
9743 tfd->u.data.key_index = priv->ieee->tx_keyidx;
9744 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
9745 40)
9746 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
9747 else
9748 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
9749 break;
9750 case SEC_LEVEL_0:
9751 break;
9752 default:
9753 printk(KERN_ERR "Unknow security level %d\n",
9754 priv->ieee->sec.level);
9755 break;
9756 }
9757 } else
9758 /* No hardware encryption */
9759 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
9760
9761#ifdef CONFIG_IPW_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +08009762 if (fc & IEEE80211_STYPE_QOS_DATA)
9763 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data));
James Ketrenosb095c382005-08-24 22:04:42 -05009764#endif /* CONFIG_IPW_QOS */
9765
James Ketrenos43f66a62005-03-25 12:31:53 -06009766 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -05009767 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
9768 txb->nr_frags));
9769 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
9770 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
9771 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
9772 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
9773 i, le32_to_cpu(tfd->u.data.num_chunks),
9774 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009775 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009776 i, tfd->u.data.num_chunks,
9777 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009778 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -06009779 txb->fragments[i]->len - hdr_len);
9780
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009781 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009782 cpu_to_le32(pci_map_single
9783 (priv->pci_dev,
9784 txb->fragments[i]->data + hdr_len,
9785 txb->fragments[i]->len - hdr_len,
9786 PCI_DMA_TODEVICE));
9787 tfd->u.data.chunk_len[i] =
9788 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009789 }
9790
9791 if (i != txb->nr_frags) {
9792 struct sk_buff *skb;
9793 u16 remaining_bytes = 0;
9794 int j;
9795
9796 for (j = i; j < txb->nr_frags; j++)
9797 remaining_bytes += txb->fragments[j]->len - hdr_len;
9798
9799 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
9800 remaining_bytes);
9801 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
9802 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -05009803 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -06009804 for (j = i; j < txb->nr_frags; j++) {
9805 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009806
James Ketrenos43f66a62005-03-25 12:31:53 -06009807 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009808 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009809 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009810 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009811 }
9812 dev_kfree_skb_any(txb->fragments[i]);
9813 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009814 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009815 cpu_to_le32(pci_map_single
9816 (priv->pci_dev, skb->data,
9817 tfd->u.data.chunk_len[i],
9818 PCI_DMA_TODEVICE));
9819
9820 tfd->u.data.num_chunks =
9821 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
9822 1);
Jeff Garzikbf794512005-07-31 13:07:26 -04009823 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009824 }
9825
9826 /* kick DMA */
9827 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
9828 ipw_write32(priv, q->reg_w, q->first_empty);
9829
James Ketrenosf6970142006-02-14 09:10:51 +08009830 if (ipw_queue_space(q) < q->high_mark)
9831 netif_stop_queue(priv->net_dev);
9832
James Ketrenos227d2dc2005-07-28 16:25:55 -05009833 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009834
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009835 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -06009836 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
9837 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -05009838 return NETDEV_TX_OK;
9839}
9840
9841static int ipw_net_is_queue_full(struct net_device *dev, int pri)
9842{
9843 struct ipw_priv *priv = ieee80211_priv(dev);
9844#ifdef CONFIG_IPW_QOS
9845 int tx_id = ipw_get_tx_queue_number(priv, pri);
9846 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9847#else
9848 struct clx2_tx_queue *txq = &priv->txq[0];
9849#endif /* CONFIG_IPW_QOS */
9850
9851 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
9852 return 1;
9853
9854 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009855}
9856
9857static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -05009858 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009859{
9860 struct ipw_priv *priv = ieee80211_priv(dev);
9861 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -05009862 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009863
9864 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009865 spin_lock_irqsave(&priv->lock, flags);
9866
9867 if (!(priv->status & STATUS_ASSOCIATED)) {
9868 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
9869 priv->ieee->stats.tx_carrier_errors++;
9870 netif_stop_queue(dev);
9871 goto fail_unlock;
9872 }
9873
James Ketrenos227d2dc2005-07-28 16:25:55 -05009874 ret = ipw_tx_skb(priv, txb, pri);
9875 if (ret == NETDEV_TX_OK)
9876 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009877 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06009878
James Ketrenos227d2dc2005-07-28 16:25:55 -05009879 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009880
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009881 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -06009882 spin_unlock_irqrestore(&priv->lock, flags);
9883 return 1;
9884}
9885
9886static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
9887{
9888 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -04009889
James Ketrenos43f66a62005-03-25 12:31:53 -06009890 priv->ieee->stats.tx_packets = priv->tx_packets;
9891 priv->ieee->stats.rx_packets = priv->rx_packets;
9892 return &priv->ieee->stats;
9893}
9894
9895static void ipw_net_set_multicast_list(struct net_device *dev)
9896{
9897
9898}
9899
9900static int ipw_net_set_mac_address(struct net_device *dev, void *p)
9901{
9902 struct ipw_priv *priv = ieee80211_priv(dev);
9903 struct sockaddr *addr = p;
9904 if (!is_valid_ether_addr(addr->sa_data))
9905 return -EADDRNOTAVAIL;
Zhu Yi46441512006-01-24 16:37:59 +08009906 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009907 priv->config |= CFG_CUSTOM_MAC;
9908 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
9909 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
9910 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -05009911 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08009912 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009913 return 0;
9914}
9915
Jeff Garzikbf794512005-07-31 13:07:26 -04009916static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -06009917 struct ethtool_drvinfo *info)
9918{
9919 struct ipw_priv *p = ieee80211_priv(dev);
9920 char vers[64];
9921 char date[32];
9922 u32 len;
9923
9924 strcpy(info->driver, DRV_NAME);
9925 strcpy(info->version, DRV_VERSION);
9926
9927 len = sizeof(vers);
9928 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
9929 len = sizeof(date);
9930 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
9931
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009932 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009933 vers, date);
9934 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -05009935 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009936}
9937
9938static u32 ipw_ethtool_get_link(struct net_device *dev)
9939{
9940 struct ipw_priv *priv = ieee80211_priv(dev);
9941 return (priv->status & STATUS_ASSOCIATED) != 0;
9942}
9943
9944static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
9945{
James Ketrenosb095c382005-08-24 22:04:42 -05009946 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009947}
9948
9949static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009950 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009951{
9952 struct ipw_priv *p = ieee80211_priv(dev);
9953
James Ketrenosb095c382005-08-24 22:04:42 -05009954 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009955 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08009956 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009957 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
Zhu Yi46441512006-01-24 16:37:59 +08009958 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009959 return 0;
9960}
9961
9962static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009963 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009964{
9965 struct ipw_priv *p = ieee80211_priv(dev);
9966 int i;
9967
James Ketrenosb095c382005-08-24 22:04:42 -05009968 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009969 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08009970 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009971 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Adrian Bunk71e585f2006-03-11 04:42:58 +01009972 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
9973 ipw_write8(p, i + IPW_EEPROM_DATA, p->eeprom[i]);
Zhu Yi46441512006-01-24 16:37:59 +08009974 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009975 return 0;
9976}
9977
9978static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009979 .get_link = ipw_ethtool_get_link,
9980 .get_drvinfo = ipw_ethtool_get_drvinfo,
9981 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
9982 .get_eeprom = ipw_ethtool_get_eeprom,
9983 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -06009984};
9985
9986static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
9987{
9988 struct ipw_priv *priv = data;
9989 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -04009990
James Ketrenos43f66a62005-03-25 12:31:53 -06009991 if (!priv)
9992 return IRQ_NONE;
9993
9994 spin_lock(&priv->lock);
9995
9996 if (!(priv->status & STATUS_INT_ENABLED)) {
9997 /* Shared IRQ */
9998 goto none;
9999 }
10000
James Ketrenosb095c382005-08-24 22:04:42 -050010001 inta = ipw_read32(priv, IPW_INTA_RW);
10002 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010003
James Ketrenos43f66a62005-03-25 12:31:53 -060010004 if (inta == 0xFFFFFFFF) {
10005 /* Hardware disappeared */
10006 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10007 goto none;
10008 }
10009
James Ketrenosb095c382005-08-24 22:04:42 -050010010 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010011 /* Shared interrupt */
10012 goto none;
10013 }
10014
10015 /* tell the device to stop sending interrupts */
10016 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010017
James Ketrenos43f66a62005-03-25 12:31:53 -060010018 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010019 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10020 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010021
James Ketrenos43f66a62005-03-25 12:31:53 -060010022 /* Cache INTA value for our tasklet */
10023 priv->isr_inta = inta;
10024
10025 tasklet_schedule(&priv->irq_tasklet);
10026
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010027 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010028
10029 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010030 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010031 spin_unlock(&priv->lock);
10032 return IRQ_NONE;
10033}
10034
10035static void ipw_rf_kill(void *adapter)
10036{
10037 struct ipw_priv *priv = adapter;
10038 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010039
James Ketrenos43f66a62005-03-25 12:31:53 -060010040 spin_lock_irqsave(&priv->lock, flags);
10041
10042 if (rf_kill_active(priv)) {
10043 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10044 if (priv->workqueue)
10045 queue_delayed_work(priv->workqueue,
10046 &priv->rf_kill, 2 * HZ);
10047 goto exit_unlock;
10048 }
10049
10050 /* RF Kill is now disabled, so bring the device back up */
10051
10052 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10053 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10054 "device\n");
10055
10056 /* we can not do an adapter restart while inside an irq lock */
10057 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010058 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010059 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10060 "enabled\n");
10061
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010062 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010063 spin_unlock_irqrestore(&priv->lock, flags);
10064}
10065
James Ketrenosc848d0a2005-08-24 21:56:24 -050010066static void ipw_bg_rf_kill(void *data)
10067{
10068 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +080010069 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010070 ipw_rf_kill(data);
Zhu Yi46441512006-01-24 16:37:59 +080010071 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010072}
10073
Adrian Bunka73e22b2006-01-21 01:39:42 +010010074static void ipw_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010075{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010076 priv->last_seq_num = -1;
10077 priv->last_frag_num = -1;
10078 priv->last_packet_time = 0;
10079
James Ketrenosa613bff2005-08-24 21:43:11 -050010080 netif_carrier_on(priv->net_dev);
10081 if (netif_queue_stopped(priv->net_dev)) {
10082 IPW_DEBUG_NOTIF("waking queue\n");
10083 netif_wake_queue(priv->net_dev);
10084 } else {
10085 IPW_DEBUG_NOTIF("starting queue\n");
10086 netif_start_queue(priv->net_dev);
10087 }
10088
James Ketrenosc848d0a2005-08-24 21:56:24 -050010089 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010090 ipw_reset_stats(priv);
10091 /* Ensure the rate is updated immediately */
10092 priv->last_rate = ipw_get_current_rate(priv);
10093 ipw_gather_stats(priv);
10094 ipw_led_link_up(priv);
10095 notify_wx_assoc_event(priv);
10096
10097 if (priv->config & CFG_BACKGROUND_SCAN)
10098 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10099}
10100
James Ketrenosc848d0a2005-08-24 21:56:24 -050010101static void ipw_bg_link_up(void *data)
10102{
10103 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +080010104 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010105 ipw_link_up(data);
Zhu Yi46441512006-01-24 16:37:59 +080010106 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010107}
10108
Adrian Bunka73e22b2006-01-21 01:39:42 +010010109static void ipw_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010110{
10111 ipw_led_link_down(priv);
10112 netif_carrier_off(priv->net_dev);
10113 netif_stop_queue(priv->net_dev);
10114 notify_wx_assoc_event(priv);
10115
10116 /* Cancel any queued work ... */
10117 cancel_delayed_work(&priv->request_scan);
10118 cancel_delayed_work(&priv->adhoc_check);
10119 cancel_delayed_work(&priv->gather_stats);
10120
10121 ipw_reset_stats(priv);
10122
James Ketrenosafbf30a2005-08-25 00:05:33 -050010123 if (!(priv->status & STATUS_EXIT_PENDING)) {
10124 /* Queue up another scan... */
10125 queue_work(priv->workqueue, &priv->request_scan);
10126 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010127}
10128
James Ketrenosc848d0a2005-08-24 21:56:24 -050010129static void ipw_bg_link_down(void *data)
10130{
10131 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +080010132 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010133 ipw_link_down(data);
Zhu Yi46441512006-01-24 16:37:59 +080010134 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010135}
10136
James Ketrenos43f66a62005-03-25 12:31:53 -060010137static int ipw_setup_deferred_work(struct ipw_priv *priv)
10138{
10139 int ret = 0;
10140
James Ketrenos43f66a62005-03-25 12:31:53 -060010141 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010142 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010143 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010144
James Ketrenosc848d0a2005-08-24 21:56:24 -050010145 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10146 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10147 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010148 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010149 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10150 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10151 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10152 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10153 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010154 INIT_WORK(&priv->request_scan,
James Ketrenos43f66a62005-03-25 12:31:53 -060010155 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010156 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010157 (void (*)(void *))ipw_bg_gather_stats, priv);
10158 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10159 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10160 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10161 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10162 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10163 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010164 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010165 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010166 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010167 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10168 priv);
10169 INIT_WORK(&priv->merge_networks,
10170 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010171
James Ketrenosb095c382005-08-24 22:04:42 -050010172#ifdef CONFIG_IPW_QOS
10173 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10174 priv);
10175#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010176
10177 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10178 ipw_irq_tasklet, (unsigned long)priv);
10179
10180 return ret;
10181}
10182
James Ketrenos43f66a62005-03-25 12:31:53 -060010183static void shim__set_security(struct net_device *dev,
10184 struct ieee80211_security *sec)
10185{
10186 struct ipw_priv *priv = ieee80211_priv(dev);
10187 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010188 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010189 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010190 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010191 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010192 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010193 priv->ieee->sec.flags &= ~(1 << i);
10194 else {
10195 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010196 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010197 priv->ieee->sec.flags |= (1 << i);
10198 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010199 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010200 } else if (sec->level != SEC_LEVEL_1)
10201 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010202 }
10203
James Ketrenosb095c382005-08-24 22:04:42 -050010204 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010205 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010206 priv->ieee->sec.active_key = sec->active_key;
10207 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010208 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010209 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010210 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010211 } else
10212 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010213
10214 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010215 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10216 priv->ieee->sec.auth_mode = sec->auth_mode;
10217 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010218 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10219 priv->capability |= CAP_SHARED_KEY;
10220 else
10221 priv->capability &= ~CAP_SHARED_KEY;
10222 priv->status |= STATUS_SECURITY_UPDATED;
10223 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010224
James Ketrenosb095c382005-08-24 22:04:42 -050010225 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10226 priv->ieee->sec.flags |= SEC_ENABLED;
10227 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010228 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010229 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010230 priv->capability |= CAP_PRIVACY_ON;
10231 else
10232 priv->capability &= ~CAP_PRIVACY_ON;
10233 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010234
James Ketrenosafbf30a2005-08-25 00:05:33 -050010235 if (sec->flags & SEC_ENCRYPT)
10236 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010237
James Ketrenosb095c382005-08-24 22:04:42 -050010238 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10239 priv->ieee->sec.level = sec->level;
10240 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010241 priv->status |= STATUS_SECURITY_UPDATED;
10242 }
10243
Zhu Yi1fbfea52005-08-05 17:22:56 +080010244 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10245 ipw_set_hwcrypto_keys(priv);
10246
Jeff Garzikbf794512005-07-31 13:07:26 -040010247 /* To match current functionality of ipw2100 (which works well w/
10248 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010249 * privacy capability changes ... */
10250#if 0
10251 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010252 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010253 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010254 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010255 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010256 IPW_DEBUG_ASSOC("Disassociating due to capability "
10257 "change.\n");
10258 ipw_disassociate(priv);
10259 }
10260#endif
10261}
10262
Jeff Garzikbf794512005-07-31 13:07:26 -040010263static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010264 struct ipw_supported_rates *rates)
10265{
10266 /* TODO: Mask out rates based on priv->rates_mask */
10267
10268 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010269 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010270 switch (priv->ieee->freq_band) {
10271 case IEEE80211_52GHZ_BAND:
10272 rates->ieee_mode = IPW_A_MODE;
10273 rates->purpose = IPW_RATE_CAPABILITIES;
10274 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10275 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10276 break;
10277
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010278 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010279 rates->ieee_mode = IPW_G_MODE;
10280 rates->purpose = IPW_RATE_CAPABILITIES;
10281 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10282 IEEE80211_CCK_DEFAULT_RATES_MASK);
10283 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10284 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10285 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10286 }
10287 break;
10288 }
10289
10290 return 0;
10291}
10292
Jeff Garzikbf794512005-07-31 13:07:26 -040010293static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010294{
James Ketrenos43f66a62005-03-25 12:31:53 -060010295 /* This is only called from ipw_up, which resets/reloads the firmware
10296 so, we don't need to first disable the card before we configure
10297 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010298 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010299 goto error;
10300
10301 /* initialize adapter address */
10302 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10303 goto error;
10304
10305 /* set basic system config settings */
10306 init_sys_config(&priv->sys_config);
Zhu Yi810dabd2006-01-24 16:36:59 +080010307
10308 /* Support Bluetooth if we have BT h/w on board, and user wants to.
10309 * Does not support BT priority yet (don't abort or defer our Tx) */
10310 if (bt_coexist) {
Zhu Yi2638bc32006-01-24 16:37:52 +080010311 unsigned char bt_caps = priv->eeprom[EEPROM_SKU_CAPABILITY];
Zhu Yi810dabd2006-01-24 16:36:59 +080010312
10313 if (bt_caps & EEPROM_SKU_CAP_BT_CHANNEL_SIG)
10314 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010315 |= CFG_BT_COEXISTENCE_SIGNAL_CHNL;
Zhu Yi810dabd2006-01-24 16:36:59 +080010316 if (bt_caps & EEPROM_SKU_CAP_BT_OOB)
10317 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010318 |= CFG_BT_COEXISTENCE_OOB;
Zhu Yi810dabd2006-01-24 16:36:59 +080010319 }
10320
James Ketrenosc848d0a2005-08-24 21:56:24 -050010321 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10322 priv->sys_config.answer_broadcast_ssid_probe = 1;
10323 else
10324 priv->sys_config.answer_broadcast_ssid_probe = 0;
10325
James Ketrenos43f66a62005-03-25 12:31:53 -060010326 if (ipw_send_system_config(priv, &priv->sys_config))
10327 goto error;
10328
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010329 init_supported_rates(priv, &priv->rates);
10330 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010331 goto error;
10332
10333 /* Set request-to-send threshold */
10334 if (priv->rts_threshold) {
10335 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10336 goto error;
10337 }
James Ketrenosb095c382005-08-24 22:04:42 -050010338#ifdef CONFIG_IPW_QOS
10339 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10340 ipw_qos_activate(priv, NULL);
10341#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010342
10343 if (ipw_set_random_seed(priv))
10344 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010345
James Ketrenos43f66a62005-03-25 12:31:53 -060010346 /* final state transition to the RUN state */
10347 if (ipw_send_host_complete(priv))
10348 goto error;
10349
James Ketrenose6666192005-08-12 09:17:04 -050010350 priv->status |= STATUS_INIT;
10351
10352 ipw_led_init(priv);
10353 ipw_led_radio_on(priv);
10354 priv->notif_missed_beacons = 0;
10355
10356 /* Set hardware WEP key if it is configured. */
10357 if ((priv->capability & CAP_PRIVACY_ON) &&
10358 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10359 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10360 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010361
10362 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010363
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010364 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010365 return -EIO;
10366}
10367
James Ketrenos4f36f802005-08-03 20:36:56 -050010368/*
10369 * NOTE:
10370 *
10371 * These tables have been tested in conjunction with the
10372 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10373 *
10374 * Altering this values, using it on other hardware, or in geographies
10375 * not intended for resale of the above mentioned Intel adapters has
10376 * not been tested.
10377 *
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080010378 * Remember to update the table in README.ipw2200 when changing this
10379 * table.
10380 *
James Ketrenos4f36f802005-08-03 20:36:56 -050010381 */
10382static const struct ieee80211_geo ipw_geos[] = {
10383 { /* Restricted */
10384 "---",
10385 .bg_channels = 11,
10386 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10387 {2427, 4}, {2432, 5}, {2437, 6},
10388 {2442, 7}, {2447, 8}, {2452, 9},
10389 {2457, 10}, {2462, 11}},
10390 },
10391
10392 { /* Custom US/Canada */
10393 "ZZF",
10394 .bg_channels = 11,
10395 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10396 {2427, 4}, {2432, 5}, {2437, 6},
10397 {2442, 7}, {2447, 8}, {2452, 9},
10398 {2457, 10}, {2462, 11}},
10399 .a_channels = 8,
10400 .a = {{5180, 36},
10401 {5200, 40},
10402 {5220, 44},
10403 {5240, 48},
10404 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10405 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10406 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10407 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10408 },
10409
10410 { /* Rest of World */
10411 "ZZD",
10412 .bg_channels = 13,
10413 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10414 {2427, 4}, {2432, 5}, {2437, 6},
10415 {2442, 7}, {2447, 8}, {2452, 9},
10416 {2457, 10}, {2462, 11}, {2467, 12},
10417 {2472, 13}},
10418 },
10419
10420 { /* Custom USA & Europe & High */
10421 "ZZA",
10422 .bg_channels = 11,
10423 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10424 {2427, 4}, {2432, 5}, {2437, 6},
10425 {2442, 7}, {2447, 8}, {2452, 9},
10426 {2457, 10}, {2462, 11}},
10427 .a_channels = 13,
10428 .a = {{5180, 36},
10429 {5200, 40},
10430 {5220, 44},
10431 {5240, 48},
10432 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10433 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10434 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10435 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10436 {5745, 149},
10437 {5765, 153},
10438 {5785, 157},
10439 {5805, 161},
10440 {5825, 165}},
10441 },
10442
10443 { /* Custom NA & Europe */
10444 "ZZB",
10445 .bg_channels = 11,
10446 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10447 {2427, 4}, {2432, 5}, {2437, 6},
10448 {2442, 7}, {2447, 8}, {2452, 9},
10449 {2457, 10}, {2462, 11}},
10450 .a_channels = 13,
10451 .a = {{5180, 36},
10452 {5200, 40},
10453 {5220, 44},
10454 {5240, 48},
10455 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10456 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10457 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10458 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10459 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10460 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10461 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10462 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10463 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10464 },
10465
10466 { /* Custom Japan */
10467 "ZZC",
10468 .bg_channels = 11,
10469 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10470 {2427, 4}, {2432, 5}, {2437, 6},
10471 {2442, 7}, {2447, 8}, {2452, 9},
10472 {2457, 10}, {2462, 11}},
10473 .a_channels = 4,
10474 .a = {{5170, 34}, {5190, 38},
10475 {5210, 42}, {5230, 46}},
10476 },
10477
10478 { /* Custom */
10479 "ZZM",
10480 .bg_channels = 11,
10481 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10482 {2427, 4}, {2432, 5}, {2437, 6},
10483 {2442, 7}, {2447, 8}, {2452, 9},
10484 {2457, 10}, {2462, 11}},
10485 },
10486
10487 { /* Europe */
10488 "ZZE",
10489 .bg_channels = 13,
10490 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10491 {2427, 4}, {2432, 5}, {2437, 6},
10492 {2442, 7}, {2447, 8}, {2452, 9},
10493 {2457, 10}, {2462, 11}, {2467, 12},
10494 {2472, 13}},
10495 .a_channels = 19,
10496 .a = {{5180, 36},
10497 {5200, 40},
10498 {5220, 44},
10499 {5240, 48},
10500 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10501 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10502 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10503 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10504 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10505 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10506 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10507 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10508 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10509 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10510 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10511 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10512 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10513 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10514 {5700, 140, IEEE80211_CH_PASSIVE_ONLY}},
10515 },
10516
10517 { /* Custom Japan */
10518 "ZZJ",
10519 .bg_channels = 14,
10520 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10521 {2427, 4}, {2432, 5}, {2437, 6},
10522 {2442, 7}, {2447, 8}, {2452, 9},
10523 {2457, 10}, {2462, 11}, {2467, 12},
10524 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY}},
10525 .a_channels = 4,
10526 .a = {{5170, 34}, {5190, 38},
10527 {5210, 42}, {5230, 46}},
10528 },
10529
James Ketrenos03520572005-10-19 16:12:31 -050010530 { /* Rest of World */
10531 "ZZR",
10532 .bg_channels = 14,
10533 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10534 {2427, 4}, {2432, 5}, {2437, 6},
10535 {2442, 7}, {2447, 8}, {2452, 9},
10536 {2457, 10}, {2462, 11}, {2467, 12},
10537 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY |
10538 IEEE80211_CH_PASSIVE_ONLY}},
10539 },
10540
James Ketrenos4f36f802005-08-03 20:36:56 -050010541 { /* High Band */
10542 "ZZH",
10543 .bg_channels = 13,
10544 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10545 {2427, 4}, {2432, 5}, {2437, 6},
10546 {2442, 7}, {2447, 8}, {2452, 9},
10547 {2457, 10}, {2462, 11},
10548 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10549 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10550 .a_channels = 4,
10551 .a = {{5745, 149}, {5765, 153},
10552 {5785, 157}, {5805, 161}},
10553 },
10554
10555 { /* Custom Europe */
10556 "ZZG",
10557 .bg_channels = 13,
10558 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10559 {2427, 4}, {2432, 5}, {2437, 6},
10560 {2442, 7}, {2447, 8}, {2452, 9},
10561 {2457, 10}, {2462, 11},
10562 {2467, 12}, {2472, 13}},
10563 .a_channels = 4,
10564 .a = {{5180, 36}, {5200, 40},
10565 {5220, 44}, {5240, 48}},
10566 },
10567
10568 { /* Europe */
10569 "ZZK",
10570 .bg_channels = 13,
10571 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10572 {2427, 4}, {2432, 5}, {2437, 6},
10573 {2442, 7}, {2447, 8}, {2452, 9},
10574 {2457, 10}, {2462, 11},
10575 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10576 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10577 .a_channels = 24,
10578 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10579 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10580 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10581 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10582 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10583 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10584 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10585 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10586 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10587 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10588 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10589 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10590 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10591 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10592 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10593 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10594 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10595 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10596 {5700, 140, IEEE80211_CH_PASSIVE_ONLY},
10597 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10598 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10599 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10600 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10601 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10602 },
10603
10604 { /* Europe */
10605 "ZZL",
10606 .bg_channels = 11,
10607 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10608 {2427, 4}, {2432, 5}, {2437, 6},
10609 {2442, 7}, {2447, 8}, {2452, 9},
10610 {2457, 10}, {2462, 11}},
10611 .a_channels = 13,
10612 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10613 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10614 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10615 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10616 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10617 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10618 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10619 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10620 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10621 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10622 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10623 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10624 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10625 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010626};
10627
James Ketrenos43f66a62005-03-25 12:31:53 -060010628#define MAX_HW_RESTARTS 5
10629static int ipw_up(struct ipw_priv *priv)
10630{
James Ketrenos4f36f802005-08-03 20:36:56 -050010631 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060010632
10633 if (priv->status & STATUS_EXIT_PENDING)
10634 return -EIO;
10635
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010636 if (cmdlog && !priv->cmdlog) {
10637 priv->cmdlog = kmalloc(sizeof(*priv->cmdlog) * cmdlog,
10638 GFP_KERNEL);
10639 if (priv->cmdlog == NULL) {
10640 IPW_ERROR("Error allocating %d command log entries.\n",
10641 cmdlog);
10642 } else {
10643 memset(priv->cmdlog, 0, sizeof(*priv->cmdlog) * cmdlog);
10644 priv->cmdlog_len = cmdlog;
10645 }
10646 }
10647
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010648 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040010649 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060010650 * Also start the clocks. */
10651 rc = ipw_load(priv);
10652 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050010653 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010654 return rc;
10655 }
10656
10657 ipw_init_ordinals(priv);
10658 if (!(priv->config & CFG_CUSTOM_MAC))
10659 eeprom_parse_mac(priv, priv->mac_addr);
10660 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
10661
James Ketrenos4f36f802005-08-03 20:36:56 -050010662 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
10663 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
10664 ipw_geos[j].name, 3))
10665 break;
10666 }
James Ketrenos03520572005-10-19 16:12:31 -050010667 if (j == ARRAY_SIZE(ipw_geos)) {
10668 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
10669 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
10670 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
10671 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
James Ketrenos4f36f802005-08-03 20:36:56 -050010672 j = 0;
James Ketrenos03520572005-10-19 16:12:31 -050010673 }
Larry Finger1867b112006-02-28 09:48:28 -060010674 if (ieee80211_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050010675 IPW_WARNING("Could not set geography.");
James Ketrenos43f66a62005-03-25 12:31:53 -060010676 return 0;
James Ketrenos4f36f802005-08-03 20:36:56 -050010677 }
10678
James Ketrenosb095c382005-08-24 22:04:42 -050010679 if (priv->status & STATUS_RF_KILL_SW) {
10680 IPW_WARNING("Radio disabled by module parameter.\n");
10681 return 0;
10682 } else if (rf_kill_active(priv)) {
10683 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
10684 "Kill switch must be turned off for "
10685 "wireless networking to work.\n");
10686 queue_delayed_work(priv->workqueue, &priv->rf_kill,
10687 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010688 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010689 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010690
10691 rc = ipw_config(priv);
10692 if (!rc) {
10693 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010694
James Ketrenose6666192005-08-12 09:17:04 -050010695 /* If configure to try and auto-associate, kick
10696 * off a scan. */
10697 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010698
James Ketrenos43f66a62005-03-25 12:31:53 -060010699 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010700 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010701
James Ketrenosc848d0a2005-08-24 21:56:24 -050010702 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010703 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
10704 i, MAX_HW_RESTARTS);
10705
10706 /* We had an error bringing up the hardware, so take it
10707 * all the way back down so we can try again */
10708 ipw_down(priv);
10709 }
10710
Jeff Garzikbf794512005-07-31 13:07:26 -040010711 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060010712 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010713 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010714
James Ketrenos43f66a62005-03-25 12:31:53 -060010715 return -EIO;
10716}
10717
James Ketrenosc848d0a2005-08-24 21:56:24 -050010718static void ipw_bg_up(void *data)
10719{
10720 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +080010721 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010722 ipw_up(data);
Zhu Yi46441512006-01-24 16:37:59 +080010723 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010724}
10725
James Ketrenosb095c382005-08-24 22:04:42 -050010726static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010727{
James Ketrenosb095c382005-08-24 22:04:42 -050010728 int i;
10729
10730 if (priv->status & STATUS_SCANNING) {
10731 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
10732 ipw_abort_scan(priv);
10733 }
10734
10735 if (priv->status & STATUS_ASSOCIATED) {
10736 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
10737 ipw_disassociate(priv);
10738 }
10739
10740 ipw_led_shutdown(priv);
10741
10742 /* Wait up to 1s for status to change to not scanning and not
10743 * associated (disassociation can take a while for a ful 802.11
10744 * exchange */
10745 for (i = 1000; i && (priv->status &
10746 (STATUS_DISASSOCIATING |
10747 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
10748 udelay(10);
10749
10750 if (priv->status & (STATUS_DISASSOCIATING |
10751 STATUS_ASSOCIATED | STATUS_SCANNING))
10752 IPW_DEBUG_INFO("Still associated or scanning...\n");
10753 else
10754 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
10755
James Ketrenosc848d0a2005-08-24 21:56:24 -050010756 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060010757 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050010758
10759 priv->status &= ~STATUS_INIT;
10760}
10761
James Ketrenos43f66a62005-03-25 12:31:53 -060010762static void ipw_down(struct ipw_priv *priv)
10763{
James Ketrenosb095c382005-08-24 22:04:42 -050010764 int exit_pending = priv->status & STATUS_EXIT_PENDING;
10765
10766 priv->status |= STATUS_EXIT_PENDING;
10767
10768 if (ipw_is_init(priv))
10769 ipw_deinit(priv);
10770
10771 /* Wipe out the EXIT_PENDING status bit if we are not actually
10772 * exiting the module */
10773 if (!exit_pending)
10774 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010775
10776 /* tell the device to stop sending interrupts */
10777 ipw_disable_interrupts(priv);
10778
10779 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050010780 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010781 netif_carrier_off(priv->net_dev);
10782 netif_stop_queue(priv->net_dev);
10783
10784 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050010785
10786 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010787}
10788
James Ketrenosc848d0a2005-08-24 21:56:24 -050010789static void ipw_bg_down(void *data)
10790{
10791 struct ipw_priv *priv = data;
Zhu Yi46441512006-01-24 16:37:59 +080010792 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010793 ipw_down(data);
Zhu Yi46441512006-01-24 16:37:59 +080010794 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010795}
10796
10797/* Called by register_netdev() */
10798static int ipw_net_init(struct net_device *dev)
10799{
10800 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +080010801 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010802
James Ketrenosc848d0a2005-08-24 21:56:24 -050010803 if (ipw_up(priv)) {
Zhu Yi46441512006-01-24 16:37:59 +080010804 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010805 return -EIO;
James Ketrenos43f66a62005-03-25 12:31:53 -060010806 }
10807
Zhu Yi46441512006-01-24 16:37:59 +080010808 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010809 return 0;
10810}
10811
10812/* PCI driver stuff */
10813static struct pci_device_id card_ids[] = {
10814 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
10815 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
10816 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
10817 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
10818 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
10819 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
10820 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
10821 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
10822 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
10823 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
10824 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
10825 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
10826 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
10827 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
10828 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
10829 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
10830 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
10831 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010832 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050010833 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010834 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
10835 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040010836
James Ketrenos43f66a62005-03-25 12:31:53 -060010837 /* required last entry */
10838 {0,}
10839};
10840
10841MODULE_DEVICE_TABLE(pci, card_ids);
10842
10843static struct attribute *ipw_sysfs_entries[] = {
10844 &dev_attr_rf_kill.attr,
10845 &dev_attr_direct_dword.attr,
10846 &dev_attr_indirect_byte.attr,
10847 &dev_attr_indirect_dword.attr,
10848 &dev_attr_mem_gpio_reg.attr,
10849 &dev_attr_command_event_reg.attr,
10850 &dev_attr_nic_type.attr,
10851 &dev_attr_status.attr,
10852 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050010853 &dev_attr_error.attr,
10854 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010855 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060010856 &dev_attr_eeprom_delay.attr,
10857 &dev_attr_ucode_version.attr,
10858 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050010859 &dev_attr_scan_age.attr,
10860 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050010861 &dev_attr_speed_scan.attr,
10862 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060010863 NULL
10864};
10865
10866static struct attribute_group ipw_attribute_group = {
10867 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010868 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060010869};
10870
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010871static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060010872{
10873 int err = 0;
10874 struct net_device *net_dev;
10875 void __iomem *base;
10876 u32 length, val;
10877 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010878 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060010879
10880 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
10881 if (net_dev == NULL) {
10882 err = -ENOMEM;
10883 goto out;
10884 }
10885
10886 priv = ieee80211_priv(net_dev);
10887 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010888
James Ketrenos43f66a62005-03-25 12:31:53 -060010889 priv->net_dev = net_dev;
10890 priv->pci_dev = pdev;
Brice Goglin0f52bf92005-12-01 01:41:46 -080010891#ifdef CONFIG_IPW2200_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -060010892 ipw_debug_level = debug;
10893#endif
10894 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010895 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
10896 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060010897
Zhu Yi46441512006-01-24 16:37:59 +080010898 mutex_init(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010899 if (pci_enable_device(pdev)) {
10900 err = -ENODEV;
10901 goto out_free_ieee80211;
10902 }
10903
10904 pci_set_master(pdev);
10905
Tobias Klauser0e08b442005-06-20 14:28:41 -070010906 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040010907 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070010908 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010909 if (err) {
10910 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
10911 goto out_pci_disable_device;
10912 }
10913
10914 pci_set_drvdata(pdev, priv);
10915
10916 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040010917 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060010918 goto out_pci_disable_device;
10919
Jeff Garzikbf794512005-07-31 13:07:26 -040010920 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060010921 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040010922 pci_read_config_dword(pdev, 0x40, &val);
10923 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060010924 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040010925
James Ketrenos43f66a62005-03-25 12:31:53 -060010926 length = pci_resource_len(pdev, 0);
10927 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040010928
James Ketrenos43f66a62005-03-25 12:31:53 -060010929 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
10930 if (!base) {
10931 err = -ENODEV;
10932 goto out_pci_release_regions;
10933 }
10934
10935 priv->hw_base = base;
10936 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
10937 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
10938
10939 err = ipw_setup_deferred_work(priv);
10940 if (err) {
10941 IPW_ERROR("Unable to setup deferred work\n");
10942 goto out_iounmap;
10943 }
10944
James Ketrenosb095c382005-08-24 22:04:42 -050010945 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010946
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010947 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010948 if (err) {
10949 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
10950 goto out_destroy_workqueue;
10951 }
10952
10953 SET_MODULE_OWNER(net_dev);
10954 SET_NETDEV_DEV(net_dev, &pdev->dev);
10955
Zhu Yi46441512006-01-24 16:37:59 +080010956 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010957
James Ketrenos43f66a62005-03-25 12:31:53 -060010958 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
10959 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050010960 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060010961
James Ketrenosb095c382005-08-24 22:04:42 -050010962#ifdef CONFIG_IPW_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080010963 priv->ieee->is_qos_active = ipw_is_qos_active;
James Ketrenos3b9990c2005-08-19 13:18:55 -050010964 priv->ieee->handle_probe_response = ipw_handle_beacon;
10965 priv->ieee->handle_beacon = ipw_handle_probe_response;
10966 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
James Ketrenosb095c382005-08-24 22:04:42 -050010967#endif /* CONFIG_IPW_QOS */
10968
James Ketrenosc848d0a2005-08-24 21:56:24 -050010969 priv->ieee->perfect_rssi = -20;
10970 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060010971
10972 net_dev->open = ipw_net_open;
10973 net_dev->stop = ipw_net_stop;
10974 net_dev->init = ipw_net_init;
10975 net_dev->get_stats = ipw_net_get_stats;
10976 net_dev->set_multicast_list = ipw_net_set_multicast_list;
10977 net_dev->set_mac_address = ipw_net_set_mac_address;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000010978 priv->wireless_data.spy_data = &priv->ieee->spy_data;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000010979 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010980 net_dev->wireless_handlers = &ipw_wx_handler_def;
10981 net_dev->ethtool_ops = &ipw_ethtool_ops;
10982 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010983 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060010984 net_dev->mem_start = pci_resource_start(pdev, 0);
10985 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
10986
10987 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
10988 if (err) {
10989 IPW_ERROR("failed to create sysfs device attributes\n");
Zhu Yi46441512006-01-24 16:37:59 +080010990 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010991 goto out_release_irq;
10992 }
10993
Zhu Yi46441512006-01-24 16:37:59 +080010994 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010995 err = register_netdev(net_dev);
10996 if (err) {
10997 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050010998 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060010999 }
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011000
11001 printk(KERN_INFO DRV_NAME ": Detected geography %s (%d 802.11bg "
11002 "channels, %d 802.11a channels)\n",
11003 priv->ieee->geo.name, priv->ieee->geo.bg_channels,
11004 priv->ieee->geo.a_channels);
11005
James Ketrenos43f66a62005-03-25 12:31:53 -060011006 return 0;
11007
James Ketrenosa613bff2005-08-24 21:43:11 -050011008 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011009 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011010 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011011 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011012 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011013 destroy_workqueue(priv->workqueue);
11014 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011015 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011016 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011017 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011018 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011019 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011020 pci_disable_device(pdev);
11021 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011022 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060011023 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011024 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011025 return err;
11026}
11027
11028static void ipw_pci_remove(struct pci_dev *pdev)
11029{
11030 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011031 struct list_head *p, *q;
11032 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011033
James Ketrenos43f66a62005-03-25 12:31:53 -060011034 if (!priv)
11035 return;
11036
Zhu Yi46441512006-01-24 16:37:59 +080011037 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011038
James Ketrenosafbf30a2005-08-25 00:05:33 -050011039 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011040 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011041 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11042
Zhu Yi46441512006-01-24 16:37:59 +080011043 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011044
11045 unregister_netdev(priv->net_dev);
11046
11047 if (priv->rxq) {
11048 ipw_rx_queue_free(priv, priv->rxq);
11049 priv->rxq = NULL;
11050 }
11051 ipw_tx_queue_free(priv);
11052
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011053 if (priv->cmdlog) {
11054 kfree(priv->cmdlog);
11055 priv->cmdlog = NULL;
11056 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011057 /* ipw_down will ensure that there is no more pending work
11058 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011059 cancel_delayed_work(&priv->adhoc_check);
11060 cancel_delayed_work(&priv->gather_stats);
11061 cancel_delayed_work(&priv->request_scan);
11062 cancel_delayed_work(&priv->rf_kill);
11063 cancel_delayed_work(&priv->scan_check);
11064 destroy_workqueue(priv->workqueue);
11065 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011066
James Ketrenosafbf30a2005-08-25 00:05:33 -050011067 /* Free MAC hash list for ADHOC */
11068 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11069 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050011070 list_del(p);
Zhu Yi489f4452006-01-24 16:37:41 +080011071 kfree(list_entry(p, struct ipw_ibss_seq, list));
James Ketrenosafbf30a2005-08-25 00:05:33 -050011072 }
11073 }
11074
James Ketrenosb39860c2005-08-12 09:36:32 -050011075 if (priv->error) {
11076 ipw_free_error_log(priv->error);
11077 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011078 }
11079
11080 free_irq(pdev->irq, priv);
11081 iounmap(priv->hw_base);
11082 pci_release_regions(pdev);
11083 pci_disable_device(pdev);
11084 pci_set_drvdata(pdev, NULL);
11085 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011086 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011087}
11088
James Ketrenos43f66a62005-03-25 12:31:53 -060011089#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011090static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011091{
11092 struct ipw_priv *priv = pci_get_drvdata(pdev);
11093 struct net_device *dev = priv->net_dev;
11094
11095 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11096
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011097 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011098 ipw_down(priv);
11099
11100 /* Remove the PRESENT state of the device */
11101 netif_device_detach(dev);
11102
James Ketrenos43f66a62005-03-25 12:31:53 -060011103 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011104 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011105 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011106
James Ketrenos43f66a62005-03-25 12:31:53 -060011107 return 0;
11108}
11109
11110static int ipw_pci_resume(struct pci_dev *pdev)
11111{
11112 struct ipw_priv *priv = pci_get_drvdata(pdev);
11113 struct net_device *dev = priv->net_dev;
11114 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011115
James Ketrenos43f66a62005-03-25 12:31:53 -060011116 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11117
James Ketrenosea2b26e2005-08-24 21:25:16 -050011118 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011119 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011120 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011121
James Ketrenos43f66a62005-03-25 12:31:53 -060011122 /*
11123 * Suspend/Resume resets the PCI configuration space, so we have to
11124 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11125 * from interfering with C3 CPU state. pci_restore_state won't help
11126 * here since it only restores the first 64 bytes pci config header.
11127 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011128 pci_read_config_dword(pdev, 0x40, &val);
11129 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011130 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11131
11132 /* Set the device back into the PRESENT state; this will also wake
11133 * the queue of needed */
11134 netif_device_attach(dev);
11135
11136 /* Bring the device back up */
11137 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011138
James Ketrenos43f66a62005-03-25 12:31:53 -060011139 return 0;
11140}
11141#endif
11142
11143/* driver initialization stuff */
11144static struct pci_driver ipw_driver = {
11145 .name = DRV_NAME,
11146 .id_table = card_ids,
11147 .probe = ipw_pci_probe,
11148 .remove = __devexit_p(ipw_pci_remove),
11149#ifdef CONFIG_PM
11150 .suspend = ipw_pci_suspend,
11151 .resume = ipw_pci_resume,
11152#endif
11153};
11154
11155static int __init ipw_init(void)
11156{
11157 int ret;
11158
11159 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11160 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11161
11162 ret = pci_module_init(&ipw_driver);
11163 if (ret) {
11164 IPW_ERROR("Unable to initialize PCI module\n");
11165 return ret;
11166 }
11167
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011168 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011169 if (ret) {
11170 IPW_ERROR("Unable to create driver sysfs file\n");
11171 pci_unregister_driver(&ipw_driver);
11172 return ret;
11173 }
11174
11175 return ret;
11176}
11177
11178static void __exit ipw_exit(void)
11179{
11180 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11181 pci_unregister_driver(&ipw_driver);
11182}
11183
11184module_param(disable, int, 0444);
11185MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11186
11187module_param(associate, int, 0444);
11188MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
11189
11190module_param(auto_create, int, 0444);
11191MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11192
James Ketrenosa613bff2005-08-24 21:43:11 -050011193module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011194MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011195
Zhu Yi3e1555b2006-03-06 05:48:37 +080011196#ifdef CONFIG_IPW2200_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -060011197module_param(debug, int, 0444);
11198MODULE_PARM_DESC(debug, "debug output mask");
Zhu Yi3e1555b2006-03-06 05:48:37 +080011199#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011200
11201module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011202MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011203
James Ketrenosb095c382005-08-24 22:04:42 -050011204#ifdef CONFIG_IPW_QOS
11205module_param(qos_enable, int, 0444);
11206MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060011207
James Ketrenosb095c382005-08-24 22:04:42 -050011208module_param(qos_burst_enable, int, 0444);
11209MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11210
11211module_param(qos_no_ack_mask, int, 0444);
11212MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11213
11214module_param(burst_duration_CCK, int, 0444);
11215MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11216
11217module_param(burst_duration_OFDM, int, 0444);
11218MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
11219#endif /* CONFIG_IPW_QOS */
11220
11221#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060011222module_param(mode, int, 0444);
11223MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
11224#else
11225module_param(mode, int, 0444);
11226MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
11227#endif
11228
Zhu Yi810dabd2006-01-24 16:36:59 +080011229module_param(bt_coexist, int, 0444);
11230MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)");
11231
James Ketrenosb095c382005-08-24 22:04:42 -050011232module_param(hwcrypto, int, 0444);
Zhu Yibde37d02006-01-24 16:38:08 +080011233MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default off)");
James Ketrenosb095c382005-08-24 22:04:42 -050011234
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011235module_param(cmdlog, int, 0444);
11236MODULE_PARM_DESC(cmdlog,
11237 "allocate a ring buffer for logging firmware commands");
11238
Zhu Yi4bfdb912006-01-24 16:37:16 +080011239module_param(roaming, int, 0444);
11240MODULE_PARM_DESC(roaming, "enable roaming support (default on)");
11241
James Ketrenos43f66a62005-03-25 12:31:53 -060011242module_exit(ipw_exit);
11243module_init(ipw_init);