blob: 9b398db2d740811bd7bebee43aa58a01e6daa550 [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:
Reinette Chatrec1eb2c82009-08-21 13:34:26 -070028 Intel Linux Wireless <ilw@linux.intel.com>
James Ketrenos43f66a62005-03-25 12:31:53 -060029 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30
31******************************************************************************/
32
33#include "ipw2200.h"
34
Zhu Yiae4af612006-04-13 17:20:34 +080035
36#ifndef KBUILD_EXTMOD
37#define VK "k"
38#else
39#define VK
40#endif
41
42#ifdef CONFIG_IPW2200_DEBUG
43#define VD "d"
44#else
45#define VD
46#endif
47
48#ifdef CONFIG_IPW2200_MONITOR
49#define VM "m"
50#else
51#define VM
52#endif
53
54#ifdef CONFIG_IPW2200_PROMISCUOUS
55#define VP "p"
56#else
57#define VP
58#endif
59
Zhu Yi459d4082006-04-13 17:21:00 +080060#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yiae4af612006-04-13 17:20:34 +080061#define VR "r"
62#else
63#define VR
64#endif
65
66#ifdef CONFIG_IPW2200_QOS
67#define VQ "q"
68#else
69#define VQ
70#endif
71
Zhu Yiee2c4ad2007-07-12 16:09:47 +080072#define IPW2200_VERSION "1.2.2" VK VD VM VP VR VQ
James Ketrenos43f66a62005-03-25 12:31:53 -060073#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +080074#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060075#define DRV_VERSION IPW2200_VERSION
76
James Ketrenosb095c382005-08-24 22:04:42 -050077#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
78
James Ketrenos43f66a62005-03-25 12:31:53 -060079MODULE_DESCRIPTION(DRV_DESCRIPTION);
80MODULE_VERSION(DRV_VERSION);
81MODULE_AUTHOR(DRV_COPYRIGHT);
82MODULE_LICENSE("GPL");
Ben Hutchings873395a2009-11-07 21:59:10 +000083MODULE_FIRMWARE("ipw2200-ibss.fw");
84#ifdef CONFIG_IPW2200_MONITOR
85MODULE_FIRMWARE("ipw2200-sniffer.fw");
86#endif
87MODULE_FIRMWARE("ipw2200-bss.fw");
James Ketrenos43f66a62005-03-25 12:31:53 -060088
James Ketrenosf6c5cb72005-08-25 00:39:09 -050089static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060090static int debug = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -070091static int default_channel = 0;
92static int network_mode = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060093
94static u32 ipw_debug_level;
Tim Gardner5c7f9b72008-10-14 10:38:03 -060095static int associate;
James Ketrenos43f66a62005-03-25 12:31:53 -060096static int auto_create = 1;
Reinette Chatre21f8a732009-08-18 10:25:05 -070097static int led_support = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060098static int disable = 0;
Zhu Yi810dabd2006-01-24 16:36:59 +080099static int bt_coexist = 0;
Zhu Yibde37d02006-01-24 16:38:08 +0800100static int hwcrypto = 0;
Zhu Yi4bfdb912006-01-24 16:37:16 +0800101static int roaming = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -0600102static const char ipw_modes[] = {
103 'a', 'b', 'g', '?'
104};
Zhu Yid2b83e12006-04-13 17:19:36 +0800105static int antenna = CFG_SYS_ANTENNA_BOTH;
James Ketrenos43f66a62005-03-25 12:31:53 -0600106
Zhu Yid685b8c2006-04-13 17:20:27 +0800107#ifdef CONFIG_IPW2200_PROMISCUOUS
108static int rtap_iface = 0; /* def: 0 -- do not create rtap interface */
109#endif
110
111
Zhu Yie43e3c12006-04-13 17:20:45 +0800112#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -0500113static int qos_enable = 0;
114static int qos_burst_enable = 0;
115static int qos_no_ack_mask = 0;
116static int burst_duration_CCK = 0;
117static int burst_duration_OFDM = 0;
118
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400119static struct libipw_qos_parameters def_qos_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500120 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
121 QOS_TX3_CW_MIN_OFDM},
122 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
123 QOS_TX3_CW_MAX_OFDM},
124 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
125 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
126 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
127 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
128};
129
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400130static struct libipw_qos_parameters def_qos_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500131 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
132 QOS_TX3_CW_MIN_CCK},
133 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
134 QOS_TX3_CW_MAX_CCK},
135 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
136 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
137 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
138 QOS_TX3_TXOP_LIMIT_CCK}
139};
140
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400141static struct libipw_qos_parameters def_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500142 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
143 DEF_TX3_CW_MIN_OFDM},
144 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
145 DEF_TX3_CW_MAX_OFDM},
146 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
147 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
148 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
149 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
150};
151
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400152static struct libipw_qos_parameters def_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500153 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
154 DEF_TX3_CW_MIN_CCK},
155 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
156 DEF_TX3_CW_MAX_CCK},
157 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
158 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
159 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
160 DEF_TX3_TXOP_LIMIT_CCK}
161};
162
163static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
164
165static int from_priority_to_tx_queue[] = {
166 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
167 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
168};
169
170static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
171
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400172static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -0500173 *qos_param);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400174static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -0500175 *qos_param);
Zhu Yie43e3c12006-04-13 17:20:45 +0800176#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -0500177
Benoit Boissinot97a78ca2005-09-15 17:30:28 +0000178static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev);
James Ketrenosb095c382005-08-24 22:04:42 -0500179static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600180static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400181static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600182 struct clx2_tx_queue *txq, int qindex);
183static int ipw_queue_reset(struct ipw_priv *priv);
184
185static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
186 int len, int sync);
187
188static void ipw_tx_queue_free(struct ipw_priv *);
189
190static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
191static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
192static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600193static int ipw_up(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000194static void ipw_bg_up(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600195static void ipw_down(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000196static void ipw_bg_down(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600197static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400198static int init_supported_rates(struct ipw_priv *priv,
199 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500200static void ipw_set_hwcrypto_keys(struct ipw_priv *);
201static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600202
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500203static int snprint_line(char *buf, size_t count,
204 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600205{
206 int out, i, j, l;
207 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400208
James Ketrenos43f66a62005-03-25 12:31:53 -0600209 out = snprintf(buf, count, "%08X", ofs);
210
211 for (l = 0, i = 0; i < 2; i++) {
212 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400213 for (j = 0; j < 8 && l < len; j++, l++)
214 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600215 data[(i * 8 + j)]);
216 for (; j < 8; j++)
217 out += snprintf(buf + out, count - out, " ");
218 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400219
James Ketrenos43f66a62005-03-25 12:31:53 -0600220 out += snprintf(buf + out, count - out, " ");
221 for (l = 0, i = 0; i < 2; i++) {
222 out += snprintf(buf + out, count - out, " ");
223 for (j = 0; j < 8 && l < len; j++, l++) {
224 c = data[(i * 8 + j)];
225 if (!isascii(c) || !isprint(c))
226 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400227
James Ketrenos43f66a62005-03-25 12:31:53 -0600228 out += snprintf(buf + out, count - out, "%c", c);
229 }
230
231 for (; j < 8; j++)
232 out += snprintf(buf + out, count - out, " ");
233 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400234
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500235 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600236}
237
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400238static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600239{
240 char line[81];
241 u32 ofs = 0;
242 if (!(ipw_debug_level & level))
243 return;
244
245 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500246 snprint_line(line, sizeof(line), &data[ofs],
247 min(len, 16U), ofs);
248 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600249 ofs += 16;
250 len -= min(len, 16U);
251 }
252}
253
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500254static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
255{
256 size_t out = size;
257 u32 ofs = 0;
258 int total = 0;
259
260 while (size && len) {
261 out = snprint_line(output, size, &data[ofs],
262 min_t(size_t, len, 16U), ofs);
263
264 ofs += 16;
265 output += out;
266 size -= out;
267 len -= min_t(size_t, len, 16U);
268 total += out;
269 }
270 return total;
271}
272
Zhu Yic8fe6672006-01-24 16:36:36 +0800273/* alias for 32-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600274static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
275#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
276
Zhu Yic8fe6672006-01-24 16:36:36 +0800277/* alias for 8-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600278static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
279#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
280
Zhu Yic8fe6672006-01-24 16:36:36 +0800281/* 8-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600282static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
283static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
284{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400285 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
286 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600287 _ipw_write_reg8(a, b, c);
288}
289
Zhu Yic8fe6672006-01-24 16:36:36 +0800290/* 16-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600291static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
292static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
293{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400294 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
295 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600296 _ipw_write_reg16(a, b, c);
297}
298
Zhu Yic8fe6672006-01-24 16:36:36 +0800299/* 32-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600300static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
301static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
302{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400303 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
304 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600305 _ipw_write_reg32(a, b, c);
306}
307
Zhu Yic8fe6672006-01-24 16:36:36 +0800308/* 8-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100309static inline void _ipw_write8(struct ipw_priv *ipw, unsigned long ofs,
310 u8 val)
311{
312 writeb(val, ipw->hw_base + ofs);
313}
Zhu Yic8fe6672006-01-24 16:36:36 +0800314
315/* 8-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Takashi Iwaifb55d882008-07-31 19:02:06 +0200316#define ipw_write8(ipw, ofs, val) do { \
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100317 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, \
318 __LINE__, (u32)(ofs), (u32)(val)); \
319 _ipw_write8(ipw, ofs, val); \
320} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600321
Zhu Yic8fe6672006-01-24 16:36:36 +0800322/* 16-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100323static inline void _ipw_write16(struct ipw_priv *ipw, unsigned long ofs,
324 u16 val)
325{
326 writew(val, ipw->hw_base + ofs);
327}
Zhu Yic8fe6672006-01-24 16:36:36 +0800328
329/* 16-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100330#define ipw_write16(ipw, ofs, val) do { \
331 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, \
332 __LINE__, (u32)(ofs), (u32)(val)); \
333 _ipw_write16(ipw, ofs, val); \
334} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600335
Zhu Yic8fe6672006-01-24 16:36:36 +0800336/* 32-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100337static inline void _ipw_write32(struct ipw_priv *ipw, unsigned long ofs,
338 u32 val)
339{
340 writel(val, ipw->hw_base + ofs);
341}
Zhu Yic8fe6672006-01-24 16:36:36 +0800342
343/* 32-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100344#define ipw_write32(ipw, ofs, val) do { \
345 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, \
346 __LINE__, (u32)(ofs), (u32)(val)); \
347 _ipw_write32(ipw, ofs, val); \
348} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600349
Zhu Yic8fe6672006-01-24 16:36:36 +0800350/* 8-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100351static inline u8 _ipw_read8(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400352{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100353 return readb(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600354}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400355
Zhu Yic8fe6672006-01-24 16:36:36 +0800356/* alias to 8-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100357#define ipw_read8(ipw, ofs) ({ \
358 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", __FILE__, __LINE__, \
359 (u32)(ofs)); \
360 _ipw_read8(ipw, ofs); \
361})
James Ketrenos43f66a62005-03-25 12:31:53 -0600362
Zhu Yic8fe6672006-01-24 16:36:36 +0800363/* 16-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100364static inline u16 _ipw_read16(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400365{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100366 return readw(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600367}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400368
Zhu Yic8fe6672006-01-24 16:36:36 +0800369/* alias to 16-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100370#define ipw_read16(ipw, ofs) ({ \
371 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", __FILE__, __LINE__, \
372 (u32)(ofs)); \
373 _ipw_read16(ipw, ofs); \
374})
James Ketrenos43f66a62005-03-25 12:31:53 -0600375
Zhu Yic8fe6672006-01-24 16:36:36 +0800376/* 32-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100377static inline u32 _ipw_read32(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400378{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100379 return readl(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600380}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400381
Zhu Yic8fe6672006-01-24 16:36:36 +0800382/* alias to 32-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100383#define ipw_read32(ipw, ofs) ({ \
384 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", __FILE__, __LINE__, \
385 (u32)(ofs)); \
386 _ipw_read32(ipw, ofs); \
387})
James Ketrenos43f66a62005-03-25 12:31:53 -0600388
389static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
Zhu Yic8fe6672006-01-24 16:36:36 +0800390/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100391#define ipw_read_indirect(a, b, c, d) ({ \
392 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %u bytes\n", __FILE__, \
393 __LINE__, (u32)(b), (u32)(d)); \
394 _ipw_read_indirect(a, b, c, d); \
395})
James Ketrenos43f66a62005-03-25 12:31:53 -0600396
Zhu Yic8fe6672006-01-24 16:36:36 +0800397/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400398static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
399 int num);
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100400#define ipw_write_indirect(a, b, c, d) do { \
401 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %u bytes\n", __FILE__, \
402 __LINE__, (u32)(b), (u32)(d)); \
403 _ipw_write_indirect(a, b, c, d); \
404} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600405
Zhu Yic8fe6672006-01-24 16:36:36 +0800406/* 32-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400407static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600408{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400409 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500410 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
411 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600412}
413
Zhu Yic8fe6672006-01-24 16:36:36 +0800414/* 8-bit indirect write (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600415static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
416{
Zhu Yi2638bc32006-01-24 16:37:52 +0800417 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800418 u32 dif_len = reg - aligned_addr;
419
James Ketrenos43f66a62005-03-25 12:31:53 -0600420 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800421 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
422 _ipw_write8(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600423}
424
Zhu Yic8fe6672006-01-24 16:36:36 +0800425/* 16-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400426static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600427{
Zhu Yi2638bc32006-01-24 16:37:52 +0800428 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800429 u32 dif_len = (reg - aligned_addr) & (~0x1ul);
430
James Ketrenos43f66a62005-03-25 12:31:53 -0600431 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800432 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
433 _ipw_write16(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600434}
435
Zhu Yic8fe6672006-01-24 16:36:36 +0800436/* 8-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600437static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
438{
439 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500440 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -0600441 IPW_DEBUG_IO(" reg = 0x%8X : \n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500442 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400443 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600444}
445
Zhu Yic8fe6672006-01-24 16:36:36 +0800446/* 32-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600447static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
448{
449 u32 value;
450
451 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
452
James Ketrenosb095c382005-08-24 22:04:42 -0500453 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
454 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
James Ketrenos43f66a62005-03-25 12:31:53 -0600455 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x \n", reg, value);
456 return value;
457}
458
Zhu Yic8fe6672006-01-24 16:36:36 +0800459/* General purpose, no alignment requirement, iterative (multi-byte) read, */
460/* for area above 1st 4K of SRAM/reg space */
James Ketrenos43f66a62005-03-25 12:31:53 -0600461static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
462 int num)
463{
Zhu Yi2638bc32006-01-24 16:37:52 +0800464 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600465 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600466 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400467
James Ketrenos43f66a62005-03-25 12:31:53 -0600468 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
469
James Ketrenosea2b26e2005-08-24 21:25:16 -0500470 if (num <= 0) {
471 return;
472 }
473
Zhu Yic8fe6672006-01-24 16:36:36 +0800474 /* Read the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600475 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500476 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600477 /* Start reading at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500478 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500479 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600480 aligned_addr += 4;
481 }
482
Zhu Yic8fe6672006-01-24 16:36:36 +0800483 /* Read all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500484 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500485 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500486 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400487
Zhu Yic8fe6672006-01-24 16:36:36 +0800488 /* Read the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500489 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500490 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500491 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500492 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500493 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600494}
495
Zhu Yic8fe6672006-01-24 16:36:36 +0800496/* General purpose, no alignment requirement, iterative (multi-byte) write, */
497/* for area above 1st 4K of SRAM/reg space */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400498static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600499 int num)
500{
Zhu Yi2638bc32006-01-24 16:37:52 +0800501 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600502 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600503 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400504
James Ketrenos43f66a62005-03-25 12:31:53 -0600505 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400506
James Ketrenosea2b26e2005-08-24 21:25:16 -0500507 if (num <= 0) {
508 return;
509 }
510
Zhu Yic8fe6672006-01-24 16:36:36 +0800511 /* Write the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600512 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500513 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
Zhu Yic8fe6672006-01-24 16:36:36 +0800514 /* Start writing at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500515 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500516 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600517 aligned_addr += 4;
518 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400519
Zhu Yic8fe6672006-01-24 16:36:36 +0800520 /* Write all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500521 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500522 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500523 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400524
Zhu Yic8fe6672006-01-24 16:36:36 +0800525 /* Write the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500526 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500527 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500528 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500529 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500530 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600531}
532
Zhu Yic8fe6672006-01-24 16:36:36 +0800533/* General purpose, no alignment requirement, iterative (multi-byte) write, */
534/* for 1st 4K of SRAM/regs space */
Jeff Garzikbf794512005-07-31 13:07:26 -0400535static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600536 int num)
537{
538 memcpy_toio((priv->hw_base + addr), buf, num);
539}
540
Zhu Yic8fe6672006-01-24 16:36:36 +0800541/* Set bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600542static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
543{
544 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
545}
546
Zhu Yic8fe6672006-01-24 16:36:36 +0800547/* Clear bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600548static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
549{
550 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
551}
552
Zhu Yi89c318e2006-06-08 22:19:49 -0700553static inline void __ipw_enable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600554{
555 if (priv->status & STATUS_INT_ENABLED)
556 return;
557 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500558 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600559}
560
Zhu Yi89c318e2006-06-08 22:19:49 -0700561static inline void __ipw_disable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600562{
563 if (!(priv->status & STATUS_INT_ENABLED))
564 return;
565 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500566 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600567}
568
Zhu Yi89c318e2006-06-08 22:19:49 -0700569static inline void ipw_enable_interrupts(struct ipw_priv *priv)
570{
571 unsigned long flags;
572
573 spin_lock_irqsave(&priv->irq_lock, flags);
574 __ipw_enable_interrupts(priv);
575 spin_unlock_irqrestore(&priv->irq_lock, flags);
576}
577
578static inline void ipw_disable_interrupts(struct ipw_priv *priv)
579{
580 unsigned long flags;
581
582 spin_lock_irqsave(&priv->irq_lock, flags);
583 __ipw_disable_interrupts(priv);
584 spin_unlock_irqrestore(&priv->irq_lock, flags);
585}
586
James Ketrenos43f66a62005-03-25 12:31:53 -0600587static char *ipw_error_desc(u32 val)
588{
589 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400590 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600591 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400592 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600593 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400594 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600595 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400596 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600597 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400598 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500599 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400600 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500601 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400602 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500603 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400604 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500605 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400606 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500607 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400608 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500609 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400610 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500611 return "DMA_STATUS";
612 case IPW_FW_ERROR_DINO_ERROR:
613 return "DINO_ERROR";
614 case IPW_FW_ERROR_EEPROM_ERROR:
615 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400616 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500617 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400618 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500619 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400620 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500621 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600622 }
623}
624
James Ketrenosb39860c2005-08-12 09:36:32 -0500625static void ipw_dump_error_log(struct ipw_priv *priv,
626 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600627{
James Ketrenosb39860c2005-08-12 09:36:32 -0500628 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600629
James Ketrenosb39860c2005-08-12 09:36:32 -0500630 if (!error) {
631 IPW_ERROR("Error allocating and capturing error log. "
632 "Nothing to dump.\n");
633 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600634 }
635
James Ketrenosb39860c2005-08-12 09:36:32 -0500636 IPW_ERROR("Start IPW Error Log Dump:\n");
637 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
638 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600639
James Ketrenosb39860c2005-08-12 09:36:32 -0500640 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400641 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500642 ipw_error_desc(error->elem[i].desc),
643 error->elem[i].time,
644 error->elem[i].blink1,
645 error->elem[i].blink2,
646 error->elem[i].link1,
647 error->elem[i].link2, error->elem[i].data);
648 for (i = 0; i < error->log_len; i++)
649 IPW_ERROR("%i\t0x%08x\t%i\n",
650 error->log[i].time,
James Ketrenos286568a2005-08-30 10:34:25 -0500651 error->log[i].data, error->log[i].event);
James Ketrenos43f66a62005-03-25 12:31:53 -0600652}
James Ketrenos43f66a62005-03-25 12:31:53 -0600653
James Ketrenosc848d0a2005-08-24 21:56:24 -0500654static inline int ipw_is_init(struct ipw_priv *priv)
655{
656 return (priv->status & STATUS_INIT) ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -0600657}
658
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400659static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600660{
661 u32 addr, field_info, field_len, field_count, total_len;
662
663 IPW_DEBUG_ORD("ordinal = %i\n", ord);
664
665 if (!priv || !val || !len) {
666 IPW_DEBUG_ORD("Invalid argument\n");
667 return -EINVAL;
668 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400669
James Ketrenos43f66a62005-03-25 12:31:53 -0600670 /* verify device ordinal tables have been initialized */
671 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
672 IPW_DEBUG_ORD("Access ordinals before initialization\n");
673 return -EINVAL;
674 }
675
676 switch (IPW_ORD_TABLE_ID_MASK & ord) {
677 case IPW_ORD_TABLE_0_MASK:
678 /*
679 * TABLE 0: Direct access to a table of 32 bit values
680 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400681 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600682 * read from the table
683 */
684
685 /* remove the table id from the ordinal */
686 ord &= IPW_ORD_TABLE_VALUE_MASK;
687
688 /* boundary check */
689 if (ord > priv->table0_len) {
690 IPW_DEBUG_ORD("ordinal value (%i) longer then "
691 "max (%i)\n", ord, priv->table0_len);
692 return -EINVAL;
693 }
694
695 /* verify we have enough room to store the value */
696 if (*len < sizeof(u32)) {
697 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200698 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600699 return -EINVAL;
700 }
701
702 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400703 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600704
705 *len = sizeof(u32);
706 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400707 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600708 break;
709
710 case IPW_ORD_TABLE_1_MASK:
711 /*
712 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400713 *
714 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600715 * representing starting addr for the data (which is
716 * also a u32)
717 */
718
719 /* remove the table id from the ordinal */
720 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400721
James Ketrenos43f66a62005-03-25 12:31:53 -0600722 /* boundary check */
723 if (ord > priv->table1_len) {
724 IPW_DEBUG_ORD("ordinal value too long\n");
725 return -EINVAL;
726 }
727
728 /* verify we have enough room to store the value */
729 if (*len < sizeof(u32)) {
730 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200731 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600732 return -EINVAL;
733 }
734
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400735 *((u32 *) val) =
736 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600737 *len = sizeof(u32);
738 break;
739
740 case IPW_ORD_TABLE_2_MASK:
741 /*
742 * TABLE 2: Indirect access to a table of variable sized values
743 *
744 * This table consist of six values, each containing
745 * - dword containing the starting offset of the data
746 * - dword containing the lengh in the first 16bits
747 * and the count in the second 16bits
748 */
749
750 /* remove the table id from the ordinal */
751 ord &= IPW_ORD_TABLE_VALUE_MASK;
752
753 /* boundary check */
754 if (ord > priv->table2_len) {
755 IPW_DEBUG_ORD("ordinal value too long\n");
756 return -EINVAL;
757 }
758
759 /* get the address of statistic */
760 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400761
762 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600763 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400764 field_info =
765 ipw_read_reg32(priv,
766 priv->table2_addr + (ord << 3) +
767 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400768
James Ketrenos43f66a62005-03-25 12:31:53 -0600769 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400770 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400771
James Ketrenos43f66a62005-03-25 12:31:53 -0600772 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400773 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400774
James Ketrenos43f66a62005-03-25 12:31:53 -0600775 /* abort if not enought memory */
776 total_len = field_len * field_count;
777 if (total_len > *len) {
778 *len = total_len;
779 return -EINVAL;
780 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400781
James Ketrenos43f66a62005-03-25 12:31:53 -0600782 *len = total_len;
783 if (!total_len)
784 return 0;
785
786 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400787 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600788 addr, total_len, field_info);
789 ipw_read_indirect(priv, addr, val, total_len);
790 break;
791
792 default:
793 IPW_DEBUG_ORD("Invalid ordinal!\n");
794 return -EINVAL;
795
796 }
797
James Ketrenos43f66a62005-03-25 12:31:53 -0600798 return 0;
799}
800
801static void ipw_init_ordinals(struct ipw_priv *priv)
802{
803 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400804 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600805
806 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
807 priv->table0_addr, priv->table0_len);
808
809 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
810 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
811
812 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
813 priv->table1_addr, priv->table1_len);
814
815 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
816 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400817 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600818
819 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
820 priv->table2_addr, priv->table2_len);
821
822}
823
Adrian Bunka73e22b2006-01-21 01:39:42 +0100824static u32 ipw_register_toggle(u32 reg)
James Ketrenosa613bff2005-08-24 21:43:11 -0500825{
James Ketrenosb095c382005-08-24 22:04:42 -0500826 reg &= ~IPW_START_STANDBY;
827 if (reg & IPW_GATE_ODMA)
828 reg &= ~IPW_GATE_ODMA;
829 if (reg & IPW_GATE_IDMA)
830 reg &= ~IPW_GATE_IDMA;
831 if (reg & IPW_GATE_ADMA)
832 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500833 return reg;
834}
835
836/*
837 * LED behavior:
838 * - On radio ON, turn on any LEDs that require to be on during start
839 * - On initialization, start unassociated blink
840 * - On association, disable unassociated blink
841 * - On disassociation, start unassociated blink
842 * - On radio OFF, turn off any LEDs started during radio on
843 *
844 */
Zhu Yiede61112006-01-24 16:37:10 +0800845#define LD_TIME_LINK_ON msecs_to_jiffies(300)
846#define LD_TIME_LINK_OFF msecs_to_jiffies(2700)
847#define LD_TIME_ACT_ON msecs_to_jiffies(250)
James Ketrenosa613bff2005-08-24 21:43:11 -0500848
Adrian Bunka73e22b2006-01-21 01:39:42 +0100849static void ipw_led_link_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500850{
851 unsigned long flags;
852 u32 led;
853
854 /* If configured to not use LEDs, or nic_type is 1,
855 * then we don't toggle a LINK led */
856 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
857 return;
858
859 spin_lock_irqsave(&priv->lock, flags);
860
861 if (!(priv->status & STATUS_RF_KILL_MASK) &&
862 !(priv->status & STATUS_LED_LINK_ON)) {
863 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500864 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500865 led |= priv->led_association_on;
866
867 led = ipw_register_toggle(led);
868
869 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500870 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500871
872 priv->status |= STATUS_LED_LINK_ON;
873
874 /* If we aren't associated, schedule turning the LED off */
875 if (!(priv->status & STATUS_ASSOCIATED))
876 queue_delayed_work(priv->workqueue,
877 &priv->led_link_off,
878 LD_TIME_LINK_ON);
879 }
880
881 spin_unlock_irqrestore(&priv->lock, flags);
882}
883
David Howellsc4028952006-11-22 14:57:56 +0000884static void ipw_bg_led_link_on(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500885{
David Howellsc4028952006-11-22 14:57:56 +0000886 struct ipw_priv *priv =
887 container_of(work, struct ipw_priv, led_link_on.work);
Zhu Yi46441512006-01-24 16:37:59 +0800888 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000889 ipw_led_link_on(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800890 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500891}
892
Adrian Bunka73e22b2006-01-21 01:39:42 +0100893static void ipw_led_link_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500894{
895 unsigned long flags;
896 u32 led;
897
898 /* If configured not to use LEDs, or nic type is 1,
899 * then we don't goggle the LINK led. */
900 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
901 return;
902
903 spin_lock_irqsave(&priv->lock, flags);
904
905 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500906 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500907 led &= priv->led_association_off;
908 led = ipw_register_toggle(led);
909
910 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500911 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500912
913 IPW_DEBUG_LED("Link LED Off\n");
914
915 priv->status &= ~STATUS_LED_LINK_ON;
916
917 /* If we aren't associated and the radio is on, schedule
918 * turning the LED on (blink while unassociated) */
919 if (!(priv->status & STATUS_RF_KILL_MASK) &&
920 !(priv->status & STATUS_ASSOCIATED))
921 queue_delayed_work(priv->workqueue, &priv->led_link_on,
922 LD_TIME_LINK_OFF);
923
924 }
925
926 spin_unlock_irqrestore(&priv->lock, flags);
927}
928
David Howellsc4028952006-11-22 14:57:56 +0000929static void ipw_bg_led_link_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500930{
David Howellsc4028952006-11-22 14:57:56 +0000931 struct ipw_priv *priv =
932 container_of(work, struct ipw_priv, led_link_off.work);
Zhu Yi46441512006-01-24 16:37:59 +0800933 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000934 ipw_led_link_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800935 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500936}
937
Arjan van de Ven858119e2006-01-14 13:20:43 -0800938static void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500939{
James Ketrenosa613bff2005-08-24 21:43:11 -0500940 u32 led;
941
942 if (priv->config & CFG_NO_LED)
943 return;
944
James Ketrenosb095c382005-08-24 22:04:42 -0500945 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500946 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500947
948 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500949 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500950 led |= priv->led_activity_on;
951
952 led = ipw_register_toggle(led);
953
954 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500955 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500956
957 IPW_DEBUG_LED("Activity LED On\n");
958
959 priv->status |= STATUS_LED_ACT_ON;
960
James Ketrenosc848d0a2005-08-24 21:56:24 -0500961 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500962 queue_delayed_work(priv->workqueue, &priv->led_act_off,
963 LD_TIME_ACT_ON);
964 } else {
965 /* Reschedule LED off for full time period */
966 cancel_delayed_work(&priv->led_act_off);
967 queue_delayed_work(priv->workqueue, &priv->led_act_off,
968 LD_TIME_ACT_ON);
969 }
James Ketrenosb095c382005-08-24 22:04:42 -0500970}
James Ketrenosa613bff2005-08-24 21:43:11 -0500971
Adrian Bunka73e22b2006-01-21 01:39:42 +0100972#if 0
James Ketrenosb095c382005-08-24 22:04:42 -0500973void ipw_led_activity_on(struct ipw_priv *priv)
974{
975 unsigned long flags;
976 spin_lock_irqsave(&priv->lock, flags);
977 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500978 spin_unlock_irqrestore(&priv->lock, flags);
979}
Adrian Bunka73e22b2006-01-21 01:39:42 +0100980#endif /* 0 */
James Ketrenosa613bff2005-08-24 21:43:11 -0500981
Adrian Bunka73e22b2006-01-21 01:39:42 +0100982static void ipw_led_activity_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500983{
984 unsigned long flags;
985 u32 led;
986
987 if (priv->config & CFG_NO_LED)
988 return;
989
990 spin_lock_irqsave(&priv->lock, flags);
991
992 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500993 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500994 led &= priv->led_activity_off;
995
996 led = ipw_register_toggle(led);
997
998 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500999 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001000
1001 IPW_DEBUG_LED("Activity LED Off\n");
1002
1003 priv->status &= ~STATUS_LED_ACT_ON;
1004 }
1005
1006 spin_unlock_irqrestore(&priv->lock, flags);
1007}
1008
David Howellsc4028952006-11-22 14:57:56 +00001009static void ipw_bg_led_activity_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05001010{
David Howellsc4028952006-11-22 14:57:56 +00001011 struct ipw_priv *priv =
1012 container_of(work, struct ipw_priv, led_act_off.work);
Zhu Yi46441512006-01-24 16:37:59 +08001013 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00001014 ipw_led_activity_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +08001015 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001016}
1017
Adrian Bunka73e22b2006-01-21 01:39:42 +01001018static void ipw_led_band_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001019{
1020 unsigned long flags;
1021 u32 led;
1022
1023 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -05001024 if (priv->config & CFG_NO_LED ||
1025 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -05001026 return;
1027
1028 spin_lock_irqsave(&priv->lock, flags);
1029
James Ketrenosb095c382005-08-24 22:04:42 -05001030 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001031 if (priv->assoc_network->mode == IEEE_A) {
1032 led |= priv->led_ofdm_on;
1033 led &= priv->led_association_off;
1034 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
1035 } else if (priv->assoc_network->mode == IEEE_G) {
1036 led |= priv->led_ofdm_on;
1037 led |= priv->led_association_on;
1038 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
1039 } else {
1040 led &= priv->led_ofdm_off;
1041 led |= priv->led_association_on;
1042 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
1043 }
1044
1045 led = ipw_register_toggle(led);
1046
1047 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001048 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001049
1050 spin_unlock_irqrestore(&priv->lock, flags);
1051}
1052
Adrian Bunka73e22b2006-01-21 01:39:42 +01001053static void ipw_led_band_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001054{
1055 unsigned long flags;
1056 u32 led;
1057
1058 /* Only nic type 1 supports mode LEDs */
1059 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
1060 return;
1061
1062 spin_lock_irqsave(&priv->lock, flags);
1063
James Ketrenosb095c382005-08-24 22:04:42 -05001064 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001065 led &= priv->led_ofdm_off;
1066 led &= priv->led_association_off;
1067
1068 led = ipw_register_toggle(led);
1069
1070 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001071 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001072
1073 spin_unlock_irqrestore(&priv->lock, flags);
1074}
1075
Adrian Bunka73e22b2006-01-21 01:39:42 +01001076static void ipw_led_radio_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001077{
1078 ipw_led_link_on(priv);
1079}
1080
Adrian Bunka73e22b2006-01-21 01:39:42 +01001081static void ipw_led_radio_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001082{
1083 ipw_led_activity_off(priv);
1084 ipw_led_link_off(priv);
1085}
1086
Adrian Bunka73e22b2006-01-21 01:39:42 +01001087static void ipw_led_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001088{
1089 /* Set the Link Led on for all nic types */
1090 ipw_led_link_on(priv);
1091}
1092
Adrian Bunka73e22b2006-01-21 01:39:42 +01001093static void ipw_led_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001094{
1095 ipw_led_activity_off(priv);
1096 ipw_led_link_off(priv);
1097
1098 if (priv->status & STATUS_RF_KILL_MASK)
1099 ipw_led_radio_off(priv);
1100}
1101
Adrian Bunka73e22b2006-01-21 01:39:42 +01001102static void ipw_led_init(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001103{
1104 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
1105
1106 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001107 priv->led_activity_on = IPW_ACTIVITY_LED;
1108 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001109
James Ketrenosb095c382005-08-24 22:04:42 -05001110 priv->led_association_on = IPW_ASSOCIATED_LED;
1111 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001112
1113 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001114 priv->led_ofdm_on = IPW_OFDM_LED;
1115 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001116
1117 switch (priv->nic_type) {
1118 case EEPROM_NIC_TYPE_1:
1119 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -05001120 priv->led_activity_on = IPW_ASSOCIATED_LED;
1121 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
1122 priv->led_association_on = IPW_ACTIVITY_LED;
1123 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001124
1125 if (!(priv->config & CFG_NO_LED))
1126 ipw_led_band_on(priv);
1127
1128 /* And we don't blink link LEDs for this nic, so
1129 * just return here */
1130 return;
1131
1132 case EEPROM_NIC_TYPE_3:
1133 case EEPROM_NIC_TYPE_2:
1134 case EEPROM_NIC_TYPE_4:
1135 case EEPROM_NIC_TYPE_0:
1136 break;
1137
1138 default:
1139 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1140 priv->nic_type);
1141 priv->nic_type = EEPROM_NIC_TYPE_0;
1142 break;
1143 }
1144
1145 if (!(priv->config & CFG_NO_LED)) {
1146 if (priv->status & STATUS_ASSOCIATED)
1147 ipw_led_link_on(priv);
1148 else
1149 ipw_led_link_off(priv);
1150 }
1151}
1152
Adrian Bunka73e22b2006-01-21 01:39:42 +01001153static void ipw_led_shutdown(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001154{
James Ketrenosa613bff2005-08-24 21:43:11 -05001155 ipw_led_activity_off(priv);
1156 ipw_led_link_off(priv);
1157 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001158 cancel_delayed_work(&priv->led_link_on);
1159 cancel_delayed_work(&priv->led_link_off);
1160 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001161}
1162
James Ketrenos43f66a62005-03-25 12:31:53 -06001163/*
1164 * The following adds a new attribute to the sysfs representation
1165 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1166 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001167 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001168 * See the level definitions in ipw for details.
1169 */
1170static ssize_t show_debug_level(struct device_driver *d, char *buf)
1171{
1172 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1173}
James Ketrenosa613bff2005-08-24 21:43:11 -05001174
1175static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1176 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001177{
1178 char *p = (char *)buf;
1179 u32 val;
1180
1181 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1182 p++;
1183 if (p[0] == 'x' || p[0] == 'X')
1184 p++;
1185 val = simple_strtoul(p, &p, 16);
1186 } else
1187 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001188 if (p == buf)
1189 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001190 ": %s is not in hex or decimal form.\n", buf);
1191 else
1192 ipw_debug_level = val;
1193
1194 return strnlen(buf, count);
1195}
1196
Jeff Garzikbf794512005-07-31 13:07:26 -04001197static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001198 show_debug_level, store_debug_level);
1199
James Ketrenosb39860c2005-08-12 09:36:32 -05001200static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1201{
Zhu Yic8fe6672006-01-24 16:36:36 +08001202 /* length = 1st dword in log */
James Ketrenosb39860c2005-08-12 09:36:32 -05001203 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1204}
1205
1206static void ipw_capture_event_log(struct ipw_priv *priv,
1207 u32 log_len, struct ipw_event *log)
1208{
1209 u32 base;
1210
1211 if (log_len) {
1212 base = ipw_read32(priv, IPW_EVENT_LOG);
1213 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1214 (u8 *) log, sizeof(*log) * log_len);
1215 }
1216}
1217
1218static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1219{
1220 struct ipw_fw_error *error;
1221 u32 log_len = ipw_get_event_log_len(priv);
1222 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1223 u32 elem_len = ipw_read_reg32(priv, base);
1224
1225 error = kmalloc(sizeof(*error) +
1226 sizeof(*error->elem) * elem_len +
1227 sizeof(*error->log) * log_len, GFP_ATOMIC);
1228 if (!error) {
1229 IPW_ERROR("Memory allocation for firmware error log "
1230 "failed.\n");
1231 return NULL;
1232 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001233 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001234 error->status = priv->status;
1235 error->config = priv->config;
1236 error->elem_len = elem_len;
1237 error->log_len = log_len;
1238 error->elem = (struct ipw_error_elem *)error->payload;
Zhu Yi3b26b112005-11-17 13:58:30 +08001239 error->log = (struct ipw_event *)(error->elem + elem_len);
James Ketrenosb39860c2005-08-12 09:36:32 -05001240
1241 ipw_capture_event_log(priv, log_len, error->log);
1242
1243 if (elem_len)
1244 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1245 sizeof(*error->elem) * elem_len);
1246
1247 return error;
1248}
1249
James Ketrenosb39860c2005-08-12 09:36:32 -05001250static ssize_t show_event_log(struct device *d,
1251 struct device_attribute *attr, char *buf)
1252{
1253 struct ipw_priv *priv = dev_get_drvdata(d);
1254 u32 log_len = ipw_get_event_log_len(priv);
Reinette Chatre412e9e72007-12-18 22:01:02 -08001255 u32 log_size;
1256 struct ipw_event *log;
James Ketrenosb39860c2005-08-12 09:36:32 -05001257 u32 len = 0, i;
1258
Reinette Chatre412e9e72007-12-18 22:01:02 -08001259 /* not using min() because of its strict type checking */
1260 log_size = PAGE_SIZE / sizeof(*log) > log_len ?
1261 sizeof(*log) * log_len : PAGE_SIZE;
1262 log = kzalloc(log_size, GFP_KERNEL);
1263 if (!log) {
1264 IPW_ERROR("Unable to allocate memory for log\n");
1265 return 0;
1266 }
1267 log_len = log_size / sizeof(*log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001268 ipw_capture_event_log(priv, log_len, log);
1269
1270 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1271 for (i = 0; i < log_len; i++)
1272 len += snprintf(buf + len, PAGE_SIZE - len,
1273 "\n%08X%08X%08X",
1274 log[i].time, log[i].event, log[i].data);
1275 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
Reinette Chatre412e9e72007-12-18 22:01:02 -08001276 kfree(log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001277 return len;
1278}
1279
1280static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1281
1282static ssize_t show_error(struct device *d,
1283 struct device_attribute *attr, char *buf)
1284{
1285 struct ipw_priv *priv = dev_get_drvdata(d);
1286 u32 len = 0, i;
1287 if (!priv->error)
1288 return 0;
1289 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001290 "%08lX%08X%08X%08X",
1291 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001292 priv->error->status,
1293 priv->error->config, priv->error->elem_len);
1294 for (i = 0; i < priv->error->elem_len; i++)
1295 len += snprintf(buf + len, PAGE_SIZE - len,
1296 "\n%08X%08X%08X%08X%08X%08X%08X",
1297 priv->error->elem[i].time,
1298 priv->error->elem[i].desc,
1299 priv->error->elem[i].blink1,
1300 priv->error->elem[i].blink2,
1301 priv->error->elem[i].link1,
1302 priv->error->elem[i].link2,
1303 priv->error->elem[i].data);
1304
1305 len += snprintf(buf + len, PAGE_SIZE - len,
1306 "\n%08X", priv->error->log_len);
1307 for (i = 0; i < priv->error->log_len; i++)
1308 len += snprintf(buf + len, PAGE_SIZE - len,
1309 "\n%08X%08X%08X",
1310 priv->error->log[i].time,
1311 priv->error->log[i].event,
1312 priv->error->log[i].data);
1313 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1314 return len;
1315}
1316
1317static ssize_t clear_error(struct device *d,
1318 struct device_attribute *attr,
1319 const char *buf, size_t count)
1320{
1321 struct ipw_priv *priv = dev_get_drvdata(d);
Jesper Juhl8f760782006-06-27 02:55:06 -07001322
1323 kfree(priv->error);
1324 priv->error = NULL;
James Ketrenosb39860c2005-08-12 09:36:32 -05001325 return count;
1326}
1327
1328static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1329
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001330static ssize_t show_cmd_log(struct device *d,
1331 struct device_attribute *attr, char *buf)
1332{
1333 struct ipw_priv *priv = dev_get_drvdata(d);
1334 u32 len = 0, i;
1335 if (!priv->cmdlog)
1336 return 0;
1337 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1338 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1339 i = (i + 1) % priv->cmdlog_len) {
1340 len +=
1341 snprintf(buf + len, PAGE_SIZE - len,
1342 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1343 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1344 priv->cmdlog[i].cmd.len);
1345 len +=
1346 snprintk_buf(buf + len, PAGE_SIZE - len,
1347 (u8 *) priv->cmdlog[i].cmd.param,
1348 priv->cmdlog[i].cmd.len);
1349 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1350 }
1351 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1352 return len;
1353}
1354
1355static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1356
Zhu Yid685b8c2006-04-13 17:20:27 +08001357#ifdef CONFIG_IPW2200_PROMISCUOUS
1358static void ipw_prom_free(struct ipw_priv *priv);
1359static int ipw_prom_alloc(struct ipw_priv *priv);
1360static ssize_t store_rtap_iface(struct device *d,
1361 struct device_attribute *attr,
1362 const char *buf, size_t count)
1363{
1364 struct ipw_priv *priv = dev_get_drvdata(d);
1365 int rc = 0;
1366
1367 if (count < 1)
1368 return -EINVAL;
1369
1370 switch (buf[0]) {
1371 case '0':
1372 if (!rtap_iface)
1373 return count;
1374
1375 if (netif_running(priv->prom_net_dev)) {
1376 IPW_WARNING("Interface is up. Cannot unregister.\n");
1377 return count;
1378 }
1379
1380 ipw_prom_free(priv);
1381 rtap_iface = 0;
1382 break;
1383
1384 case '1':
1385 if (rtap_iface)
1386 return count;
1387
1388 rc = ipw_prom_alloc(priv);
1389 if (!rc)
1390 rtap_iface = 1;
1391 break;
1392
1393 default:
1394 return -EINVAL;
1395 }
1396
1397 if (rc) {
1398 IPW_ERROR("Failed to register promiscuous network "
1399 "device (error %d).\n", rc);
1400 }
1401
1402 return count;
1403}
1404
1405static ssize_t show_rtap_iface(struct device *d,
1406 struct device_attribute *attr,
1407 char *buf)
1408{
1409 struct ipw_priv *priv = dev_get_drvdata(d);
1410 if (rtap_iface)
1411 return sprintf(buf, "%s", priv->prom_net_dev->name);
1412 else {
1413 buf[0] = '-';
1414 buf[1] = '1';
1415 buf[2] = '\0';
1416 return 3;
1417 }
1418}
1419
1420static DEVICE_ATTR(rtap_iface, S_IWUSR | S_IRUSR, show_rtap_iface,
1421 store_rtap_iface);
1422
1423static ssize_t store_rtap_filter(struct device *d,
1424 struct device_attribute *attr,
1425 const char *buf, size_t count)
1426{
1427 struct ipw_priv *priv = dev_get_drvdata(d);
1428
1429 if (!priv->prom_priv) {
1430 IPW_ERROR("Attempting to set filter without "
1431 "rtap_iface enabled.\n");
1432 return -EPERM;
1433 }
1434
1435 priv->prom_priv->filter = simple_strtol(buf, NULL, 0);
1436
1437 IPW_DEBUG_INFO("Setting rtap filter to " BIT_FMT16 "\n",
1438 BIT_ARG16(priv->prom_priv->filter));
1439
1440 return count;
1441}
1442
1443static ssize_t show_rtap_filter(struct device *d,
1444 struct device_attribute *attr,
1445 char *buf)
1446{
1447 struct ipw_priv *priv = dev_get_drvdata(d);
1448 return sprintf(buf, "0x%04X",
1449 priv->prom_priv ? priv->prom_priv->filter : 0);
1450}
1451
1452static DEVICE_ATTR(rtap_filter, S_IWUSR | S_IRUSR, show_rtap_filter,
1453 store_rtap_filter);
1454#endif
1455
James Ketrenosa613bff2005-08-24 21:43:11 -05001456static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1457 char *buf)
1458{
1459 struct ipw_priv *priv = dev_get_drvdata(d);
1460 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1461}
1462
1463static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1464 const char *buf, size_t count)
1465{
1466 struct ipw_priv *priv = dev_get_drvdata(d);
1467 struct net_device *dev = priv->net_dev;
1468 char buffer[] = "00000000";
1469 unsigned long len =
1470 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1471 unsigned long val;
1472 char *p = buffer;
1473
1474 IPW_DEBUG_INFO("enter\n");
1475
1476 strncpy(buffer, buf, len);
1477 buffer[len] = 0;
1478
1479 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1480 p++;
1481 if (p[0] == 'x' || p[0] == 'X')
1482 p++;
1483 val = simple_strtoul(p, &p, 16);
1484 } else
1485 val = simple_strtoul(p, &p, 10);
1486 if (p == buffer) {
1487 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1488 } else {
1489 priv->ieee->scan_age = val;
1490 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1491 }
1492
1493 IPW_DEBUG_INFO("exit\n");
1494 return len;
1495}
1496
1497static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1498
1499static ssize_t show_led(struct device *d, struct device_attribute *attr,
1500 char *buf)
1501{
1502 struct ipw_priv *priv = dev_get_drvdata(d);
1503 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1504}
1505
1506static ssize_t store_led(struct device *d, struct device_attribute *attr,
1507 const char *buf, size_t count)
1508{
1509 struct ipw_priv *priv = dev_get_drvdata(d);
1510
1511 IPW_DEBUG_INFO("enter\n");
1512
1513 if (count == 0)
1514 return 0;
1515
1516 if (*buf == 0) {
1517 IPW_DEBUG_LED("Disabling LED control.\n");
1518 priv->config |= CFG_NO_LED;
1519 ipw_led_shutdown(priv);
1520 } else {
1521 IPW_DEBUG_LED("Enabling LED control.\n");
1522 priv->config &= ~CFG_NO_LED;
1523 ipw_led_init(priv);
1524 }
1525
1526 IPW_DEBUG_INFO("exit\n");
1527 return count;
1528}
1529
1530static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1531
Andrew Mortonad3fee52005-06-20 14:30:36 -07001532static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001533 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001534{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001535 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001536 return sprintf(buf, "0x%08x\n", (int)p->status);
1537}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001538
James Ketrenos43f66a62005-03-25 12:31:53 -06001539static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1540
Andrew Mortonad3fee52005-06-20 14:30:36 -07001541static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1542 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001543{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001544 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001545 return sprintf(buf, "0x%08x\n", (int)p->config);
1546}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001547
James Ketrenos43f66a62005-03-25 12:31:53 -06001548static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1549
Andrew Mortonad3fee52005-06-20 14:30:36 -07001550static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001551 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001552{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001553 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosa613bff2005-08-24 21:43:11 -05001554 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001555}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001556
James Ketrenos43f66a62005-03-25 12:31:53 -06001557static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1558
Andrew Mortonad3fee52005-06-20 14:30:36 -07001559static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001560 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001561{
1562 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001563 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001564
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001565 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001566 return 0;
1567
1568 return sprintf(buf, "0x%08x\n", tmp);
1569}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001570
1571static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001572
Andrew Mortonad3fee52005-06-20 14:30:36 -07001573static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1574 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001575{
1576 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001577 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001578
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001579 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001580 return 0;
1581
1582 return sprintf(buf, "0x%08x\n", tmp);
1583}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001584
1585static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001586
1587/*
1588 * Add a device attribute to view/control the delay between eeprom
1589 * operations.
1590 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001591static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001592 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001593{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001594 struct ipw_priv *p = dev_get_drvdata(d);
1595 int n = p->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001596 return sprintf(buf, "%i\n", n);
1597}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001598static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001599 struct device_attribute *attr,
1600 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001601{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001602 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001603 sscanf(buf, "%i", &p->eeprom_delay);
1604 return strnlen(buf, count);
1605}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001606
1607static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1608 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001609
Andrew Mortonad3fee52005-06-20 14:30:36 -07001610static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001611 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001612{
1613 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001614 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001615
James Ketrenosb095c382005-08-24 22:04:42 -05001616 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001617 return sprintf(buf, "0x%08x\n", reg);
1618}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001619static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001620 struct device_attribute *attr,
1621 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001622{
1623 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001624 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001625
1626 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001627 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001628 return strnlen(buf, count);
1629}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001630
1631static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1632 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001633
Andrew Mortonad3fee52005-06-20 14:30:36 -07001634static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001635 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001636{
1637 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001638 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001639
1640 reg = ipw_read_reg32(p, 0x301100);
1641 return sprintf(buf, "0x%08x\n", reg);
1642}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001643static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001644 struct device_attribute *attr,
1645 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001646{
1647 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001648 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001649
1650 sscanf(buf, "%x", &reg);
1651 ipw_write_reg32(p, 0x301100, reg);
1652 return strnlen(buf, count);
1653}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001654
1655static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1656 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001657
Andrew Mortonad3fee52005-06-20 14:30:36 -07001658static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001659 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001660{
1661 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001662 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001663
Jeff Garzikbf794512005-07-31 13:07:26 -04001664 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001665 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001666 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001667 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001668
James Ketrenos43f66a62005-03-25 12:31:53 -06001669 return sprintf(buf, "0x%08x\n", reg);
1670}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001671static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001672 struct device_attribute *attr,
1673 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001674{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001675 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001676
1677 sscanf(buf, "%x", &priv->indirect_dword);
1678 priv->status |= STATUS_INDIRECT_DWORD;
1679 return strnlen(buf, count);
1680}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001681
1682static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1683 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001684
Andrew Mortonad3fee52005-06-20 14:30:36 -07001685static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001686 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001687{
1688 u8 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001689 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001690
Jeff Garzikbf794512005-07-31 13:07:26 -04001691 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001692 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001693 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001694 reg = 0;
1695
1696 return sprintf(buf, "0x%02x\n", reg);
1697}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001698static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001699 struct device_attribute *attr,
1700 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001701{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001702 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001703
1704 sscanf(buf, "%x", &priv->indirect_byte);
1705 priv->status |= STATUS_INDIRECT_BYTE;
1706 return strnlen(buf, count);
1707}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001708
1709static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001710 show_indirect_byte, store_indirect_byte);
1711
Andrew Mortonad3fee52005-06-20 14:30:36 -07001712static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001713 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001714{
1715 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001716 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001717
Jeff Garzikbf794512005-07-31 13:07:26 -04001718 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001719 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001720 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001721 reg = 0;
1722
1723 return sprintf(buf, "0x%08x\n", reg);
1724}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001725static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001726 struct device_attribute *attr,
1727 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001728{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001729 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001730
1731 sscanf(buf, "%x", &priv->direct_dword);
1732 priv->status |= STATUS_DIRECT_DWORD;
1733 return strnlen(buf, count);
1734}
James Ketrenos43f66a62005-03-25 12:31:53 -06001735
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001736static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1737 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001738
Arjan van de Ven858119e2006-01-14 13:20:43 -08001739static int rf_kill_active(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06001740{
1741 if (0 == (ipw_read32(priv, 0x30) & 0x10000))
1742 priv->status |= STATUS_RF_KILL_HW;
1743 else
1744 priv->status &= ~STATUS_RF_KILL_HW;
1745
1746 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1747}
1748
Andrew Mortonad3fee52005-06-20 14:30:36 -07001749static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001750 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001751{
1752 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001753 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001754 2 - HW based RF kill active
1755 3 - Both HW and SW baed RF kill active */
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001756 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001757 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001758 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001759 return sprintf(buf, "%i\n", val);
1760}
1761
1762static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1763{
Jeff Garzikbf794512005-07-31 13:07:26 -04001764 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001765 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001766 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001767
1768 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1769 disable_radio ? "OFF" : "ON");
1770
1771 if (disable_radio) {
1772 priv->status |= STATUS_RF_KILL_SW;
1773
Dan Williams0b531672007-10-09 13:55:24 -04001774 if (priv->workqueue) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001775 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04001776 cancel_delayed_work(&priv->request_direct_scan);
1777 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04001778 cancel_delayed_work(&priv->scan_event);
1779 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001780 queue_work(priv->workqueue, &priv->down);
1781 } else {
1782 priv->status &= ~STATUS_RF_KILL_SW;
1783 if (rf_kill_active(priv)) {
1784 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1785 "disabled by HW switch\n");
1786 /* Make sure the RF_KILL check timer is running */
1787 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001788 queue_delayed_work(priv->workqueue, &priv->rf_kill,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05001789 round_jiffies_relative(2 * HZ));
Jeff Garzikbf794512005-07-31 13:07:26 -04001790 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001791 queue_work(priv->workqueue, &priv->up);
1792 }
1793
1794 return 1;
1795}
1796
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001797static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1798 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001799{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001800 struct ipw_priv *priv = dev_get_drvdata(d);
Jeff Garzikbf794512005-07-31 13:07:26 -04001801
James Ketrenos43f66a62005-03-25 12:31:53 -06001802 ipw_radio_kill_sw(priv, buf[0] == '1');
1803
1804 return count;
1805}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001806
1807static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001808
James Ketrenosb095c382005-08-24 22:04:42 -05001809static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1810 char *buf)
1811{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001812 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001813 int pos = 0, len = 0;
1814 if (priv->config & CFG_SPEED_SCAN) {
1815 while (priv->speed_scan[pos] != 0)
1816 len += sprintf(&buf[len], "%d ",
1817 priv->speed_scan[pos++]);
1818 return len + sprintf(&buf[len], "\n");
1819 }
1820
1821 return sprintf(buf, "0\n");
1822}
1823
1824static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1825 const char *buf, size_t count)
1826{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001827 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001828 int channel, pos = 0;
1829 const char *p = buf;
1830
1831 /* list of space separated channels to scan, optionally ending with 0 */
1832 while ((channel = simple_strtol(p, NULL, 0))) {
1833 if (pos == MAX_SPEED_SCAN - 1) {
1834 priv->speed_scan[pos] = 0;
1835 break;
1836 }
1837
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001838 if (libipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001839 priv->speed_scan[pos++] = channel;
1840 else
1841 IPW_WARNING("Skipping invalid channel request: %d\n",
1842 channel);
1843 p = strchr(p, ' ');
1844 if (!p)
1845 break;
1846 while (*p == ' ' || *p == '\t')
1847 p++;
1848 }
1849
1850 if (pos == 0)
1851 priv->config &= ~CFG_SPEED_SCAN;
1852 else {
1853 priv->speed_scan_pos = 0;
1854 priv->config |= CFG_SPEED_SCAN;
1855 }
1856
1857 return count;
1858}
1859
1860static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1861 store_speed_scan);
1862
1863static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1864 char *buf)
1865{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001866 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001867 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1868}
1869
1870static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1871 const char *buf, size_t count)
1872{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001873 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001874 if (buf[0] == '1')
1875 priv->config |= CFG_NET_STATS;
1876 else
1877 priv->config &= ~CFG_NET_STATS;
1878
1879 return count;
1880}
1881
James Ketrenosafbf30a2005-08-25 00:05:33 -05001882static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1883 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001884
Zhu Yi375dd242007-02-14 16:04:24 +08001885static ssize_t show_channels(struct device *d,
1886 struct device_attribute *attr,
1887 char *buf)
1888{
1889 struct ipw_priv *priv = dev_get_drvdata(d);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001890 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi375dd242007-02-14 16:04:24 +08001891 int len = 0, i;
1892
1893 len = sprintf(&buf[len],
1894 "Displaying %d channels in 2.4Ghz band "
1895 "(802.11bg):\n", geo->bg_channels);
1896
1897 for (i = 0; i < geo->bg_channels; i++) {
1898 len += sprintf(&buf[len], "%d: BSS%s%s, %s, Band %s.\n",
1899 geo->bg[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001900 geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001901 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001902 ((geo->bg[i].flags & LIBIPW_CH_NO_IBSS) ||
1903 (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001904 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001905 geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001906 "passive only" : "active/passive",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001907 geo->bg[i].flags & LIBIPW_CH_B_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001908 "B" : "B/G");
1909 }
1910
1911 len += sprintf(&buf[len],
1912 "Displaying %d channels in 5.2Ghz band "
1913 "(802.11a):\n", geo->a_channels);
1914 for (i = 0; i < geo->a_channels; i++) {
1915 len += sprintf(&buf[len], "%d: BSS%s%s, %s.\n",
1916 geo->a[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001917 geo->a[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001918 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001919 ((geo->a[i].flags & LIBIPW_CH_NO_IBSS) ||
1920 (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001921 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001922 geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001923 "passive only" : "active/passive");
1924 }
1925
1926 return len;
1927}
1928
1929static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
1930
James Ketrenosea2b26e2005-08-24 21:25:16 -05001931static void notify_wx_assoc_event(struct ipw_priv *priv)
1932{
1933 union iwreq_data wrqu;
1934 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1935 if (priv->status & STATUS_ASSOCIATED)
1936 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1937 else
1938 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1939 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1940}
1941
James Ketrenos43f66a62005-03-25 12:31:53 -06001942static void ipw_irq_tasklet(struct ipw_priv *priv)
1943{
1944 u32 inta, inta_mask, handled = 0;
1945 unsigned long flags;
1946 int rc = 0;
1947
Zhu Yi89c318e2006-06-08 22:19:49 -07001948 spin_lock_irqsave(&priv->irq_lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001949
James Ketrenosb095c382005-08-24 22:04:42 -05001950 inta = ipw_read32(priv, IPW_INTA_RW);
1951 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1952 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001953
1954 /* Add any cached INTA values that need to be handled */
1955 inta |= priv->isr_inta;
1956
Zhu Yi89c318e2006-06-08 22:19:49 -07001957 spin_unlock_irqrestore(&priv->irq_lock, flags);
1958
1959 spin_lock_irqsave(&priv->lock, flags);
1960
James Ketrenos43f66a62005-03-25 12:31:53 -06001961 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001962 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001963 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001964 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001965 }
1966
James Ketrenosb095c382005-08-24 22:04:42 -05001967 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001968 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001969 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001970 priv->status &= ~STATUS_HCMD_ACTIVE;
1971 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001972 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001973 }
1974
James Ketrenosb095c382005-08-24 22:04:42 -05001975 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001976 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001977 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05001978 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06001979 }
1980
James Ketrenosb095c382005-08-24 22:04:42 -05001981 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001982 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001983 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05001984 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06001985 }
1986
James Ketrenosb095c382005-08-24 22:04:42 -05001987 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001988 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001989 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05001990 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06001991 }
1992
James Ketrenosb095c382005-08-24 22:04:42 -05001993 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001994 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001995 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05001996 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06001997 }
1998
James Ketrenosb095c382005-08-24 22:04:42 -05001999 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002000 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002001 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002002 }
2003
James Ketrenosb095c382005-08-24 22:04:42 -05002004 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002005 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002006 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06002007 }
2008
James Ketrenosb095c382005-08-24 22:04:42 -05002009 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002010 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002011 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002012 }
2013
James Ketrenosb095c382005-08-24 22:04:42 -05002014 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002015 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002016 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002017 }
2018
James Ketrenosb095c382005-08-24 22:04:42 -05002019 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002020 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002021 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002022 }
2023
James Ketrenosb095c382005-08-24 22:04:42 -05002024 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002025 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
2026 priv->status |= STATUS_RF_KILL_HW;
2027 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05002028 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06002029 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04002030 cancel_delayed_work(&priv->request_direct_scan);
2031 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04002032 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -05002033 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06002034 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05002035 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002036 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002037
James Ketrenosb095c382005-08-24 22:04:42 -05002038 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002039 IPW_WARNING("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002040 if (priv->error) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002041 IPW_DEBUG_FW("Sysfs 'error' log already exists.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002042 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
2043 struct ipw_fw_error *error =
2044 ipw_alloc_error_log(priv);
2045 ipw_dump_error_log(priv, error);
Jesper Juhl8f760782006-06-27 02:55:06 -07002046 kfree(error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002047 }
James Ketrenosb39860c2005-08-12 09:36:32 -05002048 } else {
2049 priv->error = ipw_alloc_error_log(priv);
2050 if (priv->error)
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002051 IPW_DEBUG_FW("Sysfs 'error' log captured.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002052 else
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002053 IPW_DEBUG_FW("Error allocating sysfs 'error' "
2054 "log.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002055 if (ipw_debug_level & IPW_DL_FW_ERRORS)
2056 ipw_dump_error_log(priv, priv->error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002057 }
2058
James Ketrenosb095c382005-08-24 22:04:42 -05002059 /* XXX: If hardware encryption is for WPA/WPA2,
2060 * we have to notify the supplicant. */
2061 if (priv->ieee->sec.encrypt) {
2062 priv->status &= ~STATUS_ASSOCIATED;
2063 notify_wx_assoc_event(priv);
2064 }
2065
2066 /* Keep the restart process from trying to send host
2067 * commands by clearing the INIT status bit */
2068 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05002069
2070 /* Cancel currently queued command. */
2071 priv->status &= ~STATUS_HCMD_ACTIVE;
2072 wake_up_interruptible(&priv->wait_command_queue);
2073
James Ketrenos43f66a62005-03-25 12:31:53 -06002074 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05002075 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002076 }
2077
James Ketrenosb095c382005-08-24 22:04:42 -05002078 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002079 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002080 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002081 }
2082
2083 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002084 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06002085 }
2086
Zhu Yi89c318e2006-06-08 22:19:49 -07002087 spin_unlock_irqrestore(&priv->lock, flags);
2088
James Ketrenos43f66a62005-03-25 12:31:53 -06002089 /* enable all interrupts */
2090 ipw_enable_interrupts(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06002091}
Jeff Garzikbf794512005-07-31 13:07:26 -04002092
James Ketrenos43f66a62005-03-25 12:31:53 -06002093#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
2094static char *get_cmd_string(u8 cmd)
2095{
2096 switch (cmd) {
2097 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04002098 IPW_CMD(POWER_DOWN);
2099 IPW_CMD(SYSTEM_CONFIG);
2100 IPW_CMD(MULTICAST_ADDRESS);
2101 IPW_CMD(SSID);
2102 IPW_CMD(ADAPTER_ADDRESS);
2103 IPW_CMD(PORT_TYPE);
2104 IPW_CMD(RTS_THRESHOLD);
2105 IPW_CMD(FRAG_THRESHOLD);
2106 IPW_CMD(POWER_MODE);
2107 IPW_CMD(WEP_KEY);
2108 IPW_CMD(TGI_TX_KEY);
2109 IPW_CMD(SCAN_REQUEST);
2110 IPW_CMD(SCAN_REQUEST_EXT);
2111 IPW_CMD(ASSOCIATE);
2112 IPW_CMD(SUPPORTED_RATES);
2113 IPW_CMD(SCAN_ABORT);
2114 IPW_CMD(TX_FLUSH);
2115 IPW_CMD(QOS_PARAMETERS);
2116 IPW_CMD(DINO_CONFIG);
2117 IPW_CMD(RSN_CAPABILITIES);
2118 IPW_CMD(RX_KEY);
2119 IPW_CMD(CARD_DISABLE);
2120 IPW_CMD(SEED_NUMBER);
2121 IPW_CMD(TX_POWER);
2122 IPW_CMD(COUNTRY_INFO);
2123 IPW_CMD(AIRONET_INFO);
2124 IPW_CMD(AP_TX_POWER);
2125 IPW_CMD(CCKM_INFO);
2126 IPW_CMD(CCX_VER_INFO);
2127 IPW_CMD(SET_CALIBRATION);
2128 IPW_CMD(SENSITIVITY_CALIB);
2129 IPW_CMD(RETRY_LIMIT);
2130 IPW_CMD(IPW_PRE_POWER_DOWN);
2131 IPW_CMD(VAP_BEACON_TEMPLATE);
2132 IPW_CMD(VAP_DTIM_PERIOD);
2133 IPW_CMD(EXT_SUPPORTED_RATES);
2134 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
2135 IPW_CMD(VAP_QUIET_INTERVALS);
2136 IPW_CMD(VAP_CHANNEL_SWITCH);
2137 IPW_CMD(VAP_MANDATORY_CHANNELS);
2138 IPW_CMD(VAP_CELL_PWR_LIMIT);
2139 IPW_CMD(VAP_CF_PARAM_SET);
2140 IPW_CMD(VAP_SET_BEACONING_STATE);
2141 IPW_CMD(MEASUREMENT);
2142 IPW_CMD(POWER_CAPABILITY);
2143 IPW_CMD(SUPPORTED_CHANNELS);
2144 IPW_CMD(TPC_REPORT);
2145 IPW_CMD(WME_INFO);
2146 IPW_CMD(PRODUCTION_COMMAND);
2147 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06002148 return "UNKNOWN";
2149 }
2150}
James Ketrenos43f66a62005-03-25 12:31:53 -06002151
2152#define HOST_COMPLETE_TIMEOUT HZ
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002153
2154static int __ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
James Ketrenos43f66a62005-03-25 12:31:53 -06002155{
2156 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002157 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06002158
James Ketrenosa613bff2005-08-24 21:43:11 -05002159 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002160 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002161 IPW_ERROR("Failed to send %s: Already sending a command.\n",
2162 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002163 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002164 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06002165 }
2166
2167 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04002168
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002169 if (priv->cmdlog) {
2170 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
2171 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
2172 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
2173 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
2174 cmd->len);
2175 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
2176 }
2177
James Ketrenosb095c382005-08-24 22:04:42 -05002178 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
2179 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
2180 priv->status);
Zhu Yif516dbc2006-01-24 16:36:44 +08002181
2182#ifndef DEBUG_CMD_WEP_KEY
2183 if (cmd->cmd == IPW_CMD_WEP_KEY)
2184 IPW_DEBUG_HC("WEP_KEY command masked out for secure.\n");
2185 else
2186#endif
2187 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
2188
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002189 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05002190 if (rc) {
2191 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002192 IPW_ERROR("Failed to send %s: Reason %d\n",
2193 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05002194 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002195 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002196 }
2197 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002198
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002199 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
2200 !(priv->
2201 status & STATUS_HCMD_ACTIVE),
2202 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002203 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05002204 spin_lock_irqsave(&priv->lock, flags);
2205 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002206 IPW_ERROR("Failed to send %s: Command timed out.\n",
2207 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002208 priv->status &= ~STATUS_HCMD_ACTIVE;
2209 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002210 rc = -EIO;
2211 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002212 }
2213 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05002214 } else
2215 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002216
James Ketrenosb095c382005-08-24 22:04:42 -05002217 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002218 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
2219 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002220 rc = -EIO;
2221 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06002222 }
2223
Zhu Yi2638bc32006-01-24 16:37:52 +08002224 exit:
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002225 if (priv->cmdlog) {
2226 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
2227 priv->cmdlog_pos %= priv->cmdlog_len;
2228 }
2229 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06002230}
2231
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002232static int ipw_send_cmd_simple(struct ipw_priv *priv, u8 command)
James Ketrenos43f66a62005-03-25 12:31:53 -06002233{
2234 struct host_cmd cmd = {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002235 .cmd = command,
James Ketrenos43f66a62005-03-25 12:31:53 -06002236 };
2237
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002238 return __ipw_send_cmd(priv, &cmd);
2239}
2240
2241static int ipw_send_cmd_pdu(struct ipw_priv *priv, u8 command, u8 len,
2242 void *data)
2243{
2244 struct host_cmd cmd = {
2245 .cmd = command,
2246 .len = len,
2247 .param = data,
2248 };
2249
2250 return __ipw_send_cmd(priv, &cmd);
2251}
2252
2253static int ipw_send_host_complete(struct ipw_priv *priv)
2254{
James Ketrenos43f66a62005-03-25 12:31:53 -06002255 if (!priv) {
2256 IPW_ERROR("Invalid args\n");
2257 return -1;
2258 }
2259
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002260 return ipw_send_cmd_simple(priv, IPW_CMD_HOST_COMPLETE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002261}
2262
Zhu Yid685b8c2006-04-13 17:20:27 +08002263static int ipw_send_system_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002264{
Zhu Yid685b8c2006-04-13 17:20:27 +08002265 return ipw_send_cmd_pdu(priv, IPW_CMD_SYSTEM_CONFIG,
2266 sizeof(priv->sys_config),
2267 &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06002268}
2269
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002270static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002271{
James Ketrenos43f66a62005-03-25 12:31:53 -06002272 if (!priv || !ssid) {
2273 IPW_ERROR("Invalid args\n");
2274 return -1;
2275 }
2276
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002277 return ipw_send_cmd_pdu(priv, IPW_CMD_SSID, min(len, IW_ESSID_MAX_SIZE),
Zhu Yi2638bc32006-01-24 16:37:52 +08002278 ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06002279}
2280
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002281static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002282{
James Ketrenos43f66a62005-03-25 12:31:53 -06002283 if (!priv || !mac) {
2284 IPW_ERROR("Invalid args\n");
2285 return -1;
2286 }
2287
Johannes Berge1749612008-10-27 15:59:26 -07002288 IPW_DEBUG_INFO("%s: Setting MAC to %pM\n",
2289 priv->net_dev->name, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002290
Zhu Yi2638bc32006-01-24 16:37:52 +08002291 return ipw_send_cmd_pdu(priv, IPW_CMD_ADAPTER_ADDRESS, ETH_ALEN, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002292}
2293
James Ketrenosa613bff2005-08-24 21:43:11 -05002294/*
2295 * NOTE: This must be executed from our workqueue as it results in udelay
2296 * being called which may corrupt the keyboard if executed on default
2297 * workqueue
2298 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002299static void ipw_adapter_restart(void *adapter)
2300{
2301 struct ipw_priv *priv = adapter;
2302
2303 if (priv->status & STATUS_RF_KILL_MASK)
2304 return;
2305
2306 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002307
2308 if (priv->assoc_network &&
2309 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2310 ipw_remove_current_network(priv);
2311
James Ketrenos43f66a62005-03-25 12:31:53 -06002312 if (ipw_up(priv)) {
2313 IPW_ERROR("Failed to up device\n");
2314 return;
2315 }
2316}
2317
David Howellsc4028952006-11-22 14:57:56 +00002318static void ipw_bg_adapter_restart(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002319{
David Howellsc4028952006-11-22 14:57:56 +00002320 struct ipw_priv *priv =
2321 container_of(work, struct ipw_priv, adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08002322 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002323 ipw_adapter_restart(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002324 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002325}
2326
James Ketrenos43f66a62005-03-25 12:31:53 -06002327#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2328
2329static void ipw_scan_check(void *data)
2330{
2331 struct ipw_priv *priv = data;
2332 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2333 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Zhu Yic7b6a672006-01-24 16:37:05 +08002334 "adapter after (%dms).\n",
2335 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
James Ketrenosa613bff2005-08-24 21:43:11 -05002336 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002337 }
2338}
2339
David Howellsc4028952006-11-22 14:57:56 +00002340static void ipw_bg_scan_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002341{
David Howellsc4028952006-11-22 14:57:56 +00002342 struct ipw_priv *priv =
2343 container_of(work, struct ipw_priv, scan_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08002344 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002345 ipw_scan_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002346 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002347}
2348
James Ketrenos43f66a62005-03-25 12:31:53 -06002349static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2350 struct ipw_scan_request_ext *request)
2351{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002352 return ipw_send_cmd_pdu(priv, IPW_CMD_SCAN_REQUEST_EXT,
Zhu Yi2638bc32006-01-24 16:37:52 +08002353 sizeof(*request), request);
James Ketrenos43f66a62005-03-25 12:31:53 -06002354}
2355
2356static int ipw_send_scan_abort(struct ipw_priv *priv)
2357{
James Ketrenos43f66a62005-03-25 12:31:53 -06002358 if (!priv) {
2359 IPW_ERROR("Invalid args\n");
2360 return -1;
2361 }
2362
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002363 return ipw_send_cmd_simple(priv, IPW_CMD_SCAN_ABORT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002364}
2365
2366static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2367{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002368 struct ipw_sensitivity_calib calib = {
Zhu Yi851ca262006-08-21 11:37:58 +08002369 .beacon_rssi_raw = cpu_to_le16(sens),
James Ketrenos43f66a62005-03-25 12:31:53 -06002370 };
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002371
2372 return ipw_send_cmd_pdu(priv, IPW_CMD_SENSITIVITY_CALIB, sizeof(calib),
Zhu Yi2638bc32006-01-24 16:37:52 +08002373 &calib);
James Ketrenos43f66a62005-03-25 12:31:53 -06002374}
2375
2376static int ipw_send_associate(struct ipw_priv *priv,
2377 struct ipw_associate *associate)
2378{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002379 if (!priv || !associate) {
2380 IPW_ERROR("Invalid args\n");
2381 return -1;
2382 }
2383
Al Viro5b5e8072007-12-27 01:54:06 -05002384 return ipw_send_cmd_pdu(priv, IPW_CMD_ASSOCIATE, sizeof(*associate),
2385 associate);
James Ketrenos43f66a62005-03-25 12:31:53 -06002386}
2387
2388static int ipw_send_supported_rates(struct ipw_priv *priv,
2389 struct ipw_supported_rates *rates)
2390{
James Ketrenos43f66a62005-03-25 12:31:53 -06002391 if (!priv || !rates) {
2392 IPW_ERROR("Invalid args\n");
2393 return -1;
2394 }
2395
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002396 return ipw_send_cmd_pdu(priv, IPW_CMD_SUPPORTED_RATES, sizeof(*rates),
Zhu Yi2638bc32006-01-24 16:37:52 +08002397 rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06002398}
2399
2400static int ipw_set_random_seed(struct ipw_priv *priv)
2401{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002402 u32 val;
James Ketrenos43f66a62005-03-25 12:31:53 -06002403
2404 if (!priv) {
2405 IPW_ERROR("Invalid args\n");
2406 return -1;
2407 }
2408
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002409 get_random_bytes(&val, sizeof(val));
James Ketrenos43f66a62005-03-25 12:31:53 -06002410
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002411 return ipw_send_cmd_pdu(priv, IPW_CMD_SEED_NUMBER, sizeof(val), &val);
James Ketrenos43f66a62005-03-25 12:31:53 -06002412}
2413
James Ketrenos43f66a62005-03-25 12:31:53 -06002414static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2415{
Al Viroe62e1ee2007-12-27 01:36:46 -05002416 __le32 v = cpu_to_le32(phy_off);
James Ketrenos43f66a62005-03-25 12:31:53 -06002417 if (!priv) {
2418 IPW_ERROR("Invalid args\n");
2419 return -1;
2420 }
2421
Al Viroe62e1ee2007-12-27 01:36:46 -05002422 return ipw_send_cmd_pdu(priv, IPW_CMD_CARD_DISABLE, sizeof(v), &v);
James Ketrenos43f66a62005-03-25 12:31:53 -06002423}
James Ketrenos43f66a62005-03-25 12:31:53 -06002424
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002425static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002426{
James Ketrenos43f66a62005-03-25 12:31:53 -06002427 if (!priv || !power) {
2428 IPW_ERROR("Invalid args\n");
2429 return -1;
2430 }
2431
Zhu Yi2638bc32006-01-24 16:37:52 +08002432 return ipw_send_cmd_pdu(priv, IPW_CMD_TX_POWER, sizeof(*power), power);
James Ketrenos43f66a62005-03-25 12:31:53 -06002433}
James Ketrenos43f66a62005-03-25 12:31:53 -06002434
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002435static int ipw_set_tx_power(struct ipw_priv *priv)
2436{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002437 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002438 struct ipw_tx_power tx_power;
2439 s8 max_power;
2440 int i;
2441
2442 memset(&tx_power, 0, sizeof(tx_power));
2443
2444 /* configure device for 'G' band */
2445 tx_power.ieee_mode = IPW_G_MODE;
2446 tx_power.num_channels = geo->bg_channels;
2447 for (i = 0; i < geo->bg_channels; i++) {
2448 max_power = geo->bg[i].max_power;
2449 tx_power.channels_tx_power[i].channel_number =
2450 geo->bg[i].channel;
2451 tx_power.channels_tx_power[i].tx_power = max_power ?
2452 min(max_power, priv->tx_power) : priv->tx_power;
2453 }
2454 if (ipw_send_tx_power(priv, &tx_power))
2455 return -EIO;
2456
2457 /* configure device to also handle 'B' band */
2458 tx_power.ieee_mode = IPW_B_MODE;
2459 if (ipw_send_tx_power(priv, &tx_power))
2460 return -EIO;
2461
2462 /* configure device to also handle 'A' band */
2463 if (priv->ieee->abg_true) {
2464 tx_power.ieee_mode = IPW_A_MODE;
2465 tx_power.num_channels = geo->a_channels;
2466 for (i = 0; i < tx_power.num_channels; i++) {
2467 max_power = geo->a[i].max_power;
2468 tx_power.channels_tx_power[i].channel_number =
2469 geo->a[i].channel;
2470 tx_power.channels_tx_power[i].tx_power = max_power ?
2471 min(max_power, priv->tx_power) : priv->tx_power;
2472 }
2473 if (ipw_send_tx_power(priv, &tx_power))
2474 return -EIO;
2475 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002476 return 0;
2477}
2478
2479static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2480{
2481 struct ipw_rts_threshold rts_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002482 .rts_threshold = cpu_to_le16(rts),
James Ketrenos43f66a62005-03-25 12:31:53 -06002483 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002484
2485 if (!priv) {
2486 IPW_ERROR("Invalid args\n");
2487 return -1;
2488 }
2489
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002490 return ipw_send_cmd_pdu(priv, IPW_CMD_RTS_THRESHOLD,
2491 sizeof(rts_threshold), &rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002492}
2493
2494static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2495{
2496 struct ipw_frag_threshold frag_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002497 .frag_threshold = cpu_to_le16(frag),
James Ketrenos43f66a62005-03-25 12:31:53 -06002498 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002499
2500 if (!priv) {
2501 IPW_ERROR("Invalid args\n");
2502 return -1;
2503 }
2504
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002505 return ipw_send_cmd_pdu(priv, IPW_CMD_FRAG_THRESHOLD,
2506 sizeof(frag_threshold), &frag_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002507}
2508
2509static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2510{
Al Viroe62e1ee2007-12-27 01:36:46 -05002511 __le32 param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002512
2513 if (!priv) {
2514 IPW_ERROR("Invalid args\n");
2515 return -1;
2516 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002517
James Ketrenos43f66a62005-03-25 12:31:53 -06002518 /* If on battery, set to 3, if AC set to CAM, else user
2519 * level */
2520 switch (mode) {
2521 case IPW_POWER_BATTERY:
Al Viroe62e1ee2007-12-27 01:36:46 -05002522 param = cpu_to_le32(IPW_POWER_INDEX_3);
James Ketrenos43f66a62005-03-25 12:31:53 -06002523 break;
2524 case IPW_POWER_AC:
Al Viroe62e1ee2007-12-27 01:36:46 -05002525 param = cpu_to_le32(IPW_POWER_MODE_CAM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002526 break;
2527 default:
Al Viroe62e1ee2007-12-27 01:36:46 -05002528 param = cpu_to_le32(mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06002529 break;
2530 }
2531
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002532 return ipw_send_cmd_pdu(priv, IPW_CMD_POWER_MODE, sizeof(param),
Zhu Yi2638bc32006-01-24 16:37:52 +08002533 &param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002534}
2535
James Ketrenosafbf30a2005-08-25 00:05:33 -05002536static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2537{
2538 struct ipw_retry_limit retry_limit = {
2539 .short_retry_limit = slimit,
2540 .long_retry_limit = llimit
2541 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05002542
2543 if (!priv) {
2544 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002545 return -1;
2546 }
2547
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002548 return ipw_send_cmd_pdu(priv, IPW_CMD_RETRY_LIMIT, sizeof(retry_limit),
Zhu Yi2638bc32006-01-24 16:37:52 +08002549 &retry_limit);
James Ketrenos43f66a62005-03-25 12:31:53 -06002550}
2551
2552/*
2553 * The IPW device contains a Microwire compatible EEPROM that stores
2554 * various data like the MAC address. Usually the firmware has exclusive
2555 * access to the eeprom, but during device initialization (before the
2556 * device driver has sent the HostComplete command to the firmware) the
2557 * device driver has read access to the EEPROM by way of indirect addressing
2558 * through a couple of memory mapped registers.
2559 *
2560 * The following is a simplified implementation for pulling data out of the
2561 * the eeprom, along with some helper functions to find information in
2562 * the per device private data's copy of the eeprom.
2563 *
2564 * NOTE: To better understand how these functions work (i.e what is a chip
2565 * select and why do have to keep driving the eeprom clock?), read
2566 * just about any data sheet for a Microwire compatible EEPROM.
2567 */
2568
2569/* write a 32 bit value into the indirect accessor register */
2570static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2571{
2572 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002573
James Ketrenos43f66a62005-03-25 12:31:53 -06002574 /* the eeprom requires some time to complete the operation */
2575 udelay(p->eeprom_delay);
2576
2577 return;
2578}
2579
2580/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002581static void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002582{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002583 eeprom_write_reg(priv, 0);
2584 eeprom_write_reg(priv, EEPROM_BIT_CS);
2585 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2586 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002587}
2588
2589/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002590static void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002591{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002592 eeprom_write_reg(priv, EEPROM_BIT_CS);
2593 eeprom_write_reg(priv, 0);
2594 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002595}
2596
2597/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002598static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002599{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002600 int d = (bit ? EEPROM_BIT_DI : 0);
2601 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2602 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002603}
2604
2605/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002606static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002607{
2608 int i;
2609
2610 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002611 eeprom_write_bit(priv, 1);
2612 eeprom_write_bit(priv, op & 2);
2613 eeprom_write_bit(priv, op & 1);
2614 for (i = 7; i >= 0; i--) {
2615 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002616 }
2617}
2618
2619/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002620static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002621{
2622 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002623 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002624
James Ketrenos43f66a62005-03-25 12:31:53 -06002625 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002626 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002627
2628 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002629 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002630
2631 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002632 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002633 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002634 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2635 eeprom_write_reg(priv, EEPROM_BIT_CS);
2636 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2637 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002638 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002639
James Ketrenos43f66a62005-03-25 12:31:53 -06002640 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002641 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002642 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002643
James Ketrenos43f66a62005-03-25 12:31:53 -06002644 return r;
2645}
2646
2647/* helper function for pulling the mac address out of the private */
2648/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002649static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002650{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002651 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002652}
2653
2654/*
2655 * Either the device driver (i.e. the host) or the firmware can
2656 * load eeprom data into the designated region in SRAM. If neither
2657 * happens then the FW will shutdown with a fatal error.
2658 *
2659 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2660 * bit needs region of shared SRAM needs to be non-zero.
2661 */
2662static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2663{
2664 int i;
Al Viroe62e1ee2007-12-27 01:36:46 -05002665 __le16 *eeprom = (__le16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002666
James Ketrenos43f66a62005-03-25 12:31:53 -06002667 IPW_DEBUG_TRACE(">>\n");
2668
2669 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002670 for (i = 0; i < 128; i++)
Al Viroe62e1ee2007-12-27 01:36:46 -05002671 eeprom[i] = cpu_to_le16(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002672
Jeff Garzikbf794512005-07-31 13:07:26 -04002673 /*
2674 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002675 copy. Otherwise let the firmware know to perform the operation
Zhu Yic7b6a672006-01-24 16:37:05 +08002676 on its own.
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002677 */
Alexey Dobriyan386093e2006-02-01 03:04:57 -08002678 if (priv->eeprom[EEPROM_VERSION] != 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002679 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2680
2681 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002682 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002683 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002684
2685 /* Do not load eeprom data on fatal error or suspend */
2686 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2687 } else {
2688 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2689
2690 /* Load eeprom data on fatal error or suspend */
2691 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2692 }
2693
2694 IPW_DEBUG_TRACE("<<\n");
2695}
2696
Arjan van de Ven858119e2006-01-14 13:20:43 -08002697static void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
James Ketrenos43f66a62005-03-25 12:31:53 -06002698{
2699 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002700 if (!count)
2701 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002702 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002703 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002704 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002705}
2706
2707static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2708{
James Ketrenosb095c382005-08-24 22:04:42 -05002709 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002710 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002711 sizeof(struct command_block));
2712}
2713
2714static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002715{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002716
2717 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002718
James Ketrenos43f66a62005-03-25 12:31:53 -06002719 /* Start the dma */
2720 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002721
James Ketrenos43f66a62005-03-25 12:31:53 -06002722 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002723 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002724
2725 IPW_DEBUG_FW("<< : \n");
2726 return 0;
2727}
2728
2729static void ipw_fw_dma_abort(struct ipw_priv *priv)
2730{
2731 u32 control = 0;
2732
2733 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002734
Pavel Machek67fd6b42006-07-11 15:34:05 +02002735 /* set the Stop and Abort bit */
James Ketrenos43f66a62005-03-25 12:31:53 -06002736 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002737 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002738 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002739
James Ketrenos43f66a62005-03-25 12:31:53 -06002740 IPW_DEBUG_FW("<< \n");
2741}
2742
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002743static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2744 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002745{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002746 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002747 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002748 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002749 IPW_DEBUG_FW(">> :\n");
2750
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002751 ipw_write_indirect(priv, address, (u8 *) cb,
2752 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002753
2754 IPW_DEBUG_FW("<< :\n");
2755 return 0;
2756
2757}
2758
2759static int ipw_fw_dma_kick(struct ipw_priv *priv)
2760{
2761 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002762 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002763
2764 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002765
James Ketrenos43f66a62005-03-25 12:31:53 -06002766 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002767 ipw_fw_dma_write_command_block(priv, index,
2768 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002769
2770 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002771 ipw_clear_bit(priv, IPW_RESET_REG,
2772 IPW_RESET_REG_MASTER_DISABLED |
2773 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002774
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002775 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002776 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002777 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002778
2779 IPW_DEBUG_FW("<< :\n");
2780 return 0;
2781}
2782
2783static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2784{
2785 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002786 u32 register_value = 0;
2787 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002788
2789 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002790 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002791 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002792
2793 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002794 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2795 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002796
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002797 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002798 cb_fields_address = address;
2799 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002800 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002801
2802 cb_fields_address += sizeof(u32);
2803 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002804 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002805
2806 cb_fields_address += sizeof(u32);
2807 register_value = ipw_read_reg32(priv, cb_fields_address);
2808 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2809 register_value);
2810
2811 cb_fields_address += sizeof(u32);
2812 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002813 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002814
2815 IPW_DEBUG_FW(">> :\n");
2816}
2817
2818static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2819{
2820 u32 current_cb_address = 0;
2821 u32 current_cb_index = 0;
2822
2823 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002824 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002825
James Ketrenosb095c382005-08-24 22:04:42 -05002826 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002827 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002828
James Ketrenos43f66a62005-03-25 12:31:53 -06002829 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002830 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002831
2832 IPW_DEBUG_FW(">> :\n");
2833 return current_cb_index;
2834
2835}
2836
2837static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2838 u32 src_address,
2839 u32 dest_address,
2840 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002841 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002842{
2843
Jeff Garzikbf794512005-07-31 13:07:26 -04002844 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002845 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2846 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002847 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002848 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002849
2850 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2851 src_address, dest_address, length);
2852
2853 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2854 return -1;
2855
2856 last_cb_element = priv->sram_desc.last_cb_index;
2857 cb = &priv->sram_desc.cb_list[last_cb_element];
2858 priv->sram_desc.last_cb_index++;
2859
2860 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002861 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002862 control |= CB_INT_ENABLED;
2863
2864 if (is_last)
2865 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002866
James Ketrenos43f66a62005-03-25 12:31:53 -06002867 control |= length;
2868
2869 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002870 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002871
2872 /* Copy the Source and Destination addresses */
2873 cb->dest_addr = dest_address;
2874 cb->source_addr = src_address;
2875
2876 /* Copy the Control Word last */
2877 cb->control = control;
2878
2879 return 0;
2880}
2881
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002882static int ipw_fw_dma_add_buffer(struct ipw_priv *priv, dma_addr_t *src_address,
2883 int nr, u32 dest_address, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002884{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002885 int ret, i;
2886 u32 size;
2887
James Ketrenos43f66a62005-03-25 12:31:53 -06002888 IPW_DEBUG_FW(">> \n");
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002889 IPW_DEBUG_FW_INFO("nr=%d dest_address=0x%x len=0x%x\n",
2890 nr, dest_address, len);
2891
2892 for (i = 0; i < nr; i++) {
2893 size = min_t(u32, len - i * CB_MAX_LENGTH, CB_MAX_LENGTH);
2894 ret = ipw_fw_dma_add_command_block(priv, src_address[i],
2895 dest_address +
2896 i * CB_MAX_LENGTH, size,
2897 0, 0);
2898 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002899 IPW_DEBUG_FW_INFO(": Failed\n");
2900 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002901 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002902 IPW_DEBUG_FW_INFO(": Added new cb\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002903 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002904
James Ketrenos43f66a62005-03-25 12:31:53 -06002905 IPW_DEBUG_FW("<< \n");
2906 return 0;
2907}
2908
2909static int ipw_fw_dma_wait(struct ipw_priv *priv)
2910{
Zhu Yi397ae122006-01-24 16:37:22 +08002911 u32 current_index = 0, previous_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002912 u32 watchdog = 0;
2913
2914 IPW_DEBUG_FW(">> : \n");
2915
2916 current_index = ipw_fw_dma_command_block_index(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08002917 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%08X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002918 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002919
2920 while (current_index < priv->sram_desc.last_cb_index) {
2921 udelay(50);
Zhu Yi397ae122006-01-24 16:37:22 +08002922 previous_index = current_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002923 current_index = ipw_fw_dma_command_block_index(priv);
2924
Zhu Yi397ae122006-01-24 16:37:22 +08002925 if (previous_index < current_index) {
2926 watchdog = 0;
2927 continue;
2928 }
2929 if (++watchdog > 400) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002930 IPW_DEBUG_FW_INFO("Timeout\n");
2931 ipw_fw_dma_dump_command_block(priv);
2932 ipw_fw_dma_abort(priv);
2933 return -1;
2934 }
2935 }
2936
2937 ipw_fw_dma_abort(priv);
2938
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002939 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002940 ipw_set_bit(priv, IPW_RESET_REG,
2941 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002942
2943 IPW_DEBUG_FW("<< dmaWaitSync \n");
2944 return 0;
2945}
2946
Jeff Garzikbf794512005-07-31 13:07:26 -04002947static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002948{
2949 struct list_head *element, *safe;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002950 struct libipw_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002951 unsigned long flags;
2952
2953 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002954 list_for_each_safe(element, safe, &priv->ieee->network_list) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002955 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06002956 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2957 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002958 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002959 &priv->ieee->network_free_list);
2960 }
2961 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002962 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002963}
2964
2965/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002966 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002967 * Reads debug register from domain0.
2968 * If card is present, pre-defined value should
2969 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002970 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002971 * @param priv
2972 * @return 1 if card is present, 0 otherwise
2973 */
2974static inline int ipw_alive(struct ipw_priv *priv)
2975{
2976 return ipw_read32(priv, 0x90) == 0xd55555d5;
2977}
2978
Zhu Yic7b6a672006-01-24 16:37:05 +08002979/* timeout in msec, attempted in 10-msec quanta */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002980static int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
James Ketrenos43f66a62005-03-25 12:31:53 -06002981 int timeout)
2982{
2983 int i = 0;
2984
2985 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002986 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002987 return i;
2988 mdelay(10);
2989 i += 10;
2990 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002991
James Ketrenos43f66a62005-03-25 12:31:53 -06002992 return -ETIME;
2993}
2994
Jeff Garzikbf794512005-07-31 13:07:26 -04002995/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002996 * the ipw hardware. It assumes the buffer has all the bits for the
2997 * image and the caller is handling the memory allocation and clean up.
2998 */
2999
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003000static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003001{
3002 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003003
James Ketrenos43f66a62005-03-25 12:31:53 -06003004 IPW_DEBUG_TRACE(">> \n");
3005 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05003006 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003007
Zhu Yic7b6a672006-01-24 16:37:05 +08003008 /* timeout is in msec, polled in 10-msec quanta */
James Ketrenosb095c382005-08-24 22:04:42 -05003009 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3010 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06003011 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003012 IPW_ERROR("wait for stop master failed after 100ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003013 return -1;
3014 }
3015
3016 IPW_DEBUG_INFO("stop master %dms\n", rc);
3017
3018 return rc;
3019}
3020
3021static void ipw_arc_release(struct ipw_priv *priv)
3022{
3023 IPW_DEBUG_TRACE(">> \n");
3024 mdelay(5);
3025
James Ketrenosb095c382005-08-24 22:04:42 -05003026 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003027
3028 /* no one knows timing, for safety add some delay */
3029 mdelay(5);
3030}
3031
James Ketrenos43f66a62005-03-25 12:31:53 -06003032struct fw_chunk {
Al Viroe62e1ee2007-12-27 01:36:46 -05003033 __le32 address;
3034 __le32 length;
James Ketrenos43f66a62005-03-25 12:31:53 -06003035};
3036
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003037static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003038{
3039 int rc = 0, i, addr;
3040 u8 cr = 0;
Al Viroe62e1ee2007-12-27 01:36:46 -05003041 __le16 *image;
James Ketrenos43f66a62005-03-25 12:31:53 -06003042
Al Viroe62e1ee2007-12-27 01:36:46 -05003043 image = (__le16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04003044
James Ketrenos43f66a62005-03-25 12:31:53 -06003045 IPW_DEBUG_TRACE(">> \n");
3046
3047 rc = ipw_stop_master(priv);
3048
3049 if (rc < 0)
3050 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003051
James Ketrenosb095c382005-08-24 22:04:42 -05003052 for (addr = IPW_SHARED_LOWER_BOUND;
3053 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003054 ipw_write32(priv, addr, 0);
3055 }
3056
3057 /* no ucode (yet) */
3058 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
3059 /* destroy DMA queues */
3060 /* reset sequence */
3061
James Ketrenosb095c382005-08-24 22:04:42 -05003062 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06003063 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05003064 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06003065 mdelay(1);
3066
3067 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05003068 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06003069 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003070
James Ketrenosb095c382005-08-24 22:04:42 -05003071 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003072 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003073
James Ketrenos43f66a62005-03-25 12:31:53 -06003074 /* enable ucode store */
Zhu Yic8fe6672006-01-24 16:36:36 +08003075 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0x0);
3076 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003077 mdelay(1);
3078
3079 /* write ucode */
3080 /**
3081 * @bug
3082 * Do NOT set indirect address register once and then
3083 * store data to indirect data register in the loop.
3084 * It seems very reasonable, but in this case DINO do not
3085 * accept ucode. It is essential to set address each time.
3086 */
3087 /* load new ipw uCode */
3088 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05003089 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
Al Viroe62e1ee2007-12-27 01:36:46 -05003090 le16_to_cpu(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06003091
James Ketrenos43f66a62005-03-25 12:31:53 -06003092 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05003093 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
3094 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06003095
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003096 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06003097
3098 /* wait for alive response */
3099 for (i = 0; i < 100; i++) {
3100 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05003101 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003102 if (cr & DINO_RXFIFO_DATA)
3103 break;
3104 mdelay(1);
3105 }
3106
3107 if (cr & DINO_RXFIFO_DATA) {
3108 /* alive_command_responce size is NOT multiple of 4 */
Al Viroe62e1ee2007-12-27 01:36:46 -05003109 __le32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04003110
3111 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06003112 response_buffer[i] =
Al Viroe62e1ee2007-12-27 01:36:46 -05003113 cpu_to_le32(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05003114 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06003115 memcpy(&priv->dino_alive, response_buffer,
3116 sizeof(priv->dino_alive));
3117 if (priv->dino_alive.alive_command == 1
3118 && priv->dino_alive.ucode_valid == 1) {
3119 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003120 IPW_DEBUG_INFO
3121 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
3122 "of %02d/%02d/%02d %02d:%02d\n",
3123 priv->dino_alive.software_revision,
3124 priv->dino_alive.software_revision,
3125 priv->dino_alive.device_identifier,
3126 priv->dino_alive.device_identifier,
3127 priv->dino_alive.time_stamp[0],
3128 priv->dino_alive.time_stamp[1],
3129 priv->dino_alive.time_stamp[2],
3130 priv->dino_alive.time_stamp[3],
3131 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003132 } else {
3133 IPW_DEBUG_INFO("Microcode is not alive\n");
3134 rc = -EINVAL;
3135 }
3136 } else {
3137 IPW_DEBUG_INFO("No alive response from DINO\n");
3138 rc = -ETIME;
3139 }
3140
3141 /* disable DINO, otherwise for some reason
3142 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05003143 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003144
James Ketrenos43f66a62005-03-25 12:31:53 -06003145 return rc;
3146}
3147
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003148static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003149{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003150 int ret = -1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003151 int offset = 0;
3152 struct fw_chunk *chunk;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003153 int total_nr = 0;
3154 int i;
3155 struct pci_pool *pool;
3156 u32 *virts[CB_NUMBER_OF_ELEMENTS_SMALL];
3157 dma_addr_t phys[CB_NUMBER_OF_ELEMENTS_SMALL];
James Ketrenos43f66a62005-03-25 12:31:53 -06003158
3159 IPW_DEBUG_TRACE("<< : \n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003160
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003161 pool = pci_pool_create("ipw2200", priv->pci_dev, CB_MAX_LENGTH, 0, 0);
3162 if (!pool) {
3163 IPW_ERROR("pci_pool_create failed\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003164 return -ENOMEM;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003165 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003166
3167 /* Start the Dma */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003168 ret = ipw_fw_dma_enable(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003169
Alexander Beregalov0ee904c2009-04-11 14:50:23 +00003170 /* the DMA is already ready this would be a bug. */
3171 BUG_ON(priv->sram_desc.last_cb_index > 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003172
3173 do {
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003174 u32 chunk_len;
3175 u8 *start;
3176 int size;
3177 int nr = 0;
3178
James Ketrenos43f66a62005-03-25 12:31:53 -06003179 chunk = (struct fw_chunk *)(data + offset);
3180 offset += sizeof(struct fw_chunk);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003181 chunk_len = le32_to_cpu(chunk->length);
3182 start = data + offset;
3183
3184 nr = (chunk_len + CB_MAX_LENGTH - 1) / CB_MAX_LENGTH;
3185 for (i = 0; i < nr; i++) {
3186 virts[total_nr] = pci_pool_alloc(pool, GFP_KERNEL,
3187 &phys[total_nr]);
3188 if (!virts[total_nr]) {
3189 ret = -ENOMEM;
3190 goto out;
3191 }
3192 size = min_t(u32, chunk_len - i * CB_MAX_LENGTH,
3193 CB_MAX_LENGTH);
3194 memcpy(virts[total_nr], start, size);
3195 start += size;
3196 total_nr++;
3197 /* We don't support fw chunk larger than 64*8K */
3198 BUG_ON(total_nr > CB_NUMBER_OF_ELEMENTS_SMALL);
3199 }
3200
James Ketrenos43f66a62005-03-25 12:31:53 -06003201 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04003202 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06003203 * offeset*/
3204 /* Dma loading */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003205 ret = ipw_fw_dma_add_buffer(priv, &phys[total_nr - nr],
3206 nr, le32_to_cpu(chunk->address),
3207 chunk_len);
3208 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003209 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3210 goto out;
3211 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003212
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003213 offset += chunk_len;
James Ketrenos43f66a62005-03-25 12:31:53 -06003214 } while (offset < len);
3215
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003216 /* Run the DMA and wait for the answer */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003217 ret = ipw_fw_dma_kick(priv);
3218 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003219 IPW_ERROR("dmaKick Failed\n");
3220 goto out;
3221 }
3222
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003223 ret = ipw_fw_dma_wait(priv);
3224 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003225 IPW_ERROR("dmaWaitSync Failed\n");
3226 goto out;
3227 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003228 out:
3229 for (i = 0; i < total_nr; i++)
3230 pci_pool_free(pool, virts[i], phys[i]);
3231
3232 pci_pool_destroy(pool);
3233
3234 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06003235}
3236
3237/* stop nic */
3238static int ipw_stop_nic(struct ipw_priv *priv)
3239{
3240 int rc = 0;
3241
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003242 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003243 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003244
James Ketrenosb095c382005-08-24 22:04:42 -05003245 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3246 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003247 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003248 IPW_ERROR("wait for reg master disabled failed after 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003249 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003250 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003251
James Ketrenosb095c382005-08-24 22:04:42 -05003252 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003253
James Ketrenos43f66a62005-03-25 12:31:53 -06003254 return rc;
3255}
3256
3257static void ipw_start_nic(struct ipw_priv *priv)
3258{
3259 IPW_DEBUG_TRACE(">>\n");
3260
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003261 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003262 ipw_clear_bit(priv, IPW_RESET_REG,
3263 IPW_RESET_REG_MASTER_DISABLED |
3264 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003265 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003266
James Ketrenos43f66a62005-03-25 12:31:53 -06003267 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003268 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3269 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003270
3271 IPW_DEBUG_TRACE("<<\n");
3272}
Jeff Garzikbf794512005-07-31 13:07:26 -04003273
James Ketrenos43f66a62005-03-25 12:31:53 -06003274static int ipw_init_nic(struct ipw_priv *priv)
3275{
3276 int rc;
3277
3278 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003279 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003280 /*prvHwInitNic */
3281 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003282 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003283
3284 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003285 ipw_write32(priv, IPW_READ_INT_REGISTER,
3286 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003287
3288 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003289 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3290 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003291 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003292 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3293
3294 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003295 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003296
3297 udelay(10);
3298
3299 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003300 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003301
3302 IPW_DEBUG_TRACE(">>\n");
3303 return 0;
3304}
3305
Jeff Garzikbf794512005-07-31 13:07:26 -04003306/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003307 * Probe is an ok place to call this from.
3308 */
3309static int ipw_reset_nic(struct ipw_priv *priv)
3310{
3311 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003312 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003313
3314 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003315
James Ketrenos43f66a62005-03-25 12:31:53 -06003316 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003317
James Ketrenosa613bff2005-08-24 21:43:11 -05003318 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003319 /* Clear the 'host command active' bit... */
3320 priv->status &= ~STATUS_HCMD_ACTIVE;
3321 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003322 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3323 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003324 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003325
3326 IPW_DEBUG_TRACE("<<\n");
3327 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003328}
James Ketrenos43f66a62005-03-25 12:31:53 -06003329
James Ketrenos9006ea72006-03-08 03:22:28 +08003330
3331struct ipw_fw {
Zhu Yi0070f8c2006-04-13 17:20:12 +08003332 __le32 ver;
3333 __le32 boot_size;
3334 __le32 ucode_size;
3335 __le32 fw_size;
James Ketrenos9006ea72006-03-08 03:22:28 +08003336 u8 data[0];
3337};
3338
Jeff Garzikbf794512005-07-31 13:07:26 -04003339static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos9006ea72006-03-08 03:22:28 +08003340 const struct firmware **raw, const char *name)
James Ketrenos43f66a62005-03-25 12:31:53 -06003341{
James Ketrenos9006ea72006-03-08 03:22:28 +08003342 struct ipw_fw *fw;
James Ketrenos43f66a62005-03-25 12:31:53 -06003343 int rc;
3344
3345 /* ask firmware_class module to get the boot firmware off disk */
James Ketrenos9006ea72006-03-08 03:22:28 +08003346 rc = request_firmware(raw, name, &priv->pci_dev->dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06003347 if (rc < 0) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003348 IPW_ERROR("%s request_firmware failed: Reason %d\n", name, rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003349 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003350 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003351
James Ketrenos9006ea72006-03-08 03:22:28 +08003352 if ((*raw)->size < sizeof(*fw)) {
3353 IPW_ERROR("%s is too small (%zd)\n", name, (*raw)->size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003354 return -EINVAL;
3355 }
3356
James Ketrenos9006ea72006-03-08 03:22:28 +08003357 fw = (void *)(*raw)->data;
3358
Zhu Yi0070f8c2006-04-13 17:20:12 +08003359 if ((*raw)->size < sizeof(*fw) + le32_to_cpu(fw->boot_size) +
3360 le32_to_cpu(fw->ucode_size) + le32_to_cpu(fw->fw_size)) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003361 IPW_ERROR("%s is too small or corrupt (%zd)\n",
3362 name, (*raw)->size);
3363 return -EINVAL;
3364 }
3365
3366 IPW_DEBUG_INFO("Read firmware '%s' image v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003367 name,
James Ketrenos9006ea72006-03-08 03:22:28 +08003368 le32_to_cpu(fw->ver) >> 16,
3369 le32_to_cpu(fw->ver) & 0xff,
3370 (*raw)->size - sizeof(*fw));
James Ketrenos43f66a62005-03-25 12:31:53 -06003371 return 0;
3372}
3373
James Ketrenosb095c382005-08-24 22:04:42 -05003374#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003375
Arjan van de Ven858119e2006-01-14 13:20:43 -08003376static void ipw_rx_queue_reset(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003377 struct ipw_rx_queue *rxq)
3378{
3379 unsigned long flags;
3380 int i;
3381
3382 spin_lock_irqsave(&rxq->lock, flags);
3383
3384 INIT_LIST_HEAD(&rxq->rx_free);
3385 INIT_LIST_HEAD(&rxq->rx_used);
3386
3387 /* Fill the rx_used queue with _all_ of the Rx buffers */
3388 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3389 /* In the reset function, these buffers may have been allocated
3390 * to an SKB, so we need to unmap and free potential storage */
3391 if (rxq->pool[i].skb != NULL) {
3392 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003393 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003394 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003395 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003396 }
3397 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3398 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003399
James Ketrenos43f66a62005-03-25 12:31:53 -06003400 /* Set us so that we have processed and used all buffers, but have
3401 * not restocked the Rx queue with fresh buffers */
3402 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003403 rxq->free_count = 0;
3404 spin_unlock_irqrestore(&rxq->lock, flags);
3405}
3406
3407#ifdef CONFIG_PM
3408static int fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003409static const struct firmware *raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003410
3411static void free_firmware(void)
3412{
3413 if (fw_loaded) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003414 release_firmware(raw);
3415 raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003416 fw_loaded = 0;
3417 }
3418}
3419#else
3420#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003421#endif
3422
3423static int ipw_load(struct ipw_priv *priv)
3424{
3425#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003426 const struct firmware *raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003427#endif
James Ketrenos9006ea72006-03-08 03:22:28 +08003428 struct ipw_fw *fw;
3429 u8 *boot_img, *ucode_img, *fw_img;
3430 u8 *name = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003431 int rc = 0, retries = 3;
3432
Zhu Yi397ae122006-01-24 16:37:22 +08003433 switch (priv->ieee->iw_mode) {
3434 case IW_MODE_ADHOC:
James Ketrenos9006ea72006-03-08 03:22:28 +08003435 name = "ipw2200-ibss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003436 break;
James Ketrenosb095c382005-08-24 22:04:42 -05003437#ifdef CONFIG_IPW2200_MONITOR
Zhu Yi397ae122006-01-24 16:37:22 +08003438 case IW_MODE_MONITOR:
James Ketrenos9006ea72006-03-08 03:22:28 +08003439 name = "ipw2200-sniffer.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003440 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003441#endif
Zhu Yi397ae122006-01-24 16:37:22 +08003442 case IW_MODE_INFRA:
James Ketrenos9006ea72006-03-08 03:22:28 +08003443 name = "ipw2200-bss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003444 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003445 }
Zhu Yi397ae122006-01-24 16:37:22 +08003446
James Ketrenos9006ea72006-03-08 03:22:28 +08003447 if (!name) {
3448 rc = -EINVAL;
3449 goto error;
3450 }
3451
3452#ifdef CONFIG_PM
3453 if (!fw_loaded) {
3454#endif
3455 rc = ipw_get_fw(priv, &raw, name);
3456 if (rc < 0)
3457 goto error;
3458#ifdef CONFIG_PM
3459 }
3460#endif
3461
3462 fw = (void *)raw->data;
3463 boot_img = &fw->data[0];
Zhu Yi0070f8c2006-04-13 17:20:12 +08003464 ucode_img = &fw->data[le32_to_cpu(fw->boot_size)];
3465 fw_img = &fw->data[le32_to_cpu(fw->boot_size) +
3466 le32_to_cpu(fw->ucode_size)];
James Ketrenos9006ea72006-03-08 03:22:28 +08003467
Zhu Yi397ae122006-01-24 16:37:22 +08003468 if (rc < 0)
3469 goto error;
James Ketrenos43f66a62005-03-25 12:31:53 -06003470
3471 if (!priv->rxq)
3472 priv->rxq = ipw_rx_queue_alloc(priv);
3473 else
3474 ipw_rx_queue_reset(priv, priv->rxq);
3475 if (!priv->rxq) {
3476 IPW_ERROR("Unable to initialize Rx queue\n");
3477 goto error;
3478 }
3479
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003480 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003481 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003482 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003483 priv->status &= ~STATUS_INT_ENABLED;
3484
3485 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003486 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003487
James Ketrenos43f66a62005-03-25 12:31:53 -06003488 ipw_stop_nic(priv);
3489
3490 rc = ipw_reset_nic(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003491 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003492 IPW_ERROR("Unable to reset NIC\n");
3493 goto error;
3494 }
3495
James Ketrenosb095c382005-08-24 22:04:42 -05003496 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3497 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003498
3499 /* DMA the initial boot firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003500 rc = ipw_load_firmware(priv, boot_img, le32_to_cpu(fw->boot_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003501 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003502 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003503 goto error;
3504 }
3505
3506 /* kick start the device */
3507 ipw_start_nic(priv);
3508
Zhu Yic7b6a672006-01-24 16:37:05 +08003509 /* wait for the device to finish its initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003510 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3511 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003512 if (rc < 0) {
3513 IPW_ERROR("device failed to boot initial fw image\n");
3514 goto error;
3515 }
3516 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3517
Jeff Garzikbf794512005-07-31 13:07:26 -04003518 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003519 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003520
3521 /* DMA the ucode into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003522 rc = ipw_load_ucode(priv, ucode_img, le32_to_cpu(fw->ucode_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003523 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003524 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003525 goto error;
3526 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003527
James Ketrenos43f66a62005-03-25 12:31:53 -06003528 /* stop nic */
3529 ipw_stop_nic(priv);
3530
3531 /* DMA bss firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003532 rc = ipw_load_firmware(priv, fw_img, le32_to_cpu(fw->fw_size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003533 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003534 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003535 goto error;
3536 }
Zhu Yi397ae122006-01-24 16:37:22 +08003537#ifdef CONFIG_PM
3538 fw_loaded = 1;
3539#endif
3540
James Ketrenos43f66a62005-03-25 12:31:53 -06003541 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3542
3543 rc = ipw_queue_reset(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003544 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003545 IPW_ERROR("Unable to initialize queues\n");
3546 goto error;
3547 }
3548
3549 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003550 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003551 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003552 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003553
James Ketrenos43f66a62005-03-25 12:31:53 -06003554 /* kick start the device */
3555 ipw_start_nic(priv);
3556
James Ketrenosb095c382005-08-24 22:04:42 -05003557 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003558 if (retries > 0) {
3559 IPW_WARNING("Parity error. Retrying init.\n");
3560 retries--;
3561 goto retry;
3562 }
3563
3564 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3565 rc = -EIO;
3566 goto error;
3567 }
3568
3569 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003570 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3571 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003572 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003573 IPW_ERROR("device failed to start within 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003574 goto error;
3575 }
3576 IPW_DEBUG_INFO("device response after %dms\n", rc);
3577
3578 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003579 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003580
3581 /* read eeprom data and initialize the eeprom region of sram */
3582 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003583 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003584
3585 /* enable interrupts */
3586 ipw_enable_interrupts(priv);
3587
3588 /* Ensure our queue has valid packets */
3589 ipw_rx_queue_replenish(priv);
3590
James Ketrenosb095c382005-08-24 22:04:42 -05003591 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003592
3593 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003594 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003595
3596#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003597 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003598#endif
3599 return 0;
3600
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003601 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003602 if (priv->rxq) {
3603 ipw_rx_queue_free(priv, priv->rxq);
3604 priv->rxq = NULL;
3605 }
3606 ipw_tx_queue_free(priv);
James Ketrenos9006ea72006-03-08 03:22:28 +08003607 if (raw)
3608 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003609#ifdef CONFIG_PM
3610 fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003611 raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003612#endif
3613
3614 return rc;
3615}
3616
Jeff Garzikbf794512005-07-31 13:07:26 -04003617/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003618 * DMA services
3619 *
3620 * Theory of operation
3621 *
3622 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3623 * 2 empty entries always kept in the buffer to protect from overflow.
3624 *
3625 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003626 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3627 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003628 * Tx queue resumed.
3629 *
3630 * The IPW operates with six queues, one receive queue in the device's
3631 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003632 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003633 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003634 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003635 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003636 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003637 * we only utilize the first data transmit queue (queue1).
3638 */
3639
3640/**
3641 * Driver allocates buffers of this size for Rx
3642 */
3643
Dan Williams943dbef2008-02-14 17:49:41 -05003644/**
3645 * ipw_rx_queue_space - Return number of free slots available in queue.
3646 */
3647static int ipw_rx_queue_space(const struct ipw_rx_queue *q)
3648{
3649 int s = q->read - q->write;
3650 if (s <= 0)
3651 s += RX_QUEUE_SIZE;
3652 /* keep some buffer to not confuse full and empty queue */
3653 s -= 2;
3654 if (s < 0)
3655 s = 0;
3656 return s;
3657}
3658
3659static inline int ipw_tx_queue_space(const struct clx2_queue *q)
James Ketrenos43f66a62005-03-25 12:31:53 -06003660{
3661 int s = q->last_used - q->first_empty;
3662 if (s <= 0)
3663 s += q->n_bd;
3664 s -= 2; /* keep some reserve to not confuse empty and full situations */
3665 if (s < 0)
3666 s = 0;
3667 return s;
3668}
3669
3670static inline int ipw_queue_inc_wrap(int index, int n_bd)
3671{
3672 return (++index == n_bd) ? 0 : index;
3673}
3674
3675/**
3676 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003677 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003678 * @param q queue to init
3679 * @param count Number of BD's to allocate. Should be power of 2
3680 * @param read_register Address for 'read' register
3681 * (not offset within BAR, full address)
3682 * @param write_register Address for 'write' register
3683 * (not offset within BAR, full address)
3684 * @param base_register Address for 'base' register
3685 * (not offset within BAR, full address)
3686 * @param size Address for 'size' register
3687 * (not offset within BAR, full address)
3688 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003689static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003690 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003691{
3692 q->n_bd = count;
3693
3694 q->low_mark = q->n_bd / 4;
3695 if (q->low_mark < 4)
3696 q->low_mark = 4;
3697
3698 q->high_mark = q->n_bd / 8;
3699 if (q->high_mark < 2)
3700 q->high_mark = 2;
3701
3702 q->first_empty = q->last_used = 0;
3703 q->reg_r = read;
3704 q->reg_w = write;
3705
3706 ipw_write32(priv, base, q->dma_addr);
3707 ipw_write32(priv, size, count);
3708 ipw_write32(priv, read, 0);
3709 ipw_write32(priv, write, 0);
3710
3711 _ipw_read32(priv, 0x90);
3712}
3713
Jeff Garzikbf794512005-07-31 13:07:26 -04003714static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003715 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003716 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003717{
3718 struct pci_dev *dev = priv->pci_dev;
3719
3720 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3721 if (!q->txb) {
3722 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3723 return -ENOMEM;
3724 }
3725
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003726 q->bd =
3727 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003728 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003729 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003730 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003731 kfree(q->txb);
3732 q->txb = NULL;
3733 return -ENOMEM;
3734 }
3735
3736 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3737 return 0;
3738}
3739
3740/**
3741 * Free one TFD, those at index [txq->q.last_used].
3742 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003743 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003744 * @param dev
3745 * @param txq
3746 */
3747static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3748 struct clx2_tx_queue *txq)
3749{
3750 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3751 struct pci_dev *dev = priv->pci_dev;
3752 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003753
James Ketrenos43f66a62005-03-25 12:31:53 -06003754 /* classify bd */
3755 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3756 /* nothing to cleanup after for host commands */
3757 return;
3758
3759 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003760 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3761 IPW_ERROR("Too many chunks: %i\n",
3762 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003763 /** @todo issue fatal error, it is quite serious situation */
3764 return;
3765 }
3766
3767 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003768 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3769 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3770 le16_to_cpu(bd->u.data.chunk_len[i]),
3771 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003772 if (txq->txb[txq->q.last_used]) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003773 libipw_txb_free(txq->txb[txq->q.last_used]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003774 txq->txb[txq->q.last_used] = NULL;
3775 }
3776 }
3777}
3778
3779/**
3780 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003781 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003782 * Empty queue by removing and destroying all BD's.
3783 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003784 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003785 * @param dev
3786 * @param q
3787 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003788static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003789{
3790 struct clx2_queue *q = &txq->q;
3791 struct pci_dev *dev = priv->pci_dev;
3792
Jeff Garzikbf794512005-07-31 13:07:26 -04003793 if (q->n_bd == 0)
3794 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003795
3796 /* first, empty all BD's */
3797 for (; q->first_empty != q->last_used;
3798 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3799 ipw_queue_tx_free_tfd(priv, txq);
3800 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003801
James Ketrenos43f66a62005-03-25 12:31:53 -06003802 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003803 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003804 q->dma_addr);
3805 kfree(txq->txb);
3806
3807 /* 0 fill whole structure */
3808 memset(txq, 0, sizeof(*txq));
3809}
3810
James Ketrenos43f66a62005-03-25 12:31:53 -06003811/**
3812 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003813 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003814 * @param priv
3815 */
3816static void ipw_tx_queue_free(struct ipw_priv *priv)
3817{
3818 /* Tx CMD queue */
3819 ipw_queue_tx_free(priv, &priv->txq_cmd);
3820
3821 /* Tx queues */
3822 ipw_queue_tx_free(priv, &priv->txq[0]);
3823 ipw_queue_tx_free(priv, &priv->txq[1]);
3824 ipw_queue_tx_free(priv, &priv->txq[2]);
3825 ipw_queue_tx_free(priv, &priv->txq[3]);
3826}
3827
Arjan van de Ven858119e2006-01-14 13:20:43 -08003828static void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003829{
3830 /* First 3 bytes are manufacturer */
3831 bssid[0] = priv->mac_addr[0];
3832 bssid[1] = priv->mac_addr[1];
3833 bssid[2] = priv->mac_addr[2];
3834
3835 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003836 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003837
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003838 bssid[0] &= 0xfe; /* clear multicast bit */
3839 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003840}
3841
Arjan van de Ven858119e2006-01-14 13:20:43 -08003842static u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003843{
3844 struct ipw_station_entry entry;
3845 int i;
3846
3847 for (i = 0; i < priv->num_stations; i++) {
3848 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3849 /* Another node is active in network */
3850 priv->missed_adhoc_beacons = 0;
3851 if (!(priv->config & CFG_STATIC_CHANNEL))
3852 /* when other nodes drop out, we drop out */
3853 priv->config &= ~CFG_ADHOC_PERSIST;
3854
3855 return i;
3856 }
3857 }
3858
3859 if (i == MAX_STATIONS)
3860 return IPW_INVALID_STATION;
3861
Johannes Berge1749612008-10-27 15:59:26 -07003862 IPW_DEBUG_SCAN("Adding AdHoc station: %pM\n", bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06003863
3864 entry.reserved = 0;
3865 entry.support_mode = 0;
3866 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3867 memcpy(priv->stations[i], bssid, ETH_ALEN);
3868 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003869 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003870 priv->num_stations++;
3871
3872 return i;
3873}
3874
Arjan van de Ven858119e2006-01-14 13:20:43 -08003875static u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003876{
3877 int i;
3878
Jeff Garzikbf794512005-07-31 13:07:26 -04003879 for (i = 0; i < priv->num_stations; i++)
3880 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003881 return i;
3882
3883 return IPW_INVALID_STATION;
3884}
3885
3886static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3887{
3888 int err;
3889
Hong Liu7b996592005-08-25 17:36:13 +08003890 if (priv->status & STATUS_ASSOCIATING) {
3891 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3892 queue_work(priv->workqueue, &priv->disassociate);
3893 return;
3894 }
3895
3896 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003897 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3898 return;
3899 }
3900
Johannes Berge1749612008-10-27 15:59:26 -07003901 IPW_DEBUG_ASSOC("Disassocation attempt from %pM "
James Ketrenos43f66a62005-03-25 12:31:53 -06003902 "on channel %d.\n",
Johannes Berge1749612008-10-27 15:59:26 -07003903 priv->assoc_request.bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06003904 priv->assoc_request.channel);
3905
3906 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3907 priv->status |= STATUS_DISASSOCIATING;
3908
3909 if (quiet)
3910 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3911 else
3912 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003913
James Ketrenos43f66a62005-03-25 12:31:53 -06003914 err = ipw_send_associate(priv, &priv->assoc_request);
3915 if (err) {
3916 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3917 "failed.\n");
3918 return;
3919 }
3920
3921}
3922
James Ketrenosc848d0a2005-08-24 21:56:24 -05003923static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003924{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003925 struct ipw_priv *priv = data;
3926 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3927 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003928 ipw_send_disassociate(data, 0);
Zhu Yib8ddafd2008-11-27 13:42:20 +08003929 netif_carrier_off(priv->net_dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003930 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003931}
3932
David Howellsc4028952006-11-22 14:57:56 +00003933static void ipw_bg_disassociate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06003934{
David Howellsc4028952006-11-22 14:57:56 +00003935 struct ipw_priv *priv =
3936 container_of(work, struct ipw_priv, disassociate);
Zhu Yi46441512006-01-24 16:37:59 +08003937 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00003938 ipw_disassociate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08003939 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06003940}
3941
David Howellsc4028952006-11-22 14:57:56 +00003942static void ipw_system_config(struct work_struct *work)
Zhu Yid8bad6d2005-07-13 12:25:38 -05003943{
David Howellsc4028952006-11-22 14:57:56 +00003944 struct ipw_priv *priv =
3945 container_of(work, struct ipw_priv, system_config);
Zhu Yid685b8c2006-04-13 17:20:27 +08003946
3947#ifdef CONFIG_IPW2200_PROMISCUOUS
3948 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
3949 priv->sys_config.accept_all_data_frames = 1;
3950 priv->sys_config.accept_non_directed_frames = 1;
3951 priv->sys_config.accept_all_mgmt_bcpr = 1;
3952 priv->sys_config.accept_all_mgmt_frames = 1;
3953 }
3954#endif
3955
3956 ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003957}
3958
3959struct ipw_status_code {
3960 u16 status;
3961 const char *reason;
3962};
3963
3964static const struct ipw_status_code ipw_status_codes[] = {
3965 {0x00, "Successful"},
3966 {0x01, "Unspecified failure"},
3967 {0x0A, "Cannot support all requested capabilities in the "
3968 "Capability information field"},
3969 {0x0B, "Reassociation denied due to inability to confirm that "
3970 "association exists"},
3971 {0x0C, "Association denied due to reason outside the scope of this "
3972 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003973 {0x0D,
3974 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003975 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003976 {0x0E,
3977 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003978 "transaction sequence number out of expected sequence"},
3979 {0x0F, "Authentication rejected because of challenge failure"},
3980 {0x10, "Authentication rejected due to timeout waiting for next "
3981 "frame in sequence"},
3982 {0x11, "Association denied because AP is unable to handle additional "
3983 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003984 {0x12,
3985 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003986 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003987 {0x13,
3988 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003989 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003990 {0x14,
3991 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003992 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003993 {0x15,
3994 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003995 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003996 {0x19,
3997 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003998 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003999 {0x1A,
4000 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004001 "DSSS-OFDM operation"},
4002 {0x28, "Invalid Information Element"},
4003 {0x29, "Group Cipher is not valid"},
4004 {0x2A, "Pairwise Cipher is not valid"},
4005 {0x2B, "AKMP is not valid"},
4006 {0x2C, "Unsupported RSN IE version"},
4007 {0x2D, "Invalid RSN IE Capabilities"},
4008 {0x2E, "Cipher suite is rejected per security policy"},
4009};
4010
Jeff Garzikbf794512005-07-31 13:07:26 -04004011static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06004012{
4013 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04004014 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05004015 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06004016 return ipw_status_codes[i].reason;
4017 return "Unknown status value.";
4018}
James Ketrenos43f66a62005-03-25 12:31:53 -06004019
4020static void inline average_init(struct average *avg)
4021{
4022 memset(avg, 0, sizeof(*avg));
4023}
4024
Zhu Yi00d21de2006-04-13 17:19:02 +08004025#define DEPTH_RSSI 8
4026#define DEPTH_NOISE 16
4027static s16 exponential_average(s16 prev_avg, s16 val, u8 depth)
4028{
4029 return ((depth-1)*prev_avg + val)/depth;
4030}
4031
Arjan van de Ven858119e2006-01-14 13:20:43 -08004032static void average_add(struct average *avg, s16 val)
James Ketrenos43f66a62005-03-25 12:31:53 -06004033{
4034 avg->sum -= avg->entries[avg->pos];
4035 avg->sum += val;
4036 avg->entries[avg->pos++] = val;
4037 if (unlikely(avg->pos == AVG_ENTRIES)) {
4038 avg->init = 1;
4039 avg->pos = 0;
4040 }
4041}
4042
Arjan van de Ven858119e2006-01-14 13:20:43 -08004043static s16 average_value(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06004044{
4045 if (!unlikely(avg->init)) {
4046 if (avg->pos)
4047 return avg->sum / avg->pos;
4048 return 0;
4049 }
4050
4051 return avg->sum / AVG_ENTRIES;
4052}
4053
4054static void ipw_reset_stats(struct ipw_priv *priv)
4055{
4056 u32 len = sizeof(u32);
4057
4058 priv->quality = 0;
4059
4060 average_init(&priv->average_missed_beacons);
Zhu Yi00d21de2006-04-13 17:19:02 +08004061 priv->exp_avg_rssi = -60;
4062 priv->exp_avg_noise = -85 + 0x100;
James Ketrenos43f66a62005-03-25 12:31:53 -06004063
4064 priv->last_rate = 0;
4065 priv->last_missed_beacons = 0;
4066 priv->last_rx_packets = 0;
4067 priv->last_tx_packets = 0;
4068 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004069
James Ketrenos43f66a62005-03-25 12:31:53 -06004070 /* Firmware managed, reset only when NIC is restarted, so we have to
4071 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04004072 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06004073 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04004074 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004075 &priv->last_tx_failures, &len);
4076
4077 /* Driver managed, reset with each association */
4078 priv->missed_adhoc_beacons = 0;
4079 priv->missed_beacons = 0;
4080 priv->tx_packets = 0;
4081 priv->rx_packets = 0;
4082
4083}
4084
Arjan van de Ven858119e2006-01-14 13:20:43 -08004085static u32 ipw_get_max_rate(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06004086{
4087 u32 i = 0x80000000;
4088 u32 mask = priv->rates_mask;
4089 /* If currently associated in B mode, restrict the maximum
4090 * rate match to B rates */
4091 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004092 mask &= LIBIPW_CCK_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06004093
4094 /* TODO: Verify that the rate is supported by the current rates
4095 * list. */
4096
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004097 while (i && !(mask & i))
4098 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004099 switch (i) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004100 case LIBIPW_CCK_RATE_1MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004101 return 1000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004102 case LIBIPW_CCK_RATE_2MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004103 return 2000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004104 case LIBIPW_CCK_RATE_5MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004105 return 5500000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004106 case LIBIPW_OFDM_RATE_6MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004107 return 6000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004108 case LIBIPW_OFDM_RATE_9MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004109 return 9000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004110 case LIBIPW_CCK_RATE_11MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004111 return 11000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004112 case LIBIPW_OFDM_RATE_12MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004113 return 12000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004114 case LIBIPW_OFDM_RATE_18MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004115 return 18000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004116 case LIBIPW_OFDM_RATE_24MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004117 return 24000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004118 case LIBIPW_OFDM_RATE_36MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004119 return 36000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004120 case LIBIPW_OFDM_RATE_48MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004121 return 48000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004122 case LIBIPW_OFDM_RATE_54MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004123 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004124 }
4125
Jeff Garzikbf794512005-07-31 13:07:26 -04004126 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06004127 return 11000000;
4128 else
4129 return 54000000;
4130}
4131
4132static u32 ipw_get_current_rate(struct ipw_priv *priv)
4133{
4134 u32 rate, len = sizeof(rate);
4135 int err;
4136
Jeff Garzikbf794512005-07-31 13:07:26 -04004137 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06004138 return 0;
4139
4140 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004141 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06004142 &len);
4143 if (err) {
4144 IPW_DEBUG_INFO("failed querying ordinals.\n");
4145 return 0;
4146 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004147 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06004148 return ipw_get_max_rate(priv);
4149
4150 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004151 case IPW_TX_RATE_1MB:
4152 return 1000000;
4153 case IPW_TX_RATE_2MB:
4154 return 2000000;
4155 case IPW_TX_RATE_5MB:
4156 return 5500000;
4157 case IPW_TX_RATE_6MB:
4158 return 6000000;
4159 case IPW_TX_RATE_9MB:
4160 return 9000000;
4161 case IPW_TX_RATE_11MB:
4162 return 11000000;
4163 case IPW_TX_RATE_12MB:
4164 return 12000000;
4165 case IPW_TX_RATE_18MB:
4166 return 18000000;
4167 case IPW_TX_RATE_24MB:
4168 return 24000000;
4169 case IPW_TX_RATE_36MB:
4170 return 36000000;
4171 case IPW_TX_RATE_48MB:
4172 return 48000000;
4173 case IPW_TX_RATE_54MB:
4174 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004175 }
4176
4177 return 0;
4178}
4179
James Ketrenos43f66a62005-03-25 12:31:53 -06004180#define IPW_STATS_INTERVAL (2 * HZ)
4181static void ipw_gather_stats(struct ipw_priv *priv)
4182{
4183 u32 rx_err, rx_err_delta, rx_packets_delta;
4184 u32 tx_failures, tx_failures_delta, tx_packets_delta;
4185 u32 missed_beacons_percent, missed_beacons_delta;
4186 u32 quality = 0;
4187 u32 len = sizeof(u32);
4188 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04004189 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004190 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004191 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06004192
4193 if (!(priv->status & STATUS_ASSOCIATED)) {
4194 priv->quality = 0;
4195 return;
4196 }
4197
4198 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04004199 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06004200 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004201 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06004202 priv->last_missed_beacons = priv->missed_beacons;
4203 if (priv->assoc_request.beacon_interval) {
4204 missed_beacons_percent = missed_beacons_delta *
Al Viro5b5e8072007-12-27 01:54:06 -05004205 (HZ * le16_to_cpu(priv->assoc_request.beacon_interval)) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004206 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06004207 } else {
4208 missed_beacons_percent = 0;
4209 }
4210 average_add(&priv->average_missed_beacons, missed_beacons_percent);
4211
4212 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
4213 rx_err_delta = rx_err - priv->last_rx_err;
4214 priv->last_rx_err = rx_err;
4215
4216 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
4217 tx_failures_delta = tx_failures - priv->last_tx_failures;
4218 priv->last_tx_failures = tx_failures;
4219
4220 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
4221 priv->last_rx_packets = priv->rx_packets;
4222
4223 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
4224 priv->last_tx_packets = priv->tx_packets;
4225
4226 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04004227 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004228 * Missed beacon: 100% = 0, 0% = 70% missed
4229 * Rate: 60% = 1Mbs, 100% = Max
4230 * Rx and Tx errors represent a straight % of total Rx/Tx
4231 * RSSI: 100% = > -50, 0% = < -80
4232 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04004233 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004234 * The lowest computed quality is used.
4235 *
4236 */
4237#define BEACON_THRESHOLD 5
4238 beacon_quality = 100 - missed_beacons_percent;
4239 if (beacon_quality < BEACON_THRESHOLD)
4240 beacon_quality = 0;
4241 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004242 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004243 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004244 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004245 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004246
James Ketrenos43f66a62005-03-25 12:31:53 -06004247 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004248 max_rate = ipw_get_max_rate(priv);
4249 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004250 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4251 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004252
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004253 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004254 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004255 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004256 else
4257 rx_quality = 100;
4258 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4259 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004260
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004261 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004262 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004263 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004264 else
4265 tx_quality = 100;
4266 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4267 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004268
Zhu Yi00d21de2006-04-13 17:19:02 +08004269 rssi = priv->exp_avg_rssi;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004270 signal_quality =
4271 (100 *
4272 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4273 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4274 (priv->ieee->perfect_rssi - rssi) *
4275 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4276 62 * (priv->ieee->perfect_rssi - rssi))) /
4277 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4278 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4279 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004280 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004281 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004282 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004283
Zhu Yi61fb9ed2006-04-13 17:19:55 +08004284 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004285 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004286
Reinette Chatre21f8a732009-08-18 10:25:05 -07004287 quality = min(rx_quality, signal_quality);
4288 quality = min(tx_quality, quality);
4289 quality = min(rate_quality, quality);
4290 quality = min(beacon_quality, quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004291 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004292 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4293 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004294 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004295 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4296 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004297 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004298 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4299 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004300 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004301 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4302 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004303 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004304 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4305 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004306
4307 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004308
4309 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004310 IPW_STATS_INTERVAL);
4311}
4312
David Howellsc4028952006-11-22 14:57:56 +00004313static void ipw_bg_gather_stats(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05004314{
David Howellsc4028952006-11-22 14:57:56 +00004315 struct ipw_priv *priv =
4316 container_of(work, struct ipw_priv, gather_stats.work);
Zhu Yi46441512006-01-24 16:37:59 +08004317 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00004318 ipw_gather_stats(priv);
Zhu Yi46441512006-01-24 16:37:59 +08004319 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004320}
4321
Ben Cahille7582562005-10-06 15:34:41 -05004322/* Missed beacon behavior:
4323 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4324 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4325 * Above disassociate threshold, give up and stop scanning.
4326 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004327static void ipw_handle_missed_beacon(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004328 int missed_count)
4329{
4330 priv->notif_missed_beacons = missed_count;
4331
James Ketrenosafbf30a2005-08-25 00:05:33 -05004332 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004333 priv->status & STATUS_ASSOCIATED) {
4334 /* If associated and we've hit the missed
4335 * beacon threshold, disassociate, turn
4336 * off roaming, and abort any active scans */
4337 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004338 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004339 "Missed beacon: %d - disassociate\n", missed_count);
4340 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004341 if (priv->status & STATUS_SCANNING) {
4342 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4343 IPW_DL_STATE,
4344 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004345 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004346 }
4347
James Ketrenosea2b26e2005-08-24 21:25:16 -05004348 queue_work(priv->workqueue, &priv->disassociate);
4349 return;
4350 }
4351
4352 if (priv->status & STATUS_ROAMING) {
4353 /* If we are currently roaming, then just
4354 * print a debug statement... */
4355 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4356 "Missed beacon: %d - roam in progress\n",
4357 missed_count);
4358 return;
4359 }
4360
Zhu Yi4bfdb912006-01-24 16:37:16 +08004361 if (roaming &&
4362 (missed_count > priv->roaming_threshold &&
4363 missed_count <= priv->disassociate_threshold)) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004364 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004365 * bit in the status and kick off a scan.
4366 * This can happen several times before we reach
4367 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004368 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4369 "Missed beacon: %d - initiate "
4370 "roaming\n", missed_count);
4371 if (!(priv->status & STATUS_ROAMING)) {
4372 priv->status |= STATUS_ROAMING;
4373 if (!(priv->status & STATUS_SCANNING))
David Howellsc4028952006-11-22 14:57:56 +00004374 queue_delayed_work(priv->workqueue,
4375 &priv->request_scan, 0);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004376 }
4377 return;
4378 }
4379
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01004380 if (priv->status & STATUS_SCANNING &&
4381 missed_count > IPW_MB_SCAN_CANCEL_THRESHOLD) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004382 /* Stop scan to keep fw from getting
4383 * stuck (only if we aren't roaming --
4384 * otherwise we'll never scan more than 2 or 3
4385 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004386 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4387 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004388 queue_work(priv->workqueue, &priv->abort_scan);
4389 }
4390
4391 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004392}
4393
Dan Williams0b531672007-10-09 13:55:24 -04004394static void ipw_scan_event(struct work_struct *work)
4395{
4396 union iwreq_data wrqu;
4397
4398 struct ipw_priv *priv =
4399 container_of(work, struct ipw_priv, scan_event.work);
4400
4401 wrqu.data.length = 0;
4402 wrqu.data.flags = 0;
4403 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4404}
4405
4406static void handle_scan_event(struct ipw_priv *priv)
4407{
4408 /* Only userspace-requested scan completion events go out immediately */
4409 if (!priv->user_requested_scan) {
4410 if (!delayed_work_pending(&priv->scan_event))
4411 queue_delayed_work(priv->workqueue, &priv->scan_event,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05004412 round_jiffies_relative(msecs_to_jiffies(4000)));
Dan Williams0b531672007-10-09 13:55:24 -04004413 } else {
4414 union iwreq_data wrqu;
4415
4416 priv->user_requested_scan = 0;
4417 cancel_delayed_work(&priv->scan_event);
4418
4419 wrqu.data.length = 0;
4420 wrqu.data.flags = 0;
4421 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4422 }
4423}
4424
James Ketrenos43f66a62005-03-25 12:31:53 -06004425/**
4426 * Handle host notification packet.
4427 * Called from interrupt routine
4428 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004429static void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004430 struct ipw_rx_notification *notif)
4431{
John W. Linville9387b7c2008-09-30 20:59:05 -04004432 DECLARE_SSID_BUF(ssid);
Al Viroe62e1ee2007-12-27 01:36:46 -05004433 u16 size = le16_to_cpu(notif->size);
James Ketrenosa613bff2005-08-24 21:43:11 -05004434
Al Viroe62e1ee2007-12-27 01:36:46 -05004435 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004436
James Ketrenos43f66a62005-03-25 12:31:53 -06004437 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004438 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4439 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004440
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004441 switch (assoc->state) {
4442 case CMAS_ASSOCIATED:{
4443 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4444 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004445 "associated: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004446 print_ssid(ssid, priv->essid,
4447 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004448 priv->bssid);
Jeff Garzikbf794512005-07-31 13:07:26 -04004449
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004450 switch (priv->ieee->iw_mode) {
4451 case IW_MODE_INFRA:
4452 memcpy(priv->ieee->bssid,
4453 priv->bssid, ETH_ALEN);
4454 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004455
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004456 case IW_MODE_ADHOC:
4457 memcpy(priv->ieee->bssid,
4458 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004459
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004460 /* clear out the station table */
4461 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004462
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004463 IPW_DEBUG_ASSOC
4464 ("queueing adhoc check\n");
4465 queue_delayed_work(priv->
4466 workqueue,
4467 &priv->
4468 adhoc_check,
Al Viro5b5e8072007-12-27 01:54:06 -05004469 le16_to_cpu(priv->
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004470 assoc_request.
Al Viro5b5e8072007-12-27 01:54:06 -05004471 beacon_interval));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004472 break;
4473 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004474
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004475 priv->status &= ~STATUS_ASSOCIATING;
4476 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004477 queue_work(priv->workqueue,
4478 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004479
Zhu Yie43e3c12006-04-13 17:20:45 +08004480#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004481#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
John W. Linville72118012008-09-30 21:43:03 -04004482 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_control))
James Ketrenosafbf30a2005-08-25 00:05:33 -05004483 if ((priv->status & STATUS_AUTH) &&
4484 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4485 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004486 if ((sizeof
4487 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004488 libipw_assoc_response)
Al Viroe62e1ee2007-12-27 01:36:46 -05004489 <= size)
4490 && (size <= 2314)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004491 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004492 libipw_rx_stats
James Ketrenosb095c382005-08-24 22:04:42 -05004493 stats = {
Al Viroe62e1ee2007-12-27 01:36:46 -05004494 .len = size - 1,
James Ketrenosb095c382005-08-24 22:04:42 -05004495 };
4496
4497 IPW_DEBUG_QOS
4498 ("QoS Associate "
Al Viroe62e1ee2007-12-27 01:36:46 -05004499 "size %d\n", size);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004500 libipw_rx_mgt(priv->
James Ketrenosb095c382005-08-24 22:04:42 -05004501 ieee,
4502 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004503 libipw_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004504 *)
4505 &notif->u.raw, &stats);
4506 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004507 }
James Ketrenosb095c382005-08-24 22:04:42 -05004508#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004509
James Ketrenosa613bff2005-08-24 21:43:11 -05004510 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004511
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004512 break;
4513 }
4514
4515 case CMAS_AUTHENTICATED:{
4516 if (priv->
4517 status & (STATUS_ASSOCIATED |
4518 STATUS_AUTH)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004519 struct notif_authenticate *auth
4520 = &notif->u.auth;
4521 IPW_DEBUG(IPW_DL_NOTIF |
4522 IPW_DL_STATE |
4523 IPW_DL_ASSOC,
4524 "deauthenticated: '%s' "
Johannes Berge1749612008-10-27 15:59:26 -07004525 "%pM"
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004526 ": (0x%04X) - %s \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004527 print_ssid(ssid,
4528 priv->
4529 essid,
4530 priv->
4531 essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004532 priv->bssid,
Al Viro83f7d572008-03-16 22:26:44 +00004533 le16_to_cpu(auth->status),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004534 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004535 (le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004536 (auth->status)));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004537
4538 priv->status &=
4539 ~(STATUS_ASSOCIATING |
4540 STATUS_AUTH |
4541 STATUS_ASSOCIATED);
4542
James Ketrenosa613bff2005-08-24 21:43:11 -05004543 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004544 break;
4545 }
4546
4547 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4548 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004549 "authenticated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004550 print_ssid(ssid, priv->essid,
4551 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004552 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004553 break;
4554 }
4555
4556 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004557 if (priv->status & STATUS_AUTH) {
4558 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004559 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004560 *resp;
4561 resp =
4562 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004563 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004564 *)&notif->u.raw;
4565 IPW_DEBUG(IPW_DL_NOTIF |
4566 IPW_DL_STATE |
4567 IPW_DL_ASSOC,
4568 "association failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004569 le16_to_cpu(resp->status),
James Ketrenosea2b26e2005-08-24 21:25:16 -05004570 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004571 (le16_to_cpu
James Ketrenosea2b26e2005-08-24 21:25:16 -05004572 (resp->status)));
4573 }
4574
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004575 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4576 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004577 "disassociated: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004578 print_ssid(ssid, priv->essid,
4579 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004580 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004581
4582 priv->status &=
4583 ~(STATUS_DISASSOCIATING |
4584 STATUS_ASSOCIATING |
4585 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004586 if (priv->assoc_network
4587 && (priv->assoc_network->
4588 capability &
4589 WLAN_CAPABILITY_IBSS))
4590 ipw_remove_current_network
4591 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004592
James Ketrenosa613bff2005-08-24 21:43:11 -05004593 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004594
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004595 break;
4596 }
4597
James Ketrenosb095c382005-08-24 22:04:42 -05004598 case CMAS_RX_ASSOC_RESP:
4599 break;
4600
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004601 default:
4602 IPW_ERROR("assoc: unknown (%d)\n",
4603 assoc->state);
4604 break;
4605 }
4606
James Ketrenos43f66a62005-03-25 12:31:53 -06004607 break;
4608 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004609
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004610 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4611 struct notif_authenticate *auth = &notif->u.auth;
4612 switch (auth->state) {
4613 case CMAS_AUTHENTICATED:
4614 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Johannes Berge1749612008-10-27 15:59:26 -07004615 "authenticated: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004616 print_ssid(ssid, priv->essid,
4617 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004618 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004619 priv->status |= STATUS_AUTH;
4620 break;
4621
4622 case CMAS_INIT:
4623 if (priv->status & STATUS_AUTH) {
4624 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4625 IPW_DL_ASSOC,
4626 "authentication failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004627 le16_to_cpu(auth->status),
4628 ipw_get_status_code(le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004629 (auth->
4630 status)));
4631 }
4632 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4633 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004634 "deauthenticated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004635 print_ssid(ssid, priv->essid,
4636 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004637 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06004638
4639 priv->status &= ~(STATUS_ASSOCIATING |
4640 STATUS_AUTH |
4641 STATUS_ASSOCIATED);
4642
James Ketrenosa613bff2005-08-24 21:43:11 -05004643 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004644 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004645
4646 case CMAS_TX_AUTH_SEQ_1:
4647 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4648 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4649 break;
4650 case CMAS_RX_AUTH_SEQ_2:
4651 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4652 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4653 break;
4654 case CMAS_AUTH_SEQ_1_PASS:
4655 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4656 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4657 break;
4658 case CMAS_AUTH_SEQ_1_FAIL:
4659 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4660 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4661 break;
4662 case CMAS_TX_AUTH_SEQ_3:
4663 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4664 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4665 break;
4666 case CMAS_RX_AUTH_SEQ_4:
4667 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4668 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4669 break;
4670 case CMAS_AUTH_SEQ_2_PASS:
4671 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4672 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4673 break;
4674 case CMAS_AUTH_SEQ_2_FAIL:
4675 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4676 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4677 break;
4678 case CMAS_TX_ASSOC:
4679 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4680 IPW_DL_ASSOC, "TX_ASSOC\n");
4681 break;
4682 case CMAS_RX_ASSOC_RESP:
4683 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4684 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004685
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004686 break;
4687 case CMAS_ASSOCIATED:
4688 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4689 IPW_DL_ASSOC, "ASSOCIATED\n");
4690 break;
4691 default:
4692 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4693 auth->state);
4694 break;
4695 }
4696 break;
4697 }
4698
4699 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4700 struct notif_channel_result *x =
4701 &notif->u.channel_result;
4702
Al Viroe62e1ee2007-12-27 01:36:46 -05004703 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004704 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4705 x->channel_num);
4706 } else {
4707 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4708 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004709 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004710 }
4711 break;
4712 }
4713
4714 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4715 struct notif_scan_complete *x = &notif->u.scan_complete;
Al Viroe62e1ee2007-12-27 01:36:46 -05004716 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004717 IPW_DEBUG_SCAN
4718 ("Scan completed: type %d, %d channels, "
4719 "%d status\n", x->scan_type,
4720 x->num_channels, x->status);
4721 } else {
4722 IPW_ERROR("Scan completed of wrong size %d "
4723 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004724 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004725 }
4726
4727 priv->status &=
4728 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4729
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004730 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004731 cancel_delayed_work(&priv->scan_check);
4732
James Ketrenosb095c382005-08-24 22:04:42 -05004733 if (priv->status & STATUS_EXIT_PENDING)
4734 break;
4735
4736 priv->ieee->scans++;
4737
4738#ifdef CONFIG_IPW2200_MONITOR
4739 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004740 priv->status |= STATUS_SCAN_FORCED;
David Howellsc4028952006-11-22 14:57:56 +00004741 queue_delayed_work(priv->workqueue,
4742 &priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05004743 break;
4744 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004745 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004746#endif /* CONFIG_IPW2200_MONITOR */
4747
Dan Williamsea177302008-06-02 17:51:23 -04004748 /* Do queued direct scans first */
4749 if (priv->status & STATUS_DIRECT_SCAN_PENDING) {
4750 queue_delayed_work(priv->workqueue,
4751 &priv->request_direct_scan, 0);
4752 }
4753
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004754 if (!(priv->status & (STATUS_ASSOCIATED |
4755 STATUS_ASSOCIATING |
4756 STATUS_ROAMING |
4757 STATUS_DISASSOCIATING)))
4758 queue_work(priv->workqueue, &priv->associate);
4759 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004760 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4761 /* If a scan completed and we are in roam mode, then
4762 * the scan that completed was the one requested as a
4763 * result of entering roam... so, schedule the
4764 * roam work */
4765 queue_work(priv->workqueue,
4766 &priv->roam);
4767 else
4768 /* Don't schedule if we aborted the scan */
4769 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004770 } else if (priv->status & STATUS_SCAN_PENDING)
David Howellsc4028952006-11-22 14:57:56 +00004771 queue_delayed_work(priv->workqueue,
4772 &priv->request_scan, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05004773 else if (priv->config & CFG_BACKGROUND_SCAN
4774 && priv->status & STATUS_ASSOCIATED)
4775 queue_delayed_work(priv->workqueue,
Stephen Hemminger1c9d5e42007-06-22 21:34:06 -07004776 &priv->request_scan,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05004777 round_jiffies_relative(HZ));
Zhu Yi07f02e42006-04-13 17:19:25 +08004778
4779 /* Send an empty event to user space.
4780 * We don't send the received data on the event because
4781 * it would require us to do complex transcoding, and
4782 * we want to minimise the work done in the irq handler
4783 * Use a request to extract the data.
4784 * Also, we generate this even for any scan, regardless
4785 * on how the scan was initiated. User space can just
4786 * sync on periodic scan to get fresh data...
4787 * Jean II */
Dan Williams0b531672007-10-09 13:55:24 -04004788 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4789 handle_scan_event(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004790 break;
4791 }
4792
4793 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4794 struct notif_frag_length *x = &notif->u.frag_len;
4795
Al Viroe62e1ee2007-12-27 01:36:46 -05004796 if (size == sizeof(*x))
James Ketrenosa613bff2005-08-24 21:43:11 -05004797 IPW_ERROR("Frag length: %d\n",
4798 le16_to_cpu(x->frag_length));
4799 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004800 IPW_ERROR("Frag length of wrong size %d "
4801 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004802 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004803 break;
4804 }
4805
4806 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4807 struct notif_link_deterioration *x =
4808 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004809
Al Viroe62e1ee2007-12-27 01:36:46 -05004810 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004811 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Cahill, Ben M12977152006-03-08 02:58:02 +08004812 "link deterioration: type %d, cnt %d\n",
4813 x->silence_notification_type,
4814 x->silence_count);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004815 memcpy(&priv->last_link_deterioration, x,
4816 sizeof(*x));
4817 } else {
4818 IPW_ERROR("Link Deterioration of wrong size %d "
4819 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004820 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004821 }
4822 break;
4823 }
4824
4825 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4826 IPW_ERROR("Dino config\n");
4827 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004828 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004829 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004830
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004831 break;
4832 }
4833
4834 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4835 struct notif_beacon_state *x = &notif->u.beacon_state;
Al Viroe62e1ee2007-12-27 01:36:46 -05004836 if (size != sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004837 IPW_ERROR
4838 ("Beacon state of wrong size %d (should "
Al Viroe62e1ee2007-12-27 01:36:46 -05004839 "be %zd)\n", size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004840 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004841 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004842
James Ketrenosa613bff2005-08-24 21:43:11 -05004843 if (le32_to_cpu(x->state) ==
4844 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4845 ipw_handle_missed_beacon(priv,
4846 le32_to_cpu(x->
4847 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004848
James Ketrenos43f66a62005-03-25 12:31:53 -06004849 break;
4850 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004851
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004852 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4853 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
Al Viroe62e1ee2007-12-27 01:36:46 -05004854 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004855 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4856 "0x%02x station %d\n",
4857 x->key_state, x->security_type,
4858 x->station_index);
4859 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004860 }
4861
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004862 IPW_ERROR
4863 ("TGi Tx Key of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004864 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004865 break;
4866 }
4867
4868 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4869 struct notif_calibration *x = &notif->u.calibration;
4870
Al Viroe62e1ee2007-12-27 01:36:46 -05004871 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004872 memcpy(&priv->calib, x, sizeof(*x));
4873 IPW_DEBUG_INFO("TODO: Calibration\n");
4874 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004875 }
4876
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004877 IPW_ERROR
4878 ("Calibration of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004879 size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004880 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004881 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004882
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004883 case HOST_NOTIFICATION_NOISE_STATS:{
Al Viroe62e1ee2007-12-27 01:36:46 -05004884 if (size == sizeof(u32)) {
Zhu Yi00d21de2006-04-13 17:19:02 +08004885 priv->exp_avg_noise =
4886 exponential_average(priv->exp_avg_noise,
4887 (u8) (le32_to_cpu(notif->u.noise.value) & 0xff),
4888 DEPTH_NOISE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004889 break;
4890 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004891
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004892 IPW_ERROR
4893 ("Noise stat is wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004894 size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004895 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004896 }
4897
James Ketrenos43f66a62005-03-25 12:31:53 -06004898 default:
Zhu Yi1dd31b62006-02-20 18:28:09 -08004899 IPW_DEBUG_NOTIF("Unknown notification: "
4900 "subtype=%d,flags=0x%2x,size=%d\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004901 notif->subtype, notif->flags, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06004902 }
4903}
4904
4905/**
4906 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004907 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004908 * @param priv
4909 * @return error code
4910 */
4911static int ipw_queue_reset(struct ipw_priv *priv)
4912{
4913 int rc = 0;
4914 /** @todo customize queue sizes */
4915 int nTx = 64, nTxCmd = 8;
4916 ipw_tx_queue_free(priv);
4917 /* Tx CMD queue */
4918 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004919 IPW_TX_CMD_QUEUE_READ_INDEX,
4920 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4921 IPW_TX_CMD_QUEUE_BD_BASE,
4922 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004923 if (rc) {
4924 IPW_ERROR("Tx Cmd queue init failed\n");
4925 goto error;
4926 }
4927 /* Tx queue(s) */
4928 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004929 IPW_TX_QUEUE_0_READ_INDEX,
4930 IPW_TX_QUEUE_0_WRITE_INDEX,
4931 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004932 if (rc) {
4933 IPW_ERROR("Tx 0 queue init failed\n");
4934 goto error;
4935 }
4936 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004937 IPW_TX_QUEUE_1_READ_INDEX,
4938 IPW_TX_QUEUE_1_WRITE_INDEX,
4939 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004940 if (rc) {
4941 IPW_ERROR("Tx 1 queue init failed\n");
4942 goto error;
4943 }
4944 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004945 IPW_TX_QUEUE_2_READ_INDEX,
4946 IPW_TX_QUEUE_2_WRITE_INDEX,
4947 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004948 if (rc) {
4949 IPW_ERROR("Tx 2 queue init failed\n");
4950 goto error;
4951 }
4952 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004953 IPW_TX_QUEUE_3_READ_INDEX,
4954 IPW_TX_QUEUE_3_WRITE_INDEX,
4955 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004956 if (rc) {
4957 IPW_ERROR("Tx 3 queue init failed\n");
4958 goto error;
4959 }
4960 /* statistics */
4961 priv->rx_bufs_min = 0;
4962 priv->rx_pend_max = 0;
4963 return rc;
4964
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004965 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004966 ipw_tx_queue_free(priv);
4967 return rc;
4968}
4969
4970/**
4971 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004972 *
Stefano Brivio8ff9d212008-01-12 23:12:26 +01004973 * When FW advances 'R' index, all entries between old and
James Ketrenos43f66a62005-03-25 12:31:53 -06004974 * new 'R' index need to be reclaimed. As result, some free space
4975 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004976 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004977 * @note Need to protect against garbage in 'R' index
4978 * @param priv
4979 * @param txq
4980 * @param qindex
4981 * @return Number of used entries remains in the queue
4982 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004983static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004984 struct clx2_tx_queue *txq, int qindex)
4985{
4986 u32 hw_tail;
4987 int used;
4988 struct clx2_queue *q = &txq->q;
4989
4990 hw_tail = ipw_read32(priv, q->reg_r);
4991 if (hw_tail >= q->n_bd) {
4992 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004993 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4994 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004995 goto done;
4996 }
4997 for (; q->last_used != hw_tail;
4998 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4999 ipw_queue_tx_free_tfd(priv, txq);
5000 priv->tx_packets++;
5001 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005002 done:
Dan Williams943dbef2008-02-14 17:49:41 -05005003 if ((ipw_tx_queue_space(q) > q->low_mark) &&
David S. Miller521c4d92008-07-22 18:32:47 -07005004 (qindex >= 0))
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005005 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06005006 used = q->first_empty - q->last_used;
5007 if (used < 0)
5008 used += q->n_bd;
5009
5010 return used;
5011}
5012
5013static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
5014 int len, int sync)
5015{
5016 struct clx2_tx_queue *txq = &priv->txq_cmd;
5017 struct clx2_queue *q = &txq->q;
5018 struct tfd_frame *tfd;
5019
Dan Williams943dbef2008-02-14 17:49:41 -05005020 if (ipw_tx_queue_space(q) < (sync ? 1 : 2)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005021 IPW_ERROR("No space for Tx\n");
5022 return -EBUSY;
5023 }
5024
5025 tfd = &txq->bd[q->first_empty];
5026 txq->txb[q->first_empty] = NULL;
5027
5028 memset(tfd, 0, sizeof(*tfd));
5029 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
5030 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
5031 priv->hcmd_seq++;
5032 tfd->u.cmd.index = hcmd;
5033 tfd->u.cmd.length = len;
5034 memcpy(tfd->u.cmd.payload, buf, len);
5035 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
5036 ipw_write32(priv, q->reg_w, q->first_empty);
5037 _ipw_read32(priv, 0x90);
5038
5039 return 0;
5040}
5041
Jeff Garzikbf794512005-07-31 13:07:26 -04005042/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005043 * Rx theory of operation
5044 *
5045 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05005046 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06005047 * 0 to 31
5048 *
5049 * Rx Queue Indexes
5050 * The host/firmware share two index registers for managing the Rx buffers.
5051 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005052 * The READ index maps to the first position that the firmware may be writing
5053 * to -- the driver can read up to (but not including) this position and get
5054 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06005055 * The READ index is managed by the firmware once the card is enabled.
5056 *
5057 * The WRITE index maps to the last position the driver has read from -- the
5058 * position preceding WRITE is the last slot the firmware can place a packet.
5059 *
5060 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04005061 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06005062 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005063 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06005064 * INDEX position, and WRITE to the last (READ - 1 wrapped)
5065 *
5066 * When the firmware places a packet in a buffer it will advance the READ index
5067 * and fire the RX interrupt. The driver can then query the READ index and
5068 * process as many packets as possible, moving the WRITE index forward as it
5069 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04005070 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005071 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04005072 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06005073 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04005074 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06005075 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
5076 * ipw->rxq is replenished and the READ INDEX is updated (updating the
5077 * 'processed' and 'read' driver indexes as well)
5078 * + A received packet is processed and handed to the kernel network stack,
5079 * detached from the ipw->rxq. The driver 'processed' index is updated.
5080 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04005081 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
5082 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06005083 * were enough free buffers and RX_STALLED is set it is cleared.
5084 *
5085 *
5086 * Driver sequence:
5087 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005088 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06005089 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
5090 * ipw_rx_queue_restock
5091 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
5092 * queue, updates firmware pointers, and updates
5093 * the WRITE index. If insufficient rx_free buffers
5094 * are available, schedules ipw_rx_queue_replenish
5095 *
5096 * -- enable interrupts --
5097 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04005098 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06005099 * Moves the packet buffer from queue to rx_used.
5100 * Calls ipw_rx_queue_restock to refill any empty
5101 * slots.
5102 * ...
5103 *
5104 */
5105
Jeff Garzikbf794512005-07-31 13:07:26 -04005106/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005107 * If there are slots in the RX queue that need to be restocked,
5108 * and we have free pre-allocated buffers, fill the ranks as much
5109 * as we can pulling from rx_free.
5110 *
5111 * This moves the 'write' index forward to catch up with 'processed', and
5112 * also updates the memory address in the firmware to reference the new
5113 * target buffer.
5114 */
5115static void ipw_rx_queue_restock(struct ipw_priv *priv)
5116{
5117 struct ipw_rx_queue *rxq = priv->rxq;
5118 struct list_head *element;
5119 struct ipw_rx_mem_buffer *rxb;
5120 unsigned long flags;
5121 int write;
5122
5123 spin_lock_irqsave(&rxq->lock, flags);
5124 write = rxq->write;
Dan Williams943dbef2008-02-14 17:49:41 -05005125 while ((ipw_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005126 element = rxq->rx_free.next;
5127 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
5128 list_del(element);
5129
James Ketrenosb095c382005-08-24 22:04:42 -05005130 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06005131 rxb->dma_addr);
5132 rxq->queue[rxq->write] = rxb;
5133 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
5134 rxq->free_count--;
5135 }
5136 spin_unlock_irqrestore(&rxq->lock, flags);
5137
Jeff Garzikbf794512005-07-31 13:07:26 -04005138 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06005139 * refill it */
5140 if (rxq->free_count <= RX_LOW_WATERMARK)
5141 queue_work(priv->workqueue, &priv->rx_replenish);
5142
5143 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04005144 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05005145 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06005146}
5147
5148/*
5149 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04005150 * Also restock the Rx queue via ipw_rx_queue_restock.
5151 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005152 * This is called as a scheduled work item (except for during intialization)
5153 */
5154static void ipw_rx_queue_replenish(void *data)
5155{
5156 struct ipw_priv *priv = data;
5157 struct ipw_rx_queue *rxq = priv->rxq;
5158 struct list_head *element;
5159 struct ipw_rx_mem_buffer *rxb;
5160 unsigned long flags;
5161
5162 spin_lock_irqsave(&rxq->lock, flags);
5163 while (!list_empty(&rxq->rx_used)) {
5164 element = rxq->rx_used.next;
5165 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05005166 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06005167 if (!rxb->skb) {
5168 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
5169 priv->net_dev->name);
5170 /* We don't reschedule replenish work here -- we will
5171 * call the restock method and if it still needs
5172 * more buffers it will schedule replenish */
5173 break;
5174 }
5175 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04005176
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005177 rxb->dma_addr =
5178 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05005179 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04005180
James Ketrenos43f66a62005-03-25 12:31:53 -06005181 list_add_tail(&rxb->list, &rxq->rx_free);
5182 rxq->free_count++;
5183 }
5184 spin_unlock_irqrestore(&rxq->lock, flags);
5185
5186 ipw_rx_queue_restock(priv);
5187}
5188
David Howellsc4028952006-11-22 14:57:56 +00005189static void ipw_bg_rx_queue_replenish(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005190{
David Howellsc4028952006-11-22 14:57:56 +00005191 struct ipw_priv *priv =
5192 container_of(work, struct ipw_priv, rx_replenish);
Zhu Yi46441512006-01-24 16:37:59 +08005193 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00005194 ipw_rx_queue_replenish(priv);
Zhu Yi46441512006-01-24 16:37:59 +08005195 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005196}
5197
James Ketrenos43f66a62005-03-25 12:31:53 -06005198/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Zhu Yic7b6a672006-01-24 16:37:05 +08005199 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04005200 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06005201 * non NULL it is unmapped and freed
5202 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005203static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06005204{
5205 int i;
5206
5207 if (!rxq)
5208 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04005209
James Ketrenos43f66a62005-03-25 12:31:53 -06005210 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
5211 if (rxq->pool[i].skb != NULL) {
5212 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05005213 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06005214 dev_kfree_skb(rxq->pool[i].skb);
5215 }
5216 }
5217
5218 kfree(rxq);
5219}
5220
5221static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
5222{
5223 struct ipw_rx_queue *rxq;
5224 int i;
5225
Takisc75f4742005-12-01 01:41:45 -08005226 rxq = kzalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02005227 if (unlikely(!rxq)) {
5228 IPW_ERROR("memory allocation failed\n");
5229 return NULL;
5230 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005231 spin_lock_init(&rxq->lock);
5232 INIT_LIST_HEAD(&rxq->rx_free);
5233 INIT_LIST_HEAD(&rxq->rx_used);
5234
5235 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04005236 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06005237 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
5238
5239 /* Set us so that we have processed and used all buffers, but have
5240 * not restocked the Rx queue with fresh buffers */
5241 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005242 rxq->free_count = 0;
5243
5244 return rxq;
5245}
5246
5247static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
5248{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005249 rate &= ~LIBIPW_BASIC_RATE_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06005250 if (ieee_mode == IEEE_A) {
5251 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005252 case LIBIPW_OFDM_RATE_6MB:
5253 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005254 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005255 case LIBIPW_OFDM_RATE_9MB:
5256 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005257 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005258 case LIBIPW_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005259 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005260 rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5261 case LIBIPW_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005262 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005263 rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5264 case LIBIPW_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005265 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005266 rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5267 case LIBIPW_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005268 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005269 rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5270 case LIBIPW_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005271 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005272 rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5273 case LIBIPW_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005274 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005275 rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005276 default:
5277 return 0;
5278 }
5279 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005280
James Ketrenos43f66a62005-03-25 12:31:53 -06005281 /* B and G mixed */
5282 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005283 case LIBIPW_CCK_RATE_1MB:
5284 return priv->rates_mask & LIBIPW_CCK_RATE_1MB_MASK ? 1 : 0;
5285 case LIBIPW_CCK_RATE_2MB:
5286 return priv->rates_mask & LIBIPW_CCK_RATE_2MB_MASK ? 1 : 0;
5287 case LIBIPW_CCK_RATE_5MB:
5288 return priv->rates_mask & LIBIPW_CCK_RATE_5MB_MASK ? 1 : 0;
5289 case LIBIPW_CCK_RATE_11MB:
5290 return priv->rates_mask & LIBIPW_CCK_RATE_11MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005291 }
5292
5293 /* If we are limited to B modulations, bail at this point */
5294 if (ieee_mode == IEEE_B)
5295 return 0;
5296
5297 /* G */
5298 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005299 case LIBIPW_OFDM_RATE_6MB:
5300 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ? 1 : 0;
5301 case LIBIPW_OFDM_RATE_9MB:
5302 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ? 1 : 0;
5303 case LIBIPW_OFDM_RATE_12MB:
5304 return priv->rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5305 case LIBIPW_OFDM_RATE_18MB:
5306 return priv->rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5307 case LIBIPW_OFDM_RATE_24MB:
5308 return priv->rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5309 case LIBIPW_OFDM_RATE_36MB:
5310 return priv->rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5311 case LIBIPW_OFDM_RATE_48MB:
5312 return priv->rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5313 case LIBIPW_OFDM_RATE_54MB:
5314 return priv->rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005315 }
5316
5317 return 0;
5318}
5319
Jeff Garzikbf794512005-07-31 13:07:26 -04005320static int ipw_compatible_rates(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005321 const struct libipw_network *network,
James Ketrenos43f66a62005-03-25 12:31:53 -06005322 struct ipw_supported_rates *rates)
5323{
5324 int num_rates, i;
5325
5326 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005327 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005328 rates->num_rates = 0;
5329 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005330 if (!ipw_is_rate_in_mask(priv, network->mode,
5331 network->rates[i])) {
5332
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005333 if (network->rates[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005334 IPW_DEBUG_SCAN("Adding masked mandatory "
5335 "rate %02X\n",
5336 network->rates[i]);
5337 rates->supported_rates[rates->num_rates++] =
5338 network->rates[i];
5339 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005340 }
5341
James Ketrenos43f66a62005-03-25 12:31:53 -06005342 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5343 network->rates[i], priv->rates_mask);
5344 continue;
5345 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005346
James Ketrenos43f66a62005-03-25 12:31:53 -06005347 rates->supported_rates[rates->num_rates++] = network->rates[i];
5348 }
5349
James Ketrenosa613bff2005-08-24 21:43:11 -05005350 num_rates = min(network->rates_ex_len,
5351 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005352 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005353 if (!ipw_is_rate_in_mask(priv, network->mode,
5354 network->rates_ex[i])) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005355 if (network->rates_ex[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005356 IPW_DEBUG_SCAN("Adding masked mandatory "
5357 "rate %02X\n",
5358 network->rates_ex[i]);
5359 rates->supported_rates[rates->num_rates++] =
5360 network->rates[i];
5361 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005362 }
5363
James Ketrenos43f66a62005-03-25 12:31:53 -06005364 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5365 network->rates_ex[i], priv->rates_mask);
5366 continue;
5367 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005368
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005369 rates->supported_rates[rates->num_rates++] =
5370 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005371 }
5372
James Ketrenosea2b26e2005-08-24 21:25:16 -05005373 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005374}
5375
Arjan van de Ven858119e2006-01-14 13:20:43 -08005376static void ipw_copy_rates(struct ipw_supported_rates *dest,
James Ketrenos43f66a62005-03-25 12:31:53 -06005377 const struct ipw_supported_rates *src)
5378{
5379 u8 i;
5380 for (i = 0; i < src->num_rates; i++)
5381 dest->supported_rates[i] = src->supported_rates[i];
5382 dest->num_rates = src->num_rates;
5383}
5384
5385/* TODO: Look at sniffed packets in the air to determine if the basic rate
5386 * mask should ever be used -- right now all callers to add the scan rates are
5387 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5388static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005389 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005390{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005391 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5392 LIBIPW_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005393
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005394 if (rate_mask & LIBIPW_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005395 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005396 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005397
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005398 if (rate_mask & LIBIPW_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005399 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005400 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005401
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005402 if (rate_mask & LIBIPW_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005403 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005404 LIBIPW_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005405
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005406 if (rate_mask & LIBIPW_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005407 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005408 LIBIPW_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005409}
5410
5411static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005412 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005413{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005414 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5415 LIBIPW_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005416
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005417 if (rate_mask & LIBIPW_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005418 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005419 LIBIPW_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005420
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005421 if (rate_mask & LIBIPW_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005422 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005423 LIBIPW_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005424
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005425 if (rate_mask & LIBIPW_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005426 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005427 LIBIPW_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005428
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005429 if (rate_mask & LIBIPW_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005430 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005431 LIBIPW_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005432
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005433 if (rate_mask & LIBIPW_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005434 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005435 LIBIPW_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005436
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005437 if (rate_mask & LIBIPW_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005438 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005439 LIBIPW_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005440
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005441 if (rate_mask & LIBIPW_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005442 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005443 LIBIPW_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005444
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005445 if (rate_mask & LIBIPW_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005446 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005447 LIBIPW_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005448}
5449
5450struct ipw_network_match {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005451 struct libipw_network *network;
James Ketrenos43f66a62005-03-25 12:31:53 -06005452 struct ipw_supported_rates rates;
5453};
5454
James Ketrenosc848d0a2005-08-24 21:56:24 -05005455static int ipw_find_adhoc_network(struct ipw_priv *priv,
5456 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005457 struct libipw_network *network,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005458 int roaming)
5459{
5460 struct ipw_supported_rates rates;
John W. Linville9387b7c2008-09-30 20:59:05 -04005461 DECLARE_SSID_BUF(ssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005462
5463 /* Verify that this network's capability is compatible with the
5464 * current mode (AdHoc or Infrastructure) */
5465 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5466 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Johannes Berge1749612008-10-27 15:59:26 -07005467 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded due to "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005468 "capability mismatch.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005469 print_ssid(ssid, network->ssid,
5470 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005471 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005472 return 0;
5473 }
5474
James Ketrenosc848d0a2005-08-24 21:56:24 -05005475 if (unlikely(roaming)) {
5476 /* If we are roaming, then ensure check if this is a valid
5477 * network to try and roam to */
5478 if ((network->ssid_len != match->network->ssid_len) ||
5479 memcmp(network->ssid, match->network->ssid,
5480 network->ssid_len)) {
Johannes Berge1749612008-10-27 15:59:26 -07005481 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005482 "because of non-network ESSID.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005483 print_ssid(ssid, network->ssid,
5484 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005485 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005486 return 0;
5487 }
5488 } else {
5489 /* If an ESSID has been configured then compare the broadcast
5490 * ESSID to ours */
5491 if ((priv->config & CFG_STATIC_ESSID) &&
5492 ((network->ssid_len != priv->essid_len) ||
5493 memcmp(network->ssid, priv->essid,
5494 min(network->ssid_len, priv->essid_len)))) {
5495 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005496
James Ketrenosc848d0a2005-08-24 21:56:24 -05005497 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005498 print_ssid(ssid, network->ssid,
5499 network->ssid_len),
James Ketrenosc848d0a2005-08-24 21:56:24 -05005500 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005501 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005502 "because of ESSID mismatch: '%s'.\n",
Johannes Berge1749612008-10-27 15:59:26 -07005503 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005504 print_ssid(ssid, priv->essid,
5505 priv->essid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005506 return 0;
5507 }
5508 }
5509
5510 /* If the old network rate is better than this one, don't bother
5511 * testing everything else. */
5512
5513 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005514 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5515 "current network.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005516 print_ssid(ssid, match->network->ssid,
5517 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005518 return 0;
5519 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005520 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5521 "current network.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005522 print_ssid(ssid, match->network->ssid,
5523 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005524 return 0;
5525 }
5526
5527 /* Now go through and see if the requested network is valid... */
5528 if (priv->ieee->scan_age != 0 &&
5529 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Johannes Berge1749612008-10-27 15:59:26 -07005530 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005531 "because of age: %ums.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005532 print_ssid(ssid, network->ssid,
5533 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005534 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005535 jiffies_to_msecs(jiffies -
5536 network->last_scanned));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005537 return 0;
5538 }
5539
5540 if ((priv->config & CFG_STATIC_CHANNEL) &&
5541 (network->channel != priv->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005542 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005543 "because of channel mismatch: %d != %d.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005544 print_ssid(ssid, network->ssid,
5545 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005546 network->bssid,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005547 network->channel, priv->channel);
5548 return 0;
5549 }
5550
5551 /* Verify privacy compatability */
5552 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5553 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Johannes Berge1749612008-10-27 15:59:26 -07005554 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005555 "because of privacy mismatch: %s != %s.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005556 print_ssid(ssid, network->ssid,
5557 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005558 network->bssid,
James Ketrenosafbf30a2005-08-25 00:05:33 -05005559 priv->
5560 capability & CAP_PRIVACY_ON ? "on" : "off",
5561 network->
5562 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5563 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005564 return 0;
5565 }
5566
5567 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
Johannes Berge1749612008-10-27 15:59:26 -07005568 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
5569 "because of the same BSSID match: %pM"
John W. Linville9387b7c2008-09-30 20:59:05 -04005570 ".\n", print_ssid(ssid, network->ssid,
5571 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005572 network->bssid,
5573 priv->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005574 return 0;
5575 }
5576
5577 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005578 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Johannes Berge1749612008-10-27 15:59:26 -07005579 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005580 "because of invalid frequency/mode "
5581 "combination.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005582 print_ssid(ssid, network->ssid,
5583 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005584 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005585 return 0;
5586 }
5587
5588 /* Ensure that the rates supported by the driver are compatible with
5589 * this AP, including verification of basic rates (mandatory) */
5590 if (!ipw_compatible_rates(priv, network, &rates)) {
Johannes Berge1749612008-10-27 15:59:26 -07005591 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005592 "because configured rate mask excludes "
5593 "AP mandatory rate.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005594 print_ssid(ssid, network->ssid,
5595 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005596 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005597 return 0;
5598 }
5599
5600 if (rates.num_rates == 0) {
Johannes Berge1749612008-10-27 15:59:26 -07005601 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005602 "because of no compatible rates.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005603 print_ssid(ssid, network->ssid,
5604 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005605 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005606 return 0;
5607 }
5608
5609 /* TODO: Perform any further minimal comparititive tests. We do not
5610 * want to put too much policy logic here; intelligent scan selection
5611 * should occur within a generic IEEE 802.11 user space tool. */
5612
5613 /* Set up 'new' AP to this network */
5614 ipw_copy_rates(&match->rates, &rates);
5615 match->network = network;
Johannes Berge1749612008-10-27 15:59:26 -07005616 IPW_DEBUG_MERGE("Network '%s (%pM)' is a viable match.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005617 print_ssid(ssid, network->ssid, network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005618 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005619
5620 return 1;
5621}
5622
David Howellsc4028952006-11-22 14:57:56 +00005623static void ipw_merge_adhoc_network(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005624{
John W. Linville9387b7c2008-09-30 20:59:05 -04005625 DECLARE_SSID_BUF(ssid);
David Howellsc4028952006-11-22 14:57:56 +00005626 struct ipw_priv *priv =
5627 container_of(work, struct ipw_priv, merge_networks);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005628 struct libipw_network *network = NULL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05005629 struct ipw_network_match match = {
5630 .network = priv->assoc_network
5631 };
5632
James Ketrenosafbf30a2005-08-25 00:05:33 -05005633 if ((priv->status & STATUS_ASSOCIATED) &&
5634 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005635 /* First pass through ROAM process -- look for a better
5636 * network */
5637 unsigned long flags;
5638
5639 spin_lock_irqsave(&priv->ieee->lock, flags);
5640 list_for_each_entry(network, &priv->ieee->network_list, list) {
5641 if (network != priv->assoc_network)
5642 ipw_find_adhoc_network(priv, &match, network,
5643 1);
5644 }
5645 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5646
5647 if (match.network == priv->assoc_network) {
5648 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5649 "merge to.\n");
5650 return;
5651 }
5652
Zhu Yi46441512006-01-24 16:37:59 +08005653 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005654 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5655 IPW_DEBUG_MERGE("remove network %s\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005656 print_ssid(ssid, priv->essid,
5657 priv->essid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005658 ipw_remove_current_network(priv);
5659 }
5660
5661 ipw_disassociate(priv);
5662 priv->assoc_network = match.network;
Zhu Yi46441512006-01-24 16:37:59 +08005663 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005664 return;
5665 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005666}
5667
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005668static int ipw_best_network(struct ipw_priv *priv,
5669 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005670 struct libipw_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005671{
5672 struct ipw_supported_rates rates;
John W. Linville9387b7c2008-09-30 20:59:05 -04005673 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005674
5675 /* Verify that this network's capability is compatible with the
5676 * current mode (AdHoc or Infrastructure) */
5677 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005678 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005679 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5680 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Johannes Berge1749612008-10-27 15:59:26 -07005681 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005682 "capability mismatch.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005683 print_ssid(ssid, network->ssid,
5684 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005685 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005686 return 0;
5687 }
5688
James Ketrenos43f66a62005-03-25 12:31:53 -06005689 if (unlikely(roaming)) {
5690 /* If we are roaming, then ensure check if this is a valid
5691 * network to try and roam to */
5692 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005693 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005694 network->ssid_len)) {
Johannes Berge1749612008-10-27 15:59:26 -07005695 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005696 "because of non-network ESSID.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005697 print_ssid(ssid, network->ssid,
5698 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005699 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005700 return 0;
5701 }
5702 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005703 /* If an ESSID has been configured then compare the broadcast
5704 * ESSID to ours */
5705 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005706 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005707 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005708 min(network->ssid_len, priv->essid_len)))) {
5709 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005710 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005711 print_ssid(ssid, network->ssid,
5712 network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005713 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005714 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005715 "because of ESSID mismatch: '%s'.\n",
Johannes Berge1749612008-10-27 15:59:26 -07005716 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005717 print_ssid(ssid, priv->essid,
5718 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005719 return 0;
5720 }
5721 }
5722
5723 /* If the old network rate is better than this one, don't bother
5724 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005725 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005726 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005727 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005728 print_ssid(ssid, network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005729 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005730 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded because "
5731 "'%s (%pM)' has a stronger signal.\n",
5732 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005733 print_ssid(ssid, match->network->ssid,
5734 match->network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005735 match->network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005736 return 0;
5737 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005738
James Ketrenos43f66a62005-03-25 12:31:53 -06005739 /* If this network has already had an association attempt within the
5740 * last 3 seconds, do not try and associate again... */
5741 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005742 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
Johannes Berge1749612008-10-27 15:59:26 -07005743 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005744 "because of storming (%ums since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005745 "assoc attempt).\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005746 print_ssid(ssid, network->ssid,
5747 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005748 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005749 jiffies_to_msecs(jiffies -
5750 network->last_associate));
James Ketrenos43f66a62005-03-25 12:31:53 -06005751 return 0;
5752 }
5753
5754 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005755 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005756 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Johannes Berge1749612008-10-27 15:59:26 -07005757 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005758 "because of age: %ums.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005759 print_ssid(ssid, network->ssid,
5760 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005761 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005762 jiffies_to_msecs(jiffies -
5763 network->last_scanned));
James Ketrenos43f66a62005-03-25 12:31:53 -06005764 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005765 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005766
Jeff Garzikbf794512005-07-31 13:07:26 -04005767 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005768 (network->channel != priv->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005769 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005770 "because of channel mismatch: %d != %d.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005771 print_ssid(ssid, network->ssid,
5772 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005773 network->bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005774 network->channel, priv->channel);
5775 return 0;
5776 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005777
James Ketrenos43f66a62005-03-25 12:31:53 -06005778 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005779 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005780 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Johannes Berge1749612008-10-27 15:59:26 -07005781 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005782 "because of privacy mismatch: %s != %s.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005783 print_ssid(ssid, network->ssid,
5784 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005785 network->bssid,
Jeff Garzikbf794512005-07-31 13:07:26 -04005786 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005787 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005788 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005789 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005790 return 0;
5791 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005792
5793 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005794 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
Johannes Berge1749612008-10-27 15:59:26 -07005795 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
5796 "because of BSSID mismatch: %pM.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005797 print_ssid(ssid, network->ssid,
5798 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005799 network->bssid, priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005800 return 0;
5801 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005802
James Ketrenos43f66a62005-03-25 12:31:53 -06005803 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005804 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Johannes Berge1749612008-10-27 15:59:26 -07005805 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005806 "because of invalid frequency/mode "
5807 "combination.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005808 print_ssid(ssid, network->ssid,
5809 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005810 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005811 return 0;
5812 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005813
Liu Hong1fe0adb2005-08-19 09:33:10 -05005814 /* Filter out invalid channel in current GEO */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005815 if (!libipw_is_valid_channel(priv->ieee, network->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005816 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Liu Hong1fe0adb2005-08-19 09:33:10 -05005817 "because of invalid channel in current GEO\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005818 print_ssid(ssid, network->ssid,
5819 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005820 network->bssid);
Liu Hong1fe0adb2005-08-19 09:33:10 -05005821 return 0;
5822 }
5823
James Ketrenosea2b26e2005-08-24 21:25:16 -05005824 /* Ensure that the rates supported by the driver are compatible with
5825 * this AP, including verification of basic rates (mandatory) */
5826 if (!ipw_compatible_rates(priv, network, &rates)) {
Johannes Berge1749612008-10-27 15:59:26 -07005827 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenosea2b26e2005-08-24 21:25:16 -05005828 "because configured rate mask excludes "
5829 "AP mandatory rate.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005830 print_ssid(ssid, network->ssid,
5831 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005832 network->bssid);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005833 return 0;
5834 }
5835
James Ketrenos43f66a62005-03-25 12:31:53 -06005836 if (rates.num_rates == 0) {
Johannes Berge1749612008-10-27 15:59:26 -07005837 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005838 "because of no compatible rates.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005839 print_ssid(ssid, network->ssid,
5840 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005841 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005842 return 0;
5843 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005844
James Ketrenos43f66a62005-03-25 12:31:53 -06005845 /* TODO: Perform any further minimal comparititive tests. We do not
5846 * want to put too much policy logic here; intelligent scan selection
5847 * should occur within a generic IEEE 802.11 user space tool. */
5848
5849 /* Set up 'new' AP to this network */
5850 ipw_copy_rates(&match->rates, &rates);
5851 match->network = network;
5852
Johannes Berge1749612008-10-27 15:59:26 -07005853 IPW_DEBUG_ASSOC("Network '%s (%pM)' is a viable match.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005854 print_ssid(ssid, network->ssid, network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005855 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005856
5857 return 1;
5858}
5859
Jeff Garzikbf794512005-07-31 13:07:26 -04005860static void ipw_adhoc_create(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005861 struct libipw_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005862{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005863 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005864 int i;
5865
James Ketrenos43f66a62005-03-25 12:31:53 -06005866 /*
5867 * For the purposes of scanning, we can set our wireless mode
5868 * to trigger scans across combinations of bands, but when it
5869 * comes to creating a new ad-hoc network, we have tell the FW
5870 * exactly which band to use.
5871 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005872 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005873 * chossen band. Attempting to create a new ad-hoc network
5874 * with an invalid channel for wireless mode will trigger a
5875 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005876 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005877 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005878 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
5879 case LIBIPW_52GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005880 network->mode = IEEE_A;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005881 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005882 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005883 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005884 IPW_WARNING("Overriding invalid channel\n");
5885 priv->channel = geo->a[0].channel;
5886 }
5887 break;
5888
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005889 case LIBIPW_24GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005890 if (priv->ieee->mode & IEEE_G)
5891 network->mode = IEEE_G;
5892 else
5893 network->mode = IEEE_B;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005894 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005895 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005896 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005897 IPW_WARNING("Overriding invalid channel\n");
5898 priv->channel = geo->bg[0].channel;
5899 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005900 break;
5901
5902 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005903 IPW_WARNING("Overriding invalid channel\n");
5904 if (priv->ieee->mode & IEEE_A) {
5905 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005906 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005907 } else if (priv->ieee->mode & IEEE_G) {
5908 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005909 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005910 } else {
5911 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005912 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005913 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005914 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005915 }
5916
5917 network->channel = priv->channel;
5918 priv->config |= CFG_ADHOC_PERSIST;
5919 ipw_create_bssid(priv, network->bssid);
5920 network->ssid_len = priv->essid_len;
5921 memcpy(network->ssid, priv->essid, priv->essid_len);
5922 memset(&network->stats, 0, sizeof(network->stats));
5923 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005924 if (!(priv->config & CFG_PREAMBLE_LONG))
5925 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005926 if (priv->capability & CAP_PRIVACY_ON)
5927 network->capability |= WLAN_CAPABILITY_PRIVACY;
5928 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005929 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005930 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005931 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005932 &priv->rates.supported_rates[network->rates_len],
5933 network->rates_ex_len);
5934 network->last_scanned = 0;
5935 network->flags = 0;
5936 network->last_associate = 0;
5937 network->time_stamp[0] = 0;
5938 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005939 network->beacon_interval = 100; /* Default */
5940 network->listen_interval = 10; /* Default */
5941 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005942 network->wpa_ie_len = 0;
5943 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005944}
5945
James Ketrenosb095c382005-08-24 22:04:42 -05005946static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5947{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005948 struct ipw_tgi_tx_key key;
James Ketrenosb095c382005-08-24 22:04:42 -05005949
5950 if (!(priv->ieee->sec.flags & (1 << index)))
5951 return;
5952
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005953 key.key_id = index;
5954 memcpy(key.key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5955 key.security_type = type;
5956 key.station_index = 0; /* always 0 for BSS */
5957 key.flags = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005958 /* 0 for new key; previous value of counter (after fatal error) */
Zhu Yi851ca262006-08-21 11:37:58 +08005959 key.tx_counter[0] = cpu_to_le32(0);
5960 key.tx_counter[1] = cpu_to_le32(0);
James Ketrenosb095c382005-08-24 22:04:42 -05005961
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005962 ipw_send_cmd_pdu(priv, IPW_CMD_TGI_TX_KEY, sizeof(key), &key);
James Ketrenosb095c382005-08-24 22:04:42 -05005963}
5964
5965static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005966{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005967 struct ipw_wep_key key;
James Ketrenos43f66a62005-03-25 12:31:53 -06005968 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -06005969
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005970 key.cmd_id = DINO_CMD_WEP_KEY;
5971 key.seq_num = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005972
James Ketrenosb095c382005-08-24 22:04:42 -05005973 /* Note: AES keys cannot be set for multiple times.
5974 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005975 for (i = 0; i < 4; i++) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005976 key.key_index = i | type;
James Ketrenosb095c382005-08-24 22:04:42 -05005977 if (!(priv->ieee->sec.flags & (1 << i))) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005978 key.key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005979 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005980 }
5981
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005982 key.key_size = priv->ieee->sec.key_sizes[i];
5983 memcpy(key.key, priv->ieee->sec.keys[i], key.key_size);
James Ketrenosb095c382005-08-24 22:04:42 -05005984
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005985 ipw_send_cmd_pdu(priv, IPW_CMD_WEP_KEY, sizeof(key), &key);
Jeff Garzikbf794512005-07-31 13:07:26 -04005986 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005987}
5988
Zhu Yi1fbfea52005-08-05 17:22:56 +08005989static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5990{
5991 if (priv->ieee->host_encrypt)
5992 return;
5993
5994 switch (level) {
5995 case SEC_LEVEL_3:
5996 priv->sys_config.disable_unicast_decryption = 0;
5997 priv->ieee->host_decrypt = 0;
5998 break;
5999 case SEC_LEVEL_2:
6000 priv->sys_config.disable_unicast_decryption = 1;
6001 priv->ieee->host_decrypt = 1;
6002 break;
6003 case SEC_LEVEL_1:
6004 priv->sys_config.disable_unicast_decryption = 0;
6005 priv->ieee->host_decrypt = 0;
6006 break;
6007 case SEC_LEVEL_0:
6008 priv->sys_config.disable_unicast_decryption = 1;
6009 break;
6010 default:
6011 break;
6012 }
6013}
6014
6015static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
6016{
6017 if (priv->ieee->host_encrypt)
6018 return;
6019
6020 switch (level) {
6021 case SEC_LEVEL_3:
6022 priv->sys_config.disable_multicast_decryption = 0;
6023 break;
6024 case SEC_LEVEL_2:
6025 priv->sys_config.disable_multicast_decryption = 1;
6026 break;
6027 case SEC_LEVEL_1:
6028 priv->sys_config.disable_multicast_decryption = 0;
6029 break;
6030 case SEC_LEVEL_0:
6031 priv->sys_config.disable_multicast_decryption = 1;
6032 break;
6033 default:
6034 break;
6035 }
6036}
6037
James Ketrenosb095c382005-08-24 22:04:42 -05006038static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
6039{
6040 switch (priv->ieee->sec.level) {
6041 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006042 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6043 ipw_send_tgi_tx_key(priv,
6044 DCT_FLAG_EXT_SECURITY_CCM,
6045 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006046
Hong Liu567deaf2005-08-31 18:07:22 +08006047 if (!priv->ieee->host_mc_decrypt)
6048 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05006049 break;
6050 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006051 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6052 ipw_send_tgi_tx_key(priv,
6053 DCT_FLAG_EXT_SECURITY_TKIP,
6054 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05006055 break;
6056 case SEC_LEVEL_1:
6057 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05006058 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
6059 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05006060 break;
6061 case SEC_LEVEL_0:
6062 default:
6063 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06006064 }
6065}
6066
6067static void ipw_adhoc_check(void *data)
6068{
6069 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04006070
James Ketrenosafbf30a2005-08-25 00:05:33 -05006071 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06006072 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006073 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
6074 IPW_DL_STATE | IPW_DL_ASSOC,
6075 "Missed beacon: %d - disassociate\n",
6076 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06006077 ipw_remove_current_network(priv);
6078 ipw_disassociate(priv);
6079 return;
6080 }
6081
Jeff Garzikbf794512005-07-31 13:07:26 -04006082 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
Al Viro5b5e8072007-12-27 01:54:06 -05006083 le16_to_cpu(priv->assoc_request.beacon_interval));
James Ketrenos43f66a62005-03-25 12:31:53 -06006084}
6085
David Howellsc4028952006-11-22 14:57:56 +00006086static void ipw_bg_adhoc_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006087{
David Howellsc4028952006-11-22 14:57:56 +00006088 struct ipw_priv *priv =
6089 container_of(work, struct ipw_priv, adhoc_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08006090 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006091 ipw_adhoc_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006092 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006093}
6094
James Ketrenos43f66a62005-03-25 12:31:53 -06006095static void ipw_debug_config(struct ipw_priv *priv)
6096{
John W. Linville9387b7c2008-09-30 20:59:05 -04006097 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006098 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
6099 "[CFG 0x%08X]\n", priv->config);
6100 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006101 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06006102 else
6103 IPW_DEBUG_INFO("Channel unlocked.\n");
6104 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04006105 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006106 print_ssid(ssid, priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06006107 else
6108 IPW_DEBUG_INFO("ESSID unlocked.\n");
6109 if (priv->config & CFG_STATIC_BSSID)
Johannes Berge1749612008-10-27 15:59:26 -07006110 IPW_DEBUG_INFO("BSSID locked to %pM\n", priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006111 else
6112 IPW_DEBUG_INFO("BSSID unlocked.\n");
6113 if (priv->capability & CAP_PRIVACY_ON)
6114 IPW_DEBUG_INFO("PRIVACY on\n");
6115 else
6116 IPW_DEBUG_INFO("PRIVACY off\n");
6117 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
6118}
James Ketrenos43f66a62005-03-25 12:31:53 -06006119
Arjan van de Ven858119e2006-01-14 13:20:43 -08006120static void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06006121{
6122 /* TODO: Verify that this works... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07006123 struct ipw_fixed_rate fr;
James Ketrenos43f66a62005-03-25 12:31:53 -06006124 u32 reg;
6125 u16 mask = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -07006126 u16 new_tx_rates = priv->rates_mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006127
Jeff Garzikbf794512005-07-31 13:07:26 -04006128 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06006129 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04006130
James Ketrenos43f66a62005-03-25 12:31:53 -06006131 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006132 case LIBIPW_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06006133 /* IEEE_A */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006134 if (priv->rates_mask & ~LIBIPW_OFDM_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006135 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006136 IPW_DEBUG_WX
6137 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006138 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006139 break;
6140 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006141
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006142 new_tx_rates >>= LIBIPW_OFDM_SHIFT_MASK_A;
James Ketrenos43f66a62005-03-25 12:31:53 -06006143 break;
6144
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006145 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06006146 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05006147 if (mode == IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006148 if (new_tx_rates & ~LIBIPW_CCK_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006149 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006150 IPW_DEBUG_WX
6151 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006152 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006153 }
6154 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04006155 }
James Ketrenos43f66a62005-03-25 12:31:53 -06006156
6157 /* IEEE_G */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006158 if (new_tx_rates & ~(LIBIPW_CCK_RATES_MASK |
6159 LIBIPW_OFDM_RATES_MASK)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006160 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006161 IPW_DEBUG_WX
6162 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006163 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006164 break;
6165 }
6166
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006167 if (LIBIPW_OFDM_RATE_6MB_MASK & new_tx_rates) {
6168 mask |= (LIBIPW_OFDM_RATE_6MB_MASK >> 1);
6169 new_tx_rates &= ~LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006170 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006171
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006172 if (LIBIPW_OFDM_RATE_9MB_MASK & new_tx_rates) {
6173 mask |= (LIBIPW_OFDM_RATE_9MB_MASK >> 1);
6174 new_tx_rates &= ~LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006175 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006176
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006177 if (LIBIPW_OFDM_RATE_12MB_MASK & new_tx_rates) {
6178 mask |= (LIBIPW_OFDM_RATE_12MB_MASK >> 1);
6179 new_tx_rates &= ~LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006180 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006181
Reinette Chatre21f8a732009-08-18 10:25:05 -07006182 new_tx_rates |= mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006183 break;
6184 }
6185
Reinette Chatre21f8a732009-08-18 10:25:05 -07006186 fr.tx_rates = cpu_to_le16(new_tx_rates);
6187
James Ketrenos43f66a62005-03-25 12:31:53 -06006188 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006189 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06006190}
6191
James Ketrenosea2b26e2005-08-24 21:25:16 -05006192static void ipw_abort_scan(struct ipw_priv *priv)
6193{
6194 int err;
6195
6196 if (priv->status & STATUS_SCAN_ABORTING) {
6197 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
6198 return;
6199 }
6200 priv->status |= STATUS_SCAN_ABORTING;
6201
6202 err = ipw_send_scan_abort(priv);
6203 if (err)
6204 IPW_DEBUG_HC("Request to abort scan failed.\n");
6205}
6206
James Ketrenosafbf30a2005-08-25 00:05:33 -05006207static void ipw_add_scan_channels(struct ipw_priv *priv,
6208 struct ipw_scan_request_ext *scan,
6209 int scan_type)
6210{
6211 int channel_index = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006212 const struct libipw_geo *geo;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006213 int i;
6214
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006215 geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006216
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006217 if (priv->ieee->freq_band & LIBIPW_52GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006218 int start = channel_index;
6219 for (i = 0; i < geo->a_channels; i++) {
6220 if ((priv->status & STATUS_ASSOCIATED) &&
6221 geo->a[i].channel == priv->channel)
6222 continue;
6223 channel_index++;
6224 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006225 ipw_set_scan_type(scan, channel_index,
6226 geo->a[i].
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006227 flags & LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006228 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
6229 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006230 }
6231
6232 if (start != channel_index) {
6233 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
6234 (channel_index - start);
6235 channel_index++;
6236 }
6237 }
6238
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006239 if (priv->ieee->freq_band & LIBIPW_24GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006240 int start = channel_index;
6241 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05006242 int index;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006243 u8 channels[LIBIPW_24GHZ_CHANNELS] = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006244 /* nop out the list */
6245 [0] = 0
6246 };
6247
6248 u8 channel;
Zhu Yi7dd24592009-07-27 10:10:20 +08006249 while (channel_index < IPW_SCAN_CHANNELS - 1) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006250 channel =
6251 priv->speed_scan[priv->speed_scan_pos];
6252 if (channel == 0) {
6253 priv->speed_scan_pos = 0;
6254 channel = priv->speed_scan[0];
6255 }
6256 if ((priv->status & STATUS_ASSOCIATED) &&
6257 channel == priv->channel) {
6258 priv->speed_scan_pos++;
6259 continue;
6260 }
6261
6262 /* If this channel has already been
6263 * added in scan, break from loop
6264 * and this will be the first channel
6265 * in the next scan.
6266 */
6267 if (channels[channel - 1] != 0)
6268 break;
6269
6270 channels[channel - 1] = 1;
6271 priv->speed_scan_pos++;
6272 channel_index++;
6273 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006274 index =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006275 libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006276 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006277 geo->bg[index].
6278 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006279 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006280 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6281 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006282 }
6283 } else {
6284 for (i = 0; i < geo->bg_channels; i++) {
6285 if ((priv->status & STATUS_ASSOCIATED) &&
6286 geo->bg[i].channel == priv->channel)
6287 continue;
6288 channel_index++;
6289 scan->channels_list[channel_index] =
6290 geo->bg[i].channel;
6291 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006292 geo->bg[i].
6293 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006294 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006295 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6296 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006297 }
6298 }
6299
6300 if (start != channel_index) {
6301 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6302 (channel_index - start);
6303 }
6304 }
6305}
6306
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006307static int ipw_passive_dwell_time(struct ipw_priv *priv)
6308{
6309 /* staying on passive channels longer than the DTIM interval during a
6310 * scan, while associated, causes the firmware to cancel the scan
6311 * without notification. Hence, don't stay on passive channels longer
6312 * than the beacon interval.
6313 */
6314 if (priv->status & STATUS_ASSOCIATED
6315 && priv->assoc_network->beacon_interval > 10)
6316 return priv->assoc_network->beacon_interval - 10;
6317 else
6318 return 120;
6319}
6320
Dan Williamsea177302008-06-02 17:51:23 -04006321static int ipw_request_scan_helper(struct ipw_priv *priv, int type, int direct)
James Ketrenosea2b26e2005-08-24 21:25:16 -05006322{
6323 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006324 int err = 0, scan_type;
6325
6326 if (!(priv->status & STATUS_INIT) ||
6327 (priv->status & STATUS_EXIT_PENDING))
6328 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006329
Zhu Yi46441512006-01-24 16:37:59 +08006330 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006331
Dan Williamsea177302008-06-02 17:51:23 -04006332 if (direct && (priv->direct_scan_ssid_len == 0)) {
6333 IPW_DEBUG_HC("Direct scan requested but no SSID to scan for\n");
6334 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6335 goto done;
6336 }
6337
James Ketrenosea2b26e2005-08-24 21:25:16 -05006338 if (priv->status & STATUS_SCANNING) {
Dan Williamsea177302008-06-02 17:51:23 -04006339 IPW_DEBUG_HC("Concurrent scan requested. Queuing.\n");
6340 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6341 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006342 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006343 }
6344
James Ketrenosafbf30a2005-08-25 00:05:33 -05006345 if (!(priv->status & STATUS_SCAN_FORCED) &&
6346 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006347 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
Dan Williamsea177302008-06-02 17:51:23 -04006348 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6349 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006350 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006351 }
6352
6353 if (priv->status & STATUS_RF_KILL_MASK) {
Dan Williamsea177302008-06-02 17:51:23 -04006354 IPW_DEBUG_HC("Queuing scan due to RF Kill activation\n");
6355 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6356 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006357 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006358 }
6359
6360 memset(&scan, 0, sizeof(scan));
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006361 scan.full_scan_index = cpu_to_le32(libipw_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006362
Zhu Yi094c4d22006-08-21 11:39:03 +08006363 if (type == IW_SCAN_TYPE_PASSIVE) {
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006364 IPW_DEBUG_WX("use passive scanning\n");
6365 scan_type = IPW_SCAN_PASSIVE_FULL_DWELL_SCAN;
Zhu Yi094c4d22006-08-21 11:39:03 +08006366 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006367 cpu_to_le16(ipw_passive_dwell_time(priv));
Zhu Yi094c4d22006-08-21 11:39:03 +08006368 ipw_add_scan_channels(priv, &scan, scan_type);
6369 goto send_request;
6370 }
6371
6372 /* Use active scan by default. */
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006373 if (priv->config & CFG_SPEED_SCAN)
James Ketrenosb095c382005-08-24 22:04:42 -05006374 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006375 cpu_to_le16(30);
James Ketrenosb095c382005-08-24 22:04:42 -05006376 else
6377 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006378 cpu_to_le16(20);
James Ketrenosb095c382005-08-24 22:04:42 -05006379
James Ketrenosa613bff2005-08-24 21:43:11 -05006380 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006381 cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006382
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006383 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6384 cpu_to_le16(ipw_passive_dwell_time(priv));
Dan Williamsea177302008-06-02 17:51:23 -04006385 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006386
James Ketrenosb095c382005-08-24 22:04:42 -05006387#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006388 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006389 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006390 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006391
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006392 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
6393 case LIBIPW_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006394 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006395 channel = priv->channel;
6396 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006397
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006398 case LIBIPW_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006399 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006400 channel = priv->channel;
6401 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006402
James Ketrenosb095c382005-08-24 22:04:42 -05006403 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006404 band = (u8) (IPW_B_MODE << 6) | 1;
6405 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006406 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006407 }
6408
James Ketrenosb095c382005-08-24 22:04:42 -05006409 scan.channels_list[0] = band;
6410 scan.channels_list[1] = channel;
6411 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006412
James Ketrenosb095c382005-08-24 22:04:42 -05006413 /* NOTE: The card will sit on this channel for this time
6414 * period. Scan aborts are timing sensitive and frequently
6415 * result in firmware restarts. As such, it is best to
6416 * set a small dwell_time here and just keep re-issuing
6417 * scans. Otherwise fast channel hopping will not actually
6418 * hop channels.
6419 *
6420 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006421 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006422 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006423 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006424#endif /* CONFIG_IPW2200_MONITOR */
Dan Williamsea177302008-06-02 17:51:23 -04006425 /* Honor direct scans first, otherwise if we are roaming make
6426 * this a direct scan for the current network. Finally,
6427 * ensure that every other scan is a fast channel hop scan */
6428 if (direct) {
6429 err = ipw_send_ssid(priv, priv->direct_scan_ssid,
6430 priv->direct_scan_ssid_len);
6431 if (err) {
6432 IPW_DEBUG_HC("Attempt to send SSID command "
6433 "failed\n");
6434 goto done;
6435 }
6436
6437 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
6438 } else if ((priv->status & STATUS_ROAMING)
6439 || (!(priv->status & STATUS_ASSOCIATED)
6440 && (priv->config & CFG_STATIC_ESSID)
6441 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006442 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6443 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006444 IPW_DEBUG_HC("Attempt to send SSID command "
6445 "failed.\n");
6446 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006447 }
6448
6449 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006450 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006451 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006452
James Ketrenosafbf30a2005-08-25 00:05:33 -05006453 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006454#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006455 }
6456#endif
6457
Zhu Yi094c4d22006-08-21 11:39:03 +08006458send_request:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006459 err = ipw_send_scan_request_ext(priv, &scan);
6460 if (err) {
6461 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006462 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006463 }
6464
6465 priv->status |= STATUS_SCANNING;
Dan Williamsea177302008-06-02 17:51:23 -04006466 if (direct) {
6467 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6468 priv->direct_scan_ssid_len = 0;
6469 } else
6470 priv->status &= ~STATUS_SCAN_PENDING;
6471
James Ketrenosafbf30a2005-08-25 00:05:33 -05006472 queue_delayed_work(priv->workqueue, &priv->scan_check,
6473 IPW_SCAN_CHECK_WATCHDOG);
Zhu Yi094c4d22006-08-21 11:39:03 +08006474done:
Zhu Yi46441512006-01-24 16:37:59 +08006475 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006476 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006477}
6478
David Howellsc4028952006-11-22 14:57:56 +00006479static void ipw_request_passive_scan(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006480{
David Howellsc4028952006-11-22 14:57:56 +00006481 struct ipw_priv *priv =
Dan Williamsea177302008-06-02 17:51:23 -04006482 container_of(work, struct ipw_priv, request_passive_scan.work);
6483 ipw_request_scan_helper(priv, IW_SCAN_TYPE_PASSIVE, 0);
David Howellsc4028952006-11-22 14:57:56 +00006484}
6485
6486static void ipw_request_scan(struct work_struct *work)
6487{
6488 struct ipw_priv *priv =
6489 container_of(work, struct ipw_priv, request_scan.work);
Dan Williamsea177302008-06-02 17:51:23 -04006490 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 0);
6491}
6492
6493static void ipw_request_direct_scan(struct work_struct *work)
6494{
6495 struct ipw_priv *priv =
6496 container_of(work, struct ipw_priv, request_direct_scan.work);
6497 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 1);
David Howellsc4028952006-11-22 14:57:56 +00006498}
6499
6500static void ipw_bg_abort_scan(struct work_struct *work)
6501{
6502 struct ipw_priv *priv =
6503 container_of(work, struct ipw_priv, abort_scan);
Zhu Yi46441512006-01-24 16:37:59 +08006504 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006505 ipw_abort_scan(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006506 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006507}
6508
James Ketrenosea2b26e2005-08-24 21:25:16 -05006509static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6510{
James Ketrenosb095c382005-08-24 22:04:42 -05006511 /* This is called when wpa_supplicant loads and closes the driver
6512 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006513 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006514 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006515}
6516
James Ketrenosea2b26e2005-08-24 21:25:16 -05006517static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6518{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006519 struct libipw_device *ieee = priv->ieee;
6520 struct libipw_security sec = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006521 .flags = SEC_AUTH_MODE,
6522 };
6523 int ret = 0;
6524
James Ketrenosafbf30a2005-08-25 00:05:33 -05006525 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006526 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6527 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006528 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006529 sec.auth_mode = WLAN_AUTH_OPEN;
6530 ieee->open_wep = 1;
Zhu Yi3e234b42006-01-24 16:36:52 +08006531 } else if (value & IW_AUTH_ALG_LEAP) {
6532 sec.auth_mode = WLAN_AUTH_LEAP;
6533 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006534 } else
6535 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006536
6537 if (ieee->set_security)
6538 ieee->set_security(ieee->dev, &sec);
6539 else
6540 ret = -EOPNOTSUPP;
6541
6542 return ret;
6543}
6544
Adrian Bunka73e22b2006-01-21 01:39:42 +01006545static void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie,
6546 int wpa_ie_len)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006547{
6548 /* make sure WPA is enabled */
6549 ipw_wpa_enable(priv, 1);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006550}
6551
6552static int ipw_set_rsn_capa(struct ipw_priv *priv,
6553 char *capabilities, int length)
6554{
James Ketrenosafbf30a2005-08-25 00:05:33 -05006555 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6556
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006557 return ipw_send_cmd_pdu(priv, IPW_CMD_RSN_CAPABILITIES, length,
Zhu Yi2638bc32006-01-24 16:37:52 +08006558 capabilities);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006559}
6560
James Ketrenosafbf30a2005-08-25 00:05:33 -05006561/*
6562 * WE-18 support
6563 */
6564
6565/* SIOCSIWGENIE */
6566static int ipw_wx_set_genie(struct net_device *dev,
6567 struct iw_request_info *info,
6568 union iwreq_data *wrqu, char *extra)
6569{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006570 struct ipw_priv *priv = libipw_priv(dev);
6571 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006572 u8 *buf;
6573 int err = 0;
6574
6575 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6576 (wrqu->data.length && extra == NULL))
6577 return -EINVAL;
6578
James Ketrenosafbf30a2005-08-25 00:05:33 -05006579 if (wrqu->data.length) {
6580 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6581 if (buf == NULL) {
6582 err = -ENOMEM;
6583 goto out;
6584 }
6585
6586 memcpy(buf, extra, wrqu->data.length);
6587 kfree(ieee->wpa_ie);
6588 ieee->wpa_ie = buf;
6589 ieee->wpa_ie_len = wrqu->data.length;
6590 } else {
6591 kfree(ieee->wpa_ie);
6592 ieee->wpa_ie = NULL;
6593 ieee->wpa_ie_len = 0;
6594 }
6595
6596 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6597 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006598 return err;
6599}
6600
6601/* SIOCGIWGENIE */
6602static int ipw_wx_get_genie(struct net_device *dev,
6603 struct iw_request_info *info,
6604 union iwreq_data *wrqu, char *extra)
6605{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006606 struct ipw_priv *priv = libipw_priv(dev);
6607 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006608 int err = 0;
6609
James Ketrenosafbf30a2005-08-25 00:05:33 -05006610 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6611 wrqu->data.length = 0;
6612 goto out;
6613 }
6614
6615 if (wrqu->data.length < ieee->wpa_ie_len) {
6616 err = -E2BIG;
6617 goto out;
6618 }
6619
6620 wrqu->data.length = ieee->wpa_ie_len;
6621 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6622
6623 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006624 return err;
6625}
6626
Zhu Yi1fbfea52005-08-05 17:22:56 +08006627static int wext_cipher2level(int cipher)
6628{
6629 switch (cipher) {
6630 case IW_AUTH_CIPHER_NONE:
6631 return SEC_LEVEL_0;
6632 case IW_AUTH_CIPHER_WEP40:
6633 case IW_AUTH_CIPHER_WEP104:
6634 return SEC_LEVEL_1;
6635 case IW_AUTH_CIPHER_TKIP:
6636 return SEC_LEVEL_2;
6637 case IW_AUTH_CIPHER_CCMP:
6638 return SEC_LEVEL_3;
6639 default:
6640 return -1;
6641 }
6642}
6643
James Ketrenosafbf30a2005-08-25 00:05:33 -05006644/* SIOCSIWAUTH */
6645static int ipw_wx_set_auth(struct net_device *dev,
6646 struct iw_request_info *info,
6647 union iwreq_data *wrqu, char *extra)
6648{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006649 struct ipw_priv *priv = libipw_priv(dev);
6650 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006651 struct iw_param *param = &wrqu->param;
John W. Linville274bfb82008-10-29 11:35:05 -04006652 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006653 unsigned long flags;
6654 int ret = 0;
6655
6656 switch (param->flags & IW_AUTH_INDEX) {
6657 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006658 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006659 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006660 ipw_set_hw_decrypt_unicast(priv,
6661 wext_cipher2level(param->value));
6662 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006663 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006664 ipw_set_hw_decrypt_multicast(priv,
6665 wext_cipher2level(param->value));
6666 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006667 case IW_AUTH_KEY_MGMT:
6668 /*
6669 * ipw2200 does not use these parameters
6670 */
6671 break;
6672
6673 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006674 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006675 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006676 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006677
6678 flags = crypt->ops->get_flags(crypt->priv);
6679
6680 if (param->value)
6681 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6682 else
6683 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6684
6685 crypt->ops->set_flags(flags, crypt->priv);
6686
6687 break;
6688
6689 case IW_AUTH_DROP_UNENCRYPTED:{
6690 /* HACK:
6691 *
6692 * wpa_supplicant calls set_wpa_enabled when the driver
6693 * is loaded and unloaded, regardless of if WPA is being
6694 * used. No other calls are made which can be used to
6695 * determine if encryption will be used or not prior to
6696 * association being expected. If encryption is not being
6697 * used, drop_unencrypted is set to false, else true -- we
6698 * can use this to determine if the CAP_PRIVACY_ON bit should
6699 * be set.
6700 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006701 struct libipw_security sec = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006702 .flags = SEC_ENABLED,
6703 .enabled = param->value,
6704 };
6705 priv->ieee->drop_unencrypted = param->value;
6706 /* We only change SEC_LEVEL for open mode. Others
6707 * are set by ipw_wpa_set_encryption.
6708 */
6709 if (!param->value) {
6710 sec.flags |= SEC_LEVEL;
6711 sec.level = SEC_LEVEL_0;
6712 } else {
6713 sec.flags |= SEC_LEVEL;
6714 sec.level = SEC_LEVEL_1;
6715 }
6716 if (priv->ieee->set_security)
6717 priv->ieee->set_security(priv->ieee->dev, &sec);
6718 break;
6719 }
6720
6721 case IW_AUTH_80211_AUTH_ALG:
6722 ret = ipw_wpa_set_auth_algs(priv, param->value);
6723 break;
6724
6725 case IW_AUTH_WPA_ENABLED:
6726 ret = ipw_wpa_enable(priv, param->value);
Zhu Yie3c5a642006-04-13 17:21:13 +08006727 ipw_disassociate(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006728 break;
6729
6730 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6731 ieee->ieee802_1x = param->value;
6732 break;
6733
James Ketrenosafbf30a2005-08-25 00:05:33 -05006734 case IW_AUTH_PRIVACY_INVOKED:
6735 ieee->privacy_invoked = param->value;
6736 break;
6737
6738 default:
6739 return -EOPNOTSUPP;
6740 }
6741 return ret;
6742}
6743
6744/* SIOCGIWAUTH */
6745static int ipw_wx_get_auth(struct net_device *dev,
6746 struct iw_request_info *info,
6747 union iwreq_data *wrqu, char *extra)
6748{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006749 struct ipw_priv *priv = libipw_priv(dev);
6750 struct libipw_device *ieee = priv->ieee;
John W. Linville274bfb82008-10-29 11:35:05 -04006751 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006752 struct iw_param *param = &wrqu->param;
6753 int ret = 0;
6754
6755 switch (param->flags & IW_AUTH_INDEX) {
6756 case IW_AUTH_WPA_VERSION:
6757 case IW_AUTH_CIPHER_PAIRWISE:
6758 case IW_AUTH_CIPHER_GROUP:
6759 case IW_AUTH_KEY_MGMT:
6760 /*
6761 * wpa_supplicant will control these internally
6762 */
6763 ret = -EOPNOTSUPP;
6764 break;
6765
6766 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006767 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006768 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006769 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006770
6771 param->value = (crypt->ops->get_flags(crypt->priv) &
6772 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6773
6774 break;
6775
6776 case IW_AUTH_DROP_UNENCRYPTED:
6777 param->value = ieee->drop_unencrypted;
6778 break;
6779
6780 case IW_AUTH_80211_AUTH_ALG:
6781 param->value = ieee->sec.auth_mode;
6782 break;
6783
6784 case IW_AUTH_WPA_ENABLED:
6785 param->value = ieee->wpa_enabled;
6786 break;
6787
6788 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6789 param->value = ieee->ieee802_1x;
6790 break;
6791
6792 case IW_AUTH_ROAMING_CONTROL:
6793 case IW_AUTH_PRIVACY_INVOKED:
6794 param->value = ieee->privacy_invoked;
6795 break;
6796
6797 default:
6798 return -EOPNOTSUPP;
6799 }
6800 return 0;
6801}
6802
6803/* SIOCSIWENCODEEXT */
6804static int ipw_wx_set_encodeext(struct net_device *dev,
6805 struct iw_request_info *info,
6806 union iwreq_data *wrqu, char *extra)
6807{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006808 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006809 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6810
6811 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006812 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006813 /* IPW HW can't build TKIP MIC,
6814 host decryption still needed */
6815 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6816 priv->ieee->host_mc_decrypt = 1;
6817 else {
6818 priv->ieee->host_encrypt = 0;
6819 priv->ieee->host_encrypt_msdu = 1;
6820 priv->ieee->host_decrypt = 1;
6821 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006822 } else {
6823 priv->ieee->host_encrypt = 0;
6824 priv->ieee->host_encrypt_msdu = 0;
6825 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006826 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006827 }
6828 }
6829
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006830 return libipw_wx_set_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006831}
6832
6833/* SIOCGIWENCODEEXT */
6834static int ipw_wx_get_encodeext(struct net_device *dev,
6835 struct iw_request_info *info,
6836 union iwreq_data *wrqu, char *extra)
6837{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006838 struct ipw_priv *priv = libipw_priv(dev);
6839 return libipw_wx_get_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006840}
6841
6842/* SIOCSIWMLME */
6843static int ipw_wx_set_mlme(struct net_device *dev,
6844 struct iw_request_info *info,
6845 union iwreq_data *wrqu, char *extra)
6846{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006847 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006848 struct iw_mlme *mlme = (struct iw_mlme *)extra;
Al Viroe62e1ee2007-12-27 01:36:46 -05006849 __le16 reason;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006850
6851 reason = cpu_to_le16(mlme->reason_code);
6852
6853 switch (mlme->cmd) {
6854 case IW_MLME_DEAUTH:
Pavel Machek67fd6b42006-07-11 15:34:05 +02006855 /* silently ignore */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006856 break;
6857
6858 case IW_MLME_DISASSOC:
6859 ipw_disassociate(priv);
6860 break;
6861
6862 default:
6863 return -EOPNOTSUPP;
6864 }
6865 return 0;
6866}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006867
Zhu Yie43e3c12006-04-13 17:20:45 +08006868#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05006869
6870/* QoS */
6871/*
6872* get the modulation type of the current network or
6873* the card current mode
6874*/
Adrian Bunk53d0bcf2006-03-04 13:14:31 +01006875static u8 ipw_qos_current_mode(struct ipw_priv * priv)
James Ketrenosb095c382005-08-24 22:04:42 -05006876{
6877 u8 mode = 0;
6878
6879 if (priv->status & STATUS_ASSOCIATED) {
6880 unsigned long flags;
6881
6882 spin_lock_irqsave(&priv->ieee->lock, flags);
6883 mode = priv->assoc_network->mode;
6884 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6885 } else {
6886 mode = priv->ieee->mode;
6887 }
6888 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
6889 return mode;
6890}
6891
6892/*
6893* Handle management frame beacon and probe response
6894*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006895static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6896 int active_network,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006897 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006898{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006899 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006900
James Ketrenosafbf30a2005-08-25 00:05:33 -05006901 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006902 network->qos_data.active = network->qos_data.supported;
6903
6904 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006905 if (active_network &&
6906 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006907 network->qos_data.active = network->qos_data.supported;
6908
6909 if ((network->qos_data.active == 1) && (active_network == 1) &&
6910 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6911 (network->qos_data.old_param_count !=
6912 network->qos_data.param_count)) {
6913 network->qos_data.old_param_count =
6914 network->qos_data.param_count;
6915 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006916 IPW_DEBUG_QOS("QoS parameters change call "
6917 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006918 }
6919 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006920 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6921 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006922 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006923 else
6924 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006925 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006926
James Ketrenosb095c382005-08-24 22:04:42 -05006927 if ((network->qos_data.active == 1) && (active_network == 1)) {
6928 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
6929 schedule_work(&priv->qos_activate);
6930 }
6931
6932 network->qos_data.active = 0;
6933 network->qos_data.supported = 0;
6934 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006935 if ((priv->status & STATUS_ASSOCIATED) &&
6936 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
6937 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
John W. Linvillec5d3dce2008-09-30 17:17:26 -04006938 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006939 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006940 priv->assoc_network->ssid_len) &&
6941 !memcmp(network->ssid,
6942 priv->assoc_network->ssid,
6943 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006944 queue_work(priv->workqueue,
6945 &priv->merge_networks);
6946 }
James Ketrenosb095c382005-08-24 22:04:42 -05006947 }
6948
6949 return 0;
6950}
6951
6952/*
6953* This function set up the firmware to support QoS. It sends
6954* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6955*/
6956static int ipw_qos_activate(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006957 struct libipw_qos_data *qos_network_data)
James Ketrenosb095c382005-08-24 22:04:42 -05006958{
6959 int err;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006960 struct libipw_qos_parameters qos_parameters[QOS_QOS_SETS];
6961 struct libipw_qos_parameters *active_one = NULL;
6962 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006963 u32 burst_duration;
6964 int i;
6965 u8 type;
6966
6967 type = ipw_qos_current_mode(priv);
6968
6969 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6970 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6971 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6972 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6973
6974 if (qos_network_data == NULL) {
6975 if (type == IEEE_B) {
6976 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
6977 active_one = &def_parameters_CCK;
6978 } else
6979 active_one = &def_parameters_OFDM;
6980
James Ketrenosafbf30a2005-08-25 00:05:33 -05006981 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006982 burst_duration = ipw_qos_get_burst_duration(priv);
6983 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006984 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
Al Viro8fffc152007-12-27 01:25:40 -05006985 cpu_to_le16(burst_duration);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006986 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05006987 if (type == IEEE_B) {
6988 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
6989 type);
6990 if (priv->qos_data.qos_enable == 0)
6991 active_one = &def_parameters_CCK;
6992 else
6993 active_one = priv->qos_data.def_qos_parm_CCK;
6994 } else {
6995 if (priv->qos_data.qos_enable == 0)
6996 active_one = &def_parameters_OFDM;
6997 else
6998 active_one = priv->qos_data.def_qos_parm_OFDM;
6999 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007000 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007001 } else {
7002 unsigned long flags;
7003 int active;
7004
7005 spin_lock_irqsave(&priv->ieee->lock, flags);
7006 active_one = &(qos_network_data->parameters);
7007 qos_network_data->old_param_count =
7008 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007009 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007010 active = qos_network_data->supported;
7011 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7012
7013 if (active == 0) {
7014 burst_duration = ipw_qos_get_burst_duration(priv);
7015 for (i = 0; i < QOS_QUEUE_NUM; i++)
7016 qos_parameters[QOS_PARAM_SET_ACTIVE].
Al Viro8fffc152007-12-27 01:25:40 -05007017 tx_op_limit[i] = cpu_to_le16(burst_duration);
James Ketrenosb095c382005-08-24 22:04:42 -05007018 }
7019 }
7020
7021 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05007022 err = ipw_send_qos_params_command(priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007023 (struct libipw_qos_parameters *)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007024 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05007025 if (err)
7026 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
7027
7028 return err;
7029}
7030
7031/*
7032* send IPW_CMD_WME_INFO to the firmware
7033*/
7034static int ipw_qos_set_info_element(struct ipw_priv *priv)
7035{
7036 int ret = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007037 struct libipw_qos_information_element qos_info;
James Ketrenosb095c382005-08-24 22:04:42 -05007038
7039 if (priv == NULL)
7040 return -1;
7041
7042 qos_info.elementID = QOS_ELEMENT_ID;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007043 qos_info.length = sizeof(struct libipw_qos_information_element) - 2;
James Ketrenosb095c382005-08-24 22:04:42 -05007044
7045 qos_info.version = QOS_VERSION_1;
7046 qos_info.ac_info = 0;
7047
7048 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7049 qos_info.qui_type = QOS_OUI_TYPE;
7050 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7051
7052 ret = ipw_send_qos_info_command(priv, &qos_info);
7053 if (ret != 0) {
7054 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7055 }
7056 return ret;
7057}
7058
7059/*
7060* Set the QoS parameter with the association request structure
7061*/
7062static int ipw_qos_association(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007063 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007064{
7065 int err = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007066 struct libipw_qos_data *qos_data = NULL;
7067 struct libipw_qos_data ibss_data = {
James Ketrenosb095c382005-08-24 22:04:42 -05007068 .supported = 1,
7069 .active = 1,
7070 };
7071
7072 switch (priv->ieee->iw_mode) {
7073 case IW_MODE_ADHOC:
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007074 BUG_ON(!(network->capability & WLAN_CAPABILITY_IBSS));
James Ketrenosb095c382005-08-24 22:04:42 -05007075
7076 qos_data = &ibss_data;
7077 break;
7078
7079 case IW_MODE_INFRA:
7080 qos_data = &network->qos_data;
7081 break;
7082
7083 default:
7084 BUG();
7085 break;
7086 }
7087
7088 err = ipw_qos_activate(priv, qos_data);
7089 if (err) {
7090 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7091 return err;
7092 }
7093
7094 if (priv->qos_data.qos_enable && qos_data->supported) {
7095 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7096 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7097 return ipw_qos_set_info_element(priv);
7098 }
7099
7100 return 0;
7101}
7102
7103/*
Matt LaPlante0779bf22006-11-30 05:24:39 +01007104* handling the beaconing responses. if we get different QoS setting
7105* off the network from the associated setting, adjust the QoS
James Ketrenosb095c382005-08-24 22:04:42 -05007106* setting
7107*/
7108static int ipw_qos_association_resp(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007109 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007110{
7111 int ret = 0;
7112 unsigned long flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007113 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05007114 int set_qos_param = 0;
7115
James Ketrenosafbf30a2005-08-25 00:05:33 -05007116 if ((priv == NULL) || (network == NULL) ||
7117 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007118 return ret;
7119
7120 if (!(priv->status & STATUS_ASSOCIATED))
7121 return ret;
7122
James Ketrenosafbf30a2005-08-25 00:05:33 -05007123 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007124 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007125
7126 spin_lock_irqsave(&priv->ieee->lock, flags);
7127 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007128 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007129 sizeof(struct libipw_qos_data));
James Ketrenosb095c382005-08-24 22:04:42 -05007130 priv->assoc_network->qos_data.active = 1;
7131 if ((network->qos_data.old_param_count !=
7132 network->qos_data.param_count)) {
7133 set_qos_param = 1;
7134 network->qos_data.old_param_count =
7135 network->qos_data.param_count;
7136 }
7137
7138 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007139 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7140 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007141 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007142 else
7143 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007144 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007145 priv->assoc_network->qos_data.active = 0;
7146 priv->assoc_network->qos_data.supported = 0;
7147 set_qos_param = 1;
7148 }
7149
7150 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7151
7152 if (set_qos_param == 1)
7153 schedule_work(&priv->qos_activate);
7154
7155 return ret;
7156}
7157
7158static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7159{
7160 u32 ret = 0;
7161
7162 if ((priv == NULL))
7163 return 0;
7164
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007165 if (!(priv->ieee->modulation & LIBIPW_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007166 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007167 else
James Ketrenosb095c382005-08-24 22:04:42 -05007168 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007169
James Ketrenosb095c382005-08-24 22:04:42 -05007170 return ret;
7171}
7172
7173/*
7174* Initialize the setting of QoS global
7175*/
7176static void ipw_qos_init(struct ipw_priv *priv, int enable,
7177 int burst_enable, u32 burst_duration_CCK,
7178 u32 burst_duration_OFDM)
7179{
7180 priv->qos_data.qos_enable = enable;
7181
7182 if (priv->qos_data.qos_enable) {
7183 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7184 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7185 IPW_DEBUG_QOS("QoS is enabled\n");
7186 } else {
7187 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7188 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7189 IPW_DEBUG_QOS("QoS is not enabled\n");
7190 }
7191
7192 priv->qos_data.burst_enable = burst_enable;
7193
7194 if (burst_enable) {
7195 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7196 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7197 } else {
7198 priv->qos_data.burst_duration_CCK = 0;
7199 priv->qos_data.burst_duration_OFDM = 0;
7200 }
7201}
7202
7203/*
7204* map the packet priority to the right TX Queue
7205*/
7206static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7207{
7208 if (priority > 7 || !priv->qos_data.qos_enable)
7209 priority = 0;
7210
7211 return from_priority_to_tx_queue[priority] - 1;
7212}
7213
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007214static int ipw_is_qos_active(struct net_device *dev,
7215 struct sk_buff *skb)
James Ketrenosb095c382005-08-24 22:04:42 -05007216{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007217 struct ipw_priv *priv = libipw_priv(dev);
7218 struct libipw_qos_data *qos_data = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007219 int active, supported;
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007220 u8 *daddr = skb->data + ETH_ALEN;
7221 int unicast = !is_multicast_ether_addr(daddr);
James Ketrenosb095c382005-08-24 22:04:42 -05007222
7223 if (!(priv->status & STATUS_ASSOCIATED))
7224 return 0;
7225
7226 qos_data = &priv->assoc_network->qos_data;
7227
James Ketrenosb095c382005-08-24 22:04:42 -05007228 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7229 if (unicast == 0)
7230 qos_data->active = 0;
7231 else
7232 qos_data->active = qos_data->supported;
7233 }
James Ketrenosb095c382005-08-24 22:04:42 -05007234 active = qos_data->active;
7235 supported = qos_data->supported;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007236 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7237 "unicast %d\n",
7238 priv->qos_data.qos_enable, active, supported, unicast);
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007239 if (active && priv->qos_data.qos_enable)
7240 return 1;
James Ketrenosb095c382005-08-24 22:04:42 -05007241
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007242 return 0;
7243
7244}
7245/*
7246* add QoS parameter to the TX command
7247*/
7248static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7249 u16 priority,
7250 struct tfd_data *tfd)
7251{
7252 int tx_queue_id = 0;
7253
7254
7255 tx_queue_id = from_priority_to_tx_queue[priority] - 1;
7256 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7257
7258 if (priv->qos_data.qos_no_ack_mask & (1UL << tx_queue_id)) {
7259 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
Zhu Yi851ca262006-08-21 11:37:58 +08007260 tfd->tfd.tfd_26.mchdr.qos_ctrl |= cpu_to_le16(CTRL_QOS_NO_ACK);
James Ketrenosb095c382005-08-24 22:04:42 -05007261 }
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007262 return 0;
James Ketrenosb095c382005-08-24 22:04:42 -05007263}
7264
7265/*
7266* background support to run QoS activate functionality
7267*/
David Howellsc4028952006-11-22 14:57:56 +00007268static void ipw_bg_qos_activate(struct work_struct *work)
James Ketrenosb095c382005-08-24 22:04:42 -05007269{
David Howellsc4028952006-11-22 14:57:56 +00007270 struct ipw_priv *priv =
7271 container_of(work, struct ipw_priv, qos_activate);
James Ketrenosb095c382005-08-24 22:04:42 -05007272
Zhu Yi46441512006-01-24 16:37:59 +08007273 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007274
7275 if (priv->status & STATUS_ASSOCIATED)
7276 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7277
Zhu Yi46441512006-01-24 16:37:59 +08007278 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007279}
7280
James Ketrenos3b9990c2005-08-19 13:18:55 -05007281static int ipw_handle_probe_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007282 struct libipw_probe_response *resp,
7283 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007284{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007285 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007286 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7287 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007288
James Ketrenos3b9990c2005-08-19 13:18:55 -05007289 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007290
James Ketrenos3b9990c2005-08-19 13:18:55 -05007291 return 0;
7292}
James Ketrenosb095c382005-08-24 22:04:42 -05007293
James Ketrenos3b9990c2005-08-19 13:18:55 -05007294static int ipw_handle_beacon(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007295 struct libipw_beacon *resp,
7296 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007297{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007298 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007299 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7300 (network == priv->assoc_network));
7301
7302 ipw_qos_handle_probe_response(priv, active_network, network);
7303
7304 return 0;
7305}
7306
7307static int ipw_handle_assoc_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007308 struct libipw_assoc_response *resp,
7309 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007310{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007311 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007312 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007313 return 0;
7314}
7315
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007316static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -05007317 *qos_param)
7318{
Zhu Yi4e226992006-01-24 16:37:36 +08007319 return ipw_send_cmd_pdu(priv, IPW_CMD_QOS_PARAMETERS,
7320 sizeof(*qos_param) * 3, qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007321}
7322
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007323static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -05007324 *qos_param)
7325{
Zhu Yi4e226992006-01-24 16:37:36 +08007326 return ipw_send_cmd_pdu(priv, IPW_CMD_WME_INFO, sizeof(*qos_param),
7327 qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007328}
7329
Zhu Yie43e3c12006-04-13 17:20:45 +08007330#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -05007331
James Ketrenos43f66a62005-03-25 12:31:53 -06007332static int ipw_associate_network(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007333 struct libipw_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007334 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007335{
7336 int err;
John W. Linville9387b7c2008-09-30 20:59:05 -04007337 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007338
7339 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007340 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007341
7342 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007343 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007344 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007345 memcpy(priv->essid, network->ssid, priv->essid_len);
7346 }
7347
7348 network->last_associate = jiffies;
7349
7350 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7351 priv->assoc_request.channel = network->channel;
Zhu Yi3e234b42006-01-24 16:36:52 +08007352 priv->assoc_request.auth_key = 0;
7353
James Ketrenos43f66a62005-03-25 12:31:53 -06007354 if ((priv->capability & CAP_PRIVACY_ON) &&
Zhu Yi3e234b42006-01-24 16:36:52 +08007355 (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007356 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007357 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7358
Zhu Yi1ba61e02006-02-15 13:00:55 +08007359 if (priv->ieee->sec.level == SEC_LEVEL_1)
James Ketrenosb095c382005-08-24 22:04:42 -05007360 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Zhu Yi3e234b42006-01-24 16:36:52 +08007361
7362 } else if ((priv->capability & CAP_PRIVACY_ON) &&
7363 (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP))
7364 priv->assoc_request.auth_type = AUTH_LEAP;
7365 else
James Ketrenos43f66a62005-03-25 12:31:53 -06007366 priv->assoc_request.auth_type = AUTH_OPEN;
James Ketrenos43f66a62005-03-25 12:31:53 -06007367
James Ketrenosa613bff2005-08-24 21:43:11 -05007368 if (priv->ieee->wpa_ie_len) {
Al Viro5b5e8072007-12-27 01:54:06 -05007369 priv->assoc_request.policy_support = cpu_to_le16(0x02); /* RSN active */
James Ketrenosea2b26e2005-08-24 21:25:16 -05007370 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7371 priv->ieee->wpa_ie_len);
7372 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007373
Jeff Garzikbf794512005-07-31 13:07:26 -04007374 /*
7375 * It is valid for our ieee device to support multiple modes, but
7376 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007377 * just one mode.
7378 */
7379 if (network->mode & priv->ieee->mode & IEEE_A)
7380 priv->assoc_request.ieee_mode = IPW_A_MODE;
7381 else if (network->mode & priv->ieee->mode & IEEE_G)
7382 priv->assoc_request.ieee_mode = IPW_G_MODE;
7383 else if (network->mode & priv->ieee->mode & IEEE_B)
7384 priv->assoc_request.ieee_mode = IPW_B_MODE;
7385
Al Viro5b5e8072007-12-27 01:54:06 -05007386 priv->assoc_request.capability = cpu_to_le16(network->capability);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007387 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7388 && !(priv->config & CFG_PREAMBLE_LONG)) {
7389 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7390 } else {
7391 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7392
7393 /* Clear the short preamble if we won't be supporting it */
7394 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007395 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007396 }
7397
James Ketrenosafbf30a2005-08-25 00:05:33 -05007398 /* Clear capability bits that aren't used in Ad Hoc */
7399 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7400 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007401 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007402
James Ketrenos43f66a62005-03-25 12:31:53 -06007403 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007404 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007405 roaming ? "Rea" : "A",
John W. Linville9387b7c2008-09-30 20:59:05 -04007406 print_ssid(ssid, priv->essid, priv->essid_len),
Jeff Garzikbf794512005-07-31 13:07:26 -04007407 network->channel,
7408 ipw_modes[priv->assoc_request.ieee_mode],
7409 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007410 (priv->assoc_request.preamble_length ==
7411 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7412 network->capability &
7413 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007414 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007415 priv->capability & CAP_PRIVACY_ON ?
7416 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007417 "(open)") : "",
7418 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007419 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007420 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007421 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007422
Al Viro5b5e8072007-12-27 01:54:06 -05007423 priv->assoc_request.beacon_interval = cpu_to_le16(network->beacon_interval);
James Ketrenos43f66a62005-03-25 12:31:53 -06007424 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007425 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007426 priv->assoc_request.assoc_type = HC_IBSS_START;
7427 priv->assoc_request.assoc_tsf_msw = 0;
7428 priv->assoc_request.assoc_tsf_lsw = 0;
7429 } else {
7430 if (unlikely(roaming))
7431 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7432 else
7433 priv->assoc_request.assoc_type = HC_ASSOCIATE;
Al Viro5b5e8072007-12-27 01:54:06 -05007434 priv->assoc_request.assoc_tsf_msw = cpu_to_le32(network->time_stamp[1]);
7435 priv->assoc_request.assoc_tsf_lsw = cpu_to_le32(network->time_stamp[0]);
James Ketrenos43f66a62005-03-25 12:31:53 -06007436 }
7437
James Ketrenosafbf30a2005-08-25 00:05:33 -05007438 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007439
7440 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7441 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
Al Viro5b5e8072007-12-27 01:54:06 -05007442 priv->assoc_request.atim_window = cpu_to_le16(network->atim_window);
James Ketrenos43f66a62005-03-25 12:31:53 -06007443 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007444 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007445 priv->assoc_request.atim_window = 0;
7446 }
7447
Al Viro5b5e8072007-12-27 01:54:06 -05007448 priv->assoc_request.listen_interval = cpu_to_le16(network->listen_interval);
Jeff Garzikbf794512005-07-31 13:07:26 -04007449
James Ketrenos43f66a62005-03-25 12:31:53 -06007450 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7451 if (err) {
7452 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7453 return err;
7454 }
7455
7456 rates->ieee_mode = priv->assoc_request.ieee_mode;
7457 rates->purpose = IPW_RATE_CONNECT;
7458 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007459
James Ketrenos43f66a62005-03-25 12:31:53 -06007460 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7461 priv->sys_config.dot11g_auto_detection = 1;
7462 else
7463 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007464
7465 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7466 priv->sys_config.answer_broadcast_ssid_probe = 1;
7467 else
7468 priv->sys_config.answer_broadcast_ssid_probe = 0;
7469
Zhu Yid685b8c2006-04-13 17:20:27 +08007470 err = ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06007471 if (err) {
7472 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7473 return err;
7474 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007475
James Ketrenos43f66a62005-03-25 12:31:53 -06007476 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007477 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007478 if (err) {
7479 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7480 return err;
7481 }
7482
7483 /*
7484 * If preemption is enabled, it is possible for the association
7485 * to complete before we return from ipw_send_associate. Therefore
7486 * we have to be sure and update our priviate data first.
7487 */
7488 priv->channel = network->channel;
7489 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007490 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007491 priv->status &= ~STATUS_SECURITY_UPDATED;
7492
7493 priv->assoc_network = network;
7494
Zhu Yie43e3c12006-04-13 17:20:45 +08007495#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05007496 ipw_qos_association(priv, network);
7497#endif
7498
James Ketrenos43f66a62005-03-25 12:31:53 -06007499 err = ipw_send_associate(priv, &priv->assoc_request);
7500 if (err) {
7501 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7502 return err;
7503 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007504
Johannes Berge1749612008-10-27 15:59:26 -07007505 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007506 print_ssid(ssid, priv->essid, priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07007507 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007508
7509 return 0;
7510}
7511
7512static void ipw_roam(void *data)
7513{
7514 struct ipw_priv *priv = data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007515 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007516 struct ipw_network_match match = {
7517 .network = priv->assoc_network
7518 };
7519
7520 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007521 *
7522 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007523 * setting the status ROAM bit and requesting a scan.
7524 * 2. When the scan completes, it schedules the ROAM work
7525 * 3. The ROAM work looks at all of the known networks for one that
7526 * is a better network than the currently associated. If none
7527 * found, the ROAM process is over (ROAM bit cleared)
7528 * 4. If a better network is found, a disassociation request is
7529 * sent.
7530 * 5. When the disassociation completes, the roam work is again
7531 * scheduled. The second time through, the driver is no longer
7532 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007533 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007534 * 6. At this point ,the roaming process is complete and the ROAM
7535 * status bit is cleared.
7536 */
7537
7538 /* If we are no longer associated, and the roaming bit is no longer
7539 * set, then we are not actively roaming, so just return */
7540 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7541 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007542
James Ketrenos43f66a62005-03-25 12:31:53 -06007543 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007544 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007545 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007546 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007547 u8 rssi = priv->assoc_network->stats.rssi;
7548 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007549 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007550 list_for_each_entry(network, &priv->ieee->network_list, list) {
7551 if (network != priv->assoc_network)
7552 ipw_best_network(priv, &match, network, 1);
7553 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007554 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007555 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007556
James Ketrenos43f66a62005-03-25 12:31:53 -06007557 if (match.network == priv->assoc_network) {
7558 IPW_DEBUG_ASSOC("No better APs in this network to "
7559 "roam to.\n");
7560 priv->status &= ~STATUS_ROAMING;
7561 ipw_debug_config(priv);
7562 return;
7563 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007564
James Ketrenos43f66a62005-03-25 12:31:53 -06007565 ipw_send_disassociate(priv, 1);
7566 priv->assoc_network = match.network;
7567
7568 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007569 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007570
7571 /* Second pass through ROAM process -- request association */
7572 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7573 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7574 priv->status &= ~STATUS_ROAMING;
7575}
7576
David Howellsc4028952006-11-22 14:57:56 +00007577static void ipw_bg_roam(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05007578{
David Howellsc4028952006-11-22 14:57:56 +00007579 struct ipw_priv *priv =
7580 container_of(work, struct ipw_priv, roam);
Zhu Yi46441512006-01-24 16:37:59 +08007581 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007582 ipw_roam(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007583 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007584}
7585
7586static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007587{
7588 struct ipw_priv *priv = data;
7589
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007590 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007591 struct ipw_network_match match = {
7592 .network = NULL
7593 };
7594 struct ipw_supported_rates *rates;
7595 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007596 unsigned long flags;
John W. Linville9387b7c2008-09-30 20:59:05 -04007597 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007598
James Ketrenosb095c382005-08-24 22:04:42 -05007599 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7600 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7601 return 0;
7602 }
7603
James Ketrenosc848d0a2005-08-24 21:56:24 -05007604 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007605 IPW_DEBUG_ASSOC("Not attempting association (already in "
7606 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007607 return 0;
7608 }
7609
Hong Liue6324722005-09-14 21:04:15 -05007610 if (priv->status & STATUS_DISASSOCIATING) {
7611 IPW_DEBUG_ASSOC("Not attempting association (in "
7612 "disassociating)\n ");
7613 queue_work(priv->workqueue, &priv->associate);
7614 return 0;
7615 }
7616
James Ketrenosc848d0a2005-08-24 21:56:24 -05007617 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007618 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7619 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007620 return 0;
7621 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007622
7623 if (!(priv->config & CFG_ASSOCIATE) &&
Alexey Fisher3e4127f2008-11-06 09:51:16 +01007624 !(priv->config & (CFG_STATIC_ESSID | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007625 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007626 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007627 }
7628
James Ketrenosa613bff2005-08-24 21:43:11 -05007629 /* Protect our use of the network_list */
7630 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007631 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007632 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007633
7634 network = match.network;
7635 rates = &match.rates;
7636
7637 if (network == NULL &&
7638 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7639 priv->config & CFG_ADHOC_CREATE &&
7640 priv->config & CFG_STATIC_ESSID &&
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007641 priv->config & CFG_STATIC_CHANNEL) {
7642 /* Use oldest network if the free list is empty */
7643 if (list_empty(&priv->ieee->network_free_list)) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007644 struct libipw_network *oldest = NULL;
7645 struct libipw_network *target;
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007646
7647 list_for_each_entry(target, &priv->ieee->network_list, list) {
7648 if ((oldest == NULL) ||
7649 (target->last_scanned < oldest->last_scanned))
7650 oldest = target;
7651 }
7652
7653 /* If there are no more slots, expire the oldest */
7654 list_del(&oldest->list);
7655 target = oldest;
Johannes Berge1749612008-10-27 15:59:26 -07007656 IPW_DEBUG_ASSOC("Expired '%s' (%pM) from "
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007657 "network list.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007658 print_ssid(ssid, target->ssid,
7659 target->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07007660 target->bssid);
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007661 list_add_tail(&target->list,
7662 &priv->ieee->network_free_list);
7663 }
7664
James Ketrenos43f66a62005-03-25 12:31:53 -06007665 element = priv->ieee->network_free_list.next;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007666 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007667 ipw_adhoc_create(priv, network);
7668 rates = &priv->rates;
7669 list_del(element);
7670 list_add_tail(&network->list, &priv->ieee->network_list);
7671 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007672 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007673
James Ketrenos43f66a62005-03-25 12:31:53 -06007674 /* If we reached the end of the list, then we don't have any valid
7675 * matching APs */
7676 if (!network) {
7677 ipw_debug_config(priv);
7678
James Ketrenosb095c382005-08-24 22:04:42 -05007679 if (!(priv->status & STATUS_SCANNING)) {
7680 if (!(priv->config & CFG_SPEED_SCAN))
7681 queue_delayed_work(priv->workqueue,
7682 &priv->request_scan,
7683 SCAN_INTERVAL);
7684 else
David Howellsc4028952006-11-22 14:57:56 +00007685 queue_delayed_work(priv->workqueue,
7686 &priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05007687 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007688
James Ketrenosc848d0a2005-08-24 21:56:24 -05007689 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007690 }
7691
7692 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007693
7694 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007695}
Jeff Garzikbf794512005-07-31 13:07:26 -04007696
David Howellsc4028952006-11-22 14:57:56 +00007697static void ipw_bg_associate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06007698{
David Howellsc4028952006-11-22 14:57:56 +00007699 struct ipw_priv *priv =
7700 container_of(work, struct ipw_priv, associate);
Zhu Yi46441512006-01-24 16:37:59 +08007701 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007702 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007703 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06007704}
7705
James Ketrenosb095c382005-08-24 22:04:42 -05007706static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7707 struct sk_buff *skb)
7708{
7709 struct ieee80211_hdr *hdr;
7710 u16 fc;
7711
7712 hdr = (struct ieee80211_hdr *)skb->data;
John W. Linville72118012008-09-30 21:43:03 -04007713 fc = le16_to_cpu(hdr->frame_control);
James Ketrenosb095c382005-08-24 22:04:42 -05007714 if (!(fc & IEEE80211_FCTL_PROTECTED))
7715 return;
7716
7717 fc &= ~IEEE80211_FCTL_PROTECTED;
John W. Linville72118012008-09-30 21:43:03 -04007718 hdr->frame_control = cpu_to_le16(fc);
James Ketrenosb095c382005-08-24 22:04:42 -05007719 switch (priv->ieee->sec.level) {
7720 case SEC_LEVEL_3:
7721 /* Remove CCMP HDR */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007722 memmove(skb->data + LIBIPW_3ADDR_LEN,
7723 skb->data + LIBIPW_3ADDR_LEN + 8,
7724 skb->len - LIBIPW_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007725 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007726 break;
7727 case SEC_LEVEL_2:
7728 break;
7729 case SEC_LEVEL_1:
7730 /* Remove IV */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007731 memmove(skb->data + LIBIPW_3ADDR_LEN,
7732 skb->data + LIBIPW_3ADDR_LEN + 4,
7733 skb->len - LIBIPW_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007734 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007735 break;
7736 case SEC_LEVEL_0:
7737 break;
7738 default:
7739 printk(KERN_ERR "Unknow security level %d\n",
7740 priv->ieee->sec.level);
7741 break;
7742 }
7743}
7744
7745static void ipw_handle_data_packet(struct ipw_priv *priv,
7746 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007747 struct libipw_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007748{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007749 struct net_device *dev = priv->net_dev;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007750 struct libipw_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007751 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7752
7753 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007754 dev->trans_start = jiffies;
James Ketrenos43f66a62005-03-25 12:31:53 -06007755
Jeff Garzikbf794512005-07-31 13:07:26 -04007756 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007757 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007758 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007759 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007760 dev->stats.rx_errors++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007761 priv->wstats.discard.misc++;
7762 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7763 return;
7764 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007765 dev->stats.rx_dropped++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007766 priv->wstats.discard.misc++;
7767 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7768 return;
7769 }
7770
7771 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007772 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007773
7774 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007775 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007776
7777 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7778
James Ketrenosb095c382005-08-24 22:04:42 -05007779 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007780 hdr = (struct libipw_hdr_4addr *)rxb->skb->data;
Hong Liu567deaf2005-08-31 18:07:22 +08007781 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Stephen Hemminger3c190652006-01-03 15:27:38 -08007782 (is_multicast_ether_addr(hdr->addr1) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007783 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007784 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7785
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007786 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007787 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007788 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007789 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007790 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007791 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007792}
7793
Zhu Yi459d4082006-04-13 17:21:00 +08007794#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05007795static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7796 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007797 struct libipw_rx_stats *stats)
Mike Kershaw24a47db2005-08-26 00:41:54 -05007798{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007799 struct net_device *dev = priv->net_dev;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007800 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7801 struct ipw_rx_frame *frame = &pkt->u.frame;
7802
7803 /* initial pull of some data */
7804 u16 received_channel = frame->received_channel;
7805 u8 antennaAndPhy = frame->antennaAndPhy;
7806 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7807 u16 pktrate = frame->rate;
7808
7809 /* Magic struct that slots into the radiotap header -- no reason
7810 * to build this manually element by element, we can write it much
7811 * more efficiently than we can parse it. ORDER MATTERS HERE */
Zhu Yid685b8c2006-04-13 17:20:27 +08007812 struct ipw_rt_hdr *ipw_rt;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007813
7814 short len = le16_to_cpu(pkt->u.frame.length);
7815
7816 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007817 dev->trans_start = jiffies;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007818
7819 /* We only process data packets if the
7820 * interface is open */
7821 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7822 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007823 dev->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007824 priv->wstats.discard.misc++;
7825 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7826 return;
7827 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007828 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007829 priv->wstats.discard.misc++;
7830 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7831 return;
7832 }
7833
7834 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7835 * that now */
7836 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7837 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007838 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007839 priv->wstats.discard.misc++;
7840 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7841 return;
7842 }
7843
7844 /* copy the frame itself */
7845 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7846 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7847
Mike Kershaw24a47db2005-08-26 00:41:54 -05007848 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7849
7850 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7851 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05007852 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(struct ipw_rt_hdr)); /* total header+data */
Mike Kershaw24a47db2005-08-26 00:41:54 -05007853
7854 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05007855 ipw_rt->rt_hdr.it_present = cpu_to_le32(
7856 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007857 (1 << IEEE80211_RADIOTAP_FLAGS) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007858 (1 << IEEE80211_RADIOTAP_RATE) |
7859 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7860 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
Zhu Yid685b8c2006-04-13 17:20:27 +08007861 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007862 (1 << IEEE80211_RADIOTAP_ANTENNA));
7863
7864 /* Zero the flags, we'll add to them as we go */
7865 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007866 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7867 frame->parent_tsf[2] << 16 |
7868 frame->parent_tsf[1] << 8 |
7869 frame->parent_tsf[0]);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007870
7871 /* Convert signal to DBM */
7872 ipw_rt->rt_dbmsignal = antsignal;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007873 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007874
7875 /* Convert the channel data and set the flags */
7876 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7877 if (received_channel > 14) { /* 802.11a */
7878 ipw_rt->rt_chbitmask =
7879 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7880 } else if (antennaAndPhy & 32) { /* 802.11b */
7881 ipw_rt->rt_chbitmask =
7882 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7883 } else { /* 802.11g */
7884 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05007885 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007886 }
7887
7888 /* set the rate in multiples of 500k/s */
7889 switch (pktrate) {
7890 case IPW_TX_RATE_1MB:
7891 ipw_rt->rt_rate = 2;
7892 break;
7893 case IPW_TX_RATE_2MB:
7894 ipw_rt->rt_rate = 4;
7895 break;
7896 case IPW_TX_RATE_5MB:
7897 ipw_rt->rt_rate = 10;
7898 break;
7899 case IPW_TX_RATE_6MB:
7900 ipw_rt->rt_rate = 12;
7901 break;
7902 case IPW_TX_RATE_9MB:
7903 ipw_rt->rt_rate = 18;
7904 break;
7905 case IPW_TX_RATE_11MB:
7906 ipw_rt->rt_rate = 22;
7907 break;
7908 case IPW_TX_RATE_12MB:
7909 ipw_rt->rt_rate = 24;
7910 break;
7911 case IPW_TX_RATE_18MB:
7912 ipw_rt->rt_rate = 36;
7913 break;
7914 case IPW_TX_RATE_24MB:
7915 ipw_rt->rt_rate = 48;
7916 break;
7917 case IPW_TX_RATE_36MB:
7918 ipw_rt->rt_rate = 72;
7919 break;
7920 case IPW_TX_RATE_48MB:
7921 ipw_rt->rt_rate = 96;
7922 break;
7923 case IPW_TX_RATE_54MB:
7924 ipw_rt->rt_rate = 108;
7925 break;
7926 default:
7927 ipw_rt->rt_rate = 0;
7928 break;
7929 }
7930
7931 /* antenna number */
7932 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7933
7934 /* set the preamble flag if we have it */
7935 if ((antennaAndPhy & 64))
7936 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7937
7938 /* Set the size of the skb to the size of the frame */
7939 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007940
7941 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7942
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007943 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007944 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007945 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007946 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007947 /* no LED during capture */
7948 }
7949}
7950#endif
7951
Zhu Yid685b8c2006-04-13 17:20:27 +08007952#ifdef CONFIG_IPW2200_PROMISCUOUS
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007953#define libipw_is_probe_response(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007954 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT && \
7955 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP )
7956
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007957#define libipw_is_management(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007958 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
7959
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007960#define libipw_is_control(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007961 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL)
7962
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007963#define libipw_is_data(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007964 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)
7965
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007966#define libipw_is_assoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007967 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ)
7968
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007969#define libipw_is_reassoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007970 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
7971
7972static void ipw_handle_promiscuous_rx(struct ipw_priv *priv,
7973 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007974 struct libipw_rx_stats *stats)
Zhu Yid685b8c2006-04-13 17:20:27 +08007975{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007976 struct net_device *dev = priv->prom_net_dev;
Zhu Yid685b8c2006-04-13 17:20:27 +08007977 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7978 struct ipw_rx_frame *frame = &pkt->u.frame;
7979 struct ipw_rt_hdr *ipw_rt;
7980
7981 /* First cache any information we need before we overwrite
7982 * the information provided in the skb from the hardware */
7983 struct ieee80211_hdr *hdr;
7984 u16 channel = frame->received_channel;
7985 u8 phy_flags = frame->antennaAndPhy;
7986 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007987 s8 noise = (s8) le16_to_cpu(frame->noise);
Zhu Yid685b8c2006-04-13 17:20:27 +08007988 u8 rate = frame->rate;
7989 short len = le16_to_cpu(pkt->u.frame.length);
Zhu Yid685b8c2006-04-13 17:20:27 +08007990 struct sk_buff *skb;
7991 int hdr_only = 0;
7992 u16 filter = priv->prom_priv->filter;
7993
7994 /* If the filter is set to not include Rx frames then return */
7995 if (filter & IPW_PROM_NO_RX)
7996 return;
7997
Zhu Yid685b8c2006-04-13 17:20:27 +08007998 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007999 dev->trans_start = jiffies;
Zhu Yid685b8c2006-04-13 17:20:27 +08008000
8001 if (unlikely((len + IPW_RX_FRAME_SIZE) > skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008002 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008003 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
8004 return;
8005 }
8006
8007 /* We only process data packets if the interface is open */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008008 if (unlikely(!netif_running(dev))) {
8009 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008010 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
8011 return;
8012 }
8013
8014 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
8015 * that now */
8016 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
8017 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008018 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008019 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
8020 return;
8021 }
8022
8023 hdr = (void *)rxb->skb->data + IPW_RX_FRAME_SIZE;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008024 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008025 if (filter & IPW_PROM_NO_MGMT)
8026 return;
8027 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
8028 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008029 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008030 if (filter & IPW_PROM_NO_CTL)
8031 return;
8032 if (filter & IPW_PROM_CTL_HEADER_ONLY)
8033 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008034 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008035 if (filter & IPW_PROM_NO_DATA)
8036 return;
8037 if (filter & IPW_PROM_DATA_HEADER_ONLY)
8038 hdr_only = 1;
8039 }
8040
8041 /* Copy the SKB since this is for the promiscuous side */
8042 skb = skb_copy(rxb->skb, GFP_ATOMIC);
8043 if (skb == NULL) {
8044 IPW_ERROR("skb_clone failed for promiscuous copy.\n");
8045 return;
8046 }
8047
8048 /* copy the frame data to write after where the radiotap header goes */
8049 ipw_rt = (void *)skb->data;
8050
8051 if (hdr_only)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008052 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +08008053
8054 memcpy(ipw_rt->payload, hdr, len);
8055
Zhu Yid685b8c2006-04-13 17:20:27 +08008056 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
8057 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05008058 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(*ipw_rt)); /* total header+data */
Zhu Yid685b8c2006-04-13 17:20:27 +08008059
8060 /* Set the size of the skb to the size of the frame */
Al Viro743b84d2007-12-27 01:43:16 -05008061 skb_put(skb, sizeof(*ipw_rt) + len);
Zhu Yid685b8c2006-04-13 17:20:27 +08008062
8063 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05008064 ipw_rt->rt_hdr.it_present = cpu_to_le32(
8065 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008066 (1 << IEEE80211_RADIOTAP_FLAGS) |
Zhu Yid685b8c2006-04-13 17:20:27 +08008067 (1 << IEEE80211_RADIOTAP_RATE) |
8068 (1 << IEEE80211_RADIOTAP_CHANNEL) |
8069 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
8070 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
8071 (1 << IEEE80211_RADIOTAP_ANTENNA));
8072
8073 /* Zero the flags, we'll add to them as we go */
8074 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008075 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
8076 frame->parent_tsf[2] << 16 |
8077 frame->parent_tsf[1] << 8 |
8078 frame->parent_tsf[0]);
Zhu Yid685b8c2006-04-13 17:20:27 +08008079
8080 /* Convert to DBM */
8081 ipw_rt->rt_dbmsignal = signal;
8082 ipw_rt->rt_dbmnoise = noise;
8083
8084 /* Convert the channel data and set the flags */
8085 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(channel));
8086 if (channel > 14) { /* 802.11a */
8087 ipw_rt->rt_chbitmask =
8088 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
8089 } else if (phy_flags & (1 << 5)) { /* 802.11b */
8090 ipw_rt->rt_chbitmask =
8091 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
8092 } else { /* 802.11g */
8093 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05008094 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Zhu Yid685b8c2006-04-13 17:20:27 +08008095 }
8096
8097 /* set the rate in multiples of 500k/s */
8098 switch (rate) {
8099 case IPW_TX_RATE_1MB:
8100 ipw_rt->rt_rate = 2;
8101 break;
8102 case IPW_TX_RATE_2MB:
8103 ipw_rt->rt_rate = 4;
8104 break;
8105 case IPW_TX_RATE_5MB:
8106 ipw_rt->rt_rate = 10;
8107 break;
8108 case IPW_TX_RATE_6MB:
8109 ipw_rt->rt_rate = 12;
8110 break;
8111 case IPW_TX_RATE_9MB:
8112 ipw_rt->rt_rate = 18;
8113 break;
8114 case IPW_TX_RATE_11MB:
8115 ipw_rt->rt_rate = 22;
8116 break;
8117 case IPW_TX_RATE_12MB:
8118 ipw_rt->rt_rate = 24;
8119 break;
8120 case IPW_TX_RATE_18MB:
8121 ipw_rt->rt_rate = 36;
8122 break;
8123 case IPW_TX_RATE_24MB:
8124 ipw_rt->rt_rate = 48;
8125 break;
8126 case IPW_TX_RATE_36MB:
8127 ipw_rt->rt_rate = 72;
8128 break;
8129 case IPW_TX_RATE_48MB:
8130 ipw_rt->rt_rate = 96;
8131 break;
8132 case IPW_TX_RATE_54MB:
8133 ipw_rt->rt_rate = 108;
8134 break;
8135 default:
8136 ipw_rt->rt_rate = 0;
8137 break;
8138 }
8139
8140 /* antenna number */
8141 ipw_rt->rt_antenna = (phy_flags & 3);
8142
8143 /* set the preamble flag if we have it */
8144 if (phy_flags & (1 << 6))
8145 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
8146
8147 IPW_DEBUG_RX("Rx packet of %d bytes.\n", skb->len);
8148
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008149 if (!libipw_rx(priv->prom_priv->ieee, skb, stats)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008150 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008151 dev_kfree_skb_any(skb);
8152 }
8153}
8154#endif
8155
Arjan van de Ven858119e2006-01-14 13:20:43 -08008156static int is_network_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008157 struct libipw_hdr_4addr *header)
James Ketrenosea2b26e2005-08-24 21:25:16 -05008158{
8159 /* Filter incoming packets to determine if they are targetted toward
8160 * this network, discarding packets coming from ourselves */
8161 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05008162 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008163 /* packets from our adapter are dropped (echo) */
8164 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
8165 return 0;
8166
Peter Jones90700fd2005-08-26 16:51:06 -05008167 /* {broad,multi}cast packets to our BSSID go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008168 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05008169 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008170
8171 /* packets to our adapter go through */
8172 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8173 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008174
Peter Jones90700fd2005-08-26 16:51:06 -05008175 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008176 /* packets from our adapter are dropped (echo) */
8177 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
8178 return 0;
8179
Peter Jones90700fd2005-08-26 16:51:06 -05008180 /* {broad,multi}cast packets to our BSS go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008181 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05008182 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
8183
8184 /* packets to our adapter go through */
8185 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8186 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008187 }
James Ketrenosa613bff2005-08-24 21:43:11 -05008188
James Ketrenosea2b26e2005-08-24 21:25:16 -05008189 return 1;
8190}
8191
James Ketrenosafbf30a2005-08-25 00:05:33 -05008192#define IPW_PACKET_RETRY_TIME HZ
8193
Arjan van de Ven858119e2006-01-14 13:20:43 -08008194static int is_duplicate_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008195 struct libipw_hdr_4addr *header)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008196{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008197 u16 sc = le16_to_cpu(header->seq_ctl);
8198 u16 seq = WLAN_GET_SEQ_SEQ(sc);
8199 u16 frag = WLAN_GET_SEQ_FRAG(sc);
8200 u16 *last_seq, *last_frag;
8201 unsigned long *last_time;
8202
8203 switch (priv->ieee->iw_mode) {
8204 case IW_MODE_ADHOC:
8205 {
8206 struct list_head *p;
8207 struct ipw_ibss_seq *entry = NULL;
8208 u8 *mac = header->addr2;
8209 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
8210
8211 __list_for_each(p, &priv->ibss_mac_hash[index]) {
8212 entry =
8213 list_entry(p, struct ipw_ibss_seq, list);
8214 if (!memcmp(entry->mac, mac, ETH_ALEN))
8215 break;
8216 }
8217 if (p == &priv->ibss_mac_hash[index]) {
8218 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
8219 if (!entry) {
8220 IPW_ERROR
8221 ("Cannot malloc new mac entry\n");
8222 return 0;
8223 }
8224 memcpy(entry->mac, mac, ETH_ALEN);
8225 entry->seq_num = seq;
8226 entry->frag_num = frag;
8227 entry->packet_time = jiffies;
8228 list_add(&entry->list,
8229 &priv->ibss_mac_hash[index]);
8230 return 0;
8231 }
8232 last_seq = &entry->seq_num;
8233 last_frag = &entry->frag_num;
8234 last_time = &entry->packet_time;
8235 break;
8236 }
8237 case IW_MODE_INFRA:
8238 last_seq = &priv->last_seq_num;
8239 last_frag = &priv->last_frag_num;
8240 last_time = &priv->last_packet_time;
8241 break;
8242 default:
8243 return 0;
8244 }
8245 if ((*last_seq == seq) &&
8246 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
8247 if (*last_frag == frag)
8248 goto drop;
8249 if (*last_frag + 1 != frag)
8250 /* out-of-order fragment */
8251 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008252 } else
8253 *last_seq = seq;
8254
Zhu Yif57ce7c2005-07-13 12:22:15 -05008255 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008256 *last_time = jiffies;
8257 return 0;
8258
8259 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008260 /* Comment this line now since we observed the card receives
8261 * duplicate packets but the FCTL_RETRY bit is not set in the
8262 * IBSS mode with fragmentation enabled.
John W. Linville72118012008-09-30 21:43:03 -04008263 BUG_ON(!(le16_to_cpu(header->frame_control) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008264 return 1;
8265}
8266
James Ketrenosb095c382005-08-24 22:04:42 -05008267static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8268 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008269 struct libipw_rx_stats *stats)
James Ketrenosb095c382005-08-24 22:04:42 -05008270{
8271 struct sk_buff *skb = rxb->skb;
8272 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008273 struct libipw_hdr_4addr *header = (struct libipw_hdr_4addr *)
James Ketrenosb095c382005-08-24 22:04:42 -05008274 (skb->data + IPW_RX_FRAME_SIZE);
8275
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008276 libipw_rx_mgt(priv->ieee, header, stats);
James Ketrenosb095c382005-08-24 22:04:42 -05008277
8278 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8279 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8280 IEEE80211_STYPE_PROBE_RESP) ||
8281 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8282 IEEE80211_STYPE_BEACON))) {
8283 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
8284 ipw_add_station(priv, header->addr2);
8285 }
8286
8287 if (priv->config & CFG_NET_STATS) {
8288 IPW_DEBUG_HC("sending stat packet\n");
8289
8290 /* Set the size of the skb to the size of the full
8291 * ipw header and 802.11 frame */
8292 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8293 IPW_RX_FRAME_SIZE);
8294
8295 /* Advance past the ipw packet header to the 802.11 frame */
8296 skb_pull(skb, IPW_RX_FRAME_SIZE);
8297
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008298 /* Push the libipw_rx_stats before the 802.11 frame */
James Ketrenosb095c382005-08-24 22:04:42 -05008299 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8300
8301 skb->dev = priv->ieee->dev;
8302
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008303 /* Point raw at the libipw_stats */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07008304 skb_reset_mac_header(skb);
James Ketrenosb095c382005-08-24 22:04:42 -05008305
8306 skb->pkt_type = PACKET_OTHERHOST;
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -08008307 skb->protocol = cpu_to_be16(ETH_P_80211_STATS);
James Ketrenosb095c382005-08-24 22:04:42 -05008308 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8309 netif_rx(skb);
8310 rxb->skb = NULL;
8311 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008312}
8313
James Ketrenos43f66a62005-03-25 12:31:53 -06008314/*
8315 * Main entry function for recieving a packet with 80211 headers. This
8316 * should be called when ever the FW has notified us that there is a new
8317 * skb in the recieve queue.
8318 */
8319static void ipw_rx(struct ipw_priv *priv)
8320{
8321 struct ipw_rx_mem_buffer *rxb;
8322 struct ipw_rx_packet *pkt;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008323 struct libipw_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008324 u32 r, w, i;
8325 u8 network_packet;
Dan Williams943dbef2008-02-14 17:49:41 -05008326 u8 fill_rx = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008327
James Ketrenosb095c382005-08-24 22:04:42 -05008328 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8329 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
Dan Williams943dbef2008-02-14 17:49:41 -05008330 i = priv->rxq->read;
8331
8332 if (ipw_rx_queue_space (priv->rxq) > (RX_QUEUE_SIZE / 2))
8333 fill_rx = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008334
8335 while (i != r) {
8336 rxb = priv->rxq->queue[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06008337 if (unlikely(rxb == NULL)) {
8338 printk(KERN_CRIT "Queue not allocated!\n");
8339 break;
8340 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008341 priv->rxq->queue[i] = NULL;
8342
8343 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008344 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008345 PCI_DMA_FROMDEVICE);
8346
8347 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8348 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8349 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008350 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008351
8352 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008353 case RX_FRAME_TYPE: /* 802.11 frame */ {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008354 struct libipw_rx_stats stats = {
Zhu Yi851ca262006-08-21 11:37:58 +08008355 .rssi = pkt->u.frame.rssi_dbm -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008356 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008357 .signal =
Reinette Chatre21f8a732009-08-18 10:25:05 -07008358 pkt->u.frame.rssi_dbm -
Bill Mossb1916082006-02-15 08:50:18 +08008359 IPW_RSSI_TO_DBM + 0x100,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008360 .noise =
8361 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008362 .rate = pkt->u.frame.rate,
8363 .mac_time = jiffies,
8364 .received_channel =
8365 pkt->u.frame.received_channel,
8366 .freq =
8367 (pkt->u.frame.
8368 control & (1 << 0)) ?
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008369 LIBIPW_24GHZ_BAND :
8370 LIBIPW_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008371 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008372 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008373
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008374 if (stats.rssi != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008375 stats.mask |= LIBIPW_STATMASK_RSSI;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008376 if (stats.signal != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008377 stats.mask |= LIBIPW_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008378 if (stats.noise != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008379 stats.mask |= LIBIPW_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008380 if (stats.rate != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008381 stats.mask |= LIBIPW_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008382
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008383 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008384
Zhu Yid685b8c2006-04-13 17:20:27 +08008385#ifdef CONFIG_IPW2200_PROMISCUOUS
8386 if (priv->prom_net_dev && netif_running(priv->prom_net_dev))
8387 ipw_handle_promiscuous_rx(priv, rxb, &stats);
8388#endif
8389
James Ketrenosb095c382005-08-24 22:04:42 -05008390#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008391 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08008392#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yid685b8c2006-04-13 17:20:27 +08008393
8394 ipw_handle_data_packet_monitor(priv,
8395 rxb,
8396 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008397#else
Zhu Yid685b8c2006-04-13 17:20:27 +08008398 ipw_handle_data_packet(priv, rxb,
8399 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008400#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008401 break;
8402 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008403#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008404
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008405 header =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008406 (struct libipw_hdr_4addr *)(rxb->skb->
James Ketrenos0dacca12005-09-21 12:23:41 -05008407 data +
8408 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008409 /* TODO: Check Ad-Hoc dest/source and make sure
8410 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008411 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008412 * frame control of the packet and disregard
8413 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008414
James Ketrenosea2b26e2005-08-24 21:25:16 -05008415 network_packet =
8416 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008417 if (network_packet && priv->assoc_network) {
8418 priv->assoc_network->stats.rssi =
8419 stats.rssi;
Zhu Yi00d21de2006-04-13 17:19:02 +08008420 priv->exp_avg_rssi =
8421 exponential_average(priv->exp_avg_rssi,
8422 stats.rssi, DEPTH_RSSI);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008423 }
8424
8425 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008426 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008427
James Ketrenosa613bff2005-08-24 21:43:11 -05008428 if (le16_to_cpu(pkt->u.frame.length) <
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008429 libipw_get_hdrlen(le16_to_cpu(
Zhu Yi9d0be032006-02-15 06:18:19 +08008430 header->frame_ctl))) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008431 IPW_DEBUG_DROP
8432 ("Received packet is too small. "
8433 "Dropping.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008434 priv->net_dev->stats.rx_errors++;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008435 priv->wstats.discard.misc++;
8436 break;
8437 }
8438
James Ketrenosa613bff2005-08-24 21:43:11 -05008439 switch (WLAN_FC_GET_TYPE
8440 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008441
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008442 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008443 ipw_handle_mgmt_packet(priv, rxb,
8444 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008445 break;
8446
8447 case IEEE80211_FTYPE_CTL:
8448 break;
8449
8450 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008451 if (unlikely(!network_packet ||
8452 is_duplicate_packet(priv,
8453 header)))
8454 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008455 IPW_DEBUG_DROP("Dropping: "
Johannes Berge1749612008-10-27 15:59:26 -07008456 "%pM, "
8457 "%pM, "
8458 "%pM\n",
8459 header->addr1,
8460 header->addr2,
8461 header->addr3);
James Ketrenosb095c382005-08-24 22:04:42 -05008462 break;
8463 }
8464
8465 ipw_handle_data_packet(priv, rxb,
8466 &stats);
8467
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008468 break;
8469 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008470 break;
8471 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008472
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008473 case RX_HOST_NOTIFICATION_TYPE:{
8474 IPW_DEBUG_RX
8475 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008476 pkt->u.notification.subtype,
8477 pkt->u.notification.flags,
Zhu Yi720eeb42006-12-05 14:41:40 +08008478 le16_to_cpu(pkt->u.notification.size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008479 ipw_rx_notification(priv, &pkt->u.notification);
8480 break;
8481 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008482
8483 default:
8484 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8485 pkt->header.message_type);
8486 break;
8487 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008488
8489 /* For now we just don't re-use anything. We can tweak this
8490 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008491 * fail to Rx correctly */
8492 if (rxb->skb != NULL) {
8493 dev_kfree_skb_any(rxb->skb);
8494 rxb->skb = NULL;
8495 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008496
James Ketrenos43f66a62005-03-25 12:31:53 -06008497 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008498 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008499 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008500
James Ketrenos43f66a62005-03-25 12:31:53 -06008501 i = (i + 1) % RX_QUEUE_SIZE;
Dan Williams943dbef2008-02-14 17:49:41 -05008502
8503 /* If there are a lot of unsued frames, restock the Rx queue
8504 * so the ucode won't assert */
8505 if (fill_rx) {
8506 priv->rxq->read = i;
8507 ipw_rx_queue_replenish(priv);
8508 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008509 }
8510
8511 /* Backtrack one entry */
Dan Williams943dbef2008-02-14 17:49:41 -05008512 priv->rxq->read = i;
James Ketrenos43f66a62005-03-25 12:31:53 -06008513 ipw_rx_queue_restock(priv);
8514}
8515
James Ketrenosafbf30a2005-08-25 00:05:33 -05008516#define DEFAULT_RTS_THRESHOLD 2304U
8517#define MIN_RTS_THRESHOLD 1U
8518#define MAX_RTS_THRESHOLD 2304U
8519#define DEFAULT_BEACON_INTERVAL 100U
8520#define DEFAULT_SHORT_RETRY_LIMIT 7U
8521#define DEFAULT_LONG_RETRY_LIMIT 4U
8522
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008523/**
8524 * ipw_sw_reset
8525 * @option: options to control different reset behaviour
8526 * 0 = reset everything except the 'disable' module_param
8527 * 1 = reset everything and print out driver info (for probe only)
8528 * 2 = reset everything
8529 */
8530static int ipw_sw_reset(struct ipw_priv *priv, int option)
James Ketrenos43f66a62005-03-25 12:31:53 -06008531{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008532 int band, modulation;
8533 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008534
James Ketrenosafbf30a2005-08-25 00:05:33 -05008535 /* Initialize module parameter values here */
8536 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008537
James Ketrenosafbf30a2005-08-25 00:05:33 -05008538 /* We default to disabling the LED code as right now it causes
8539 * too many systems to lock up... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07008540 if (!led_support)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008541 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06008542
James Ketrenosafbf30a2005-08-25 00:05:33 -05008543 if (associate)
8544 priv->config |= CFG_ASSOCIATE;
8545 else
8546 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04008547
James Ketrenosafbf30a2005-08-25 00:05:33 -05008548 if (auto_create)
8549 priv->config |= CFG_ADHOC_CREATE;
8550 else
8551 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8552
Zhu Yi17ed0812006-01-24 16:36:31 +08008553 priv->config &= ~CFG_STATIC_ESSID;
8554 priv->essid_len = 0;
8555 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
8556
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008557 if (disable && option) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008558 priv->status |= STATUS_RF_KILL_SW;
8559 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06008560 }
8561
Reinette Chatre21f8a732009-08-18 10:25:05 -07008562 if (default_channel != 0) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008563 priv->config |= CFG_STATIC_CHANNEL;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008564 priv->channel = default_channel;
8565 IPW_DEBUG_INFO("Bind to static channel %d\n", default_channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008566 /* TODO: Validate that provided channel is in range */
8567 }
Zhu Yie43e3c12006-04-13 17:20:45 +08008568#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05008569 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8570 burst_duration_CCK, burst_duration_OFDM);
Zhu Yie43e3c12006-04-13 17:20:45 +08008571#endif /* CONFIG_IPW2200_QOS */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008572
Reinette Chatre21f8a732009-08-18 10:25:05 -07008573 switch (network_mode) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008574 case 1:
8575 priv->ieee->iw_mode = IW_MODE_ADHOC;
8576 priv->net_dev->type = ARPHRD_ETHER;
8577
8578 break;
8579#ifdef CONFIG_IPW2200_MONITOR
8580 case 2:
8581 priv->ieee->iw_mode = IW_MODE_MONITOR;
Zhu Yi459d4082006-04-13 17:21:00 +08008582#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008583 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8584#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008585 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008586#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008587 break;
8588#endif
8589 default:
8590 case 0:
8591 priv->net_dev->type = ARPHRD_ETHER;
8592 priv->ieee->iw_mode = IW_MODE_INFRA;
8593 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008594 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008595
James Ketrenosafbf30a2005-08-25 00:05:33 -05008596 if (hwcrypto) {
8597 priv->ieee->host_encrypt = 0;
8598 priv->ieee->host_encrypt_msdu = 0;
8599 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008600 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008601 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008602 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008603
Zhu Yie402c932005-08-05 17:20:40 +08008604 /* IPW2200/2915 is abled to do hardware fragmentation. */
8605 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008606
James Ketrenosafbf30a2005-08-25 00:05:33 -05008607 if ((priv->pci_dev->device == 0x4223) ||
8608 (priv->pci_dev->device == 0x4224)) {
Zhu Yie8c69e22006-02-17 08:25:12 +08008609 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008610 printk(KERN_INFO DRV_NAME
8611 ": Detected Intel PRO/Wireless 2915ABG Network "
8612 "Connection\n");
8613 priv->ieee->abg_true = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008614 band = LIBIPW_52GHZ_BAND | LIBIPW_24GHZ_BAND;
8615 modulation = LIBIPW_OFDM_MODULATION |
8616 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008617 priv->adapter = IPW_2915ABG;
8618 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008619 } else {
Zhu Yie8c69e22006-02-17 08:25:12 +08008620 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008621 printk(KERN_INFO DRV_NAME
8622 ": Detected Intel PRO/Wireless 2200BG Network "
8623 "Connection\n");
8624
8625 priv->ieee->abg_true = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008626 band = LIBIPW_24GHZ_BAND;
8627 modulation = LIBIPW_OFDM_MODULATION |
8628 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008629 priv->adapter = IPW_2200BG;
8630 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008631 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008632
James Ketrenosafbf30a2005-08-25 00:05:33 -05008633 priv->ieee->freq_band = band;
8634 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008635
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008636 priv->rates_mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008637
James Ketrenosafbf30a2005-08-25 00:05:33 -05008638 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8639 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008640
James Ketrenosafbf30a2005-08-25 00:05:33 -05008641 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8642 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8643 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008644
James Ketrenosafbf30a2005-08-25 00:05:33 -05008645 /* If power management is turned on, default to AC mode */
8646 priv->power_mode = IPW_POWER_AC;
8647 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008648
Zhu Yi0ece35b2005-08-05 17:26:51 +08008649 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008650}
8651
8652/*
8653 * This file defines the Wireless Extension handlers. It does not
8654 * define any methods of hardware manipulation and relies on the
8655 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008656 *
8657 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008658 * function used to poll the hardware vs. making unecessary calls.
8659 *
8660 */
8661
John W. Linville8cc31742009-11-13 16:56:13 -05008662static int ipw_wx_get_name(struct net_device *dev,
8663 struct iw_request_info *info,
8664 union iwreq_data *wrqu, char *extra)
8665{
8666 struct ipw_priv *priv = libipw_priv(dev);
8667 mutex_lock(&priv->mutex);
8668 if (priv->status & STATUS_RF_KILL_MASK)
8669 strcpy(wrqu->name, "radio off");
8670 else if (!(priv->status & STATUS_ASSOCIATED))
8671 strcpy(wrqu->name, "unassociated");
8672 else
8673 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8674 ipw_modes[priv->assoc_request.ieee_mode]);
8675 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
8676 mutex_unlock(&priv->mutex);
8677 return 0;
8678}
8679
James Ketrenos43f66a62005-03-25 12:31:53 -06008680static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8681{
8682 if (channel == 0) {
8683 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8684 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008685 IPW_DEBUG_ASSOC("Attempting to associate with new "
8686 "parameters.\n");
8687 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008688 return 0;
8689 }
8690
8691 priv->config |= CFG_STATIC_CHANNEL;
8692
8693 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008694 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8695 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008696 return 0;
8697 }
8698
8699 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8700 priv->channel = channel;
8701
James Ketrenosb095c382005-08-24 22:04:42 -05008702#ifdef CONFIG_IPW2200_MONITOR
8703 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008704 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008705 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008706 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008707 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008708 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008709 }
8710
8711 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8712 udelay(10);
8713
8714 if (priv->status & STATUS_SCANNING)
8715 IPW_DEBUG_SCAN("Still scanning...\n");
8716 else
8717 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8718 1000 - i);
8719
8720 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008721 }
James Ketrenosb095c382005-08-24 22:04:42 -05008722#endif /* CONFIG_IPW2200_MONITOR */
8723
James Ketrenosc848d0a2005-08-24 21:56:24 -05008724 /* Network configuration changed -- force [re]association */
8725 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8726 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008727 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008728
8729 return 0;
8730}
8731
Jeff Garzikbf794512005-07-31 13:07:26 -04008732static int ipw_wx_set_freq(struct net_device *dev,
8733 struct iw_request_info *info,
8734 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008735{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008736 struct ipw_priv *priv = libipw_priv(dev);
8737 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008738 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008739 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008740 u8 channel, flags;
8741 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008742
James Ketrenosb095c382005-08-24 22:04:42 -05008743 if (fwrq->m == 0) {
8744 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
Zhu Yi46441512006-01-24 16:37:59 +08008745 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008746 ret = ipw_set_channel(priv, 0);
Zhu Yi46441512006-01-24 16:37:59 +08008747 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008748 return ret;
8749 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008750 /* if setting by freq convert to channel */
8751 if (fwrq->e == 1) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008752 channel = libipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008753 if (channel == 0)
8754 return -EINVAL;
8755 } else
8756 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008757
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008758 if (!(band = libipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008759 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008760
Liu Hong1fe0adb2005-08-19 09:33:10 -05008761 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008762 i = libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008763 if (i == -1)
8764 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008765
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008766 flags = (band == LIBIPW_24GHZ_BAND) ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05008767 geo->bg[i].flags : geo->a[i].flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008768 if (flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008769 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8770 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008771 }
8772 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008773
James Ketrenos43f66a62005-03-25 12:31:53 -06008774 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
Zhu Yi46441512006-01-24 16:37:59 +08008775 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008776 ret = ipw_set_channel(priv, channel);
Zhu Yi46441512006-01-24 16:37:59 +08008777 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008778 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008779}
8780
Jeff Garzikbf794512005-07-31 13:07:26 -04008781static int ipw_wx_get_freq(struct net_device *dev,
8782 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008783 union iwreq_data *wrqu, char *extra)
8784{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008785 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008786
8787 wrqu->freq.e = 0;
8788
8789 /* If we are associated, trying to associate, or have a statically
8790 * configured CHANNEL then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008791 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008792 if (priv->config & CFG_STATIC_CHANNEL ||
Zhu Yic580f672006-08-21 11:37:01 +08008793 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) {
8794 int i;
8795
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008796 i = libipw_channel_to_index(priv->ieee, priv->channel);
Zhu Yic580f672006-08-21 11:37:01 +08008797 BUG_ON(i == -1);
8798 wrqu->freq.e = 1;
8799
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008800 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
8801 case LIBIPW_52GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008802 wrqu->freq.m = priv->ieee->geo.a[i].freq * 100000;
8803 break;
8804
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008805 case LIBIPW_24GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008806 wrqu->freq.m = priv->ieee->geo.bg[i].freq * 100000;
8807 break;
8808
8809 default:
8810 BUG();
8811 }
8812 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06008813 wrqu->freq.m = 0;
8814
Zhu Yi46441512006-01-24 16:37:59 +08008815 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008816 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8817 return 0;
8818}
8819
Jeff Garzikbf794512005-07-31 13:07:26 -04008820static int ipw_wx_set_mode(struct net_device *dev,
8821 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008822 union iwreq_data *wrqu, char *extra)
8823{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008824 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008825 int err = 0;
8826
8827 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8828
James Ketrenos43f66a62005-03-25 12:31:53 -06008829 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008830#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008831 case IW_MODE_MONITOR:
8832#endif
8833 case IW_MODE_ADHOC:
8834 case IW_MODE_INFRA:
8835 break;
8836 case IW_MODE_AUTO:
8837 wrqu->mode = IW_MODE_INFRA;
8838 break;
8839 default:
8840 return -EINVAL;
8841 }
James Ketrenosb095c382005-08-24 22:04:42 -05008842 if (wrqu->mode == priv->ieee->iw_mode)
8843 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008844
Zhu Yi46441512006-01-24 16:37:59 +08008845 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008846
8847 ipw_sw_reset(priv, 0);
8848
James Ketrenosb095c382005-08-24 22:04:42 -05008849#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008850 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008851 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008852
8853 if (wrqu->mode == IW_MODE_MONITOR)
Zhu Yi459d4082006-04-13 17:21:00 +08008854#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008855 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8856#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008857 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008858#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008859#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008860
Jeff Garzikbf794512005-07-31 13:07:26 -04008861 /* Free the existing firmware and reset the fw_loaded
Nick Andrew877d0312009-01-26 11:06:57 +01008862 * flag so ipw_load() will bring in the new firmware */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008863 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008864
8865 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008866
James Ketrenosc848d0a2005-08-24 21:56:24 -05008867 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08008868 mutex_unlock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008869 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008870}
8871
Jeff Garzikbf794512005-07-31 13:07:26 -04008872static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008873 struct iw_request_info *info,
8874 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008875{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008876 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008877 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008878 wrqu->mode = priv->ieee->iw_mode;
8879 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
Zhu Yi46441512006-01-24 16:37:59 +08008880 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008881 return 0;
8882}
8883
James Ketrenos43f66a62005-03-25 12:31:53 -06008884/* Values are in microsecond */
8885static const s32 timeout_duration[] = {
8886 350000,
8887 250000,
8888 75000,
8889 37000,
8890 25000,
8891};
8892
8893static const s32 period_duration[] = {
8894 400000,
8895 700000,
8896 1000000,
8897 1000000,
8898 1000000
8899};
8900
Jeff Garzikbf794512005-07-31 13:07:26 -04008901static int ipw_wx_get_range(struct net_device *dev,
8902 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008903 union iwreq_data *wrqu, char *extra)
8904{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008905 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008906 struct iw_range *range = (struct iw_range *)extra;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008907 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008908 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008909
8910 wrqu->data.length = sizeof(*range);
8911 memset(range, 0, sizeof(*range));
8912
8913 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008914 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008915
8916 range->max_qual.qual = 100;
8917 /* TODO: Find real max RSSI and stick here */
8918 range->max_qual.level = 0;
Bill Mossb1916082006-02-15 08:50:18 +08008919 range->max_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008920 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008921
8922 range->avg_qual.qual = 70;
8923 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008924 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008925 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008926 range->avg_qual.updated = 7; /* Updated all three */
Zhu Yi46441512006-01-24 16:37:59 +08008927 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008928 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008929
Jeff Garzikbf794512005-07-31 13:07:26 -04008930 for (i = 0; i < range->num_bitrates; i++)
8931 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008932 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008933
James Ketrenos43f66a62005-03-25 12:31:53 -06008934 range->max_rts = DEFAULT_RTS_THRESHOLD;
8935 range->min_frag = MIN_FRAG_THRESHOLD;
8936 range->max_frag = MAX_FRAG_THRESHOLD;
8937
8938 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008939 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008940 range->num_encoding_sizes = 2;
8941 range->max_encoding_tokens = WEP_KEYS;
8942
8943 /* Set the Wireless Extension versions */
8944 range->we_version_compiled = WIRELESS_EXT;
Dan Williamsf1b50862006-01-30 13:58:56 -05008945 range->we_version_source = 18;
James Ketrenos43f66a62005-03-25 12:31:53 -06008946
James Ketrenosb095c382005-08-24 22:04:42 -05008947 i = 0;
8948 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
Zhu Yie815de42006-03-02 05:55:51 +08008949 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES; j++) {
8950 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008951 (geo->bg[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008952 continue;
8953
James Ketrenosb095c382005-08-24 22:04:42 -05008954 range->freq[i].i = geo->bg[j].channel;
8955 range->freq[i].m = geo->bg[j].freq * 100000;
8956 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008957 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008958 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008959 }
James Ketrenosb095c382005-08-24 22:04:42 -05008960
8961 if (priv->ieee->mode & IEEE_A) {
Zhu Yie815de42006-03-02 05:55:51 +08008962 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES; j++) {
8963 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008964 (geo->a[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008965 continue;
8966
James Ketrenosb095c382005-08-24 22:04:42 -05008967 range->freq[i].i = geo->a[j].channel;
8968 range->freq[i].m = geo->a[j].freq * 100000;
8969 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008970 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008971 }
8972 }
8973
8974 range->num_channels = i;
8975 range->num_frequency = i;
8976
Zhu Yi46441512006-01-24 16:37:59 +08008977 mutex_unlock(&priv->mutex);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008978
8979 /* Event capability (kernel + driver) */
8980 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
8981 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
Zhu Yi07f02e42006-04-13 17:19:25 +08008982 IW_EVENT_CAPA_MASK(SIOCGIWAP) |
8983 IW_EVENT_CAPA_MASK(SIOCGIWSCAN));
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008984 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008985
Dan Williamsf1b50862006-01-30 13:58:56 -05008986 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
8987 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
8988
Dan Williams374fdfb2007-12-12 10:25:07 -05008989 range->scan_capa = IW_SCAN_CAPA_ESSID | IW_SCAN_CAPA_TYPE;
8990
James Ketrenos43f66a62005-03-25 12:31:53 -06008991 IPW_DEBUG_WX("GET Range\n");
8992 return 0;
8993}
8994
Jeff Garzikbf794512005-07-31 13:07:26 -04008995static int ipw_wx_set_wap(struct net_device *dev,
8996 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008997 union iwreq_data *wrqu, char *extra)
8998{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008999 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009000
9001 static const unsigned char any[] = {
9002 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
9003 };
9004 static const unsigned char off[] = {
9005 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
9006 };
9007
Jeff Garzikbf794512005-07-31 13:07:26 -04009008 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06009009 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08009010 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009011 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
9012 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
9013 /* we disable mandatory BSSID association */
9014 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
9015 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009016 IPW_DEBUG_ASSOC("Attempting to associate with new "
9017 "parameters.\n");
9018 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08009019 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009020 return 0;
9021 }
9022
9023 priv->config |= CFG_STATIC_BSSID;
9024 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
9025 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009026 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009027 return 0;
9028 }
9029
Johannes Berge1749612008-10-27 15:59:26 -07009030 IPW_DEBUG_WX("Setting mandatory BSSID to %pM\n",
9031 wrqu->ap_addr.sa_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06009032
9033 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
9034
James Ketrenosc848d0a2005-08-24 21:56:24 -05009035 /* Network configuration changed -- force [re]association */
9036 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
9037 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009038 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009039
Zhu Yi46441512006-01-24 16:37:59 +08009040 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009041 return 0;
9042}
9043
Jeff Garzikbf794512005-07-31 13:07:26 -04009044static int ipw_wx_get_wap(struct net_device *dev,
9045 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009046 union iwreq_data *wrqu, char *extra)
9047{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009048 struct ipw_priv *priv = libipw_priv(dev);
Joe Perches0795af52007-10-03 17:59:30 -07009049
James Ketrenos43f66a62005-03-25 12:31:53 -06009050 /* If we are associated, trying to associate, or have a statically
9051 * configured BSSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009052 mutex_lock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009053 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06009054 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9055 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009056 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06009057 } else
9058 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
9059
Johannes Berge1749612008-10-27 15:59:26 -07009060 IPW_DEBUG_WX("Getting WAP BSSID: %pM\n",
9061 wrqu->ap_addr.sa_data);
Zhu Yi46441512006-01-24 16:37:59 +08009062 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009063 return 0;
9064}
9065
Jeff Garzikbf794512005-07-31 13:07:26 -04009066static int ipw_wx_set_essid(struct net_device *dev,
9067 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009068 union iwreq_data *wrqu, char *extra)
9069{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009070 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yiab644b02006-08-21 11:37:13 +08009071 int length;
John W. Linville9387b7c2008-09-30 20:59:05 -04009072 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06009073
Zhu Yiab644b02006-08-21 11:37:13 +08009074 mutex_lock(&priv->mutex);
9075
9076 if (!wrqu->essid.flags)
9077 {
9078 IPW_DEBUG_WX("Setting ESSID to ANY\n");
9079 ipw_disassociate(priv);
9080 priv->config &= ~CFG_STATIC_ESSID;
9081 ipw_associate(priv);
9082 mutex_unlock(&priv->mutex);
9083 return 0;
9084 }
9085
Zhu Yia9f0d422006-08-21 11:37:26 +08009086 length = min((int)wrqu->essid.length, IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06009087
9088 priv->config |= CFG_STATIC_ESSID;
9089
Zhu Yia9f0d422006-08-21 11:37:26 +08009090 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)
9091 && (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009092 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009093 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009094 return 0;
9095 }
9096
John W. Linville9387b7c2008-09-30 20:59:05 -04009097 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n",
9098 print_ssid(ssid, extra, length), length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009099
9100 priv->essid_len = length;
Zhu Yia9f0d422006-08-21 11:37:26 +08009101 memcpy(priv->essid, extra, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009102
James Ketrenosc848d0a2005-08-24 21:56:24 -05009103 /* Network configuration changed -- force [re]association */
9104 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
9105 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009106 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009107
Zhu Yi46441512006-01-24 16:37:59 +08009108 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009109 return 0;
9110}
9111
Jeff Garzikbf794512005-07-31 13:07:26 -04009112static int ipw_wx_get_essid(struct net_device *dev,
9113 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009114 union iwreq_data *wrqu, char *extra)
9115{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009116 struct ipw_priv *priv = libipw_priv(dev);
John W. Linville9387b7c2008-09-30 20:59:05 -04009117 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06009118
9119 /* If we are associated, trying to associate, or have a statically
9120 * configured ESSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009121 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009122 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04009123 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9124 IPW_DEBUG_WX("Getting essid: '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04009125 print_ssid(ssid, priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04009126 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009127 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009128 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009129 } else {
9130 IPW_DEBUG_WX("Getting essid: ANY\n");
9131 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009132 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009133 }
Zhu Yi46441512006-01-24 16:37:59 +08009134 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009135 return 0;
9136}
9137
Jeff Garzikbf794512005-07-31 13:07:26 -04009138static int ipw_wx_set_nick(struct net_device *dev,
9139 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009140 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009141{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009142 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009143
9144 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
9145 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
9146 return -E2BIG;
Zhu Yi46441512006-01-24 16:37:59 +08009147 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009148 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06009149 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009150 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009151 IPW_DEBUG_TRACE("<<\n");
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
Jeff Garzikbf794512005-07-31 13:07:26 -04009157static int ipw_wx_get_nick(struct net_device *dev,
9158 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009159 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009160{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009161 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009162 IPW_DEBUG_WX("Getting nick\n");
Zhu Yi46441512006-01-24 16:37:59 +08009163 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009164 wrqu->data.length = strlen(priv->nick);
James Ketrenos43f66a62005-03-25 12:31:53 -06009165 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009166 wrqu->data.flags = 1; /* active */
Zhu Yi46441512006-01-24 16:37:59 +08009167 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009168 return 0;
9169}
9170
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009171static int ipw_wx_set_sens(struct net_device *dev,
9172 struct iw_request_info *info,
9173 union iwreq_data *wrqu, char *extra)
9174{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009175 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009176 int err = 0;
9177
9178 IPW_DEBUG_WX("Setting roaming threshold to %d\n", wrqu->sens.value);
9179 IPW_DEBUG_WX("Setting disassociate threshold to %d\n", 3*wrqu->sens.value);
9180 mutex_lock(&priv->mutex);
9181
9182 if (wrqu->sens.fixed == 0)
9183 {
9184 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
9185 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
9186 goto out;
9187 }
9188 if ((wrqu->sens.value > IPW_MB_ROAMING_THRESHOLD_MAX) ||
9189 (wrqu->sens.value < IPW_MB_ROAMING_THRESHOLD_MIN)) {
9190 err = -EINVAL;
9191 goto out;
9192 }
9193
9194 priv->roaming_threshold = wrqu->sens.value;
9195 priv->disassociate_threshold = 3*wrqu->sens.value;
9196 out:
9197 mutex_unlock(&priv->mutex);
9198 return err;
9199}
9200
9201static int ipw_wx_get_sens(struct net_device *dev,
9202 struct iw_request_info *info,
9203 union iwreq_data *wrqu, char *extra)
9204{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009205 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009206 mutex_lock(&priv->mutex);
9207 wrqu->sens.fixed = 1;
9208 wrqu->sens.value = priv->roaming_threshold;
9209 mutex_unlock(&priv->mutex);
9210
9211 IPW_DEBUG_WX("GET roaming threshold -> %s %d \n",
9212 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
9213
9214 return 0;
9215}
9216
James Ketrenos43f66a62005-03-25 12:31:53 -06009217static int ipw_wx_set_rate(struct net_device *dev,
9218 struct iw_request_info *info,
9219 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009220{
James Ketrenosea2b26e2005-08-24 21:25:16 -05009221 /* TODO: We should use semaphores or locks for access to priv */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009222 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009223 u32 target_rate = wrqu->bitrate.value;
9224 u32 fixed, mask;
9225
9226 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
9227 /* value = X, fixed = 1 means only rate X */
9228 /* value = X, fixed = 0 means all rates lower equal X */
9229
9230 if (target_rate == -1) {
9231 fixed = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009232 mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009233 /* Now we should reassociate */
9234 goto apply;
9235 }
9236
9237 mask = 0;
9238 fixed = wrqu->bitrate.fixed;
9239
9240 if (target_rate == 1000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009241 mask |= LIBIPW_CCK_RATE_1MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009242 if (target_rate == 1000000)
9243 goto apply;
9244
9245 if (target_rate == 2000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009246 mask |= LIBIPW_CCK_RATE_2MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009247 if (target_rate == 2000000)
9248 goto apply;
9249
9250 if (target_rate == 5500000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009251 mask |= LIBIPW_CCK_RATE_5MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009252 if (target_rate == 5500000)
9253 goto apply;
9254
9255 if (target_rate == 6000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009256 mask |= LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009257 if (target_rate == 6000000)
9258 goto apply;
9259
9260 if (target_rate == 9000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009261 mask |= LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009262 if (target_rate == 9000000)
9263 goto apply;
9264
9265 if (target_rate == 11000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009266 mask |= LIBIPW_CCK_RATE_11MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009267 if (target_rate == 11000000)
9268 goto apply;
9269
9270 if (target_rate == 12000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009271 mask |= LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009272 if (target_rate == 12000000)
9273 goto apply;
9274
9275 if (target_rate == 18000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009276 mask |= LIBIPW_OFDM_RATE_18MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009277 if (target_rate == 18000000)
9278 goto apply;
9279
9280 if (target_rate == 24000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009281 mask |= LIBIPW_OFDM_RATE_24MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009282 if (target_rate == 24000000)
9283 goto apply;
9284
9285 if (target_rate == 36000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009286 mask |= LIBIPW_OFDM_RATE_36MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009287 if (target_rate == 36000000)
9288 goto apply;
9289
9290 if (target_rate == 48000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009291 mask |= LIBIPW_OFDM_RATE_48MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009292 if (target_rate == 48000000)
9293 goto apply;
9294
9295 if (target_rate == 54000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009296 mask |= LIBIPW_OFDM_RATE_54MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009297 if (target_rate == 54000000)
9298 goto apply;
9299
9300 IPW_DEBUG_WX("invalid rate specified, returning error\n");
9301 return -EINVAL;
9302
9303 apply:
9304 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
9305 mask, fixed ? "fixed" : "sub-rates");
Zhu Yi46441512006-01-24 16:37:59 +08009306 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009307 if (mask == LIBIPW_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009308 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05009309 ipw_set_fixed_rate(priv, priv->ieee->mode);
9310 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05009311 priv->config |= CFG_FIXED_RATE;
9312
James Ketrenosc848d0a2005-08-24 21:56:24 -05009313 if (priv->rates_mask == mask) {
9314 IPW_DEBUG_WX("Mask set to current mask.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009315 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009316 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009317 }
9318
James Ketrenosc848d0a2005-08-24 21:56:24 -05009319 priv->rates_mask = mask;
9320
9321 /* Network configuration changed -- force [re]association */
9322 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
9323 if (!ipw_disassociate(priv))
9324 ipw_associate(priv);
9325
Zhu Yi46441512006-01-24 16:37:59 +08009326 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009327 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009328}
9329
Jeff Garzikbf794512005-07-31 13:07:26 -04009330static int ipw_wx_get_rate(struct net_device *dev,
9331 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009332 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009333{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009334 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009335 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009336 wrqu->bitrate.value = priv->last_rate;
Zhu Yi455936c2006-04-13 17:20:05 +08009337 wrqu->bitrate.fixed = (priv->config & CFG_FIXED_RATE) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009338 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009339 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
9340 return 0;
9341}
9342
Jeff Garzikbf794512005-07-31 13:07:26 -04009343static int ipw_wx_set_rts(struct net_device *dev,
9344 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{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009347 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009348 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009349 if (wrqu->rts.disabled || !wrqu->rts.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009350 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
9351 else {
9352 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05009353 wrqu->rts.value > MAX_RTS_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009354 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009355 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009356 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009357 priv->rts_threshold = wrqu->rts.value;
9358 }
9359
9360 ipw_send_rts_threshold(priv, priv->rts_threshold);
Zhu Yi46441512006-01-24 16:37:59 +08009361 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009362 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
9363 return 0;
9364}
9365
Jeff Garzikbf794512005-07-31 13:07:26 -04009366static int ipw_wx_get_rts(struct net_device *dev,
9367 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009368 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009369{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009370 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009371 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009372 wrqu->rts.value = priv->rts_threshold;
9373 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009374 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
Zhu Yi46441512006-01-24 16:37:59 +08009375 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009376 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
9377 return 0;
9378}
9379
Jeff Garzikbf794512005-07-31 13:07:26 -04009380static int ipw_wx_set_txpow(struct net_device *dev,
9381 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009382 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009383{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009384 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009385 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009386
Zhu Yi46441512006-01-24 16:37:59 +08009387 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009388 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009389 err = -EINPROGRESS;
9390 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009391 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009392
James Ketrenosb095c382005-08-24 22:04:42 -05009393 if (!wrqu->power.fixed)
9394 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06009395
James Ketrenosc848d0a2005-08-24 21:56:24 -05009396 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009397 err = -EINVAL;
9398 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009399 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009400
James Ketrenosb095c382005-08-24 22:04:42 -05009401 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009402 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009403 err = -EINVAL;
9404 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009405 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009406
9407 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009408 err = ipw_set_tx_power(priv);
9409 out:
Zhu Yi46441512006-01-24 16:37:59 +08009410 mutex_unlock(&priv->mutex);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009411 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009412}
9413
Jeff Garzikbf794512005-07-31 13:07:26 -04009414static int ipw_wx_get_txpow(struct net_device *dev,
9415 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009416 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009417{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009418 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009419 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009420 wrqu->power.value = priv->tx_power;
9421 wrqu->power.fixed = 1;
9422 wrqu->power.flags = IW_TXPOW_DBM;
9423 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009424 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009425
Jeff Garzikbf794512005-07-31 13:07:26 -04009426 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08009427 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009428
9429 return 0;
9430}
9431
Jeff Garzikbf794512005-07-31 13:07:26 -04009432static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009433 struct iw_request_info *info,
9434 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009435{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009436 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009437 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009438 if (wrqu->frag.disabled || !wrqu->frag.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009439 priv->ieee->fts = DEFAULT_FTS;
9440 else {
9441 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009442 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009443 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009444 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009445 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009446
James Ketrenos43f66a62005-03-25 12:31:53 -06009447 priv->ieee->fts = wrqu->frag.value & ~0x1;
9448 }
9449
9450 ipw_send_frag_threshold(priv, wrqu->frag.value);
Zhu Yi46441512006-01-24 16:37:59 +08009451 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009452 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
9453 return 0;
9454}
9455
Jeff Garzikbf794512005-07-31 13:07:26 -04009456static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009457 struct iw_request_info *info,
9458 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009459{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009460 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009461 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009462 wrqu->frag.value = priv->ieee->fts;
9463 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009464 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
Zhu Yi46441512006-01-24 16:37:59 +08009465 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009466 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
9467
9468 return 0;
9469}
9470
Jeff Garzikbf794512005-07-31 13:07:26 -04009471static int ipw_wx_set_retry(struct net_device *dev,
9472 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009473 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009474{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009475 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009476
9477 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9478 return -EINVAL;
9479
9480 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9481 return 0;
9482
Zhu Yid5f7ac22006-08-21 11:38:17 +08009483 if (wrqu->retry.value < 0 || wrqu->retry.value >= 255)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009484 return -EINVAL;
9485
Zhu Yi46441512006-01-24 16:37:59 +08009486 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009487 if (wrqu->retry.flags & IW_RETRY_SHORT)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009488 priv->short_retry_limit = (u8) wrqu->retry.value;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009489 else if (wrqu->retry.flags & IW_RETRY_LONG)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009490 priv->long_retry_limit = (u8) wrqu->retry.value;
9491 else {
9492 priv->short_retry_limit = (u8) wrqu->retry.value;
9493 priv->long_retry_limit = (u8) wrqu->retry.value;
9494 }
9495
9496 ipw_send_retry_limit(priv, priv->short_retry_limit,
9497 priv->long_retry_limit);
Zhu Yi46441512006-01-24 16:37:59 +08009498 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009499 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9500 priv->short_retry_limit, priv->long_retry_limit);
9501 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009502}
9503
Jeff Garzikbf794512005-07-31 13:07:26 -04009504static int ipw_wx_get_retry(struct net_device *dev,
9505 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009506 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009507{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009508 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009509
Zhu Yi46441512006-01-24 16:37:59 +08009510 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009511 wrqu->retry.disabled = 0;
9512
9513 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
Zhu Yi46441512006-01-24 16:37:59 +08009514 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009515 return -EINVAL;
9516 }
9517
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009518 if (wrqu->retry.flags & IW_RETRY_LONG) {
9519 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009520 wrqu->retry.value = priv->long_retry_limit;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009521 } else if (wrqu->retry.flags & IW_RETRY_SHORT) {
9522 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_SHORT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009523 wrqu->retry.value = priv->short_retry_limit;
9524 } else {
9525 wrqu->retry.flags = IW_RETRY_LIMIT;
9526 wrqu->retry.value = priv->short_retry_limit;
9527 }
Zhu Yi46441512006-01-24 16:37:59 +08009528 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009529
9530 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
9531
9532 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009533}
9534
Jeff Garzikbf794512005-07-31 13:07:26 -04009535static int ipw_wx_set_scan(struct net_device *dev,
9536 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009537 union iwreq_data *wrqu, char *extra)
9538{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009539 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi094c4d22006-08-21 11:39:03 +08009540 struct iw_scan_req *req = (struct iw_scan_req *)extra;
Dan Williamsea177302008-06-02 17:51:23 -04009541 struct delayed_work *work = NULL;
Zhu Yi094c4d22006-08-21 11:39:03 +08009542
Dan Williams0b531672007-10-09 13:55:24 -04009543 mutex_lock(&priv->mutex);
Dan Williamsea177302008-06-02 17:51:23 -04009544
Dan Williams0b531672007-10-09 13:55:24 -04009545 priv->user_requested_scan = 1;
Dan Williams0b531672007-10-09 13:55:24 -04009546
Zhu Yi094c4d22006-08-21 11:39:03 +08009547 if (wrqu->data.length == sizeof(struct iw_scan_req)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05009548 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Dan Williamsea177302008-06-02 17:51:23 -04009549 int len = min((int)req->essid_len,
9550 (int)sizeof(priv->direct_scan_ssid));
9551 memcpy(priv->direct_scan_ssid, req->essid, len);
9552 priv->direct_scan_ssid_len = len;
9553 work = &priv->request_direct_scan;
9554 } else if (req->scan_type == IW_SCAN_TYPE_PASSIVE) {
9555 work = &priv->request_passive_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009556 }
Dan Williamsea177302008-06-02 17:51:23 -04009557 } else {
9558 /* Normal active broadcast scan */
9559 work = &priv->request_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009560 }
James Ketrenos8935f392005-10-05 15:59:08 -05009561
Dan Williamsea177302008-06-02 17:51:23 -04009562 mutex_unlock(&priv->mutex);
9563
James Ketrenos43f66a62005-03-25 12:31:53 -06009564 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009565
Dan Williamsea177302008-06-02 17:51:23 -04009566 queue_delayed_work(priv->workqueue, work, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05009567
James Ketrenos43f66a62005-03-25 12:31:53 -06009568 return 0;
9569}
9570
Jeff Garzikbf794512005-07-31 13:07:26 -04009571static int ipw_wx_get_scan(struct net_device *dev,
9572 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009573 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009574{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009575 struct ipw_priv *priv = libipw_priv(dev);
9576 return libipw_wx_get_scan(priv->ieee, info, wrqu, extra);
James Ketrenos43f66a62005-03-25 12:31:53 -06009577}
9578
Jeff Garzikbf794512005-07-31 13:07:26 -04009579static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009580 struct iw_request_info *info,
9581 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009582{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009583 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009584 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009585 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009586
Zhu Yi46441512006-01-24 16:37:59 +08009587 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009588 ret = libipw_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009589
Hong Liucaeff812005-08-05 17:25:50 +08009590 /* In IBSS mode, we need to notify the firmware to update
9591 * the beacon info after we changed the capability. */
9592 if (cap != priv->capability &&
9593 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9594 priv->status & STATUS_ASSOCIATED)
9595 ipw_disassociate(priv);
9596
Zhu Yi46441512006-01-24 16:37:59 +08009597 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009598 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009599}
9600
Jeff Garzikbf794512005-07-31 13:07:26 -04009601static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009602 struct iw_request_info *info,
9603 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009604{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009605 struct ipw_priv *priv = libipw_priv(dev);
9606 return libipw_wx_get_encode(priv->ieee, info, wrqu, key);
James Ketrenos43f66a62005-03-25 12:31:53 -06009607}
9608
Jeff Garzikbf794512005-07-31 13:07:26 -04009609static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009610 struct iw_request_info *info,
9611 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009612{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009613 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009614 int err;
Zhu Yi46441512006-01-24 16:37:59 +08009615 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009616 if (wrqu->power.disabled) {
9617 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9618 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9619 if (err) {
9620 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009621 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009622 return err;
9623 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009624 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
Zhu Yi46441512006-01-24 16:37:59 +08009625 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009626 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009627 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009628
9629 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009630 case IW_POWER_ON: /* If not specified */
9631 case IW_POWER_MODE: /* If set all mask */
Jean Delvarec03983a2007-10-19 23:22:55 +02009632 case IW_POWER_ALL_R: /* If explicitly state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009633 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009634 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009635 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9636 wrqu->power.flags);
Zhu Yi46441512006-01-24 16:37:59 +08009637 mutex_unlock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009638 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009639 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009640
James Ketrenos43f66a62005-03-25 12:31:53 -06009641 /* If the user hasn't specified a power management mode yet, default
9642 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009643 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009644 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009645 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009646 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
Zhu Yi4e157f02007-07-12 16:09:32 +08009647
James Ketrenos43f66a62005-03-25 12:31:53 -06009648 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9649 if (err) {
9650 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009651 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009652 return err;
9653 }
9654
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009655 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
Zhu Yi46441512006-01-24 16:37:59 +08009656 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009657 return 0;
9658}
9659
Jeff Garzikbf794512005-07-31 13:07:26 -04009660static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009661 struct iw_request_info *info,
9662 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009663{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009664 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009665 mutex_lock(&priv->mutex);
James Ketrenosa613bff2005-08-24 21:43:11 -05009666 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009667 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009668 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009669 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009670
Zhu Yi46441512006-01-24 16:37:59 +08009671 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009672 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009673
James Ketrenos43f66a62005-03-25 12:31:53 -06009674 return 0;
9675}
9676
Jeff Garzikbf794512005-07-31 13:07:26 -04009677static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009678 struct iw_request_info *info,
9679 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009680{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009681 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009682 int mode = *(int *)extra;
9683 int err;
Zhu Yi4e157f02007-07-12 16:09:32 +08009684
Zhu Yi46441512006-01-24 16:37:59 +08009685 mutex_lock(&priv->mutex);
Zhu Yi4e157f02007-07-12 16:09:32 +08009686 if ((mode < 1) || (mode > IPW_POWER_LIMIT))
James Ketrenos43f66a62005-03-25 12:31:53 -06009687 mode = IPW_POWER_AC;
Jeff Garzikbf794512005-07-31 13:07:26 -04009688
Zhu Yi4e157f02007-07-12 16:09:32 +08009689 if (IPW_POWER_LEVEL(priv->power_mode) != mode) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009690 err = ipw_send_power_mode(priv, mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009691 if (err) {
9692 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009693 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009694 return err;
9695 }
Zhu Yi4e157f02007-07-12 16:09:32 +08009696 priv->power_mode = IPW_POWER_ENABLED | mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06009697 }
Zhu Yi46441512006-01-24 16:37:59 +08009698 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009699 return 0;
9700}
9701
9702#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009703static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009704 struct iw_request_info *info,
9705 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009706{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009707 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009708 int level = IPW_POWER_LEVEL(priv->power_mode);
9709 char *p = extra;
9710
9711 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9712
9713 switch (level) {
9714 case IPW_POWER_AC:
9715 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9716 break;
9717 case IPW_POWER_BATTERY:
9718 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9719 break;
9720 default:
9721 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009722 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009723 timeout_duration[level - 1] / 1000,
9724 period_duration[level - 1] / 1000);
9725 }
9726
9727 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009728 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009729
9730 wrqu->data.length = p - extra + 1;
9731
9732 return 0;
9733}
9734
9735static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009736 struct iw_request_info *info,
9737 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009738{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009739 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009740 int mode = *(int *)extra;
9741 u8 band = 0, modulation = 0;
9742
9743 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009744 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009745 return -EINVAL;
9746 }
Zhu Yi46441512006-01-24 16:37:59 +08009747 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009748 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009749 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009750 if (mode & IEEE_A) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009751 band |= LIBIPW_52GHZ_BAND;
9752 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009753 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009754 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009755 } else {
9756 if (mode & IEEE_A) {
9757 IPW_WARNING("Attempt to set 2200BG into "
9758 "802.11a mode\n");
Zhu Yi46441512006-01-24 16:37:59 +08009759 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009760 return -EINVAL;
9761 }
9762
James Ketrenosa33a1982005-09-14 14:28:59 -05009763 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009764 }
9765
9766 if (mode & IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009767 band |= LIBIPW_24GHZ_BAND;
9768 modulation |= LIBIPW_CCK_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009769 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009770 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009771
James Ketrenos43f66a62005-03-25 12:31:53 -06009772 if (mode & IEEE_G) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009773 band |= LIBIPW_24GHZ_BAND;
9774 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009775 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009776 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009777
9778 priv->ieee->mode = mode;
9779 priv->ieee->freq_band = band;
9780 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009781 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009782
James Ketrenosc848d0a2005-08-24 21:56:24 -05009783 /* Network configuration changed -- force [re]association */
9784 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9785 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009786 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009787 ipw_associate(priv);
9788 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009789
James Ketrenosa613bff2005-08-24 21:43:11 -05009790 /* Update the band LEDs */
9791 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009792
Jeff Garzikbf794512005-07-31 13:07:26 -04009793 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009794 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009795 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
Zhu Yi46441512006-01-24 16:37:59 +08009796 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009797 return 0;
9798}
9799
9800static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009801 struct iw_request_info *info,
9802 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009803{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009804 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009805 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009806 switch (priv->ieee->mode) {
9807 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009808 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9809 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009810 case IEEE_B:
9811 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9812 break;
9813 case IEEE_A | IEEE_B:
9814 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9815 break;
9816 case IEEE_G:
9817 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9818 break;
9819 case IEEE_A | IEEE_G:
9820 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9821 break;
9822 case IEEE_B | IEEE_G:
9823 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9824 break;
9825 case IEEE_A | IEEE_B | IEEE_G:
9826 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9827 break;
9828 default:
9829 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009830 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009831 }
9832
James Ketrenos43f66a62005-03-25 12:31:53 -06009833 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9834
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009835 wrqu->data.length = strlen(extra) + 1;
Zhu Yi46441512006-01-24 16:37:59 +08009836 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009837
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009838 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009839}
9840
James Ketrenosea2b26e2005-08-24 21:25:16 -05009841static int ipw_wx_set_preamble(struct net_device *dev,
9842 struct iw_request_info *info,
9843 union iwreq_data *wrqu, char *extra)
9844{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009845 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009846 int mode = *(int *)extra;
Zhu Yi46441512006-01-24 16:37:59 +08009847 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009848 /* Switching from SHORT -> LONG requires a disassociation */
9849 if (mode == 1) {
9850 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9851 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009852
9853 /* Network configuration changed -- force [re]association */
9854 IPW_DEBUG_ASSOC
9855 ("[re]association triggered due to preamble change.\n");
9856 if (!ipw_disassociate(priv))
9857 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009858 }
9859 goto done;
9860 }
9861
9862 if (mode == 0) {
9863 priv->config &= ~CFG_PREAMBLE_LONG;
9864 goto done;
9865 }
Zhu Yi46441512006-01-24 16:37:59 +08009866 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009867 return -EINVAL;
9868
9869 done:
Zhu Yi46441512006-01-24 16:37:59 +08009870 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009871 return 0;
9872}
9873
9874static int ipw_wx_get_preamble(struct net_device *dev,
9875 struct iw_request_info *info,
9876 union iwreq_data *wrqu, char *extra)
9877{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009878 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009879 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009880 if (priv->config & CFG_PREAMBLE_LONG)
9881 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9882 else
9883 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
Zhu Yi46441512006-01-24 16:37:59 +08009884 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009885 return 0;
9886}
9887
James Ketrenosb095c382005-08-24 22:04:42 -05009888#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009889static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009890 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009891 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009892{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009893 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009894 int *parms = (int *)extra;
9895 int enable = (parms[0] > 0);
Zhu Yi46441512006-01-24 16:37:59 +08009896 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009897 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009898 if (enable) {
9899 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08009900#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05009901 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9902#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009903 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009904#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009905 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009906 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009907
James Ketrenos43f66a62005-03-25 12:31:53 -06009908 ipw_set_channel(priv, parms[1]);
9909 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009910 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi46441512006-01-24 16:37:59 +08009911 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009912 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009913 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009914 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009915 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009916 }
Zhu Yi46441512006-01-24 16:37:59 +08009917 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009918 return 0;
9919}
9920
Pavel Machek67fd6b42006-07-11 15:34:05 +02009921#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenosb095c382005-08-24 22:04:42 -05009922
Jeff Garzikbf794512005-07-31 13:07:26 -04009923static int ipw_wx_reset(struct net_device *dev,
9924 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009925 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009926{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009927 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009928 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009929 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009930 return 0;
9931}
James Ketrenosb095c382005-08-24 22:04:42 -05009932
James Ketrenosb095c382005-08-24 22:04:42 -05009933static int ipw_wx_sw_reset(struct net_device *dev,
9934 struct iw_request_info *info,
9935 union iwreq_data *wrqu, char *extra)
9936{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009937 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosb095c382005-08-24 22:04:42 -05009938 union iwreq_data wrqu_sec = {
9939 .encoding = {
9940 .flags = IW_ENCODE_DISABLED,
9941 },
9942 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009943 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009944
9945 IPW_DEBUG_WX("SW_RESET\n");
9946
Zhu Yi46441512006-01-24 16:37:59 +08009947 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009948
Zhu Yid6d5b5c2006-02-16 16:21:09 +08009949 ret = ipw_sw_reset(priv, 2);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009950 if (!ret) {
9951 free_firmware();
9952 ipw_adapter_restart(priv);
9953 }
James Ketrenosb095c382005-08-24 22:04:42 -05009954
9955 /* The SW reset bit might have been toggled on by the 'disable'
9956 * module parameter, so take appropriate action */
9957 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9958
Zhu Yi46441512006-01-24 16:37:59 +08009959 mutex_unlock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009960 libipw_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
Zhu Yi46441512006-01-24 16:37:59 +08009961 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009962
9963 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9964 /* Configuration likely changed -- force [re]association */
9965 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9966 "reset.\n");
9967 if (!ipw_disassociate(priv))
9968 ipw_associate(priv);
9969 }
9970
Zhu Yi46441512006-01-24 16:37:59 +08009971 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009972
9973 return 0;
9974}
James Ketrenos43f66a62005-03-25 12:31:53 -06009975
9976/* Rebase the WE IOCTLs to zero for the handler array */
9977#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009978static iw_handler ipw_wx_handlers[] = {
John W. Linville8cc31742009-11-13 16:56:13 -05009979 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009980 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9981 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9982 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9983 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009984 IW_IOCTL(SIOCSIWSENS) = ipw_wx_set_sens,
9985 IW_IOCTL(SIOCGIWSENS) = ipw_wx_get_sens,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009986 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9987 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9988 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9989 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9990 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9991 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9992 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9993 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9994 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9995 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9996 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9997 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9998 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9999 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
10000 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
10001 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
10002 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
10003 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
10004 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
10005 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
10006 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
10007 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
10008 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -050010009 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
10010 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
10011 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
10012 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -050010013 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
10014 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
10015 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
10016 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
10017 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
10018 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
10019 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
James Ketrenos43f66a62005-03-25 12:31:53 -060010020};
10021
James Ketrenosb095c382005-08-24 22:04:42 -050010022enum {
10023 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
10024 IPW_PRIV_GET_POWER,
10025 IPW_PRIV_SET_MODE,
10026 IPW_PRIV_GET_MODE,
10027 IPW_PRIV_SET_PREAMBLE,
10028 IPW_PRIV_GET_PREAMBLE,
10029 IPW_PRIV_RESET,
10030 IPW_PRIV_SW_RESET,
10031#ifdef CONFIG_IPW2200_MONITOR
10032 IPW_PRIV_SET_MONITOR,
10033#endif
10034};
James Ketrenos43f66a62005-03-25 12:31:53 -060010035
Jeff Garzikbf794512005-07-31 13:07:26 -040010036static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -060010037 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010038 .cmd = IPW_PRIV_SET_POWER,
10039 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10040 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010041 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010042 .cmd = IPW_PRIV_GET_POWER,
10043 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
10044 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010045 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010046 .cmd = IPW_PRIV_SET_MODE,
10047 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10048 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010049 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010050 .cmd = IPW_PRIV_GET_MODE,
10051 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
10052 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010053 {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010054 .cmd = IPW_PRIV_SET_PREAMBLE,
10055 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10056 .name = "set_preamble"},
10057 {
10058 .cmd = IPW_PRIV_GET_PREAMBLE,
10059 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
10060 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010061 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010062 IPW_PRIV_RESET,
10063 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -050010064 {
10065 IPW_PRIV_SW_RESET,
10066 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
10067#ifdef CONFIG_IPW2200_MONITOR
10068 {
10069 IPW_PRIV_SET_MONITOR,
10070 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
10071#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -060010072};
10073
10074static iw_handler ipw_priv_handler[] = {
10075 ipw_wx_set_powermode,
10076 ipw_wx_get_powermode,
10077 ipw_wx_set_wireless_mode,
10078 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -050010079 ipw_wx_set_preamble,
10080 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -040010081 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -050010082 ipw_wx_sw_reset,
10083#ifdef CONFIG_IPW2200_MONITOR
10084 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -060010085#endif
10086};
10087
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010088static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010089 .standard = ipw_wx_handlers,
10090 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
10091 .num_private = ARRAY_SIZE(ipw_priv_handler),
10092 .num_private_args = ARRAY_SIZE(ipw_priv_args),
10093 .private = ipw_priv_handler,
10094 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000010095 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -060010096};
10097
James Ketrenos43f66a62005-03-25 12:31:53 -060010098/*
10099 * Get wireless statistics.
10100 * Called by /proc/net/wireless
10101 * Also called by SIOCGIWSTATS
10102 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010103static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -060010104{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010105 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010106 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010107
James Ketrenos43f66a62005-03-25 12:31:53 -060010108 wstats = &priv->wstats;
10109
James Ketrenosea2b26e2005-08-24 21:25:16 -050010110 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -050010111 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -060010112 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
10113 * and associated; if not associcated, the values are all meaningless
10114 * anyway, so set them all to NULL and INVALID */
10115 if (!(priv->status & STATUS_ASSOCIATED)) {
10116 wstats->miss.beacon = 0;
10117 wstats->discard.retries = 0;
10118 wstats->qual.qual = 0;
10119 wstats->qual.level = 0;
10120 wstats->qual.noise = 0;
10121 wstats->qual.updated = 7;
10122 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010123 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -060010124 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010125 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010126
10127 wstats->qual.qual = priv->quality;
Zhu Yi00d21de2006-04-13 17:19:02 +080010128 wstats->qual.level = priv->exp_avg_rssi;
10129 wstats->qual.noise = priv->exp_avg_noise;
James Ketrenos43f66a62005-03-25 12:31:53 -060010130 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Bill Mossb1916082006-02-15 08:50:18 +080010131 IW_QUAL_NOISE_UPDATED | IW_QUAL_DBM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010132
10133 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
10134 wstats->discard.retries = priv->last_tx_failures;
10135 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -040010136
James Ketrenos43f66a62005-03-25 12:31:53 -060010137/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
10138 goto fail_get_ordinal;
10139 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -040010140
James Ketrenos43f66a62005-03-25 12:31:53 -060010141 return wstats;
10142}
10143
James Ketrenos43f66a62005-03-25 12:31:53 -060010144/* net device stuff */
10145
Arjan van de Ven858119e2006-01-14 13:20:43 -080010146static void init_sys_config(struct ipw_sys_config *sys_config)
James Ketrenos43f66a62005-03-25 12:31:53 -060010147{
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010148 memset(sys_config, 0, sizeof(struct ipw_sys_config));
Zhu Yi810dabd2006-01-24 16:36:59 +080010149 sys_config->bt_coexistence = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010150 sys_config->answer_broadcast_ssid_probe = 0;
10151 sys_config->accept_all_data_frames = 0;
10152 sys_config->accept_non_directed_frames = 1;
10153 sys_config->exclude_unicast_unencrypted = 0;
10154 sys_config->disable_unicast_decryption = 1;
10155 sys_config->exclude_multicast_unencrypted = 0;
10156 sys_config->disable_multicast_decryption = 1;
Zhu Yid2b83e12006-04-13 17:19:36 +080010157 if (antenna < CFG_SYS_ANTENNA_BOTH || antenna > CFG_SYS_ANTENNA_B)
10158 antenna = CFG_SYS_ANTENNA_BOTH;
10159 sys_config->antenna_diversity = antenna;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010160 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010161 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010162 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010163 sys_config->bt_coexist_collision_thr = 0;
Pavel Machek67fd6b42006-07-11 15:34:05 +020010164 sys_config->pass_noise_stats_to_host = 1; /* 1 -- fix for 256 */
Cahill, Ben M12977152006-03-08 02:58:02 +080010165 sys_config->silence_threshold = 0x1e;
James Ketrenos43f66a62005-03-25 12:31:53 -060010166}
10167
10168static int ipw_net_open(struct net_device *dev)
10169{
James Ketrenos43f66a62005-03-25 12:31:53 -060010170 IPW_DEBUG_INFO("dev->open\n");
David S. Miller521c4d92008-07-22 18:32:47 -070010171 netif_start_queue(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010172 return 0;
10173}
10174
10175static int ipw_net_stop(struct net_device *dev)
10176{
10177 IPW_DEBUG_INFO("dev->close\n");
10178 netif_stop_queue(dev);
10179 return 0;
10180}
10181
10182/*
10183todo:
10184
10185modify to send one tfd per fragment instead of using chunking. otherwise
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010186we need to heavily modify the libipw_skb_to_txb.
James Ketrenos43f66a62005-03-25 12:31:53 -060010187*/
10188
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010189static int ipw_tx_skb(struct ipw_priv *priv, struct libipw_txb *txb,
James Ketrenos227d2dc2005-07-28 16:25:55 -050010190 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010191{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010192 struct libipw_hdr_3addrqos *hdr = (struct libipw_hdr_3addrqos *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010193 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010194 int i = 0;
10195 struct tfd_frame *tfd;
Zhu Yie43e3c12006-04-13 17:20:45 +080010196#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010197 int tx_id = ipw_get_tx_queue_number(priv, pri);
10198 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10199#else
James Ketrenos43f66a62005-03-25 12:31:53 -060010200 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -050010201#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010202 struct clx2_queue *q = &txq->q;
10203 u8 id, hdr_len, unicast;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010204 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -060010205
Zhu Yib8ddafd2008-11-27 13:42:20 +080010206 if (!(priv->status & STATUS_ASSOCIATED))
10207 goto drop;
10208
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010209 hdr_len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
James Ketrenos43f66a62005-03-25 12:31:53 -060010210 switch (priv->ieee->iw_mode) {
10211 case IW_MODE_ADHOC:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010212 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010213 id = ipw_find_station(priv, hdr->addr1);
10214 if (id == IPW_INVALID_STATION) {
10215 id = ipw_add_station(priv, hdr->addr1);
10216 if (id == IPW_INVALID_STATION) {
10217 IPW_WARNING("Attempt to send data to "
Johannes Berge1749612008-10-27 15:59:26 -070010218 "invalid cell: %pM\n",
10219 hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010220 goto drop;
10221 }
10222 }
10223 break;
10224
10225 case IW_MODE_INFRA:
10226 default:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010227 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -060010228 id = 0;
10229 break;
10230 }
10231
10232 tfd = &txq->bd[q->first_empty];
10233 txq->txb[q->first_empty] = txb;
10234 memset(tfd, 0, sizeof(*tfd));
10235 tfd->u.data.station_number = id;
10236
10237 tfd->control_flags.message_type = TX_FRAME_TYPE;
10238 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
10239
10240 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -050010241 tfd->u.data.len = cpu_to_le16(txb->payload_size);
Jeff Garzikbf794512005-07-31 13:07:26 -040010242
James Ketrenos43f66a62005-03-25 12:31:53 -060010243 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -050010244 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010245 else
James Ketrenosb095c382005-08-24 22:04:42 -050010246 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010247
James Ketrenosea2b26e2005-08-24 21:25:16 -050010248 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
10249 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010250
James Ketrenosc848d0a2005-08-24 21:56:24 -050010251 fc = le16_to_cpu(hdr->frame_ctl);
10252 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -060010253
10254 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
10255
James Ketrenosb095c382005-08-24 22:04:42 -050010256 if (likely(unicast))
10257 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10258
10259 if (txb->encrypted && !priv->ieee->host_encrypt) {
10260 switch (priv->ieee->sec.level) {
10261 case SEC_LEVEL_3:
10262 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010263 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010264 /* XXX: ACK flag must be set for CCMP even if it
10265 * is a multicast/broadcast packet, because CCMP
10266 * group communication encrypted by GTK is
10267 * actually done by the AP. */
10268 if (!unicast)
10269 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10270
10271 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10272 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
10273 tfd->u.data.key_index = 0;
10274 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
10275 break;
10276 case SEC_LEVEL_2:
10277 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010278 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010279 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10280 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
10281 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
10282 break;
10283 case SEC_LEVEL_1:
10284 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010285 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
John W. Linville274bfb82008-10-29 11:35:05 -040010286 tfd->u.data.key_index = priv->ieee->crypt_info.tx_keyidx;
10287 if (priv->ieee->sec.key_sizes[priv->ieee->crypt_info.tx_keyidx] <=
James Ketrenosb095c382005-08-24 22:04:42 -050010288 40)
10289 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
10290 else
10291 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
10292 break;
10293 case SEC_LEVEL_0:
10294 break;
10295 default:
10296 printk(KERN_ERR "Unknow security level %d\n",
10297 priv->ieee->sec.level);
10298 break;
10299 }
10300 } else
10301 /* No hardware encryption */
10302 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
10303
Zhu Yie43e3c12006-04-13 17:20:45 +080010304#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080010305 if (fc & IEEE80211_STYPE_QOS_DATA)
10306 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data));
Zhu Yie43e3c12006-04-13 17:20:45 +080010307#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050010308
James Ketrenos43f66a62005-03-25 12:31:53 -060010309 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -050010310 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
10311 txb->nr_frags));
10312 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
10313 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10314 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10315 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10316 i, le32_to_cpu(tfd->u.data.num_chunks),
10317 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010318 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010319 i, tfd->u.data.num_chunks,
10320 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010321 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010322 txb->fragments[i]->len - hdr_len);
10323
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010324 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010325 cpu_to_le32(pci_map_single
10326 (priv->pci_dev,
10327 txb->fragments[i]->data + hdr_len,
10328 txb->fragments[i]->len - hdr_len,
10329 PCI_DMA_TODEVICE));
10330 tfd->u.data.chunk_len[i] =
10331 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010332 }
10333
10334 if (i != txb->nr_frags) {
10335 struct sk_buff *skb;
10336 u16 remaining_bytes = 0;
10337 int j;
10338
10339 for (j = i; j < txb->nr_frags; j++)
10340 remaining_bytes += txb->fragments[j]->len - hdr_len;
10341
10342 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10343 remaining_bytes);
10344 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10345 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010346 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010347 for (j = i; j < txb->nr_frags; j++) {
10348 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010349
James Ketrenos43f66a62005-03-25 12:31:53 -060010350 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010351 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010352 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010353 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010354 }
10355 dev_kfree_skb_any(txb->fragments[i]);
10356 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010357 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010358 cpu_to_le32(pci_map_single
10359 (priv->pci_dev, skb->data,
Al Viro49587302007-12-27 01:57:47 -050010360 remaining_bytes,
James Ketrenosa613bff2005-08-24 21:43:11 -050010361 PCI_DMA_TODEVICE));
10362
Marcin Slusarz5c058632008-02-13 00:06:12 +010010363 le32_add_cpu(&tfd->u.data.num_chunks, 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010364 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010365 }
10366
10367 /* kick DMA */
10368 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10369 ipw_write32(priv, q->reg_w, q->first_empty);
10370
Dan Williams943dbef2008-02-14 17:49:41 -050010371 if (ipw_tx_queue_space(q) < q->high_mark)
James Ketrenosf6970142006-02-14 09:10:51 +080010372 netif_stop_queue(priv->net_dev);
10373
James Ketrenos227d2dc2005-07-28 16:25:55 -050010374 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010375
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010376 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010377 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010378 libipw_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010379 return NETDEV_TX_OK;
10380}
10381
10382static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10383{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010384 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yie43e3c12006-04-13 17:20:45 +080010385#ifdef CONFIG_IPW2200_QOS
James Ketrenos227d2dc2005-07-28 16:25:55 -050010386 int tx_id = ipw_get_tx_queue_number(priv, pri);
10387 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10388#else
10389 struct clx2_tx_queue *txq = &priv->txq[0];
Zhu Yie43e3c12006-04-13 17:20:45 +080010390#endif /* CONFIG_IPW2200_QOS */
James Ketrenos227d2dc2005-07-28 16:25:55 -050010391
Dan Williams943dbef2008-02-14 17:49:41 -050010392 if (ipw_tx_queue_space(&txq->q) < txq->q.high_mark)
James Ketrenos227d2dc2005-07-28 16:25:55 -050010393 return 1;
10394
10395 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010396}
10397
Zhu Yid685b8c2006-04-13 17:20:27 +080010398#ifdef CONFIG_IPW2200_PROMISCUOUS
10399static void ipw_handle_promiscuous_tx(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010400 struct libipw_txb *txb)
Zhu Yid685b8c2006-04-13 17:20:27 +080010401{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010402 struct libipw_rx_stats dummystats;
Zhu Yid685b8c2006-04-13 17:20:27 +080010403 struct ieee80211_hdr *hdr;
10404 u8 n;
10405 u16 filter = priv->prom_priv->filter;
10406 int hdr_only = 0;
10407
10408 if (filter & IPW_PROM_NO_TX)
10409 return;
10410
10411 memset(&dummystats, 0, sizeof(dummystats));
10412
10413 /* Filtering of fragment chains is done agains the first fragment */
10414 hdr = (void *)txb->fragments[0]->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010415 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010416 if (filter & IPW_PROM_NO_MGMT)
10417 return;
10418 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
10419 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010420 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010421 if (filter & IPW_PROM_NO_CTL)
10422 return;
10423 if (filter & IPW_PROM_CTL_HEADER_ONLY)
10424 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010425 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010426 if (filter & IPW_PROM_NO_DATA)
10427 return;
10428 if (filter & IPW_PROM_DATA_HEADER_ONLY)
10429 hdr_only = 1;
10430 }
10431
10432 for(n=0; n<txb->nr_frags; ++n) {
10433 struct sk_buff *src = txb->fragments[n];
10434 struct sk_buff *dst;
10435 struct ieee80211_radiotap_header *rt_hdr;
10436 int len;
10437
10438 if (hdr_only) {
10439 hdr = (void *)src->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010440 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +080010441 } else
10442 len = src->len;
10443
Johannes Berg007e5dd2008-11-27 23:13:38 +010010444 dst = alloc_skb(len + sizeof(*rt_hdr), GFP_ATOMIC);
10445 if (!dst)
10446 continue;
Zhu Yid685b8c2006-04-13 17:20:27 +080010447
10448 rt_hdr = (void *)skb_put(dst, sizeof(*rt_hdr));
10449
10450 rt_hdr->it_version = PKTHDR_RADIOTAP_VERSION;
10451 rt_hdr->it_pad = 0;
10452 rt_hdr->it_present = 0; /* after all, it's just an idea */
Al Viro743b84d2007-12-27 01:43:16 -050010453 rt_hdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_CHANNEL);
Zhu Yid685b8c2006-04-13 17:20:27 +080010454
Al Viroe62e1ee2007-12-27 01:36:46 -050010455 *(__le16*)skb_put(dst, sizeof(u16)) = cpu_to_le16(
Zhu Yid685b8c2006-04-13 17:20:27 +080010456 ieee80211chan2mhz(priv->channel));
10457 if (priv->channel > 14) /* 802.11a */
Al Viroe62e1ee2007-12-27 01:36:46 -050010458 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010459 cpu_to_le16(IEEE80211_CHAN_OFDM |
10460 IEEE80211_CHAN_5GHZ);
10461 else if (priv->ieee->mode == IEEE_B) /* 802.11b */
Al Viroe62e1ee2007-12-27 01:36:46 -050010462 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010463 cpu_to_le16(IEEE80211_CHAN_CCK |
10464 IEEE80211_CHAN_2GHZ);
10465 else /* 802.11g */
Al Viroe62e1ee2007-12-27 01:36:46 -050010466 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010467 cpu_to_le16(IEEE80211_CHAN_OFDM |
10468 IEEE80211_CHAN_2GHZ);
10469
Al Viro743b84d2007-12-27 01:43:16 -050010470 rt_hdr->it_len = cpu_to_le16(dst->len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010471
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -030010472 skb_copy_from_linear_data(src, skb_put(dst, len), len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010473
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010474 if (!libipw_rx(priv->prom_priv->ieee, dst, &dummystats))
Zhu Yid685b8c2006-04-13 17:20:27 +080010475 dev_kfree_skb_any(dst);
10476 }
10477}
10478#endif
10479
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010480static netdev_tx_t ipw_net_hard_start_xmit(struct libipw_txb *txb,
10481 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010482{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010483 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010484 unsigned long flags;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010485 netdev_tx_t ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010486
10487 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010488 spin_lock_irqsave(&priv->lock, flags);
10489
Zhu Yid685b8c2006-04-13 17:20:27 +080010490#ifdef CONFIG_IPW2200_PROMISCUOUS
10491 if (rtap_iface && netif_running(priv->prom_net_dev))
10492 ipw_handle_promiscuous_tx(priv, txb);
10493#endif
10494
James Ketrenos227d2dc2005-07-28 16:25:55 -050010495 ret = ipw_tx_skb(priv, txb, pri);
10496 if (ret == NETDEV_TX_OK)
10497 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010498 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010499
James Ketrenos227d2dc2005-07-28 16:25:55 -050010500 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010501}
10502
James Ketrenos43f66a62005-03-25 12:31:53 -060010503static void ipw_net_set_multicast_list(struct net_device *dev)
10504{
10505
10506}
10507
10508static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10509{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010510 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010511 struct sockaddr *addr = p;
Joe Perches0795af52007-10-03 17:59:30 -070010512
James Ketrenos43f66a62005-03-25 12:31:53 -060010513 if (!is_valid_ether_addr(addr->sa_data))
10514 return -EADDRNOTAVAIL;
Zhu Yi46441512006-01-24 16:37:59 +080010515 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010516 priv->config |= CFG_CUSTOM_MAC;
10517 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -070010518 printk(KERN_INFO "%s: Setting MAC to %pM\n",
10519 priv->net_dev->name, priv->mac_addr);
James Ketrenosa613bff2005-08-24 21:43:11 -050010520 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +080010521 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010522 return 0;
10523}
10524
Jeff Garzikbf794512005-07-31 13:07:26 -040010525static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010526 struct ethtool_drvinfo *info)
10527{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010528 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010529 char vers[64];
10530 char date[32];
10531 u32 len;
10532
10533 strcpy(info->driver, DRV_NAME);
10534 strcpy(info->version, DRV_VERSION);
10535
10536 len = sizeof(vers);
10537 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10538 len = sizeof(date);
10539 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10540
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010541 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010542 vers, date);
10543 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -050010544 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010545}
10546
10547static u32 ipw_ethtool_get_link(struct net_device *dev)
10548{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010549 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010550 return (priv->status & STATUS_ASSOCIATED) != 0;
10551}
10552
10553static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10554{
James Ketrenosb095c382005-08-24 22:04:42 -050010555 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010556}
10557
10558static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010559 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010560{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010561 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010562
James Ketrenosb095c382005-08-24 22:04:42 -050010563 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010564 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010565 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010566 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
Zhu Yi46441512006-01-24 16:37:59 +080010567 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010568 return 0;
10569}
10570
10571static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010572 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010573{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010574 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010575 int i;
10576
James Ketrenosb095c382005-08-24 22:04:42 -050010577 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010578 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010579 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010580 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Adrian Bunk71e585f2006-03-11 04:42:58 +010010581 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
10582 ipw_write8(p, i + IPW_EEPROM_DATA, p->eeprom[i]);
Zhu Yi46441512006-01-24 16:37:59 +080010583 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010584 return 0;
10585}
10586
Jeff Garzik7282d492006-09-13 14:30:00 -040010587static const struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010588 .get_link = ipw_ethtool_get_link,
10589 .get_drvinfo = ipw_ethtool_get_drvinfo,
10590 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10591 .get_eeprom = ipw_ethtool_get_eeprom,
10592 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010593};
10594
David Howells7d12e782006-10-05 14:55:46 +010010595static irqreturn_t ipw_isr(int irq, void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -060010596{
10597 struct ipw_priv *priv = data;
10598 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010599
James Ketrenos43f66a62005-03-25 12:31:53 -060010600 if (!priv)
10601 return IRQ_NONE;
10602
Zhu Yi89c318e2006-06-08 22:19:49 -070010603 spin_lock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010604
10605 if (!(priv->status & STATUS_INT_ENABLED)) {
Zhu Yid00d0122007-07-12 16:09:40 +080010606 /* IRQ is disabled */
James Ketrenos43f66a62005-03-25 12:31:53 -060010607 goto none;
10608 }
10609
James Ketrenosb095c382005-08-24 22:04:42 -050010610 inta = ipw_read32(priv, IPW_INTA_RW);
10611 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010612
James Ketrenos43f66a62005-03-25 12:31:53 -060010613 if (inta == 0xFFFFFFFF) {
10614 /* Hardware disappeared */
10615 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10616 goto none;
10617 }
10618
James Ketrenosb095c382005-08-24 22:04:42 -050010619 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010620 /* Shared interrupt */
10621 goto none;
10622 }
10623
10624 /* tell the device to stop sending interrupts */
Zhu Yi89c318e2006-06-08 22:19:49 -070010625 __ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010626
James Ketrenos43f66a62005-03-25 12:31:53 -060010627 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010628 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10629 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010630
James Ketrenos43f66a62005-03-25 12:31:53 -060010631 /* Cache INTA value for our tasklet */
10632 priv->isr_inta = inta;
10633
10634 tasklet_schedule(&priv->irq_tasklet);
10635
Zhu Yi89c318e2006-06-08 22:19:49 -070010636 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010637
10638 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010639 none:
Zhu Yi89c318e2006-06-08 22:19:49 -070010640 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010641 return IRQ_NONE;
10642}
10643
10644static void ipw_rf_kill(void *adapter)
10645{
10646 struct ipw_priv *priv = adapter;
10647 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010648
James Ketrenos43f66a62005-03-25 12:31:53 -060010649 spin_lock_irqsave(&priv->lock, flags);
10650
10651 if (rf_kill_active(priv)) {
10652 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10653 if (priv->workqueue)
10654 queue_delayed_work(priv->workqueue,
10655 &priv->rf_kill, 2 * HZ);
10656 goto exit_unlock;
10657 }
10658
10659 /* RF Kill is now disabled, so bring the device back up */
10660
10661 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10662 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10663 "device\n");
10664
10665 /* we can not do an adapter restart while inside an irq lock */
10666 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010667 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010668 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10669 "enabled\n");
10670
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010671 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010672 spin_unlock_irqrestore(&priv->lock, flags);
10673}
10674
David Howellsc4028952006-11-22 14:57:56 +000010675static void ipw_bg_rf_kill(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010676{
David Howellsc4028952006-11-22 14:57:56 +000010677 struct ipw_priv *priv =
10678 container_of(work, struct ipw_priv, rf_kill.work);
Zhu Yi46441512006-01-24 16:37:59 +080010679 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010680 ipw_rf_kill(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010681 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010682}
10683
Adrian Bunka73e22b2006-01-21 01:39:42 +010010684static void ipw_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010685{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010686 priv->last_seq_num = -1;
10687 priv->last_frag_num = -1;
10688 priv->last_packet_time = 0;
10689
James Ketrenosa613bff2005-08-24 21:43:11 -050010690 netif_carrier_on(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010691
James Ketrenosc848d0a2005-08-24 21:56:24 -050010692 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010693 cancel_delayed_work(&priv->request_direct_scan);
10694 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010695 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010696 ipw_reset_stats(priv);
10697 /* Ensure the rate is updated immediately */
10698 priv->last_rate = ipw_get_current_rate(priv);
10699 ipw_gather_stats(priv);
10700 ipw_led_link_up(priv);
10701 notify_wx_assoc_event(priv);
10702
10703 if (priv->config & CFG_BACKGROUND_SCAN)
10704 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10705}
10706
David Howellsc4028952006-11-22 14:57:56 +000010707static void ipw_bg_link_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010708{
David Howellsc4028952006-11-22 14:57:56 +000010709 struct ipw_priv *priv =
10710 container_of(work, struct ipw_priv, link_up);
Zhu Yi46441512006-01-24 16:37:59 +080010711 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010712 ipw_link_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010713 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010714}
10715
Adrian Bunka73e22b2006-01-21 01:39:42 +010010716static void ipw_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010717{
10718 ipw_led_link_down(priv);
10719 netif_carrier_off(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010720 notify_wx_assoc_event(priv);
10721
10722 /* Cancel any queued work ... */
10723 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010724 cancel_delayed_work(&priv->request_direct_scan);
10725 cancel_delayed_work(&priv->request_passive_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010726 cancel_delayed_work(&priv->adhoc_check);
10727 cancel_delayed_work(&priv->gather_stats);
10728
10729 ipw_reset_stats(priv);
10730
James Ketrenosafbf30a2005-08-25 00:05:33 -050010731 if (!(priv->status & STATUS_EXIT_PENDING)) {
10732 /* Queue up another scan... */
David Howellsc4028952006-11-22 14:57:56 +000010733 queue_delayed_work(priv->workqueue, &priv->request_scan, 0);
Dan Williams0b531672007-10-09 13:55:24 -040010734 } else
10735 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010736}
10737
David Howellsc4028952006-11-22 14:57:56 +000010738static void ipw_bg_link_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010739{
David Howellsc4028952006-11-22 14:57:56 +000010740 struct ipw_priv *priv =
10741 container_of(work, struct ipw_priv, link_down);
Zhu Yi46441512006-01-24 16:37:59 +080010742 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010743 ipw_link_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010744 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010745}
10746
Adrian Bunk2ef19e62007-12-11 23:20:22 +010010747static int __devinit ipw_setup_deferred_work(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010748{
10749 int ret = 0;
10750
James Ketrenos43f66a62005-03-25 12:31:53 -060010751 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010752 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010753 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010754
David Howellsc4028952006-11-22 14:57:56 +000010755 INIT_DELAYED_WORK(&priv->adhoc_check, ipw_bg_adhoc_check);
10756 INIT_WORK(&priv->associate, ipw_bg_associate);
10757 INIT_WORK(&priv->disassociate, ipw_bg_disassociate);
10758 INIT_WORK(&priv->system_config, ipw_system_config);
10759 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish);
10760 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart);
10761 INIT_DELAYED_WORK(&priv->rf_kill, ipw_bg_rf_kill);
10762 INIT_WORK(&priv->up, ipw_bg_up);
10763 INIT_WORK(&priv->down, ipw_bg_down);
10764 INIT_DELAYED_WORK(&priv->request_scan, ipw_request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010765 INIT_DELAYED_WORK(&priv->request_direct_scan, ipw_request_direct_scan);
10766 INIT_DELAYED_WORK(&priv->request_passive_scan, ipw_request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010767 INIT_DELAYED_WORK(&priv->scan_event, ipw_scan_event);
David Howellsc4028952006-11-22 14:57:56 +000010768 INIT_DELAYED_WORK(&priv->gather_stats, ipw_bg_gather_stats);
10769 INIT_WORK(&priv->abort_scan, ipw_bg_abort_scan);
10770 INIT_WORK(&priv->roam, ipw_bg_roam);
10771 INIT_DELAYED_WORK(&priv->scan_check, ipw_bg_scan_check);
10772 INIT_WORK(&priv->link_up, ipw_bg_link_up);
10773 INIT_WORK(&priv->link_down, ipw_bg_link_down);
10774 INIT_DELAYED_WORK(&priv->led_link_on, ipw_bg_led_link_on);
10775 INIT_DELAYED_WORK(&priv->led_link_off, ipw_bg_led_link_off);
10776 INIT_DELAYED_WORK(&priv->led_act_off, ipw_bg_led_activity_off);
10777 INIT_WORK(&priv->merge_networks, ipw_merge_adhoc_network);
James Ketrenos43f66a62005-03-25 12:31:53 -060010778
Zhu Yie43e3c12006-04-13 17:20:45 +080010779#ifdef CONFIG_IPW2200_QOS
David Howellsc4028952006-11-22 14:57:56 +000010780 INIT_WORK(&priv->qos_activate, ipw_bg_qos_activate);
Zhu Yie43e3c12006-04-13 17:20:45 +080010781#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010782
10783 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10784 ipw_irq_tasklet, (unsigned long)priv);
10785
10786 return ret;
10787}
10788
James Ketrenos43f66a62005-03-25 12:31:53 -060010789static void shim__set_security(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010790 struct libipw_security *sec)
James Ketrenos43f66a62005-03-25 12:31:53 -060010791{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010792 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010793 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010794 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010795 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010796 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010797 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010798 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010799 priv->ieee->sec.flags &= ~(1 << i);
10800 else {
10801 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010802 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010803 priv->ieee->sec.flags |= (1 << i);
10804 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010805 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010806 } else if (sec->level != SEC_LEVEL_1)
10807 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010808 }
10809
James Ketrenosb095c382005-08-24 22:04:42 -050010810 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010811 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010812 priv->ieee->sec.active_key = sec->active_key;
10813 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010814 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010815 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010816 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010817 } else
10818 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010819
10820 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010821 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10822 priv->ieee->sec.auth_mode = sec->auth_mode;
10823 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010824 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10825 priv->capability |= CAP_SHARED_KEY;
10826 else
10827 priv->capability &= ~CAP_SHARED_KEY;
10828 priv->status |= STATUS_SECURITY_UPDATED;
10829 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010830
James Ketrenosb095c382005-08-24 22:04:42 -050010831 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10832 priv->ieee->sec.flags |= SEC_ENABLED;
10833 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010834 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010835 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010836 priv->capability |= CAP_PRIVACY_ON;
10837 else
10838 priv->capability &= ~CAP_PRIVACY_ON;
10839 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010840
James Ketrenosafbf30a2005-08-25 00:05:33 -050010841 if (sec->flags & SEC_ENCRYPT)
10842 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010843
James Ketrenosb095c382005-08-24 22:04:42 -050010844 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10845 priv->ieee->sec.level = sec->level;
10846 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010847 priv->status |= STATUS_SECURITY_UPDATED;
10848 }
10849
Zhu Yi1fbfea52005-08-05 17:22:56 +080010850 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10851 ipw_set_hwcrypto_keys(priv);
10852
Jeff Garzikbf794512005-07-31 13:07:26 -040010853 /* To match current functionality of ipw2100 (which works well w/
10854 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010855 * privacy capability changes ... */
10856#if 0
10857 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010858 (((priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010859 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010860 (!(priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010861 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010862 IPW_DEBUG_ASSOC("Disassociating due to capability "
10863 "change.\n");
10864 ipw_disassociate(priv);
10865 }
10866#endif
10867}
10868
Jeff Garzikbf794512005-07-31 13:07:26 -040010869static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010870 struct ipw_supported_rates *rates)
10871{
10872 /* TODO: Mask out rates based on priv->rates_mask */
10873
10874 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010875 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010876 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010877 case LIBIPW_52GHZ_BAND:
James Ketrenos43f66a62005-03-25 12:31:53 -060010878 rates->ieee_mode = IPW_A_MODE;
10879 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010880 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10881 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010882 break;
10883
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010884 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010885 rates->ieee_mode = IPW_G_MODE;
10886 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010887 ipw_add_cck_scan_rates(rates, LIBIPW_CCK_MODULATION,
10888 LIBIPW_CCK_DEFAULT_RATES_MASK);
10889 if (priv->ieee->modulation & LIBIPW_OFDM_MODULATION) {
10890 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10891 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010892 }
10893 break;
10894 }
10895
10896 return 0;
10897}
10898
Jeff Garzikbf794512005-07-31 13:07:26 -040010899static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010900{
James Ketrenos43f66a62005-03-25 12:31:53 -060010901 /* This is only called from ipw_up, which resets/reloads the firmware
10902 so, we don't need to first disable the card before we configure
10903 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010904 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010905 goto error;
10906
10907 /* initialize adapter address */
10908 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10909 goto error;
10910
10911 /* set basic system config settings */
10912 init_sys_config(&priv->sys_config);
Zhu Yi810dabd2006-01-24 16:36:59 +080010913
10914 /* Support Bluetooth if we have BT h/w on board, and user wants to.
10915 * Does not support BT priority yet (don't abort or defer our Tx) */
10916 if (bt_coexist) {
Zhu Yi2638bc32006-01-24 16:37:52 +080010917 unsigned char bt_caps = priv->eeprom[EEPROM_SKU_CAPABILITY];
Zhu Yi810dabd2006-01-24 16:36:59 +080010918
10919 if (bt_caps & EEPROM_SKU_CAP_BT_CHANNEL_SIG)
10920 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010921 |= CFG_BT_COEXISTENCE_SIGNAL_CHNL;
Zhu Yi810dabd2006-01-24 16:36:59 +080010922 if (bt_caps & EEPROM_SKU_CAP_BT_OOB)
10923 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010924 |= CFG_BT_COEXISTENCE_OOB;
Zhu Yi810dabd2006-01-24 16:36:59 +080010925 }
10926
Zhu Yid685b8c2006-04-13 17:20:27 +080010927#ifdef CONFIG_IPW2200_PROMISCUOUS
10928 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
10929 priv->sys_config.accept_all_data_frames = 1;
10930 priv->sys_config.accept_non_directed_frames = 1;
10931 priv->sys_config.accept_all_mgmt_bcpr = 1;
10932 priv->sys_config.accept_all_mgmt_frames = 1;
10933 }
10934#endif
10935
James Ketrenosc848d0a2005-08-24 21:56:24 -050010936 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10937 priv->sys_config.answer_broadcast_ssid_probe = 1;
10938 else
10939 priv->sys_config.answer_broadcast_ssid_probe = 0;
10940
Zhu Yid685b8c2006-04-13 17:20:27 +080010941 if (ipw_send_system_config(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010942 goto error;
10943
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010944 init_supported_rates(priv, &priv->rates);
10945 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010946 goto error;
10947
10948 /* Set request-to-send threshold */
10949 if (priv->rts_threshold) {
10950 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10951 goto error;
10952 }
Zhu Yie43e3c12006-04-13 17:20:45 +080010953#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010954 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10955 ipw_qos_activate(priv, NULL);
Zhu Yie43e3c12006-04-13 17:20:45 +080010956#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010957
10958 if (ipw_set_random_seed(priv))
10959 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010960
James Ketrenos43f66a62005-03-25 12:31:53 -060010961 /* final state transition to the RUN state */
10962 if (ipw_send_host_complete(priv))
10963 goto error;
10964
James Ketrenose6666192005-08-12 09:17:04 -050010965 priv->status |= STATUS_INIT;
10966
10967 ipw_led_init(priv);
10968 ipw_led_radio_on(priv);
10969 priv->notif_missed_beacons = 0;
10970
10971 /* Set hardware WEP key if it is configured. */
10972 if ((priv->capability & CAP_PRIVACY_ON) &&
10973 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10974 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10975 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010976
10977 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010978
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010979 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010980 return -EIO;
10981}
10982
James Ketrenos4f36f802005-08-03 20:36:56 -050010983/*
10984 * NOTE:
10985 *
10986 * These tables have been tested in conjunction with the
10987 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10988 *
10989 * Altering this values, using it on other hardware, or in geographies
10990 * not intended for resale of the above mentioned Intel adapters has
10991 * not been tested.
10992 *
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080010993 * Remember to update the table in README.ipw2200 when changing this
10994 * table.
10995 *
James Ketrenos4f36f802005-08-03 20:36:56 -050010996 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010997static const struct libipw_geo ipw_geos[] = {
James Ketrenos4f36f802005-08-03 20:36:56 -050010998 { /* Restricted */
10999 "---",
11000 .bg_channels = 11,
11001 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11002 {2427, 4}, {2432, 5}, {2437, 6},
11003 {2442, 7}, {2447, 8}, {2452, 9},
11004 {2457, 10}, {2462, 11}},
11005 },
11006
11007 { /* Custom US/Canada */
11008 "ZZF",
11009 .bg_channels = 11,
11010 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11011 {2427, 4}, {2432, 5}, {2437, 6},
11012 {2442, 7}, {2447, 8}, {2452, 9},
11013 {2457, 10}, {2462, 11}},
11014 .a_channels = 8,
11015 .a = {{5180, 36},
11016 {5200, 40},
11017 {5220, 44},
11018 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011019 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11020 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11021 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11022 {5320, 64, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011023 },
11024
11025 { /* Rest of World */
11026 "ZZD",
11027 .bg_channels = 13,
11028 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11029 {2427, 4}, {2432, 5}, {2437, 6},
11030 {2442, 7}, {2447, 8}, {2452, 9},
11031 {2457, 10}, {2462, 11}, {2467, 12},
11032 {2472, 13}},
11033 },
11034
11035 { /* Custom USA & Europe & High */
11036 "ZZA",
11037 .bg_channels = 11,
11038 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11039 {2427, 4}, {2432, 5}, {2437, 6},
11040 {2442, 7}, {2447, 8}, {2452, 9},
11041 {2457, 10}, {2462, 11}},
11042 .a_channels = 13,
11043 .a = {{5180, 36},
11044 {5200, 40},
11045 {5220, 44},
11046 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011047 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11048 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11049 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11050 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
James Ketrenos4f36f802005-08-03 20:36:56 -050011051 {5745, 149},
11052 {5765, 153},
11053 {5785, 157},
11054 {5805, 161},
11055 {5825, 165}},
11056 },
11057
11058 { /* Custom NA & Europe */
11059 "ZZB",
11060 .bg_channels = 11,
11061 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11062 {2427, 4}, {2432, 5}, {2437, 6},
11063 {2442, 7}, {2447, 8}, {2452, 9},
11064 {2457, 10}, {2462, 11}},
11065 .a_channels = 13,
11066 .a = {{5180, 36},
11067 {5200, 40},
11068 {5220, 44},
11069 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011070 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11071 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11072 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11073 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11074 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11075 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11076 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11077 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11078 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011079 },
11080
11081 { /* Custom Japan */
11082 "ZZC",
11083 .bg_channels = 11,
11084 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11085 {2427, 4}, {2432, 5}, {2437, 6},
11086 {2442, 7}, {2447, 8}, {2452, 9},
11087 {2457, 10}, {2462, 11}},
11088 .a_channels = 4,
11089 .a = {{5170, 34}, {5190, 38},
11090 {5210, 42}, {5230, 46}},
11091 },
11092
11093 { /* Custom */
11094 "ZZM",
11095 .bg_channels = 11,
11096 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11097 {2427, 4}, {2432, 5}, {2437, 6},
11098 {2442, 7}, {2447, 8}, {2452, 9},
11099 {2457, 10}, {2462, 11}},
11100 },
11101
11102 { /* Europe */
11103 "ZZE",
11104 .bg_channels = 13,
11105 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11106 {2427, 4}, {2432, 5}, {2437, 6},
11107 {2442, 7}, {2447, 8}, {2452, 9},
11108 {2457, 10}, {2462, 11}, {2467, 12},
11109 {2472, 13}},
11110 .a_channels = 19,
11111 .a = {{5180, 36},
11112 {5200, 40},
11113 {5220, 44},
11114 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011115 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11116 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11117 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11118 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11119 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11120 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11121 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11122 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11123 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11124 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11125 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11126 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11127 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11128 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11129 {5700, 140, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011130 },
11131
11132 { /* Custom Japan */
11133 "ZZJ",
11134 .bg_channels = 14,
11135 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11136 {2427, 4}, {2432, 5}, {2437, 6},
11137 {2442, 7}, {2447, 8}, {2452, 9},
11138 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011139 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011140 .a_channels = 4,
11141 .a = {{5170, 34}, {5190, 38},
11142 {5210, 42}, {5230, 46}},
11143 },
11144
James Ketrenos03520572005-10-19 16:12:31 -050011145 { /* Rest of World */
11146 "ZZR",
11147 .bg_channels = 14,
11148 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11149 {2427, 4}, {2432, 5}, {2437, 6},
11150 {2442, 7}, {2447, 8}, {2452, 9},
11151 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011152 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY |
11153 LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos03520572005-10-19 16:12:31 -050011154 },
11155
James Ketrenos4f36f802005-08-03 20:36:56 -050011156 { /* High Band */
11157 "ZZH",
11158 .bg_channels = 13,
11159 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11160 {2427, 4}, {2432, 5}, {2437, 6},
11161 {2442, 7}, {2447, 8}, {2452, 9},
11162 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011163 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11164 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011165 .a_channels = 4,
11166 .a = {{5745, 149}, {5765, 153},
11167 {5785, 157}, {5805, 161}},
11168 },
11169
11170 { /* Custom Europe */
11171 "ZZG",
11172 .bg_channels = 13,
11173 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11174 {2427, 4}, {2432, 5}, {2437, 6},
11175 {2442, 7}, {2447, 8}, {2452, 9},
11176 {2457, 10}, {2462, 11},
11177 {2467, 12}, {2472, 13}},
11178 .a_channels = 4,
11179 .a = {{5180, 36}, {5200, 40},
11180 {5220, 44}, {5240, 48}},
11181 },
11182
11183 { /* Europe */
11184 "ZZK",
11185 .bg_channels = 13,
11186 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11187 {2427, 4}, {2432, 5}, {2437, 6},
11188 {2442, 7}, {2447, 8}, {2452, 9},
11189 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011190 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11191 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011192 .a_channels = 24,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011193 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11194 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11195 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11196 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11197 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11198 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11199 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11200 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11201 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11202 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11203 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11204 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11205 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11206 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11207 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11208 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11209 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11210 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11211 {5700, 140, LIBIPW_CH_PASSIVE_ONLY},
11212 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11213 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11214 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11215 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11216 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011217 },
11218
11219 { /* Europe */
11220 "ZZL",
11221 .bg_channels = 11,
11222 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11223 {2427, 4}, {2432, 5}, {2437, 6},
11224 {2442, 7}, {2447, 8}, {2452, 9},
11225 {2457, 10}, {2462, 11}},
11226 .a_channels = 13,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011227 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11228 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11229 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11230 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11231 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11232 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11233 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11234 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11235 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11236 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11237 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11238 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11239 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011240 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050011241};
11242
James Ketrenos43f66a62005-03-25 12:31:53 -060011243#define MAX_HW_RESTARTS 5
11244static int ipw_up(struct ipw_priv *priv)
11245{
James Ketrenos4f36f802005-08-03 20:36:56 -050011246 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060011247
Dan Williamsc3d72b92009-02-11 13:26:06 -050011248 /* Age scan list entries found before suspend */
11249 if (priv->suspend_time) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011250 libipw_networks_age(priv->ieee, priv->suspend_time);
Dan Williamsc3d72b92009-02-11 13:26:06 -050011251 priv->suspend_time = 0;
11252 }
11253
James Ketrenos43f66a62005-03-25 12:31:53 -060011254 if (priv->status & STATUS_EXIT_PENDING)
11255 return -EIO;
11256
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011257 if (cmdlog && !priv->cmdlog) {
Yan Burmane6e3f122006-12-02 13:38:14 +020011258 priv->cmdlog = kcalloc(cmdlog, sizeof(*priv->cmdlog),
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011259 GFP_KERNEL);
11260 if (priv->cmdlog == NULL) {
11261 IPW_ERROR("Error allocating %d command log entries.\n",
11262 cmdlog);
Zhu Yid0b526b2006-04-13 17:19:50 +080011263 return -ENOMEM;
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011264 } else {
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011265 priv->cmdlog_len = cmdlog;
11266 }
11267 }
11268
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011269 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040011270 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060011271 * Also start the clocks. */
11272 rc = ipw_load(priv);
11273 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050011274 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011275 return rc;
11276 }
11277
11278 ipw_init_ordinals(priv);
11279 if (!(priv->config & CFG_CUSTOM_MAC))
11280 eeprom_parse_mac(priv, priv->mac_addr);
11281 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
John W. Linville5e5eab52009-10-06 16:45:14 -040011282 memcpy(priv->net_dev->perm_addr, priv->mac_addr, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -060011283
James Ketrenos4f36f802005-08-03 20:36:56 -050011284 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
11285 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
11286 ipw_geos[j].name, 3))
11287 break;
11288 }
James Ketrenos03520572005-10-19 16:12:31 -050011289 if (j == ARRAY_SIZE(ipw_geos)) {
11290 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
11291 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
11292 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
11293 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
James Ketrenos4f36f802005-08-03 20:36:56 -050011294 j = 0;
James Ketrenos03520572005-10-19 16:12:31 -050011295 }
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011296 if (libipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050011297 IPW_WARNING("Could not set geography.");
James Ketrenos43f66a62005-03-25 12:31:53 -060011298 return 0;
James Ketrenos4f36f802005-08-03 20:36:56 -050011299 }
11300
James Ketrenosb095c382005-08-24 22:04:42 -050011301 if (priv->status & STATUS_RF_KILL_SW) {
11302 IPW_WARNING("Radio disabled by module parameter.\n");
11303 return 0;
11304 } else if (rf_kill_active(priv)) {
11305 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
11306 "Kill switch must be turned off for "
11307 "wireless networking to work.\n");
11308 queue_delayed_work(priv->workqueue, &priv->rf_kill,
11309 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060011310 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011311 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011312
11313 rc = ipw_config(priv);
11314 if (!rc) {
11315 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011316
James Ketrenose6666192005-08-12 09:17:04 -050011317 /* If configure to try and auto-associate, kick
11318 * off a scan. */
David Howellsc4028952006-11-22 14:57:56 +000011319 queue_delayed_work(priv->workqueue,
11320 &priv->request_scan, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011321
James Ketrenos43f66a62005-03-25 12:31:53 -060011322 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011323 }
Jeff Garzikbf794512005-07-31 13:07:26 -040011324
James Ketrenosc848d0a2005-08-24 21:56:24 -050011325 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011326 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
11327 i, MAX_HW_RESTARTS);
11328
11329 /* We had an error bringing up the hardware, so take it
11330 * all the way back down so we can try again */
11331 ipw_down(priv);
11332 }
11333
Jeff Garzikbf794512005-07-31 13:07:26 -040011334 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060011335 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011336 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011337
James Ketrenos43f66a62005-03-25 12:31:53 -060011338 return -EIO;
11339}
11340
David Howellsc4028952006-11-22 14:57:56 +000011341static void ipw_bg_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011342{
David Howellsc4028952006-11-22 14:57:56 +000011343 struct ipw_priv *priv =
11344 container_of(work, struct ipw_priv, up);
Zhu Yi46441512006-01-24 16:37:59 +080011345 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011346 ipw_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011347 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011348}
11349
James Ketrenosb095c382005-08-24 22:04:42 -050011350static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011351{
James Ketrenosb095c382005-08-24 22:04:42 -050011352 int i;
11353
11354 if (priv->status & STATUS_SCANNING) {
11355 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11356 ipw_abort_scan(priv);
11357 }
11358
11359 if (priv->status & STATUS_ASSOCIATED) {
11360 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11361 ipw_disassociate(priv);
11362 }
11363
11364 ipw_led_shutdown(priv);
11365
11366 /* Wait up to 1s for status to change to not scanning and not
11367 * associated (disassociation can take a while for a ful 802.11
11368 * exchange */
11369 for (i = 1000; i && (priv->status &
11370 (STATUS_DISASSOCIATING |
11371 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11372 udelay(10);
11373
11374 if (priv->status & (STATUS_DISASSOCIATING |
11375 STATUS_ASSOCIATED | STATUS_SCANNING))
11376 IPW_DEBUG_INFO("Still associated or scanning...\n");
11377 else
11378 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11379
James Ketrenosc848d0a2005-08-24 21:56:24 -050011380 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011381 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011382
11383 priv->status &= ~STATUS_INIT;
11384}
11385
James Ketrenos43f66a62005-03-25 12:31:53 -060011386static void ipw_down(struct ipw_priv *priv)
11387{
James Ketrenosb095c382005-08-24 22:04:42 -050011388 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11389
11390 priv->status |= STATUS_EXIT_PENDING;
11391
11392 if (ipw_is_init(priv))
11393 ipw_deinit(priv);
11394
11395 /* Wipe out the EXIT_PENDING status bit if we are not actually
11396 * exiting the module */
11397 if (!exit_pending)
11398 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011399
11400 /* tell the device to stop sending interrupts */
11401 ipw_disable_interrupts(priv);
11402
11403 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011404 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011405 netif_carrier_off(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011406
11407 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011408
11409 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011410}
11411
David Howellsc4028952006-11-22 14:57:56 +000011412static void ipw_bg_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011413{
David Howellsc4028952006-11-22 14:57:56 +000011414 struct ipw_priv *priv =
11415 container_of(work, struct ipw_priv, down);
Zhu Yi46441512006-01-24 16:37:59 +080011416 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011417 ipw_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011418 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011419}
11420
11421/* Called by register_netdev() */
11422static int ipw_net_init(struct net_device *dev)
11423{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011424 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +080011425 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011426
James Ketrenosc848d0a2005-08-24 21:56:24 -050011427 if (ipw_up(priv)) {
John W. Linville8cc31742009-11-13 16:56:13 -050011428 mutex_unlock(&priv->mutex);
11429 return -EIO;
James Ketrenos43f66a62005-03-25 12:31:53 -060011430 }
11431
Zhu Yi46441512006-01-24 16:37:59 +080011432 mutex_unlock(&priv->mutex);
John W. Linville8cc31742009-11-13 16:56:13 -050011433 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011434}
11435
11436/* PCI driver stuff */
11437static struct pci_device_id card_ids[] = {
11438 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11439 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11440 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11441 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11442 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11443 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11444 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11445 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11446 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11447 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11448 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11449 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11450 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11451 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11452 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11453 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11454 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
Joe Perches8ab0ea72009-06-24 22:13:27 -070011455 {PCI_VDEVICE(INTEL, 0x104f), 0},
11456 {PCI_VDEVICE(INTEL, 0x4220), 0}, /* BG */
11457 {PCI_VDEVICE(INTEL, 0x4221), 0}, /* BG */
11458 {PCI_VDEVICE(INTEL, 0x4223), 0}, /* ABG */
11459 {PCI_VDEVICE(INTEL, 0x4224), 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011460
James Ketrenos43f66a62005-03-25 12:31:53 -060011461 /* required last entry */
11462 {0,}
11463};
11464
11465MODULE_DEVICE_TABLE(pci, card_ids);
11466
11467static struct attribute *ipw_sysfs_entries[] = {
11468 &dev_attr_rf_kill.attr,
11469 &dev_attr_direct_dword.attr,
11470 &dev_attr_indirect_byte.attr,
11471 &dev_attr_indirect_dword.attr,
11472 &dev_attr_mem_gpio_reg.attr,
11473 &dev_attr_command_event_reg.attr,
11474 &dev_attr_nic_type.attr,
11475 &dev_attr_status.attr,
11476 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011477 &dev_attr_error.attr,
11478 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011479 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011480 &dev_attr_eeprom_delay.attr,
11481 &dev_attr_ucode_version.attr,
11482 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011483 &dev_attr_scan_age.attr,
11484 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011485 &dev_attr_speed_scan.attr,
11486 &dev_attr_net_stats.attr,
Zhu Yi375dd242007-02-14 16:04:24 +080011487 &dev_attr_channels.attr,
Zhu Yid685b8c2006-04-13 17:20:27 +080011488#ifdef CONFIG_IPW2200_PROMISCUOUS
11489 &dev_attr_rtap_iface.attr,
11490 &dev_attr_rtap_filter.attr,
11491#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011492 NULL
11493};
11494
11495static struct attribute_group ipw_attribute_group = {
11496 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011497 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011498};
11499
Zhu Yid685b8c2006-04-13 17:20:27 +080011500#ifdef CONFIG_IPW2200_PROMISCUOUS
11501static int ipw_prom_open(struct net_device *dev)
11502{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011503 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011504 struct ipw_priv *priv = prom_priv->priv;
11505
11506 IPW_DEBUG_INFO("prom dev->open\n");
11507 netif_carrier_off(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011508
11509 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11510 priv->sys_config.accept_all_data_frames = 1;
11511 priv->sys_config.accept_non_directed_frames = 1;
11512 priv->sys_config.accept_all_mgmt_bcpr = 1;
11513 priv->sys_config.accept_all_mgmt_frames = 1;
11514
11515 ipw_send_system_config(priv);
11516 }
11517
11518 return 0;
11519}
11520
11521static int ipw_prom_stop(struct net_device *dev)
11522{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011523 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011524 struct ipw_priv *priv = prom_priv->priv;
11525
11526 IPW_DEBUG_INFO("prom dev->stop\n");
11527
11528 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11529 priv->sys_config.accept_all_data_frames = 0;
11530 priv->sys_config.accept_non_directed_frames = 0;
11531 priv->sys_config.accept_all_mgmt_bcpr = 0;
11532 priv->sys_config.accept_all_mgmt_frames = 0;
11533
11534 ipw_send_system_config(priv);
11535 }
11536
11537 return 0;
11538}
11539
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000011540static netdev_tx_t ipw_prom_hard_start_xmit(struct sk_buff *skb,
11541 struct net_device *dev)
Zhu Yid685b8c2006-04-13 17:20:27 +080011542{
11543 IPW_DEBUG_INFO("prom dev->xmit\n");
Patrick McHardy4153e772009-06-12 04:08:02 +000011544 dev_kfree_skb(skb);
11545 return NETDEV_TX_OK;
Zhu Yid685b8c2006-04-13 17:20:27 +080011546}
11547
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011548static const struct net_device_ops ipw_prom_netdev_ops = {
11549 .ndo_open = ipw_prom_open,
11550 .ndo_stop = ipw_prom_stop,
11551 .ndo_start_xmit = ipw_prom_hard_start_xmit,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011552 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011553 .ndo_set_mac_address = eth_mac_addr,
11554 .ndo_validate_addr = eth_validate_addr,
11555};
11556
Zhu Yid685b8c2006-04-13 17:20:27 +080011557static int ipw_prom_alloc(struct ipw_priv *priv)
11558{
11559 int rc = 0;
11560
11561 if (priv->prom_net_dev)
11562 return -EPERM;
11563
John W. Linville8cc31742009-11-13 16:56:13 -050011564 priv->prom_net_dev = alloc_ieee80211(sizeof(struct ipw_prom_priv));
Zhu Yid685b8c2006-04-13 17:20:27 +080011565 if (priv->prom_net_dev == NULL)
11566 return -ENOMEM;
11567
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011568 priv->prom_priv = libipw_priv(priv->prom_net_dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011569 priv->prom_priv->ieee = netdev_priv(priv->prom_net_dev);
11570 priv->prom_priv->priv = priv;
11571
11572 strcpy(priv->prom_net_dev->name, "rtap%d");
Daniel Drake3f2eeac2008-04-02 20:33:54 +010011573 memcpy(priv->prom_net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
Zhu Yid685b8c2006-04-13 17:20:27 +080011574
11575 priv->prom_net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011576 priv->prom_net_dev->netdev_ops = &ipw_prom_netdev_ops;
Zhu Yid685b8c2006-04-13 17:20:27 +080011577
11578 priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
Masakazu Mokuno229ce3a2008-05-14 14:16:50 +090011579 SET_NETDEV_DEV(priv->prom_net_dev, &priv->pci_dev->dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011580
11581 rc = register_netdev(priv->prom_net_dev);
11582 if (rc) {
John W. Linville8cc31742009-11-13 16:56:13 -050011583 free_ieee80211(priv->prom_net_dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011584 priv->prom_net_dev = NULL;
11585 return rc;
11586 }
11587
11588 return 0;
11589}
11590
11591static void ipw_prom_free(struct ipw_priv *priv)
11592{
11593 if (!priv->prom_net_dev)
11594 return;
11595
11596 unregister_netdev(priv->prom_net_dev);
John W. Linville8cc31742009-11-13 16:56:13 -050011597 free_ieee80211(priv->prom_net_dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011598
11599 priv->prom_net_dev = NULL;
11600}
11601
11602#endif
11603
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011604static const struct net_device_ops ipw_netdev_ops = {
11605 .ndo_init = ipw_net_init,
11606 .ndo_open = ipw_net_open,
11607 .ndo_stop = ipw_net_stop,
11608 .ndo_set_multicast_list = ipw_net_set_multicast_list,
11609 .ndo_set_mac_address = ipw_net_set_mac_address,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011610 .ndo_start_xmit = libipw_xmit,
11611 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011612 .ndo_validate_addr = eth_validate_addr,
11613};
Zhu Yid685b8c2006-04-13 17:20:27 +080011614
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011615static int __devinit ipw_pci_probe(struct pci_dev *pdev,
11616 const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011617{
11618 int err = 0;
11619 struct net_device *net_dev;
11620 void __iomem *base;
11621 u32 length, val;
11622 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011623 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011624
John W. Linville8cc31742009-11-13 16:56:13 -050011625 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
James Ketrenos43f66a62005-03-25 12:31:53 -060011626 if (net_dev == NULL) {
11627 err = -ENOMEM;
11628 goto out;
11629 }
11630
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011631 priv = libipw_priv(net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011632 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011633
James Ketrenos43f66a62005-03-25 12:31:53 -060011634 priv->net_dev = net_dev;
11635 priv->pci_dev = pdev;
James Ketrenos43f66a62005-03-25 12:31:53 -060011636 ipw_debug_level = debug;
Zhu Yi89c318e2006-06-08 22:19:49 -070011637 spin_lock_init(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060011638 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011639 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11640 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011641
Zhu Yi46441512006-01-24 16:37:59 +080011642 mutex_init(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011643 if (pci_enable_device(pdev)) {
11644 err = -ENODEV;
11645 goto out_free_ieee80211;
11646 }
11647
11648 pci_set_master(pdev);
11649
Yang Hongyang284901a2009-04-06 19:01:15 -070011650 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Jeff Garzikbf794512005-07-31 13:07:26 -040011651 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -070011652 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
James Ketrenos43f66a62005-03-25 12:31:53 -060011653 if (err) {
11654 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11655 goto out_pci_disable_device;
11656 }
11657
11658 pci_set_drvdata(pdev, priv);
11659
11660 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011661 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011662 goto out_pci_disable_device;
11663
Jeff Garzikbf794512005-07-31 13:07:26 -040011664 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011665 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011666 pci_read_config_dword(pdev, 0x40, &val);
11667 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011668 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011669
James Ketrenos43f66a62005-03-25 12:31:53 -060011670 length = pci_resource_len(pdev, 0);
11671 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011672
Arjan van de Ven275f1652008-10-20 21:42:39 -070011673 base = pci_ioremap_bar(pdev, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011674 if (!base) {
11675 err = -ENODEV;
11676 goto out_pci_release_regions;
11677 }
11678
11679 priv->hw_base = base;
11680 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11681 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11682
11683 err = ipw_setup_deferred_work(priv);
11684 if (err) {
11685 IPW_ERROR("Unable to setup deferred work\n");
11686 goto out_iounmap;
11687 }
11688
James Ketrenosb095c382005-08-24 22:04:42 -050011689 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011690
Thomas Gleixner1fb9df52006-07-01 19:29:39 -070011691 err = request_irq(pdev->irq, ipw_isr, IRQF_SHARED, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011692 if (err) {
11693 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11694 goto out_destroy_workqueue;
11695 }
11696
James Ketrenos43f66a62005-03-25 12:31:53 -060011697 SET_NETDEV_DEV(net_dev, &pdev->dev);
11698
Zhu Yi46441512006-01-24 16:37:59 +080011699 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011700
James Ketrenos43f66a62005-03-25 12:31:53 -060011701 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11702 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011703 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011704
Zhu Yie43e3c12006-04-13 17:20:45 +080011705#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080011706 priv->ieee->is_qos_active = ipw_is_qos_active;
James Ketrenos3b9990c2005-08-19 13:18:55 -050011707 priv->ieee->handle_probe_response = ipw_handle_beacon;
11708 priv->ieee->handle_beacon = ipw_handle_probe_response;
11709 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
Zhu Yie43e3c12006-04-13 17:20:45 +080011710#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050011711
James Ketrenosc848d0a2005-08-24 21:56:24 -050011712 priv->ieee->perfect_rssi = -20;
11713 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060011714
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011715 net_dev->netdev_ops = &ipw_netdev_ops;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011716 priv->wireless_data.spy_data = &priv->ieee->spy_data;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011717 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011718 net_dev->wireless_handlers = &ipw_wx_handler_def;
11719 net_dev->ethtool_ops = &ipw_ethtool_ops;
11720 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011721 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011722 net_dev->mem_start = pci_resource_start(pdev, 0);
11723 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11724
11725 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11726 if (err) {
11727 IPW_ERROR("failed to create sysfs device attributes\n");
Zhu Yi46441512006-01-24 16:37:59 +080011728 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011729 goto out_release_irq;
11730 }
11731
Zhu Yi46441512006-01-24 16:37:59 +080011732 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011733 err = register_netdev(net_dev);
11734 if (err) {
11735 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011736 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011737 }
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011738
Zhu Yid685b8c2006-04-13 17:20:27 +080011739#ifdef CONFIG_IPW2200_PROMISCUOUS
11740 if (rtap_iface) {
11741 err = ipw_prom_alloc(priv);
11742 if (err) {
11743 IPW_ERROR("Failed to register promiscuous network "
11744 "device (error %d).\n", err);
11745 unregister_netdev(priv->net_dev);
11746 goto out_remove_sysfs;
11747 }
11748 }
11749#endif
11750
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011751 printk(KERN_INFO DRV_NAME ": Detected geography %s (%d 802.11bg "
11752 "channels, %d 802.11a channels)\n",
11753 priv->ieee->geo.name, priv->ieee->geo.bg_channels,
11754 priv->ieee->geo.a_channels);
11755
James Ketrenos43f66a62005-03-25 12:31:53 -060011756 return 0;
11757
James Ketrenosa613bff2005-08-24 21:43:11 -050011758 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011759 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011760 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011761 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011762 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011763 destroy_workqueue(priv->workqueue);
11764 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011765 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011766 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011767 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011768 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011769 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011770 pci_disable_device(pdev);
11771 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011772 out_free_ieee80211:
John W. Linville8cc31742009-11-13 16:56:13 -050011773 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011774 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011775 return err;
11776}
11777
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011778static void __devexit ipw_pci_remove(struct pci_dev *pdev)
James Ketrenos43f66a62005-03-25 12:31:53 -060011779{
11780 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011781 struct list_head *p, *q;
11782 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011783
James Ketrenos43f66a62005-03-25 12:31:53 -060011784 if (!priv)
11785 return;
11786
Zhu Yi46441512006-01-24 16:37:59 +080011787 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011788
James Ketrenosafbf30a2005-08-25 00:05:33 -050011789 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011790 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011791 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11792
Zhu Yi46441512006-01-24 16:37:59 +080011793 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011794
11795 unregister_netdev(priv->net_dev);
11796
11797 if (priv->rxq) {
11798 ipw_rx_queue_free(priv, priv->rxq);
11799 priv->rxq = NULL;
11800 }
11801 ipw_tx_queue_free(priv);
11802
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011803 if (priv->cmdlog) {
11804 kfree(priv->cmdlog);
11805 priv->cmdlog = NULL;
11806 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011807 /* ipw_down will ensure that there is no more pending work
11808 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011809 cancel_delayed_work(&priv->adhoc_check);
11810 cancel_delayed_work(&priv->gather_stats);
11811 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040011812 cancel_delayed_work(&priv->request_direct_scan);
11813 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040011814 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050011815 cancel_delayed_work(&priv->rf_kill);
11816 cancel_delayed_work(&priv->scan_check);
11817 destroy_workqueue(priv->workqueue);
11818 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011819
James Ketrenosafbf30a2005-08-25 00:05:33 -050011820 /* Free MAC hash list for ADHOC */
11821 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11822 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050011823 list_del(p);
Zhu Yi489f4452006-01-24 16:37:41 +080011824 kfree(list_entry(p, struct ipw_ibss_seq, list));
James Ketrenosafbf30a2005-08-25 00:05:33 -050011825 }
11826 }
11827
Jesper Juhl8f760782006-06-27 02:55:06 -070011828 kfree(priv->error);
11829 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011830
Zhu Yid685b8c2006-04-13 17:20:27 +080011831#ifdef CONFIG_IPW2200_PROMISCUOUS
11832 ipw_prom_free(priv);
11833#endif
11834
James Ketrenos43f66a62005-03-25 12:31:53 -060011835 free_irq(pdev->irq, priv);
11836 iounmap(priv->hw_base);
11837 pci_release_regions(pdev);
11838 pci_disable_device(pdev);
11839 pci_set_drvdata(pdev, NULL);
John W. Linville8cc31742009-11-13 16:56:13 -050011840 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011841 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011842}
11843
James Ketrenos43f66a62005-03-25 12:31:53 -060011844#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011845static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011846{
11847 struct ipw_priv *priv = pci_get_drvdata(pdev);
11848 struct net_device *dev = priv->net_dev;
11849
11850 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11851
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011852 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011853 ipw_down(priv);
11854
11855 /* Remove the PRESENT state of the device */
11856 netif_device_detach(dev);
11857
James Ketrenos43f66a62005-03-25 12:31:53 -060011858 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011859 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011860 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011861
Dan Williamsc3d72b92009-02-11 13:26:06 -050011862 priv->suspend_at = get_seconds();
11863
James Ketrenos43f66a62005-03-25 12:31:53 -060011864 return 0;
11865}
11866
11867static int ipw_pci_resume(struct pci_dev *pdev)
11868{
11869 struct ipw_priv *priv = pci_get_drvdata(pdev);
11870 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -050011871 int err;
James Ketrenos43f66a62005-03-25 12:31:53 -060011872 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011873
James Ketrenos43f66a62005-03-25 12:31:53 -060011874 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11875
James Ketrenosea2b26e2005-08-24 21:25:16 -050011876 pci_set_power_state(pdev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -050011877 err = pci_enable_device(pdev);
11878 if (err) {
11879 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
11880 dev->name);
11881 return err;
11882 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011883 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011884
James Ketrenos43f66a62005-03-25 12:31:53 -060011885 /*
11886 * Suspend/Resume resets the PCI configuration space, so we have to
11887 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11888 * from interfering with C3 CPU state. pci_restore_state won't help
11889 * here since it only restores the first 64 bytes pci config header.
11890 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011891 pci_read_config_dword(pdev, 0x40, &val);
11892 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011893 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11894
11895 /* Set the device back into the PRESENT state; this will also wake
11896 * the queue of needed */
11897 netif_device_attach(dev);
11898
Dan Williamsc3d72b92009-02-11 13:26:06 -050011899 priv->suspend_time = get_seconds() - priv->suspend_at;
11900
James Ketrenos43f66a62005-03-25 12:31:53 -060011901 /* Bring the device back up */
11902 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011903
James Ketrenos43f66a62005-03-25 12:31:53 -060011904 return 0;
11905}
11906#endif
11907
Zhu Yic8c22c92006-08-21 11:38:39 +080011908static void ipw_pci_shutdown(struct pci_dev *pdev)
11909{
11910 struct ipw_priv *priv = pci_get_drvdata(pdev);
11911
11912 /* Take down the device; powers it off, etc. */
11913 ipw_down(priv);
11914
11915 pci_disable_device(pdev);
11916}
11917
James Ketrenos43f66a62005-03-25 12:31:53 -060011918/* driver initialization stuff */
11919static struct pci_driver ipw_driver = {
11920 .name = DRV_NAME,
11921 .id_table = card_ids,
11922 .probe = ipw_pci_probe,
11923 .remove = __devexit_p(ipw_pci_remove),
11924#ifdef CONFIG_PM
11925 .suspend = ipw_pci_suspend,
11926 .resume = ipw_pci_resume,
11927#endif
Zhu Yic8c22c92006-08-21 11:38:39 +080011928 .shutdown = ipw_pci_shutdown,
James Ketrenos43f66a62005-03-25 12:31:53 -060011929};
11930
11931static int __init ipw_init(void)
11932{
11933 int ret;
11934
11935 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11936 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11937
Jeff Garzik29917622006-08-19 17:48:59 -040011938 ret = pci_register_driver(&ipw_driver);
James Ketrenos43f66a62005-03-25 12:31:53 -060011939 if (ret) {
11940 IPW_ERROR("Unable to initialize PCI module\n");
11941 return ret;
11942 }
11943
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011944 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011945 if (ret) {
11946 IPW_ERROR("Unable to create driver sysfs file\n");
11947 pci_unregister_driver(&ipw_driver);
11948 return ret;
11949 }
11950
11951 return ret;
11952}
11953
11954static void __exit ipw_exit(void)
11955{
11956 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11957 pci_unregister_driver(&ipw_driver);
11958}
11959
11960module_param(disable, int, 0444);
11961MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11962
11963module_param(associate, int, 0444);
Tim Gardner5c7f9b72008-10-14 10:38:03 -060011964MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
James Ketrenos43f66a62005-03-25 12:31:53 -060011965
11966module_param(auto_create, int, 0444);
11967MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11968
Reinette Chatre21f8a732009-08-18 10:25:05 -070011969module_param_named(led, led_support, int, 0444);
Niels de Vos61a2d072008-07-31 00:07:23 -070011970MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)");
James Ketrenosa613bff2005-08-24 21:43:11 -050011971
James Ketrenos43f66a62005-03-25 12:31:53 -060011972module_param(debug, int, 0444);
11973MODULE_PARM_DESC(debug, "debug output mask");
11974
Reinette Chatre21f8a732009-08-18 10:25:05 -070011975module_param_named(channel, default_channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011976MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011977
Zhu Yid685b8c2006-04-13 17:20:27 +080011978#ifdef CONFIG_IPW2200_PROMISCUOUS
11979module_param(rtap_iface, int, 0444);
11980MODULE_PARM_DESC(rtap_iface, "create the rtap interface (1 - create, default 0)");
11981#endif
11982
Zhu Yie43e3c12006-04-13 17:20:45 +080011983#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050011984module_param(qos_enable, int, 0444);
11985MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060011986
James Ketrenosb095c382005-08-24 22:04:42 -050011987module_param(qos_burst_enable, int, 0444);
11988MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11989
11990module_param(qos_no_ack_mask, int, 0444);
11991MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11992
11993module_param(burst_duration_CCK, int, 0444);
11994MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11995
11996module_param(burst_duration_OFDM, int, 0444);
11997MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
Zhu Yie43e3c12006-04-13 17:20:45 +080011998#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050011999
12000#ifdef CONFIG_IPW2200_MONITOR
Reinette Chatre21f8a732009-08-18 10:25:05 -070012001module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012002MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
12003#else
Reinette Chatre21f8a732009-08-18 10:25:05 -070012004module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012005MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
12006#endif
12007
Zhu Yi810dabd2006-01-24 16:36:59 +080012008module_param(bt_coexist, int, 0444);
12009MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)");
12010
James Ketrenosb095c382005-08-24 22:04:42 -050012011module_param(hwcrypto, int, 0444);
Zhu Yibde37d02006-01-24 16:38:08 +080012012MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default off)");
James Ketrenosb095c382005-08-24 22:04:42 -050012013
James Ketrenosf6c5cb72005-08-25 00:39:09 -050012014module_param(cmdlog, int, 0444);
12015MODULE_PARM_DESC(cmdlog,
12016 "allocate a ring buffer for logging firmware commands");
12017
Zhu Yi4bfdb912006-01-24 16:37:16 +080012018module_param(roaming, int, 0444);
12019MODULE_PARM_DESC(roaming, "enable roaming support (default on)");
12020
Zhu Yid2b83e12006-04-13 17:19:36 +080012021module_param(antenna, int, 0444);
12022MODULE_PARM_DESC(antenna, "select antenna 1=Main, 3=Aux, default 0 [both], 2=slow_diversity (choose the one with lower background noise)");
12023
James Ketrenos43f66a62005-03-25 12:31:53 -060012024module_exit(ipw_exit);
12025module_init(ipw_init);