blob: 374b682e4d6ac19a130c676ad8deb4dcc711372e [file] [log] [blame]
James Ketrenos43f66a62005-03-25 12:31:53 -06001/******************************************************************************
Jeff Garzikbf794512005-07-31 13:07:26 -04002
James Ketrenosafbf30a2005-08-25 00:05:33 -05003 Copyright(c) 2003 - 2005 Intel Corporation. All rights reserved.
James Ketrenos43f66a62005-03-25 12:31:53 -06004
5 802.11 status code portion of this file from ethereal-0.10.6:
6 Copyright 2000, Axis Communications AB
7 Ethereal - Network traffic analyzer
8 By Gerald Combs <gerald@ethereal.com>
9 Copyright 1998 Gerald Combs
10
Jeff Garzikbf794512005-07-31 13:07:26 -040011 This program is free software; you can redistribute it and/or modify it
12 under the terms of version 2 of the GNU General Public License as
James Ketrenos43f66a62005-03-25 12:31:53 -060013 published by the Free Software Foundation.
Jeff Garzikbf794512005-07-31 13:07:26 -040014
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
James Ketrenos43f66a62005-03-25 12:31:53 -060018 more details.
Jeff Garzikbf794512005-07-31 13:07:26 -040019
James Ketrenos43f66a62005-03-25 12:31:53 -060020 You should have received a copy of the GNU General Public License along with
Jeff Garzikbf794512005-07-31 13:07:26 -040021 this program; if not, write to the Free Software Foundation, Inc., 59
James Ketrenos43f66a62005-03-25 12:31:53 -060022 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Jeff Garzikbf794512005-07-31 13:07:26 -040023
James Ketrenos43f66a62005-03-25 12:31:53 -060024 The full GNU General Public License is included in this distribution in the
25 file called LICENSE.
Jeff Garzikbf794512005-07-31 13:07:26 -040026
James Ketrenos43f66a62005-03-25 12:31:53 -060027 Contact Information:
28 James P. Ketrenos <ipw2100-admin@linux.intel.com>
29 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30
31******************************************************************************/
32
33#include "ipw2200.h"
Olaf Hering733482e2005-11-08 21:34:55 -080034#include <linux/version.h>
James Ketrenos43f66a62005-03-25 12:31:53 -060035
James Ketrenoscf1b4792005-10-20 16:35:24 -050036#define IPW2200_VERSION "git-1.0.8"
James Ketrenos43f66a62005-03-25 12:31:53 -060037#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
James Ketrenos2b184d52005-08-03 20:33:14 -050038#define DRV_COPYRIGHT "Copyright(c) 2003-2005 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060039#define DRV_VERSION IPW2200_VERSION
40
James Ketrenosb095c382005-08-24 22:04:42 -050041#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
42
James Ketrenos43f66a62005-03-25 12:31:53 -060043MODULE_DESCRIPTION(DRV_DESCRIPTION);
44MODULE_VERSION(DRV_VERSION);
45MODULE_AUTHOR(DRV_COPYRIGHT);
46MODULE_LICENSE("GPL");
47
James Ketrenosf6c5cb72005-08-25 00:39:09 -050048static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060049static int debug = 0;
50static int channel = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060051static int mode = 0;
52
53static u32 ipw_debug_level;
54static int associate = 1;
55static int auto_create = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -050056static int led = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060057static int disable = 0;
James Ketrenosb095c382005-08-24 22:04:42 -050058static int hwcrypto = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -060059static const char ipw_modes[] = {
60 'a', 'b', 'g', '?'
61};
62
James Ketrenosb095c382005-08-24 22:04:42 -050063#ifdef CONFIG_IPW_QOS
64static int qos_enable = 0;
65static int qos_burst_enable = 0;
66static int qos_no_ack_mask = 0;
67static int burst_duration_CCK = 0;
68static int burst_duration_OFDM = 0;
69
70static struct ieee80211_qos_parameters def_qos_parameters_OFDM = {
71 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
72 QOS_TX3_CW_MIN_OFDM},
73 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
74 QOS_TX3_CW_MAX_OFDM},
75 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
76 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
77 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
78 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
79};
80
81static struct ieee80211_qos_parameters def_qos_parameters_CCK = {
82 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
83 QOS_TX3_CW_MIN_CCK},
84 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
85 QOS_TX3_CW_MAX_CCK},
86 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
87 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
88 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
89 QOS_TX3_TXOP_LIMIT_CCK}
90};
91
92static struct ieee80211_qos_parameters def_parameters_OFDM = {
93 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
94 DEF_TX3_CW_MIN_OFDM},
95 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
96 DEF_TX3_CW_MAX_OFDM},
97 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
98 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
99 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
100 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
101};
102
103static struct ieee80211_qos_parameters def_parameters_CCK = {
104 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
105 DEF_TX3_CW_MIN_CCK},
106 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
107 DEF_TX3_CW_MAX_CCK},
108 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
109 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
110 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
111 DEF_TX3_TXOP_LIMIT_CCK}
112};
113
114static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
115
116static int from_priority_to_tx_queue[] = {
117 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
118 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
119};
120
121static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
122
123static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
124 *qos_param);
125static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
126 *qos_param);
127#endif /* CONFIG_IPW_QOS */
128
Benoit Boissinot97a78ca2005-09-15 17:30:28 +0000129static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev);
James Ketrenosb095c382005-08-24 22:04:42 -0500130static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600131static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400132static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600133 struct clx2_tx_queue *txq, int qindex);
134static int ipw_queue_reset(struct ipw_priv *priv);
135
136static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
137 int len, int sync);
138
139static void ipw_tx_queue_free(struct ipw_priv *);
140
141static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
142static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
143static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600144static int ipw_up(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500145static void ipw_bg_up(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600146static void ipw_down(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500147static void ipw_bg_down(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600148static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400149static int init_supported_rates(struct ipw_priv *priv,
150 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500151static void ipw_set_hwcrypto_keys(struct ipw_priv *);
152static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600153
Liu Hong1fe0adb2005-08-19 09:33:10 -0500154static int ipw_is_valid_channel(struct ieee80211_device *, u8);
155static int ipw_channel_to_index(struct ieee80211_device *, u8);
156static u8 ipw_freq_to_channel(struct ieee80211_device *, u32);
157static int ipw_set_geo(struct ieee80211_device *, const struct ieee80211_geo *);
158static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600159
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500160static int snprint_line(char *buf, size_t count,
161 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600162{
163 int out, i, j, l;
164 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400165
James Ketrenos43f66a62005-03-25 12:31:53 -0600166 out = snprintf(buf, count, "%08X", ofs);
167
168 for (l = 0, i = 0; i < 2; i++) {
169 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400170 for (j = 0; j < 8 && l < len; j++, l++)
171 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600172 data[(i * 8 + j)]);
173 for (; j < 8; j++)
174 out += snprintf(buf + out, count - out, " ");
175 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400176
James Ketrenos43f66a62005-03-25 12:31:53 -0600177 out += snprintf(buf + out, count - out, " ");
178 for (l = 0, i = 0; i < 2; i++) {
179 out += snprintf(buf + out, count - out, " ");
180 for (j = 0; j < 8 && l < len; j++, l++) {
181 c = data[(i * 8 + j)];
182 if (!isascii(c) || !isprint(c))
183 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400184
James Ketrenos43f66a62005-03-25 12:31:53 -0600185 out += snprintf(buf + out, count - out, "%c", c);
186 }
187
188 for (; j < 8; j++)
189 out += snprintf(buf + out, count - out, " ");
190 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400191
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500192 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600193}
194
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400195static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600196{
197 char line[81];
198 u32 ofs = 0;
199 if (!(ipw_debug_level & level))
200 return;
201
202 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500203 snprint_line(line, sizeof(line), &data[ofs],
204 min(len, 16U), ofs);
205 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600206 ofs += 16;
207 len -= min(len, 16U);
208 }
209}
210
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500211static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
212{
213 size_t out = size;
214 u32 ofs = 0;
215 int total = 0;
216
217 while (size && len) {
218 out = snprint_line(output, size, &data[ofs],
219 min_t(size_t, len, 16U), ofs);
220
221 ofs += 16;
222 output += out;
223 size -= out;
224 len -= min_t(size_t, len, 16U);
225 total += out;
226 }
227 return total;
228}
229
James Ketrenos43f66a62005-03-25 12:31:53 -0600230static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
231#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
232
233static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
234#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
235
236static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
237static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
238{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400239 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
240 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600241 _ipw_write_reg8(a, b, c);
242}
243
244static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
245static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
246{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400247 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
248 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600249 _ipw_write_reg16(a, b, c);
250}
251
252static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
253static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
254{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400255 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
256 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600257 _ipw_write_reg32(a, b, c);
258}
259
260#define _ipw_write8(ipw, ofs, val) writeb((val), (ipw)->hw_base + (ofs))
261#define ipw_write8(ipw, ofs, val) \
262 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
263 _ipw_write8(ipw, ofs, val)
264
265#define _ipw_write16(ipw, ofs, val) writew((val), (ipw)->hw_base + (ofs))
266#define ipw_write16(ipw, ofs, val) \
267 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
268 _ipw_write16(ipw, ofs, val)
269
270#define _ipw_write32(ipw, ofs, val) writel((val), (ipw)->hw_base + (ofs))
271#define ipw_write32(ipw, ofs, val) \
272 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
273 _ipw_write32(ipw, ofs, val)
274
275#define _ipw_read8(ipw, ofs) readb((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400276static inline u8 __ipw_read8(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
277{
278 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600279 return _ipw_read8(ipw, ofs);
280}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400281
James Ketrenos43f66a62005-03-25 12:31:53 -0600282#define ipw_read8(ipw, ofs) __ipw_read8(__FILE__, __LINE__, ipw, ofs)
283
284#define _ipw_read16(ipw, ofs) readw((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400285static inline u16 __ipw_read16(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
286{
287 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600288 return _ipw_read16(ipw, ofs);
289}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400290
James Ketrenos43f66a62005-03-25 12:31:53 -0600291#define ipw_read16(ipw, ofs) __ipw_read16(__FILE__, __LINE__, ipw, ofs)
292
293#define _ipw_read32(ipw, ofs) readl((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400294static inline u32 __ipw_read32(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
295{
296 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600297 return _ipw_read32(ipw, ofs);
298}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400299
James Ketrenos43f66a62005-03-25 12:31:53 -0600300#define ipw_read32(ipw, ofs) __ipw_read32(__FILE__, __LINE__, ipw, ofs)
301
302static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500303static inline void __ipw_read_indirect(const char *f, int l,
304 struct ipw_priv *a, u32 b, u8 * c, int d)
305{
306 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %d bytes\n", f, l, (u32) (b),
307 d);
308 _ipw_read_indirect(a, b, c, d);
309}
310
311#define ipw_read_indirect(a, b, c, d) __ipw_read_indirect(__FILE__, __LINE__, a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600312
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400313static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
314 int num);
James Ketrenos43f66a62005-03-25 12:31:53 -0600315#define ipw_write_indirect(a, b, c, d) \
316 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %d bytes\n", __FILE__, __LINE__, (u32)(b), d); \
James Ketrenosafbf30a2005-08-25 00:05:33 -0500317 _ipw_write_indirect(a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600318
319/* indirect write s */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400320static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600321{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400322 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500323 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
324 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600325}
326
James Ketrenos43f66a62005-03-25 12:31:53 -0600327static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
328{
329 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500330 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
331 _ipw_write8(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600332}
333
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400334static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600335{
336 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500337 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
338 _ipw_write16(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600339}
340
341/* indirect read s */
342
343static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
344{
345 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500346 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -0600347 IPW_DEBUG_IO(" reg = 0x%8X : \n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500348 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400349 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600350}
351
352static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
353{
354 u32 value;
355
356 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
357
James Ketrenosb095c382005-08-24 22:04:42 -0500358 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
359 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
James Ketrenos43f66a62005-03-25 12:31:53 -0600360 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x \n", reg, value);
361 return value;
362}
363
364/* iterative/auto-increment 32 bit reads and writes */
365static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
366 int num)
367{
James Ketrenosb095c382005-08-24 22:04:42 -0500368 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600369 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600370 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400371
James Ketrenos43f66a62005-03-25 12:31:53 -0600372 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
373
James Ketrenosea2b26e2005-08-24 21:25:16 -0500374 if (num <= 0) {
375 return;
376 }
377
James Ketrenos43f66a62005-03-25 12:31:53 -0600378 /* Read the first nibble byte by byte */
379 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500380 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600381 /* Start reading at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500382 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500383 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600384 aligned_addr += 4;
385 }
386
James Ketrenosb095c382005-08-24 22:04:42 -0500387 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500388 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500389 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400390
James Ketrenos43f66a62005-03-25 12:31:53 -0600391 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500392 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500393 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500394 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500395 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500396 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600397}
398
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400399static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600400 int num)
401{
James Ketrenosb095c382005-08-24 22:04:42 -0500402 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600403 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600404 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400405
James Ketrenos43f66a62005-03-25 12:31:53 -0600406 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400407
James Ketrenosea2b26e2005-08-24 21:25:16 -0500408 if (num <= 0) {
409 return;
410 }
411
James Ketrenos43f66a62005-03-25 12:31:53 -0600412 /* Write the first nibble byte by byte */
413 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500414 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500415 /* Start reading at aligned_addr + dif_len */
416 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500417 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600418 aligned_addr += 4;
419 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400420
James Ketrenosb095c382005-08-24 22:04:42 -0500421 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500422 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500423 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400424
James Ketrenos43f66a62005-03-25 12:31:53 -0600425 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500426 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500427 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500428 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500429 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500430 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600431}
432
Jeff Garzikbf794512005-07-31 13:07:26 -0400433static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600434 int num)
435{
436 memcpy_toio((priv->hw_base + addr), buf, num);
437}
438
439static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
440{
441 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
442}
443
444static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
445{
446 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
447}
448
449static inline void ipw_enable_interrupts(struct ipw_priv *priv)
450{
451 if (priv->status & STATUS_INT_ENABLED)
452 return;
453 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500454 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600455}
456
457static inline void ipw_disable_interrupts(struct ipw_priv *priv)
458{
459 if (!(priv->status & STATUS_INT_ENABLED))
460 return;
461 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500462 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600463}
464
James Ketrenosb39860c2005-08-12 09:36:32 -0500465#ifdef CONFIG_IPW_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -0600466static char *ipw_error_desc(u32 val)
467{
468 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400469 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600470 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400471 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600472 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400473 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600474 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400475 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600476 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400477 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500478 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400479 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500480 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400481 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500482 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400483 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500484 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400485 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500486 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400487 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500488 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400489 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500490 return "DMA_STATUS";
491 case IPW_FW_ERROR_DINO_ERROR:
492 return "DINO_ERROR";
493 case IPW_FW_ERROR_EEPROM_ERROR:
494 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400495 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500496 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400497 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500498 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400499 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500500 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600501 }
502}
503
James Ketrenosb39860c2005-08-12 09:36:32 -0500504static void ipw_dump_error_log(struct ipw_priv *priv,
505 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600506{
James Ketrenosb39860c2005-08-12 09:36:32 -0500507 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600508
James Ketrenosb39860c2005-08-12 09:36:32 -0500509 if (!error) {
510 IPW_ERROR("Error allocating and capturing error log. "
511 "Nothing to dump.\n");
512 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600513 }
514
James Ketrenosb39860c2005-08-12 09:36:32 -0500515 IPW_ERROR("Start IPW Error Log Dump:\n");
516 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
517 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600518
James Ketrenosb39860c2005-08-12 09:36:32 -0500519 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400520 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500521 ipw_error_desc(error->elem[i].desc),
522 error->elem[i].time,
523 error->elem[i].blink1,
524 error->elem[i].blink2,
525 error->elem[i].link1,
526 error->elem[i].link2, error->elem[i].data);
527 for (i = 0; i < error->log_len; i++)
528 IPW_ERROR("%i\t0x%08x\t%i\n",
529 error->log[i].time,
James Ketrenos286568a2005-08-30 10:34:25 -0500530 error->log[i].data, error->log[i].event);
James Ketrenos43f66a62005-03-25 12:31:53 -0600531}
James Ketrenos43f66a62005-03-25 12:31:53 -0600532#endif
James Ketrenos43f66a62005-03-25 12:31:53 -0600533
James Ketrenosc848d0a2005-08-24 21:56:24 -0500534static inline int ipw_is_init(struct ipw_priv *priv)
535{
536 return (priv->status & STATUS_INIT) ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -0600537}
538
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400539static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600540{
541 u32 addr, field_info, field_len, field_count, total_len;
542
543 IPW_DEBUG_ORD("ordinal = %i\n", ord);
544
545 if (!priv || !val || !len) {
546 IPW_DEBUG_ORD("Invalid argument\n");
547 return -EINVAL;
548 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400549
James Ketrenos43f66a62005-03-25 12:31:53 -0600550 /* verify device ordinal tables have been initialized */
551 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
552 IPW_DEBUG_ORD("Access ordinals before initialization\n");
553 return -EINVAL;
554 }
555
556 switch (IPW_ORD_TABLE_ID_MASK & ord) {
557 case IPW_ORD_TABLE_0_MASK:
558 /*
559 * TABLE 0: Direct access to a table of 32 bit values
560 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400561 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600562 * read from the table
563 */
564
565 /* remove the table id from the ordinal */
566 ord &= IPW_ORD_TABLE_VALUE_MASK;
567
568 /* boundary check */
569 if (ord > priv->table0_len) {
570 IPW_DEBUG_ORD("ordinal value (%i) longer then "
571 "max (%i)\n", ord, priv->table0_len);
572 return -EINVAL;
573 }
574
575 /* verify we have enough room to store the value */
576 if (*len < sizeof(u32)) {
577 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200578 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600579 return -EINVAL;
580 }
581
582 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400583 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600584
585 *len = sizeof(u32);
586 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400587 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600588 break;
589
590 case IPW_ORD_TABLE_1_MASK:
591 /*
592 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400593 *
594 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600595 * representing starting addr for the data (which is
596 * also a u32)
597 */
598
599 /* remove the table id from the ordinal */
600 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400601
James Ketrenos43f66a62005-03-25 12:31:53 -0600602 /* boundary check */
603 if (ord > priv->table1_len) {
604 IPW_DEBUG_ORD("ordinal value too long\n");
605 return -EINVAL;
606 }
607
608 /* verify we have enough room to store the value */
609 if (*len < sizeof(u32)) {
610 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200611 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600612 return -EINVAL;
613 }
614
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400615 *((u32 *) val) =
616 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600617 *len = sizeof(u32);
618 break;
619
620 case IPW_ORD_TABLE_2_MASK:
621 /*
622 * TABLE 2: Indirect access to a table of variable sized values
623 *
624 * This table consist of six values, each containing
625 * - dword containing the starting offset of the data
626 * - dword containing the lengh in the first 16bits
627 * and the count in the second 16bits
628 */
629
630 /* remove the table id from the ordinal */
631 ord &= IPW_ORD_TABLE_VALUE_MASK;
632
633 /* boundary check */
634 if (ord > priv->table2_len) {
635 IPW_DEBUG_ORD("ordinal value too long\n");
636 return -EINVAL;
637 }
638
639 /* get the address of statistic */
640 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400641
642 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600643 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400644 field_info =
645 ipw_read_reg32(priv,
646 priv->table2_addr + (ord << 3) +
647 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400648
James Ketrenos43f66a62005-03-25 12:31:53 -0600649 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400650 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400651
James Ketrenos43f66a62005-03-25 12:31:53 -0600652 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400653 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400654
James Ketrenos43f66a62005-03-25 12:31:53 -0600655 /* abort if not enought memory */
656 total_len = field_len * field_count;
657 if (total_len > *len) {
658 *len = total_len;
659 return -EINVAL;
660 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400661
James Ketrenos43f66a62005-03-25 12:31:53 -0600662 *len = total_len;
663 if (!total_len)
664 return 0;
665
666 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400667 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600668 addr, total_len, field_info);
669 ipw_read_indirect(priv, addr, val, total_len);
670 break;
671
672 default:
673 IPW_DEBUG_ORD("Invalid ordinal!\n");
674 return -EINVAL;
675
676 }
677
James Ketrenos43f66a62005-03-25 12:31:53 -0600678 return 0;
679}
680
681static void ipw_init_ordinals(struct ipw_priv *priv)
682{
683 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400684 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600685
686 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
687 priv->table0_addr, priv->table0_len);
688
689 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
690 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
691
692 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
693 priv->table1_addr, priv->table1_len);
694
695 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
696 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400697 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600698
699 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
700 priv->table2_addr, priv->table2_len);
701
702}
703
James Ketrenosa613bff2005-08-24 21:43:11 -0500704u32 ipw_register_toggle(u32 reg)
705{
James Ketrenosb095c382005-08-24 22:04:42 -0500706 reg &= ~IPW_START_STANDBY;
707 if (reg & IPW_GATE_ODMA)
708 reg &= ~IPW_GATE_ODMA;
709 if (reg & IPW_GATE_IDMA)
710 reg &= ~IPW_GATE_IDMA;
711 if (reg & IPW_GATE_ADMA)
712 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500713 return reg;
714}
715
716/*
717 * LED behavior:
718 * - On radio ON, turn on any LEDs that require to be on during start
719 * - On initialization, start unassociated blink
720 * - On association, disable unassociated blink
721 * - On disassociation, start unassociated blink
722 * - On radio OFF, turn off any LEDs started during radio on
723 *
724 */
725#define LD_TIME_LINK_ON 300
726#define LD_TIME_LINK_OFF 2700
727#define LD_TIME_ACT_ON 250
728
729void ipw_led_link_on(struct ipw_priv *priv)
730{
731 unsigned long flags;
732 u32 led;
733
734 /* If configured to not use LEDs, or nic_type is 1,
735 * then we don't toggle a LINK led */
736 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
737 return;
738
739 spin_lock_irqsave(&priv->lock, flags);
740
741 if (!(priv->status & STATUS_RF_KILL_MASK) &&
742 !(priv->status & STATUS_LED_LINK_ON)) {
743 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500744 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500745 led |= priv->led_association_on;
746
747 led = ipw_register_toggle(led);
748
749 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500750 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500751
752 priv->status |= STATUS_LED_LINK_ON;
753
754 /* If we aren't associated, schedule turning the LED off */
755 if (!(priv->status & STATUS_ASSOCIATED))
756 queue_delayed_work(priv->workqueue,
757 &priv->led_link_off,
758 LD_TIME_LINK_ON);
759 }
760
761 spin_unlock_irqrestore(&priv->lock, flags);
762}
763
James Ketrenosc848d0a2005-08-24 21:56:24 -0500764static void ipw_bg_led_link_on(void *data)
765{
766 struct ipw_priv *priv = data;
767 down(&priv->sem);
768 ipw_led_link_on(data);
769 up(&priv->sem);
770}
771
James Ketrenosa613bff2005-08-24 21:43:11 -0500772void ipw_led_link_off(struct ipw_priv *priv)
773{
774 unsigned long flags;
775 u32 led;
776
777 /* If configured not to use LEDs, or nic type is 1,
778 * then we don't goggle the LINK led. */
779 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
780 return;
781
782 spin_lock_irqsave(&priv->lock, flags);
783
784 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500785 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500786 led &= priv->led_association_off;
787 led = ipw_register_toggle(led);
788
789 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500790 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500791
792 IPW_DEBUG_LED("Link LED Off\n");
793
794 priv->status &= ~STATUS_LED_LINK_ON;
795
796 /* If we aren't associated and the radio is on, schedule
797 * turning the LED on (blink while unassociated) */
798 if (!(priv->status & STATUS_RF_KILL_MASK) &&
799 !(priv->status & STATUS_ASSOCIATED))
800 queue_delayed_work(priv->workqueue, &priv->led_link_on,
801 LD_TIME_LINK_OFF);
802
803 }
804
805 spin_unlock_irqrestore(&priv->lock, flags);
806}
807
James Ketrenosc848d0a2005-08-24 21:56:24 -0500808static void ipw_bg_led_link_off(void *data)
809{
810 struct ipw_priv *priv = data;
811 down(&priv->sem);
812 ipw_led_link_off(data);
813 up(&priv->sem);
814}
815
James Ketrenosb095c382005-08-24 22:04:42 -0500816static inline void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500817{
James Ketrenosa613bff2005-08-24 21:43:11 -0500818 u32 led;
819
820 if (priv->config & CFG_NO_LED)
821 return;
822
James Ketrenosb095c382005-08-24 22:04:42 -0500823 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500824 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500825
826 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500827 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500828 led |= priv->led_activity_on;
829
830 led = ipw_register_toggle(led);
831
832 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500833 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500834
835 IPW_DEBUG_LED("Activity LED On\n");
836
837 priv->status |= STATUS_LED_ACT_ON;
838
James Ketrenosc848d0a2005-08-24 21:56:24 -0500839 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500840 queue_delayed_work(priv->workqueue, &priv->led_act_off,
841 LD_TIME_ACT_ON);
842 } else {
843 /* Reschedule LED off for full time period */
844 cancel_delayed_work(&priv->led_act_off);
845 queue_delayed_work(priv->workqueue, &priv->led_act_off,
846 LD_TIME_ACT_ON);
847 }
James Ketrenosb095c382005-08-24 22:04:42 -0500848}
James Ketrenosa613bff2005-08-24 21:43:11 -0500849
James Ketrenosb095c382005-08-24 22:04:42 -0500850void ipw_led_activity_on(struct ipw_priv *priv)
851{
852 unsigned long flags;
853 spin_lock_irqsave(&priv->lock, flags);
854 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500855 spin_unlock_irqrestore(&priv->lock, flags);
856}
857
858void ipw_led_activity_off(struct ipw_priv *priv)
859{
860 unsigned long flags;
861 u32 led;
862
863 if (priv->config & CFG_NO_LED)
864 return;
865
866 spin_lock_irqsave(&priv->lock, flags);
867
868 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500869 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500870 led &= priv->led_activity_off;
871
872 led = ipw_register_toggle(led);
873
874 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500875 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500876
877 IPW_DEBUG_LED("Activity LED Off\n");
878
879 priv->status &= ~STATUS_LED_ACT_ON;
880 }
881
882 spin_unlock_irqrestore(&priv->lock, flags);
883}
884
James Ketrenosc848d0a2005-08-24 21:56:24 -0500885static void ipw_bg_led_activity_off(void *data)
886{
887 struct ipw_priv *priv = data;
888 down(&priv->sem);
889 ipw_led_activity_off(data);
890 up(&priv->sem);
891}
892
James Ketrenosa613bff2005-08-24 21:43:11 -0500893void ipw_led_band_on(struct ipw_priv *priv)
894{
895 unsigned long flags;
896 u32 led;
897
898 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -0500899 if (priv->config & CFG_NO_LED ||
900 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -0500901 return;
902
903 spin_lock_irqsave(&priv->lock, flags);
904
James Ketrenosb095c382005-08-24 22:04:42 -0500905 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500906 if (priv->assoc_network->mode == IEEE_A) {
907 led |= priv->led_ofdm_on;
908 led &= priv->led_association_off;
909 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
910 } else if (priv->assoc_network->mode == IEEE_G) {
911 led |= priv->led_ofdm_on;
912 led |= priv->led_association_on;
913 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
914 } else {
915 led &= priv->led_ofdm_off;
916 led |= priv->led_association_on;
917 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
918 }
919
920 led = ipw_register_toggle(led);
921
922 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500923 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500924
925 spin_unlock_irqrestore(&priv->lock, flags);
926}
927
928void ipw_led_band_off(struct ipw_priv *priv)
929{
930 unsigned long flags;
931 u32 led;
932
933 /* Only nic type 1 supports mode LEDs */
934 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
935 return;
936
937 spin_lock_irqsave(&priv->lock, flags);
938
James Ketrenosb095c382005-08-24 22:04:42 -0500939 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500940 led &= priv->led_ofdm_off;
941 led &= priv->led_association_off;
942
943 led = ipw_register_toggle(led);
944
945 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500946 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500947
948 spin_unlock_irqrestore(&priv->lock, flags);
949}
950
951void ipw_led_radio_on(struct ipw_priv *priv)
952{
953 ipw_led_link_on(priv);
954}
955
956void ipw_led_radio_off(struct ipw_priv *priv)
957{
958 ipw_led_activity_off(priv);
959 ipw_led_link_off(priv);
960}
961
962void ipw_led_link_up(struct ipw_priv *priv)
963{
964 /* Set the Link Led on for all nic types */
965 ipw_led_link_on(priv);
966}
967
968void ipw_led_link_down(struct ipw_priv *priv)
969{
970 ipw_led_activity_off(priv);
971 ipw_led_link_off(priv);
972
973 if (priv->status & STATUS_RF_KILL_MASK)
974 ipw_led_radio_off(priv);
975}
976
977void ipw_led_init(struct ipw_priv *priv)
978{
979 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
980
981 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500982 priv->led_activity_on = IPW_ACTIVITY_LED;
983 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500984
James Ketrenosb095c382005-08-24 22:04:42 -0500985 priv->led_association_on = IPW_ASSOCIATED_LED;
986 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500987
988 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500989 priv->led_ofdm_on = IPW_OFDM_LED;
990 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500991
992 switch (priv->nic_type) {
993 case EEPROM_NIC_TYPE_1:
994 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -0500995 priv->led_activity_on = IPW_ASSOCIATED_LED;
996 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
997 priv->led_association_on = IPW_ACTIVITY_LED;
998 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500999
1000 if (!(priv->config & CFG_NO_LED))
1001 ipw_led_band_on(priv);
1002
1003 /* And we don't blink link LEDs for this nic, so
1004 * just return here */
1005 return;
1006
1007 case EEPROM_NIC_TYPE_3:
1008 case EEPROM_NIC_TYPE_2:
1009 case EEPROM_NIC_TYPE_4:
1010 case EEPROM_NIC_TYPE_0:
1011 break;
1012
1013 default:
1014 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1015 priv->nic_type);
1016 priv->nic_type = EEPROM_NIC_TYPE_0;
1017 break;
1018 }
1019
1020 if (!(priv->config & CFG_NO_LED)) {
1021 if (priv->status & STATUS_ASSOCIATED)
1022 ipw_led_link_on(priv);
1023 else
1024 ipw_led_link_off(priv);
1025 }
1026}
1027
1028void ipw_led_shutdown(struct ipw_priv *priv)
1029{
James Ketrenosa613bff2005-08-24 21:43:11 -05001030 ipw_led_activity_off(priv);
1031 ipw_led_link_off(priv);
1032 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001033 cancel_delayed_work(&priv->led_link_on);
1034 cancel_delayed_work(&priv->led_link_off);
1035 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001036}
1037
James Ketrenos43f66a62005-03-25 12:31:53 -06001038/*
1039 * The following adds a new attribute to the sysfs representation
1040 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1041 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001042 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001043 * See the level definitions in ipw for details.
1044 */
1045static ssize_t show_debug_level(struct device_driver *d, char *buf)
1046{
1047 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1048}
James Ketrenosa613bff2005-08-24 21:43:11 -05001049
1050static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1051 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001052{
1053 char *p = (char *)buf;
1054 u32 val;
1055
1056 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1057 p++;
1058 if (p[0] == 'x' || p[0] == 'X')
1059 p++;
1060 val = simple_strtoul(p, &p, 16);
1061 } else
1062 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001063 if (p == buf)
1064 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001065 ": %s is not in hex or decimal form.\n", buf);
1066 else
1067 ipw_debug_level = val;
1068
1069 return strnlen(buf, count);
1070}
1071
Jeff Garzikbf794512005-07-31 13:07:26 -04001072static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001073 show_debug_level, store_debug_level);
1074
James Ketrenosb39860c2005-08-12 09:36:32 -05001075static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1076{
1077 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1078}
1079
1080static void ipw_capture_event_log(struct ipw_priv *priv,
1081 u32 log_len, struct ipw_event *log)
1082{
1083 u32 base;
1084
1085 if (log_len) {
1086 base = ipw_read32(priv, IPW_EVENT_LOG);
1087 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1088 (u8 *) log, sizeof(*log) * log_len);
1089 }
1090}
1091
1092static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1093{
1094 struct ipw_fw_error *error;
1095 u32 log_len = ipw_get_event_log_len(priv);
1096 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1097 u32 elem_len = ipw_read_reg32(priv, base);
1098
1099 error = kmalloc(sizeof(*error) +
1100 sizeof(*error->elem) * elem_len +
1101 sizeof(*error->log) * log_len, GFP_ATOMIC);
1102 if (!error) {
1103 IPW_ERROR("Memory allocation for firmware error log "
1104 "failed.\n");
1105 return NULL;
1106 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001107 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001108 error->status = priv->status;
1109 error->config = priv->config;
1110 error->elem_len = elem_len;
1111 error->log_len = log_len;
1112 error->elem = (struct ipw_error_elem *)error->payload;
1113 error->log = (struct ipw_event *)(error->elem +
1114 (sizeof(*error->elem) * elem_len));
1115
1116 ipw_capture_event_log(priv, log_len, error->log);
1117
1118 if (elem_len)
1119 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1120 sizeof(*error->elem) * elem_len);
1121
1122 return error;
1123}
1124
1125static void ipw_free_error_log(struct ipw_fw_error *error)
1126{
1127 if (error)
1128 kfree(error);
1129}
1130
1131static ssize_t show_event_log(struct device *d,
1132 struct device_attribute *attr, char *buf)
1133{
1134 struct ipw_priv *priv = dev_get_drvdata(d);
1135 u32 log_len = ipw_get_event_log_len(priv);
1136 struct ipw_event log[log_len];
1137 u32 len = 0, i;
1138
1139 ipw_capture_event_log(priv, log_len, log);
1140
1141 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1142 for (i = 0; i < log_len; i++)
1143 len += snprintf(buf + len, PAGE_SIZE - len,
1144 "\n%08X%08X%08X",
1145 log[i].time, log[i].event, log[i].data);
1146 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1147 return len;
1148}
1149
1150static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1151
1152static ssize_t show_error(struct device *d,
1153 struct device_attribute *attr, char *buf)
1154{
1155 struct ipw_priv *priv = dev_get_drvdata(d);
1156 u32 len = 0, i;
1157 if (!priv->error)
1158 return 0;
1159 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001160 "%08lX%08X%08X%08X",
1161 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001162 priv->error->status,
1163 priv->error->config, priv->error->elem_len);
1164 for (i = 0; i < priv->error->elem_len; i++)
1165 len += snprintf(buf + len, PAGE_SIZE - len,
1166 "\n%08X%08X%08X%08X%08X%08X%08X",
1167 priv->error->elem[i].time,
1168 priv->error->elem[i].desc,
1169 priv->error->elem[i].blink1,
1170 priv->error->elem[i].blink2,
1171 priv->error->elem[i].link1,
1172 priv->error->elem[i].link2,
1173 priv->error->elem[i].data);
1174
1175 len += snprintf(buf + len, PAGE_SIZE - len,
1176 "\n%08X", priv->error->log_len);
1177 for (i = 0; i < priv->error->log_len; i++)
1178 len += snprintf(buf + len, PAGE_SIZE - len,
1179 "\n%08X%08X%08X",
1180 priv->error->log[i].time,
1181 priv->error->log[i].event,
1182 priv->error->log[i].data);
1183 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1184 return len;
1185}
1186
1187static ssize_t clear_error(struct device *d,
1188 struct device_attribute *attr,
1189 const char *buf, size_t count)
1190{
1191 struct ipw_priv *priv = dev_get_drvdata(d);
1192 if (priv->error) {
1193 ipw_free_error_log(priv->error);
1194 priv->error = NULL;
1195 }
1196 return count;
1197}
1198
1199static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1200
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001201static ssize_t show_cmd_log(struct device *d,
1202 struct device_attribute *attr, char *buf)
1203{
1204 struct ipw_priv *priv = dev_get_drvdata(d);
1205 u32 len = 0, i;
1206 if (!priv->cmdlog)
1207 return 0;
1208 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1209 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1210 i = (i + 1) % priv->cmdlog_len) {
1211 len +=
1212 snprintf(buf + len, PAGE_SIZE - len,
1213 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1214 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1215 priv->cmdlog[i].cmd.len);
1216 len +=
1217 snprintk_buf(buf + len, PAGE_SIZE - len,
1218 (u8 *) priv->cmdlog[i].cmd.param,
1219 priv->cmdlog[i].cmd.len);
1220 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1221 }
1222 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1223 return len;
1224}
1225
1226static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1227
James Ketrenosa613bff2005-08-24 21:43:11 -05001228static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1229 char *buf)
1230{
1231 struct ipw_priv *priv = dev_get_drvdata(d);
1232 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1233}
1234
1235static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1236 const char *buf, size_t count)
1237{
1238 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001239#ifdef CONFIG_IPW_DEBUG
James Ketrenosa613bff2005-08-24 21:43:11 -05001240 struct net_device *dev = priv->net_dev;
James Ketrenosc848d0a2005-08-24 21:56:24 -05001241#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05001242 char buffer[] = "00000000";
1243 unsigned long len =
1244 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1245 unsigned long val;
1246 char *p = buffer;
1247
1248 IPW_DEBUG_INFO("enter\n");
1249
1250 strncpy(buffer, buf, len);
1251 buffer[len] = 0;
1252
1253 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1254 p++;
1255 if (p[0] == 'x' || p[0] == 'X')
1256 p++;
1257 val = simple_strtoul(p, &p, 16);
1258 } else
1259 val = simple_strtoul(p, &p, 10);
1260 if (p == buffer) {
1261 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1262 } else {
1263 priv->ieee->scan_age = val;
1264 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1265 }
1266
1267 IPW_DEBUG_INFO("exit\n");
1268 return len;
1269}
1270
1271static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1272
1273static ssize_t show_led(struct device *d, struct device_attribute *attr,
1274 char *buf)
1275{
1276 struct ipw_priv *priv = dev_get_drvdata(d);
1277 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1278}
1279
1280static ssize_t store_led(struct device *d, struct device_attribute *attr,
1281 const char *buf, size_t count)
1282{
1283 struct ipw_priv *priv = dev_get_drvdata(d);
1284
1285 IPW_DEBUG_INFO("enter\n");
1286
1287 if (count == 0)
1288 return 0;
1289
1290 if (*buf == 0) {
1291 IPW_DEBUG_LED("Disabling LED control.\n");
1292 priv->config |= CFG_NO_LED;
1293 ipw_led_shutdown(priv);
1294 } else {
1295 IPW_DEBUG_LED("Enabling LED control.\n");
1296 priv->config &= ~CFG_NO_LED;
1297 ipw_led_init(priv);
1298 }
1299
1300 IPW_DEBUG_INFO("exit\n");
1301 return count;
1302}
1303
1304static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1305
Andrew Mortonad3fee52005-06-20 14:30:36 -07001306static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001307 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001308{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001309 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001310 return sprintf(buf, "0x%08x\n", (int)p->status);
1311}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001312
James Ketrenos43f66a62005-03-25 12:31:53 -06001313static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1314
Andrew Mortonad3fee52005-06-20 14:30:36 -07001315static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1316 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001317{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001318 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001319 return sprintf(buf, "0x%08x\n", (int)p->config);
1320}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001321
James Ketrenos43f66a62005-03-25 12:31:53 -06001322static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1323
Andrew Mortonad3fee52005-06-20 14:30:36 -07001324static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001325 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001326{
James Ketrenosa613bff2005-08-24 21:43:11 -05001327 struct ipw_priv *priv = d->driver_data;
1328 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001329}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001330
James Ketrenos43f66a62005-03-25 12:31:53 -06001331static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1332
Andrew Mortonad3fee52005-06-20 14:30:36 -07001333static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001334 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001335{
1336 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001337 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001338
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001339 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001340 return 0;
1341
1342 return sprintf(buf, "0x%08x\n", tmp);
1343}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001344
1345static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001346
Andrew Mortonad3fee52005-06-20 14:30:36 -07001347static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1348 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001349{
1350 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001351 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001352
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001353 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001354 return 0;
1355
1356 return sprintf(buf, "0x%08x\n", tmp);
1357}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001358
1359static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001360
1361/*
1362 * Add a device attribute to view/control the delay between eeprom
1363 * operations.
1364 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001365static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001366 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001367{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001368 int n = ((struct ipw_priv *)d->driver_data)->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001369 return sprintf(buf, "%i\n", n);
1370}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001371static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001372 struct device_attribute *attr,
1373 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001374{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001375 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001376 sscanf(buf, "%i", &p->eeprom_delay);
1377 return strnlen(buf, count);
1378}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001379
1380static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1381 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001382
Andrew Mortonad3fee52005-06-20 14:30:36 -07001383static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001384 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001385{
1386 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001387 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001388
James Ketrenosb095c382005-08-24 22:04:42 -05001389 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001390 return sprintf(buf, "0x%08x\n", reg);
1391}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001392static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001393 struct device_attribute *attr,
1394 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001395{
1396 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001397 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001398
1399 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001400 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001401 return strnlen(buf, count);
1402}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001403
1404static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1405 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001406
Andrew Mortonad3fee52005-06-20 14:30:36 -07001407static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001408 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001409{
1410 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001411 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001412
1413 reg = ipw_read_reg32(p, 0x301100);
1414 return sprintf(buf, "0x%08x\n", reg);
1415}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001416static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001417 struct device_attribute *attr,
1418 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001419{
1420 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001421 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001422
1423 sscanf(buf, "%x", &reg);
1424 ipw_write_reg32(p, 0x301100, reg);
1425 return strnlen(buf, count);
1426}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001427
1428static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1429 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001430
Andrew Mortonad3fee52005-06-20 14:30:36 -07001431static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001432 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001433{
1434 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001435 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001436
Jeff Garzikbf794512005-07-31 13:07:26 -04001437 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001438 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001439 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001440 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001441
James Ketrenos43f66a62005-03-25 12:31:53 -06001442 return sprintf(buf, "0x%08x\n", reg);
1443}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001444static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001445 struct device_attribute *attr,
1446 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001447{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001448 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001449
1450 sscanf(buf, "%x", &priv->indirect_dword);
1451 priv->status |= STATUS_INDIRECT_DWORD;
1452 return strnlen(buf, count);
1453}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001454
1455static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1456 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001457
Andrew Mortonad3fee52005-06-20 14:30:36 -07001458static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001459 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001460{
1461 u8 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001462 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001463
Jeff Garzikbf794512005-07-31 13:07:26 -04001464 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001465 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001466 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001467 reg = 0;
1468
1469 return sprintf(buf, "0x%02x\n", reg);
1470}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001471static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001472 struct device_attribute *attr,
1473 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001474{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001475 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001476
1477 sscanf(buf, "%x", &priv->indirect_byte);
1478 priv->status |= STATUS_INDIRECT_BYTE;
1479 return strnlen(buf, count);
1480}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001481
1482static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001483 show_indirect_byte, store_indirect_byte);
1484
Andrew Mortonad3fee52005-06-20 14:30:36 -07001485static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001486 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001487{
1488 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001489 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001490
Jeff Garzikbf794512005-07-31 13:07:26 -04001491 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001492 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001493 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001494 reg = 0;
1495
1496 return sprintf(buf, "0x%08x\n", reg);
1497}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001498static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001499 struct device_attribute *attr,
1500 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001501{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001502 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001503
1504 sscanf(buf, "%x", &priv->direct_dword);
1505 priv->status |= STATUS_DIRECT_DWORD;
1506 return strnlen(buf, count);
1507}
James Ketrenos43f66a62005-03-25 12:31:53 -06001508
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001509static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1510 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001511
1512static inline int rf_kill_active(struct ipw_priv *priv)
1513{
1514 if (0 == (ipw_read32(priv, 0x30) & 0x10000))
1515 priv->status |= STATUS_RF_KILL_HW;
1516 else
1517 priv->status &= ~STATUS_RF_KILL_HW;
1518
1519 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1520}
1521
Andrew Mortonad3fee52005-06-20 14:30:36 -07001522static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001523 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001524{
1525 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001526 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001527 2 - HW based RF kill active
1528 3 - Both HW and SW baed RF kill active */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001529 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001530 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001531 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001532 return sprintf(buf, "%i\n", val);
1533}
1534
1535static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1536{
Jeff Garzikbf794512005-07-31 13:07:26 -04001537 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001538 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001539 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001540
1541 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1542 disable_radio ? "OFF" : "ON");
1543
1544 if (disable_radio) {
1545 priv->status |= STATUS_RF_KILL_SW;
1546
James Ketrenosa613bff2005-08-24 21:43:11 -05001547 if (priv->workqueue)
James Ketrenos43f66a62005-03-25 12:31:53 -06001548 cancel_delayed_work(&priv->request_scan);
James Ketrenos43f66a62005-03-25 12:31:53 -06001549 queue_work(priv->workqueue, &priv->down);
1550 } else {
1551 priv->status &= ~STATUS_RF_KILL_SW;
1552 if (rf_kill_active(priv)) {
1553 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1554 "disabled by HW switch\n");
1555 /* Make sure the RF_KILL check timer is running */
1556 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001557 queue_delayed_work(priv->workqueue, &priv->rf_kill,
James Ketrenos43f66a62005-03-25 12:31:53 -06001558 2 * HZ);
Jeff Garzikbf794512005-07-31 13:07:26 -04001559 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001560 queue_work(priv->workqueue, &priv->up);
1561 }
1562
1563 return 1;
1564}
1565
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001566static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1567 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001568{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001569 struct ipw_priv *priv = d->driver_data;
Jeff Garzikbf794512005-07-31 13:07:26 -04001570
James Ketrenos43f66a62005-03-25 12:31:53 -06001571 ipw_radio_kill_sw(priv, buf[0] == '1');
1572
1573 return count;
1574}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001575
1576static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001577
James Ketrenosb095c382005-08-24 22:04:42 -05001578static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1579 char *buf)
1580{
1581 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1582 int pos = 0, len = 0;
1583 if (priv->config & CFG_SPEED_SCAN) {
1584 while (priv->speed_scan[pos] != 0)
1585 len += sprintf(&buf[len], "%d ",
1586 priv->speed_scan[pos++]);
1587 return len + sprintf(&buf[len], "\n");
1588 }
1589
1590 return sprintf(buf, "0\n");
1591}
1592
1593static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1594 const char *buf, size_t count)
1595{
1596 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1597 int channel, pos = 0;
1598 const char *p = buf;
1599
1600 /* list of space separated channels to scan, optionally ending with 0 */
1601 while ((channel = simple_strtol(p, NULL, 0))) {
1602 if (pos == MAX_SPEED_SCAN - 1) {
1603 priv->speed_scan[pos] = 0;
1604 break;
1605 }
1606
Liu Hong1fe0adb2005-08-19 09:33:10 -05001607 if (ipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001608 priv->speed_scan[pos++] = channel;
1609 else
1610 IPW_WARNING("Skipping invalid channel request: %d\n",
1611 channel);
1612 p = strchr(p, ' ');
1613 if (!p)
1614 break;
1615 while (*p == ' ' || *p == '\t')
1616 p++;
1617 }
1618
1619 if (pos == 0)
1620 priv->config &= ~CFG_SPEED_SCAN;
1621 else {
1622 priv->speed_scan_pos = 0;
1623 priv->config |= CFG_SPEED_SCAN;
1624 }
1625
1626 return count;
1627}
1628
1629static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1630 store_speed_scan);
1631
1632static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1633 char *buf)
1634{
1635 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1636 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1637}
1638
1639static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1640 const char *buf, size_t count)
1641{
1642 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1643 if (buf[0] == '1')
1644 priv->config |= CFG_NET_STATS;
1645 else
1646 priv->config &= ~CFG_NET_STATS;
1647
1648 return count;
1649}
1650
James Ketrenosafbf30a2005-08-25 00:05:33 -05001651static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1652 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001653
James Ketrenosea2b26e2005-08-24 21:25:16 -05001654static void notify_wx_assoc_event(struct ipw_priv *priv)
1655{
1656 union iwreq_data wrqu;
1657 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1658 if (priv->status & STATUS_ASSOCIATED)
1659 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1660 else
1661 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1662 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1663}
1664
James Ketrenos43f66a62005-03-25 12:31:53 -06001665static void ipw_irq_tasklet(struct ipw_priv *priv)
1666{
1667 u32 inta, inta_mask, handled = 0;
1668 unsigned long flags;
1669 int rc = 0;
1670
1671 spin_lock_irqsave(&priv->lock, flags);
1672
James Ketrenosb095c382005-08-24 22:04:42 -05001673 inta = ipw_read32(priv, IPW_INTA_RW);
1674 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1675 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001676
1677 /* Add any cached INTA values that need to be handled */
1678 inta |= priv->isr_inta;
1679
1680 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001681 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001682 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001683 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001684 }
1685
James Ketrenosb095c382005-08-24 22:04:42 -05001686 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001687 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001688 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001689 priv->status &= ~STATUS_HCMD_ACTIVE;
1690 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001691 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001692 }
1693
James Ketrenosb095c382005-08-24 22:04:42 -05001694 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001695 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001696 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05001697 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06001698 }
1699
James Ketrenosb095c382005-08-24 22:04:42 -05001700 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001701 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001702 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05001703 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06001704 }
1705
James Ketrenosb095c382005-08-24 22:04:42 -05001706 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001707 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001708 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05001709 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06001710 }
1711
James Ketrenosb095c382005-08-24 22:04:42 -05001712 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001713 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001714 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05001715 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06001716 }
1717
James Ketrenosb095c382005-08-24 22:04:42 -05001718 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001719 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001720 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001721 }
1722
James Ketrenosb095c382005-08-24 22:04:42 -05001723 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001724 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001725 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06001726 }
1727
James Ketrenosb095c382005-08-24 22:04:42 -05001728 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001729 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001730 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001731 }
1732
James Ketrenosb095c382005-08-24 22:04:42 -05001733 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001734 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001735 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001736 }
1737
James Ketrenosb095c382005-08-24 22:04:42 -05001738 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001739 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001740 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001741 }
1742
James Ketrenosb095c382005-08-24 22:04:42 -05001743 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001744 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
1745 priv->status |= STATUS_RF_KILL_HW;
1746 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001747 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06001748 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05001749 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001750 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05001751 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001752 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001753
James Ketrenosb095c382005-08-24 22:04:42 -05001754 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001755 IPW_ERROR("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05001756 if (priv->error) {
1757 IPW_ERROR("Sysfs 'error' log already exists.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06001758#ifdef CONFIG_IPW_DEBUG
James Ketrenosb39860c2005-08-12 09:36:32 -05001759 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
1760 struct ipw_fw_error *error =
1761 ipw_alloc_error_log(priv);
1762 ipw_dump_error_log(priv, error);
1763 if (error)
1764 ipw_free_error_log(error);
1765 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001766#endif
James Ketrenosb39860c2005-08-12 09:36:32 -05001767 } else {
1768 priv->error = ipw_alloc_error_log(priv);
1769 if (priv->error)
1770 IPW_ERROR("Sysfs 'error' log captured.\n");
1771 else
1772 IPW_ERROR("Error allocating sysfs 'error' "
1773 "log.\n");
1774#ifdef CONFIG_IPW_DEBUG
1775 if (ipw_debug_level & IPW_DL_FW_ERRORS)
1776 ipw_dump_error_log(priv, priv->error);
1777#endif
1778 }
1779
James Ketrenosb095c382005-08-24 22:04:42 -05001780 /* XXX: If hardware encryption is for WPA/WPA2,
1781 * we have to notify the supplicant. */
1782 if (priv->ieee->sec.encrypt) {
1783 priv->status &= ~STATUS_ASSOCIATED;
1784 notify_wx_assoc_event(priv);
1785 }
1786
1787 /* Keep the restart process from trying to send host
1788 * commands by clearing the INIT status bit */
1789 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001790
1791 /* Cancel currently queued command. */
1792 priv->status &= ~STATUS_HCMD_ACTIVE;
1793 wake_up_interruptible(&priv->wait_command_queue);
1794
James Ketrenos43f66a62005-03-25 12:31:53 -06001795 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05001796 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001797 }
1798
James Ketrenosb095c382005-08-24 22:04:42 -05001799 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001800 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001801 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001802 }
1803
1804 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001805 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06001806 }
1807
1808 /* enable all interrupts */
1809 ipw_enable_interrupts(priv);
1810
1811 spin_unlock_irqrestore(&priv->lock, flags);
1812}
Jeff Garzikbf794512005-07-31 13:07:26 -04001813
James Ketrenos43f66a62005-03-25 12:31:53 -06001814#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
1815static char *get_cmd_string(u8 cmd)
1816{
1817 switch (cmd) {
1818 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04001819 IPW_CMD(POWER_DOWN);
1820 IPW_CMD(SYSTEM_CONFIG);
1821 IPW_CMD(MULTICAST_ADDRESS);
1822 IPW_CMD(SSID);
1823 IPW_CMD(ADAPTER_ADDRESS);
1824 IPW_CMD(PORT_TYPE);
1825 IPW_CMD(RTS_THRESHOLD);
1826 IPW_CMD(FRAG_THRESHOLD);
1827 IPW_CMD(POWER_MODE);
1828 IPW_CMD(WEP_KEY);
1829 IPW_CMD(TGI_TX_KEY);
1830 IPW_CMD(SCAN_REQUEST);
1831 IPW_CMD(SCAN_REQUEST_EXT);
1832 IPW_CMD(ASSOCIATE);
1833 IPW_CMD(SUPPORTED_RATES);
1834 IPW_CMD(SCAN_ABORT);
1835 IPW_CMD(TX_FLUSH);
1836 IPW_CMD(QOS_PARAMETERS);
1837 IPW_CMD(DINO_CONFIG);
1838 IPW_CMD(RSN_CAPABILITIES);
1839 IPW_CMD(RX_KEY);
1840 IPW_CMD(CARD_DISABLE);
1841 IPW_CMD(SEED_NUMBER);
1842 IPW_CMD(TX_POWER);
1843 IPW_CMD(COUNTRY_INFO);
1844 IPW_CMD(AIRONET_INFO);
1845 IPW_CMD(AP_TX_POWER);
1846 IPW_CMD(CCKM_INFO);
1847 IPW_CMD(CCX_VER_INFO);
1848 IPW_CMD(SET_CALIBRATION);
1849 IPW_CMD(SENSITIVITY_CALIB);
1850 IPW_CMD(RETRY_LIMIT);
1851 IPW_CMD(IPW_PRE_POWER_DOWN);
1852 IPW_CMD(VAP_BEACON_TEMPLATE);
1853 IPW_CMD(VAP_DTIM_PERIOD);
1854 IPW_CMD(EXT_SUPPORTED_RATES);
1855 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
1856 IPW_CMD(VAP_QUIET_INTERVALS);
1857 IPW_CMD(VAP_CHANNEL_SWITCH);
1858 IPW_CMD(VAP_MANDATORY_CHANNELS);
1859 IPW_CMD(VAP_CELL_PWR_LIMIT);
1860 IPW_CMD(VAP_CF_PARAM_SET);
1861 IPW_CMD(VAP_SET_BEACONING_STATE);
1862 IPW_CMD(MEASUREMENT);
1863 IPW_CMD(POWER_CAPABILITY);
1864 IPW_CMD(SUPPORTED_CHANNELS);
1865 IPW_CMD(TPC_REPORT);
1866 IPW_CMD(WME_INFO);
1867 IPW_CMD(PRODUCTION_COMMAND);
1868 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06001869 return "UNKNOWN";
1870 }
1871}
James Ketrenos43f66a62005-03-25 12:31:53 -06001872
1873#define HOST_COMPLETE_TIMEOUT HZ
1874static int ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
1875{
1876 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001877 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06001878
James Ketrenosa613bff2005-08-24 21:43:11 -05001879 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001880 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001881 IPW_ERROR("Failed to send %s: Already sending a command.\n",
1882 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001883 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001884 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06001885 }
1886
1887 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001888
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001889 if (priv->cmdlog) {
1890 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
1891 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
1892 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
1893 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
1894 cmd->len);
1895 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
1896 }
1897
James Ketrenosb095c382005-08-24 22:04:42 -05001898 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1899 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1900 priv->status);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001901 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001902
1903 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, &cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001904 if (rc) {
1905 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001906 IPW_ERROR("Failed to send %s: Reason %d\n",
1907 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05001908 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001909 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001910 }
1911 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001912
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001913 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1914 !(priv->
1915 status & STATUS_HCMD_ACTIVE),
1916 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001917 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001918 spin_lock_irqsave(&priv->lock, flags);
1919 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001920 IPW_ERROR("Failed to send %s: Command timed out.\n",
1921 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001922 priv->status &= ~STATUS_HCMD_ACTIVE;
1923 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001924 rc = -EIO;
1925 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001926 }
1927 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05001928 } else
1929 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001930
James Ketrenosb095c382005-08-24 22:04:42 -05001931 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001932 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
1933 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001934 rc = -EIO;
1935 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06001936 }
1937
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001938 exit:
1939 if (priv->cmdlog) {
1940 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
1941 priv->cmdlog_pos %= priv->cmdlog_len;
1942 }
1943 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06001944}
1945
1946static int ipw_send_host_complete(struct ipw_priv *priv)
1947{
1948 struct host_cmd cmd = {
1949 .cmd = IPW_CMD_HOST_COMPLETE,
1950 .len = 0
1951 };
1952
1953 if (!priv) {
1954 IPW_ERROR("Invalid args\n");
1955 return -1;
1956 }
1957
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001958 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001959}
1960
Jeff Garzikbf794512005-07-31 13:07:26 -04001961static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06001962 struct ipw_sys_config *config)
1963{
1964 struct host_cmd cmd = {
1965 .cmd = IPW_CMD_SYSTEM_CONFIG,
1966 .len = sizeof(*config)
1967 };
1968
1969 if (!priv || !config) {
1970 IPW_ERROR("Invalid args\n");
1971 return -1;
1972 }
1973
James Ketrenosafbf30a2005-08-25 00:05:33 -05001974 memcpy(cmd.param, config, sizeof(*config));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001975 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001976}
1977
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001978static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06001979{
1980 struct host_cmd cmd = {
1981 .cmd = IPW_CMD_SSID,
1982 .len = min(len, IW_ESSID_MAX_SIZE)
1983 };
1984
1985 if (!priv || !ssid) {
1986 IPW_ERROR("Invalid args\n");
1987 return -1;
1988 }
1989
James Ketrenosafbf30a2005-08-25 00:05:33 -05001990 memcpy(cmd.param, ssid, cmd.len);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001991 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001992}
1993
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001994static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06001995{
1996 struct host_cmd cmd = {
1997 .cmd = IPW_CMD_ADAPTER_ADDRESS,
1998 .len = ETH_ALEN
1999 };
2000
2001 if (!priv || !mac) {
2002 IPW_ERROR("Invalid args\n");
2003 return -1;
2004 }
2005
2006 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
2007 priv->net_dev->name, MAC_ARG(mac));
2008
James Ketrenosafbf30a2005-08-25 00:05:33 -05002009 memcpy(cmd.param, mac, ETH_ALEN);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002010 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002011}
2012
James Ketrenosa613bff2005-08-24 21:43:11 -05002013/*
2014 * NOTE: This must be executed from our workqueue as it results in udelay
2015 * being called which may corrupt the keyboard if executed on default
2016 * workqueue
2017 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002018static void ipw_adapter_restart(void *adapter)
2019{
2020 struct ipw_priv *priv = adapter;
2021
2022 if (priv->status & STATUS_RF_KILL_MASK)
2023 return;
2024
2025 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002026
2027 if (priv->assoc_network &&
2028 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2029 ipw_remove_current_network(priv);
2030
James Ketrenos43f66a62005-03-25 12:31:53 -06002031 if (ipw_up(priv)) {
2032 IPW_ERROR("Failed to up device\n");
2033 return;
2034 }
2035}
2036
James Ketrenosc848d0a2005-08-24 21:56:24 -05002037static void ipw_bg_adapter_restart(void *data)
2038{
2039 struct ipw_priv *priv = data;
2040 down(&priv->sem);
2041 ipw_adapter_restart(data);
2042 up(&priv->sem);
2043}
2044
James Ketrenos43f66a62005-03-25 12:31:53 -06002045#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2046
2047static void ipw_scan_check(void *data)
2048{
2049 struct ipw_priv *priv = data;
2050 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2051 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Jeff Garzikbf794512005-07-31 13:07:26 -04002052 "adapter (%dms).\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002053 IPW_SCAN_CHECK_WATCHDOG / 100);
James Ketrenosa613bff2005-08-24 21:43:11 -05002054 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002055 }
2056}
2057
James Ketrenosc848d0a2005-08-24 21:56:24 -05002058static void ipw_bg_scan_check(void *data)
2059{
2060 struct ipw_priv *priv = data;
2061 down(&priv->sem);
2062 ipw_scan_check(data);
2063 up(&priv->sem);
2064}
2065
James Ketrenos43f66a62005-03-25 12:31:53 -06002066static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2067 struct ipw_scan_request_ext *request)
2068{
2069 struct host_cmd cmd = {
2070 .cmd = IPW_CMD_SCAN_REQUEST_EXT,
2071 .len = sizeof(*request)
2072 };
2073
James Ketrenosafbf30a2005-08-25 00:05:33 -05002074 memcpy(cmd.param, request, sizeof(*request));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002075 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002076}
2077
2078static int ipw_send_scan_abort(struct ipw_priv *priv)
2079{
2080 struct host_cmd cmd = {
2081 .cmd = IPW_CMD_SCAN_ABORT,
2082 .len = 0
2083 };
2084
2085 if (!priv) {
2086 IPW_ERROR("Invalid args\n");
2087 return -1;
2088 }
2089
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002090 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002091}
2092
2093static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2094{
2095 struct host_cmd cmd = {
2096 .cmd = IPW_CMD_SENSITIVITY_CALIB,
2097 .len = sizeof(struct ipw_sensitivity_calib)
2098 };
2099 struct ipw_sensitivity_calib *calib = (struct ipw_sensitivity_calib *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002100 &cmd.param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002101 calib->beacon_rssi_raw = sens;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002102 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002103}
2104
2105static int ipw_send_associate(struct ipw_priv *priv,
2106 struct ipw_associate *associate)
2107{
2108 struct host_cmd cmd = {
2109 .cmd = IPW_CMD_ASSOCIATE,
2110 .len = sizeof(*associate)
2111 };
2112
James Ketrenosa613bff2005-08-24 21:43:11 -05002113 struct ipw_associate tmp_associate;
2114 memcpy(&tmp_associate, associate, sizeof(*associate));
2115 tmp_associate.policy_support =
2116 cpu_to_le16(tmp_associate.policy_support);
2117 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
2118 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
2119 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
2120 tmp_associate.listen_interval =
2121 cpu_to_le16(tmp_associate.listen_interval);
2122 tmp_associate.beacon_interval =
2123 cpu_to_le16(tmp_associate.beacon_interval);
2124 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
2125
James Ketrenos43f66a62005-03-25 12:31:53 -06002126 if (!priv || !associate) {
2127 IPW_ERROR("Invalid args\n");
2128 return -1;
2129 }
2130
James Ketrenosafbf30a2005-08-25 00:05:33 -05002131 memcpy(cmd.param, &tmp_associate, sizeof(*associate));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002132 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002133}
2134
2135static int ipw_send_supported_rates(struct ipw_priv *priv,
2136 struct ipw_supported_rates *rates)
2137{
2138 struct host_cmd cmd = {
2139 .cmd = IPW_CMD_SUPPORTED_RATES,
2140 .len = sizeof(*rates)
2141 };
2142
2143 if (!priv || !rates) {
2144 IPW_ERROR("Invalid args\n");
2145 return -1;
2146 }
2147
James Ketrenosafbf30a2005-08-25 00:05:33 -05002148 memcpy(cmd.param, rates, sizeof(*rates));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002149 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002150}
2151
2152static int ipw_set_random_seed(struct ipw_priv *priv)
2153{
2154 struct host_cmd cmd = {
2155 .cmd = IPW_CMD_SEED_NUMBER,
2156 .len = sizeof(u32)
2157 };
2158
2159 if (!priv) {
2160 IPW_ERROR("Invalid args\n");
2161 return -1;
2162 }
2163
2164 get_random_bytes(&cmd.param, sizeof(u32));
2165
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002166 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002167}
2168
James Ketrenos43f66a62005-03-25 12:31:53 -06002169static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2170{
2171 struct host_cmd cmd = {
2172 .cmd = IPW_CMD_CARD_DISABLE,
2173 .len = sizeof(u32)
2174 };
2175
2176 if (!priv) {
2177 IPW_ERROR("Invalid args\n");
2178 return -1;
2179 }
2180
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002181 *((u32 *) & cmd.param) = phy_off;
James Ketrenos43f66a62005-03-25 12:31:53 -06002182
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002183 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002184}
James Ketrenos43f66a62005-03-25 12:31:53 -06002185
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002186static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002187{
2188 struct host_cmd cmd = {
2189 .cmd = IPW_CMD_TX_POWER,
2190 .len = sizeof(*power)
2191 };
2192
2193 if (!priv || !power) {
2194 IPW_ERROR("Invalid args\n");
2195 return -1;
2196 }
2197
James Ketrenosafbf30a2005-08-25 00:05:33 -05002198 memcpy(cmd.param, power, sizeof(*power));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002199 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002200}
James Ketrenos43f66a62005-03-25 12:31:53 -06002201
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002202static int ipw_set_tx_power(struct ipw_priv *priv)
2203{
Liu Hong1fe0adb2005-08-19 09:33:10 -05002204 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002205 struct ipw_tx_power tx_power;
2206 s8 max_power;
2207 int i;
2208
2209 memset(&tx_power, 0, sizeof(tx_power));
2210
2211 /* configure device for 'G' band */
2212 tx_power.ieee_mode = IPW_G_MODE;
2213 tx_power.num_channels = geo->bg_channels;
2214 for (i = 0; i < geo->bg_channels; i++) {
2215 max_power = geo->bg[i].max_power;
2216 tx_power.channels_tx_power[i].channel_number =
2217 geo->bg[i].channel;
2218 tx_power.channels_tx_power[i].tx_power = max_power ?
2219 min(max_power, priv->tx_power) : priv->tx_power;
2220 }
2221 if (ipw_send_tx_power(priv, &tx_power))
2222 return -EIO;
2223
2224 /* configure device to also handle 'B' band */
2225 tx_power.ieee_mode = IPW_B_MODE;
2226 if (ipw_send_tx_power(priv, &tx_power))
2227 return -EIO;
2228
2229 /* configure device to also handle 'A' band */
2230 if (priv->ieee->abg_true) {
2231 tx_power.ieee_mode = IPW_A_MODE;
2232 tx_power.num_channels = geo->a_channels;
2233 for (i = 0; i < tx_power.num_channels; i++) {
2234 max_power = geo->a[i].max_power;
2235 tx_power.channels_tx_power[i].channel_number =
2236 geo->a[i].channel;
2237 tx_power.channels_tx_power[i].tx_power = max_power ?
2238 min(max_power, priv->tx_power) : priv->tx_power;
2239 }
2240 if (ipw_send_tx_power(priv, &tx_power))
2241 return -EIO;
2242 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002243 return 0;
2244}
2245
2246static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2247{
2248 struct ipw_rts_threshold rts_threshold = {
2249 .rts_threshold = rts,
2250 };
2251 struct host_cmd cmd = {
2252 .cmd = IPW_CMD_RTS_THRESHOLD,
2253 .len = sizeof(rts_threshold)
2254 };
2255
2256 if (!priv) {
2257 IPW_ERROR("Invalid args\n");
2258 return -1;
2259 }
2260
James Ketrenosafbf30a2005-08-25 00:05:33 -05002261 memcpy(cmd.param, &rts_threshold, sizeof(rts_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002262 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002263}
2264
2265static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2266{
2267 struct ipw_frag_threshold frag_threshold = {
2268 .frag_threshold = frag,
2269 };
2270 struct host_cmd cmd = {
2271 .cmd = IPW_CMD_FRAG_THRESHOLD,
2272 .len = sizeof(frag_threshold)
2273 };
2274
2275 if (!priv) {
2276 IPW_ERROR("Invalid args\n");
2277 return -1;
2278 }
2279
James Ketrenosafbf30a2005-08-25 00:05:33 -05002280 memcpy(cmd.param, &frag_threshold, sizeof(frag_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002281 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002282}
2283
2284static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2285{
2286 struct host_cmd cmd = {
2287 .cmd = IPW_CMD_POWER_MODE,
2288 .len = sizeof(u32)
2289 };
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002290 u32 *param = (u32 *) (&cmd.param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002291
2292 if (!priv) {
2293 IPW_ERROR("Invalid args\n");
2294 return -1;
2295 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002296
James Ketrenos43f66a62005-03-25 12:31:53 -06002297 /* If on battery, set to 3, if AC set to CAM, else user
2298 * level */
2299 switch (mode) {
2300 case IPW_POWER_BATTERY:
2301 *param = IPW_POWER_INDEX_3;
2302 break;
2303 case IPW_POWER_AC:
2304 *param = IPW_POWER_MODE_CAM;
2305 break;
2306 default:
2307 *param = mode;
2308 break;
2309 }
2310
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002311 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002312}
2313
James Ketrenosafbf30a2005-08-25 00:05:33 -05002314static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2315{
2316 struct ipw_retry_limit retry_limit = {
2317 .short_retry_limit = slimit,
2318 .long_retry_limit = llimit
2319 };
2320 struct host_cmd cmd = {
2321 .cmd = IPW_CMD_RETRY_LIMIT,
2322 .len = sizeof(retry_limit)
2323 };
2324
2325 if (!priv) {
2326 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002327 return -1;
2328 }
2329
James Ketrenosafbf30a2005-08-25 00:05:33 -05002330 memcpy(cmd.param, &retry_limit, sizeof(retry_limit));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002331 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002332}
2333
2334/*
2335 * The IPW device contains a Microwire compatible EEPROM that stores
2336 * various data like the MAC address. Usually the firmware has exclusive
2337 * access to the eeprom, but during device initialization (before the
2338 * device driver has sent the HostComplete command to the firmware) the
2339 * device driver has read access to the EEPROM by way of indirect addressing
2340 * through a couple of memory mapped registers.
2341 *
2342 * The following is a simplified implementation for pulling data out of the
2343 * the eeprom, along with some helper functions to find information in
2344 * the per device private data's copy of the eeprom.
2345 *
2346 * NOTE: To better understand how these functions work (i.e what is a chip
2347 * select and why do have to keep driving the eeprom clock?), read
2348 * just about any data sheet for a Microwire compatible EEPROM.
2349 */
2350
2351/* write a 32 bit value into the indirect accessor register */
2352static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2353{
2354 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002355
James Ketrenos43f66a62005-03-25 12:31:53 -06002356 /* the eeprom requires some time to complete the operation */
2357 udelay(p->eeprom_delay);
2358
2359 return;
2360}
2361
2362/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002363static inline void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002364{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002365 eeprom_write_reg(priv, 0);
2366 eeprom_write_reg(priv, EEPROM_BIT_CS);
2367 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2368 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002369}
2370
2371/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002372static inline void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002373{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002374 eeprom_write_reg(priv, EEPROM_BIT_CS);
2375 eeprom_write_reg(priv, 0);
2376 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002377}
2378
2379/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002380static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002381{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002382 int d = (bit ? EEPROM_BIT_DI : 0);
2383 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2384 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002385}
2386
2387/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002388static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002389{
2390 int i;
2391
2392 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002393 eeprom_write_bit(priv, 1);
2394 eeprom_write_bit(priv, op & 2);
2395 eeprom_write_bit(priv, op & 1);
2396 for (i = 7; i >= 0; i--) {
2397 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002398 }
2399}
2400
2401/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002402static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002403{
2404 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002405 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002406
James Ketrenos43f66a62005-03-25 12:31:53 -06002407 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002408 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002409
2410 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002411 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002412
2413 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002414 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002415 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002416 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2417 eeprom_write_reg(priv, EEPROM_BIT_CS);
2418 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2419 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002420 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002421
James Ketrenos43f66a62005-03-25 12:31:53 -06002422 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002423 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002424 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002425
James Ketrenos43f66a62005-03-25 12:31:53 -06002426 return r;
2427}
2428
2429/* helper function for pulling the mac address out of the private */
2430/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002431static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002432{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002433 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002434}
2435
2436/*
2437 * Either the device driver (i.e. the host) or the firmware can
2438 * load eeprom data into the designated region in SRAM. If neither
2439 * happens then the FW will shutdown with a fatal error.
2440 *
2441 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2442 * bit needs region of shared SRAM needs to be non-zero.
2443 */
2444static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2445{
2446 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002447 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002448
James Ketrenos43f66a62005-03-25 12:31:53 -06002449 IPW_DEBUG_TRACE(">>\n");
2450
2451 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002452 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002453 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002454
Jeff Garzikbf794512005-07-31 13:07:26 -04002455 /*
2456 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002457 copy. Otherwise let the firmware know to perform the operation
2458 on it's own
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002459 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002460 if ((priv->eeprom + EEPROM_VERSION) != 0) {
2461 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2462
2463 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002464 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002465 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002466
2467 /* Do not load eeprom data on fatal error or suspend */
2468 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2469 } else {
2470 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2471
2472 /* Load eeprom data on fatal error or suspend */
2473 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2474 }
2475
2476 IPW_DEBUG_TRACE("<<\n");
2477}
2478
James Ketrenos43f66a62005-03-25 12:31:53 -06002479static inline void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
2480{
2481 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002482 if (!count)
2483 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002484 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002485 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002486 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002487}
2488
2489static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2490{
James Ketrenosb095c382005-08-24 22:04:42 -05002491 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002492 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002493 sizeof(struct command_block));
2494}
2495
2496static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002497{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002498
2499 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002500
James Ketrenos43f66a62005-03-25 12:31:53 -06002501 /* Start the dma */
2502 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002503
James Ketrenos43f66a62005-03-25 12:31:53 -06002504 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002505 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002506
2507 IPW_DEBUG_FW("<< : \n");
2508 return 0;
2509}
2510
2511static void ipw_fw_dma_abort(struct ipw_priv *priv)
2512{
2513 u32 control = 0;
2514
2515 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002516
2517 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002518 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002519 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002520 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002521
James Ketrenos43f66a62005-03-25 12:31:53 -06002522 IPW_DEBUG_FW("<< \n");
2523}
2524
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002525static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2526 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002527{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002528 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002529 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002530 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002531 IPW_DEBUG_FW(">> :\n");
2532
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002533 ipw_write_indirect(priv, address, (u8 *) cb,
2534 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002535
2536 IPW_DEBUG_FW("<< :\n");
2537 return 0;
2538
2539}
2540
2541static int ipw_fw_dma_kick(struct ipw_priv *priv)
2542{
2543 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002544 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002545
2546 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002547
James Ketrenos43f66a62005-03-25 12:31:53 -06002548 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002549 ipw_fw_dma_write_command_block(priv, index,
2550 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002551
2552 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002553 ipw_clear_bit(priv, IPW_RESET_REG,
2554 IPW_RESET_REG_MASTER_DISABLED |
2555 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002556
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002557 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002558 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002559 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002560
2561 IPW_DEBUG_FW("<< :\n");
2562 return 0;
2563}
2564
2565static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2566{
2567 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002568 u32 register_value = 0;
2569 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002570
2571 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002572 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002573 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002574
2575 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002576 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2577 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002578
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002579 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002580 cb_fields_address = address;
2581 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002582 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002583
2584 cb_fields_address += sizeof(u32);
2585 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002586 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002587
2588 cb_fields_address += sizeof(u32);
2589 register_value = ipw_read_reg32(priv, cb_fields_address);
2590 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2591 register_value);
2592
2593 cb_fields_address += sizeof(u32);
2594 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002595 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002596
2597 IPW_DEBUG_FW(">> :\n");
2598}
2599
2600static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2601{
2602 u32 current_cb_address = 0;
2603 u32 current_cb_index = 0;
2604
2605 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002606 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002607
James Ketrenosb095c382005-08-24 22:04:42 -05002608 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002609 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002610
James Ketrenos43f66a62005-03-25 12:31:53 -06002611 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002612 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002613
2614 IPW_DEBUG_FW(">> :\n");
2615 return current_cb_index;
2616
2617}
2618
2619static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2620 u32 src_address,
2621 u32 dest_address,
2622 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002623 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002624{
2625
Jeff Garzikbf794512005-07-31 13:07:26 -04002626 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002627 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2628 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002629 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002630 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002631
2632 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2633 src_address, dest_address, length);
2634
2635 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2636 return -1;
2637
2638 last_cb_element = priv->sram_desc.last_cb_index;
2639 cb = &priv->sram_desc.cb_list[last_cb_element];
2640 priv->sram_desc.last_cb_index++;
2641
2642 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002643 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002644 control |= CB_INT_ENABLED;
2645
2646 if (is_last)
2647 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002648
James Ketrenos43f66a62005-03-25 12:31:53 -06002649 control |= length;
2650
2651 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002652 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002653
2654 /* Copy the Source and Destination addresses */
2655 cb->dest_addr = dest_address;
2656 cb->source_addr = src_address;
2657
2658 /* Copy the Control Word last */
2659 cb->control = control;
2660
2661 return 0;
2662}
2663
2664static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002665 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002666{
2667 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002668 u32 src_offset = 0;
2669 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002670 int status = 0;
2671 IPW_DEBUG_FW(">> \n");
2672 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2673 src_phys, dest_address, length);
2674 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002675 status = ipw_fw_dma_add_command_block(priv,
2676 src_phys + src_offset,
2677 dest_address +
2678 dest_offset,
2679 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002680 if (status) {
2681 IPW_DEBUG_FW_INFO(": Failed\n");
2682 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002683 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002684 IPW_DEBUG_FW_INFO(": Added new cb\n");
2685
2686 src_offset += CB_MAX_LENGTH;
2687 dest_offset += CB_MAX_LENGTH;
2688 bytes_left -= CB_MAX_LENGTH;
2689 }
2690
2691 /* add the buffer tail */
2692 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002693 status =
2694 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2695 dest_address + dest_offset,
2696 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002697 if (status) {
2698 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2699 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002700 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002701 IPW_DEBUG_FW_INFO
2702 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002703 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002704
James Ketrenos43f66a62005-03-25 12:31:53 -06002705 IPW_DEBUG_FW("<< \n");
2706 return 0;
2707}
2708
2709static int ipw_fw_dma_wait(struct ipw_priv *priv)
2710{
2711 u32 current_index = 0;
2712 u32 watchdog = 0;
2713
2714 IPW_DEBUG_FW(">> : \n");
2715
2716 current_index = ipw_fw_dma_command_block_index(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002717 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%8X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002718 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002719
2720 while (current_index < priv->sram_desc.last_cb_index) {
2721 udelay(50);
2722 current_index = ipw_fw_dma_command_block_index(priv);
2723
2724 watchdog++;
2725
2726 if (watchdog > 400) {
2727 IPW_DEBUG_FW_INFO("Timeout\n");
2728 ipw_fw_dma_dump_command_block(priv);
2729 ipw_fw_dma_abort(priv);
2730 return -1;
2731 }
2732 }
2733
2734 ipw_fw_dma_abort(priv);
2735
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002736 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002737 ipw_set_bit(priv, IPW_RESET_REG,
2738 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002739
2740 IPW_DEBUG_FW("<< dmaWaitSync \n");
2741 return 0;
2742}
2743
Jeff Garzikbf794512005-07-31 13:07:26 -04002744static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002745{
2746 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002747 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002748 unsigned long flags;
2749
2750 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002751 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2752 network = list_entry(element, struct ieee80211_network, list);
2753 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2754 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002755 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002756 &priv->ieee->network_free_list);
2757 }
2758 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002759 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002760}
2761
2762/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002763 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002764 * Reads debug register from domain0.
2765 * If card is present, pre-defined value should
2766 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002767 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002768 * @param priv
2769 * @return 1 if card is present, 0 otherwise
2770 */
2771static inline int ipw_alive(struct ipw_priv *priv)
2772{
2773 return ipw_read32(priv, 0x90) == 0xd55555d5;
2774}
2775
2776static inline int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
2777 int timeout)
2778{
2779 int i = 0;
2780
2781 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002782 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002783 return i;
2784 mdelay(10);
2785 i += 10;
2786 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002787
James Ketrenos43f66a62005-03-25 12:31:53 -06002788 return -ETIME;
2789}
2790
Jeff Garzikbf794512005-07-31 13:07:26 -04002791/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002792 * the ipw hardware. It assumes the buffer has all the bits for the
2793 * image and the caller is handling the memory allocation and clean up.
2794 */
2795
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002796static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002797{
2798 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002799
James Ketrenos43f66a62005-03-25 12:31:53 -06002800 IPW_DEBUG_TRACE(">> \n");
2801 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002802 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002803
James Ketrenosb095c382005-08-24 22:04:42 -05002804 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2805 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002806 if (rc < 0) {
2807 IPW_ERROR("stop master failed in 10ms\n");
2808 return -1;
2809 }
2810
2811 IPW_DEBUG_INFO("stop master %dms\n", rc);
2812
2813 return rc;
2814}
2815
2816static void ipw_arc_release(struct ipw_priv *priv)
2817{
2818 IPW_DEBUG_TRACE(">> \n");
2819 mdelay(5);
2820
James Ketrenosb095c382005-08-24 22:04:42 -05002821 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002822
2823 /* no one knows timing, for safety add some delay */
2824 mdelay(5);
2825}
2826
2827struct fw_header {
2828 u32 version;
2829 u32 mode;
2830};
2831
2832struct fw_chunk {
2833 u32 address;
2834 u32 length;
2835};
2836
2837#define IPW_FW_MAJOR_VERSION 2
James Ketrenos81715372005-08-25 01:37:28 -05002838#define IPW_FW_MINOR_VERSION 4
James Ketrenos43f66a62005-03-25 12:31:53 -06002839
2840#define IPW_FW_MINOR(x) ((x & 0xff) >> 8)
2841#define IPW_FW_MAJOR(x) (x & 0xff)
2842
James Ketrenosafbf30a2005-08-25 00:05:33 -05002843#define IPW_FW_VERSION ((IPW_FW_MINOR_VERSION << 8) | IPW_FW_MAJOR_VERSION)
James Ketrenos43f66a62005-03-25 12:31:53 -06002844
2845#define IPW_FW_PREFIX "ipw-" __stringify(IPW_FW_MAJOR_VERSION) \
2846"." __stringify(IPW_FW_MINOR_VERSION) "-"
2847
2848#if IPW_FW_MAJOR_VERSION >= 2 && IPW_FW_MINOR_VERSION > 0
2849#define IPW_FW_NAME(x) IPW_FW_PREFIX "" x ".fw"
2850#else
2851#define IPW_FW_NAME(x) "ipw2200_" x ".fw"
2852#endif
2853
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002854static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002855{
2856 int rc = 0, i, addr;
2857 u8 cr = 0;
2858 u16 *image;
2859
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002860 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002861
James Ketrenos43f66a62005-03-25 12:31:53 -06002862 IPW_DEBUG_TRACE(">> \n");
2863
2864 rc = ipw_stop_master(priv);
2865
2866 if (rc < 0)
2867 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002868
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002869// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002870
James Ketrenosb095c382005-08-24 22:04:42 -05002871 for (addr = IPW_SHARED_LOWER_BOUND;
2872 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002873 ipw_write32(priv, addr, 0);
2874 }
2875
2876 /* no ucode (yet) */
2877 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2878 /* destroy DMA queues */
2879 /* reset sequence */
2880
James Ketrenosb095c382005-08-24 22:04:42 -05002881 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002882 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002883 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002884 mdelay(1);
2885
2886 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002887 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002888 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002889
James Ketrenosb095c382005-08-24 22:04:42 -05002890 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002891 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002892
James Ketrenos43f66a62005-03-25 12:31:53 -06002893 /* enable ucode store */
2894 ipw_write_reg8(priv, DINO_CONTROL_REG, 0x0);
2895 ipw_write_reg8(priv, DINO_CONTROL_REG, DINO_ENABLE_CS);
2896 mdelay(1);
2897
2898 /* write ucode */
2899 /**
2900 * @bug
2901 * Do NOT set indirect address register once and then
2902 * store data to indirect data register in the loop.
2903 * It seems very reasonable, but in this case DINO do not
2904 * accept ucode. It is essential to set address each time.
2905 */
2906 /* load new ipw uCode */
2907 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002908 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002909 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002910
James Ketrenos43f66a62005-03-25 12:31:53 -06002911 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002912 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2913 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002914
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002915 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002916
2917 /* wait for alive response */
2918 for (i = 0; i < 100; i++) {
2919 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002920 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002921 if (cr & DINO_RXFIFO_DATA)
2922 break;
2923 mdelay(1);
2924 }
2925
2926 if (cr & DINO_RXFIFO_DATA) {
2927 /* alive_command_responce size is NOT multiple of 4 */
2928 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002929
2930 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002931 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002932 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002933 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002934 memcpy(&priv->dino_alive, response_buffer,
2935 sizeof(priv->dino_alive));
2936 if (priv->dino_alive.alive_command == 1
2937 && priv->dino_alive.ucode_valid == 1) {
2938 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002939 IPW_DEBUG_INFO
2940 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2941 "of %02d/%02d/%02d %02d:%02d\n",
2942 priv->dino_alive.software_revision,
2943 priv->dino_alive.software_revision,
2944 priv->dino_alive.device_identifier,
2945 priv->dino_alive.device_identifier,
2946 priv->dino_alive.time_stamp[0],
2947 priv->dino_alive.time_stamp[1],
2948 priv->dino_alive.time_stamp[2],
2949 priv->dino_alive.time_stamp[3],
2950 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002951 } else {
2952 IPW_DEBUG_INFO("Microcode is not alive\n");
2953 rc = -EINVAL;
2954 }
2955 } else {
2956 IPW_DEBUG_INFO("No alive response from DINO\n");
2957 rc = -ETIME;
2958 }
2959
2960 /* disable DINO, otherwise for some reason
2961 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002962 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002963
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002964// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002965
2966 return rc;
2967}
2968
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002969static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002970{
2971 int rc = -1;
2972 int offset = 0;
2973 struct fw_chunk *chunk;
2974 dma_addr_t shared_phys;
2975 u8 *shared_virt;
2976
2977 IPW_DEBUG_TRACE("<< : \n");
2978 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2979
2980 if (!shared_virt)
2981 return -ENOMEM;
2982
2983 memmove(shared_virt, data, len);
2984
2985 /* Start the Dma */
2986 rc = ipw_fw_dma_enable(priv);
2987
2988 if (priv->sram_desc.last_cb_index > 0) {
2989 /* the DMA is already ready this would be a bug. */
2990 BUG();
2991 goto out;
2992 }
2993
2994 do {
2995 chunk = (struct fw_chunk *)(data + offset);
2996 offset += sizeof(struct fw_chunk);
2997 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04002998 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06002999 * offeset*/
3000 /* Dma loading */
3001 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05003002 le32_to_cpu(chunk->address),
3003 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06003004 if (rc) {
3005 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3006 goto out;
3007 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003008
James Ketrenosa613bff2005-08-24 21:43:11 -05003009 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06003010 } while (offset < len);
3011
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003012 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06003013 rc = ipw_fw_dma_kick(priv);
3014 if (rc) {
3015 IPW_ERROR("dmaKick Failed\n");
3016 goto out;
3017 }
3018
3019 rc = ipw_fw_dma_wait(priv);
3020 if (rc) {
3021 IPW_ERROR("dmaWaitSync Failed\n");
3022 goto out;
3023 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003024 out:
3025 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06003026 return rc;
3027}
3028
3029/* stop nic */
3030static int ipw_stop_nic(struct ipw_priv *priv)
3031{
3032 int rc = 0;
3033
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003034 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003035 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003036
James Ketrenosb095c382005-08-24 22:04:42 -05003037 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3038 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003039 if (rc < 0) {
3040 IPW_ERROR("wait for reg master disabled failed\n");
3041 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003042 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003043
James Ketrenosb095c382005-08-24 22:04:42 -05003044 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003045
James Ketrenos43f66a62005-03-25 12:31:53 -06003046 return rc;
3047}
3048
3049static void ipw_start_nic(struct ipw_priv *priv)
3050{
3051 IPW_DEBUG_TRACE(">>\n");
3052
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003053 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003054 ipw_clear_bit(priv, IPW_RESET_REG,
3055 IPW_RESET_REG_MASTER_DISABLED |
3056 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003057 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003058
James Ketrenos43f66a62005-03-25 12:31:53 -06003059 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003060 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3061 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003062
3063 IPW_DEBUG_TRACE("<<\n");
3064}
Jeff Garzikbf794512005-07-31 13:07:26 -04003065
James Ketrenos43f66a62005-03-25 12:31:53 -06003066static int ipw_init_nic(struct ipw_priv *priv)
3067{
3068 int rc;
3069
3070 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003071 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003072 /*prvHwInitNic */
3073 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003074 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003075
3076 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003077 ipw_write32(priv, IPW_READ_INT_REGISTER,
3078 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003079
3080 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003081 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3082 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003083 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003084 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3085
3086 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003087 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003088
3089 udelay(10);
3090
3091 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003092 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003093
3094 IPW_DEBUG_TRACE(">>\n");
3095 return 0;
3096}
3097
Jeff Garzikbf794512005-07-31 13:07:26 -04003098/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003099 * Probe is an ok place to call this from.
3100 */
3101static int ipw_reset_nic(struct ipw_priv *priv)
3102{
3103 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003104 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003105
3106 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003107
James Ketrenos43f66a62005-03-25 12:31:53 -06003108 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003109
James Ketrenosa613bff2005-08-24 21:43:11 -05003110 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003111 /* Clear the 'host command active' bit... */
3112 priv->status &= ~STATUS_HCMD_ACTIVE;
3113 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003114 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3115 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003116 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003117
3118 IPW_DEBUG_TRACE("<<\n");
3119 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003120}
James Ketrenos43f66a62005-03-25 12:31:53 -06003121
Jeff Garzikbf794512005-07-31 13:07:26 -04003122static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003123 const struct firmware **fw, const char *name)
3124{
3125 struct fw_header *header;
3126 int rc;
3127
3128 /* ask firmware_class module to get the boot firmware off disk */
3129 rc = request_firmware(fw, name, &priv->pci_dev->dev);
3130 if (rc < 0) {
3131 IPW_ERROR("%s load failed: Reason %d\n", name, rc);
3132 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003133 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003134
3135 header = (struct fw_header *)(*fw)->data;
James Ketrenosa613bff2005-08-24 21:43:11 -05003136 if (IPW_FW_MAJOR(le32_to_cpu(header->version)) != IPW_FW_MAJOR_VERSION) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003137 IPW_ERROR("'%s' firmware version not compatible (%d != %d)\n",
3138 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003139 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3140 IPW_FW_MAJOR_VERSION);
James Ketrenos43f66a62005-03-25 12:31:53 -06003141 return -EINVAL;
3142 }
3143
Jiri Bencaaa4d302005-06-07 14:58:41 +02003144 IPW_DEBUG_INFO("Loading firmware '%s' file v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003145 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003146 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3147 IPW_FW_MINOR(le32_to_cpu(header->version)),
James Ketrenos43f66a62005-03-25 12:31:53 -06003148 (*fw)->size - sizeof(struct fw_header));
3149 return 0;
3150}
3151
James Ketrenosb095c382005-08-24 22:04:42 -05003152#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003153
3154static inline void ipw_rx_queue_reset(struct ipw_priv *priv,
3155 struct ipw_rx_queue *rxq)
3156{
3157 unsigned long flags;
3158 int i;
3159
3160 spin_lock_irqsave(&rxq->lock, flags);
3161
3162 INIT_LIST_HEAD(&rxq->rx_free);
3163 INIT_LIST_HEAD(&rxq->rx_used);
3164
3165 /* Fill the rx_used queue with _all_ of the Rx buffers */
3166 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3167 /* In the reset function, these buffers may have been allocated
3168 * to an SKB, so we need to unmap and free potential storage */
3169 if (rxq->pool[i].skb != NULL) {
3170 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003171 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003172 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003173 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003174 }
3175 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3176 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003177
James Ketrenos43f66a62005-03-25 12:31:53 -06003178 /* Set us so that we have processed and used all buffers, but have
3179 * not restocked the Rx queue with fresh buffers */
3180 rxq->read = rxq->write = 0;
3181 rxq->processed = RX_QUEUE_SIZE - 1;
3182 rxq->free_count = 0;
3183 spin_unlock_irqrestore(&rxq->lock, flags);
3184}
3185
3186#ifdef CONFIG_PM
3187static int fw_loaded = 0;
3188static const struct firmware *bootfw = NULL;
3189static const struct firmware *firmware = NULL;
3190static const struct firmware *ucode = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003191
3192static void free_firmware(void)
3193{
3194 if (fw_loaded) {
3195 release_firmware(bootfw);
3196 release_firmware(ucode);
3197 release_firmware(firmware);
3198 bootfw = ucode = firmware = NULL;
3199 fw_loaded = 0;
3200 }
3201}
3202#else
3203#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003204#endif
3205
3206static int ipw_load(struct ipw_priv *priv)
3207{
3208#ifndef CONFIG_PM
3209 const struct firmware *bootfw = NULL;
3210 const struct firmware *firmware = NULL;
3211 const struct firmware *ucode = NULL;
3212#endif
3213 int rc = 0, retries = 3;
3214
3215#ifdef CONFIG_PM
3216 if (!fw_loaded) {
3217#endif
3218 rc = ipw_get_fw(priv, &bootfw, IPW_FW_NAME("boot"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003219 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003220 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003221
James Ketrenos43f66a62005-03-25 12:31:53 -06003222 switch (priv->ieee->iw_mode) {
3223 case IW_MODE_ADHOC:
Jeff Garzikbf794512005-07-31 13:07:26 -04003224 rc = ipw_get_fw(priv, &ucode,
James Ketrenos43f66a62005-03-25 12:31:53 -06003225 IPW_FW_NAME("ibss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003226 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003227 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003228
James Ketrenos43f66a62005-03-25 12:31:53 -06003229 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("ibss"));
3230 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003231
James Ketrenosb095c382005-08-24 22:04:42 -05003232#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06003233 case IW_MODE_MONITOR:
Jeff Garzikbf794512005-07-31 13:07:26 -04003234 rc = ipw_get_fw(priv, &ucode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003235 IPW_FW_NAME("sniffer_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003236 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003237 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003238
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003239 rc = ipw_get_fw(priv, &firmware,
3240 IPW_FW_NAME("sniffer"));
James Ketrenos43f66a62005-03-25 12:31:53 -06003241 break;
3242#endif
3243 case IW_MODE_INFRA:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003244 rc = ipw_get_fw(priv, &ucode, IPW_FW_NAME("bss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003245 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003246 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003247
James Ketrenos43f66a62005-03-25 12:31:53 -06003248 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("bss"));
3249 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003250
James Ketrenos43f66a62005-03-25 12:31:53 -06003251 default:
3252 rc = -EINVAL;
3253 }
3254
Jeff Garzikbf794512005-07-31 13:07:26 -04003255 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003256 goto error;
3257
3258#ifdef CONFIG_PM
3259 fw_loaded = 1;
3260 }
3261#endif
3262
3263 if (!priv->rxq)
3264 priv->rxq = ipw_rx_queue_alloc(priv);
3265 else
3266 ipw_rx_queue_reset(priv, priv->rxq);
3267 if (!priv->rxq) {
3268 IPW_ERROR("Unable to initialize Rx queue\n");
3269 goto error;
3270 }
3271
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003272 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003273 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003274 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003275 priv->status &= ~STATUS_INT_ENABLED;
3276
3277 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003278 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003279
James Ketrenos43f66a62005-03-25 12:31:53 -06003280 ipw_stop_nic(priv);
3281
3282 rc = ipw_reset_nic(priv);
3283 if (rc) {
3284 IPW_ERROR("Unable to reset NIC\n");
3285 goto error;
3286 }
3287
James Ketrenosb095c382005-08-24 22:04:42 -05003288 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3289 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003290
3291 /* DMA the initial boot firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003292 rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003293 bootfw->size - sizeof(struct fw_header));
3294 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003295 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003296 goto error;
3297 }
3298
3299 /* kick start the device */
3300 ipw_start_nic(priv);
3301
3302 /* wait for the device to finish it's initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003303 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3304 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003305 if (rc < 0) {
3306 IPW_ERROR("device failed to boot initial fw image\n");
3307 goto error;
3308 }
3309 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3310
Jeff Garzikbf794512005-07-31 13:07:26 -04003311 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003312 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003313
3314 /* DMA the ucode into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003315 rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003316 ucode->size - sizeof(struct fw_header));
3317 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003318 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003319 goto error;
3320 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003321
James Ketrenos43f66a62005-03-25 12:31:53 -06003322 /* stop nic */
3323 ipw_stop_nic(priv);
3324
3325 /* DMA bss firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003326 rc = ipw_load_firmware(priv, firmware->data +
3327 sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003328 firmware->size - sizeof(struct fw_header));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003329 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003330 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003331 goto error;
3332 }
3333
3334 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3335
3336 rc = ipw_queue_reset(priv);
3337 if (rc) {
3338 IPW_ERROR("Unable to initialize queues\n");
3339 goto error;
3340 }
3341
3342 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003343 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003344 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003345 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003346
James Ketrenos43f66a62005-03-25 12:31:53 -06003347 /* kick start the device */
3348 ipw_start_nic(priv);
3349
James Ketrenosb095c382005-08-24 22:04:42 -05003350 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003351 if (retries > 0) {
3352 IPW_WARNING("Parity error. Retrying init.\n");
3353 retries--;
3354 goto retry;
3355 }
3356
3357 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3358 rc = -EIO;
3359 goto error;
3360 }
3361
3362 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003363 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3364 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003365 if (rc < 0) {
3366 IPW_ERROR("device failed to start after 500ms\n");
3367 goto error;
3368 }
3369 IPW_DEBUG_INFO("device response after %dms\n", rc);
3370
3371 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003372 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003373
3374 /* read eeprom data and initialize the eeprom region of sram */
3375 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003376 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003377
3378 /* enable interrupts */
3379 ipw_enable_interrupts(priv);
3380
3381 /* Ensure our queue has valid packets */
3382 ipw_rx_queue_replenish(priv);
3383
James Ketrenosb095c382005-08-24 22:04:42 -05003384 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003385
3386 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003387 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003388
3389#ifndef CONFIG_PM
3390 release_firmware(bootfw);
3391 release_firmware(ucode);
3392 release_firmware(firmware);
3393#endif
3394 return 0;
3395
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003396 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003397 if (priv->rxq) {
3398 ipw_rx_queue_free(priv, priv->rxq);
3399 priv->rxq = NULL;
3400 }
3401 ipw_tx_queue_free(priv);
3402 if (bootfw)
3403 release_firmware(bootfw);
3404 if (ucode)
3405 release_firmware(ucode);
3406 if (firmware)
3407 release_firmware(firmware);
3408#ifdef CONFIG_PM
3409 fw_loaded = 0;
3410 bootfw = ucode = firmware = NULL;
3411#endif
3412
3413 return rc;
3414}
3415
Jeff Garzikbf794512005-07-31 13:07:26 -04003416/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003417 * DMA services
3418 *
3419 * Theory of operation
3420 *
3421 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3422 * 2 empty entries always kept in the buffer to protect from overflow.
3423 *
3424 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003425 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3426 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003427 * Tx queue resumed.
3428 *
3429 * The IPW operates with six queues, one receive queue in the device's
3430 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003431 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003432 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003433 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003434 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003435 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003436 * we only utilize the first data transmit queue (queue1).
3437 */
3438
3439/**
3440 * Driver allocates buffers of this size for Rx
3441 */
3442
3443static inline int ipw_queue_space(const struct clx2_queue *q)
3444{
3445 int s = q->last_used - q->first_empty;
3446 if (s <= 0)
3447 s += q->n_bd;
3448 s -= 2; /* keep some reserve to not confuse empty and full situations */
3449 if (s < 0)
3450 s = 0;
3451 return s;
3452}
3453
3454static inline int ipw_queue_inc_wrap(int index, int n_bd)
3455{
3456 return (++index == n_bd) ? 0 : index;
3457}
3458
3459/**
3460 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003461 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003462 * @param q queue to init
3463 * @param count Number of BD's to allocate. Should be power of 2
3464 * @param read_register Address for 'read' register
3465 * (not offset within BAR, full address)
3466 * @param write_register Address for 'write' register
3467 * (not offset within BAR, full address)
3468 * @param base_register Address for 'base' register
3469 * (not offset within BAR, full address)
3470 * @param size Address for 'size' register
3471 * (not offset within BAR, full address)
3472 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003473static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003474 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003475{
3476 q->n_bd = count;
3477
3478 q->low_mark = q->n_bd / 4;
3479 if (q->low_mark < 4)
3480 q->low_mark = 4;
3481
3482 q->high_mark = q->n_bd / 8;
3483 if (q->high_mark < 2)
3484 q->high_mark = 2;
3485
3486 q->first_empty = q->last_used = 0;
3487 q->reg_r = read;
3488 q->reg_w = write;
3489
3490 ipw_write32(priv, base, q->dma_addr);
3491 ipw_write32(priv, size, count);
3492 ipw_write32(priv, read, 0);
3493 ipw_write32(priv, write, 0);
3494
3495 _ipw_read32(priv, 0x90);
3496}
3497
Jeff Garzikbf794512005-07-31 13:07:26 -04003498static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003499 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003500 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003501{
3502 struct pci_dev *dev = priv->pci_dev;
3503
3504 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3505 if (!q->txb) {
3506 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3507 return -ENOMEM;
3508 }
3509
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003510 q->bd =
3511 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003512 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003513 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003514 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003515 kfree(q->txb);
3516 q->txb = NULL;
3517 return -ENOMEM;
3518 }
3519
3520 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3521 return 0;
3522}
3523
3524/**
3525 * Free one TFD, those at index [txq->q.last_used].
3526 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003527 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003528 * @param dev
3529 * @param txq
3530 */
3531static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3532 struct clx2_tx_queue *txq)
3533{
3534 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3535 struct pci_dev *dev = priv->pci_dev;
3536 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003537
James Ketrenos43f66a62005-03-25 12:31:53 -06003538 /* classify bd */
3539 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3540 /* nothing to cleanup after for host commands */
3541 return;
3542
3543 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003544 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3545 IPW_ERROR("Too many chunks: %i\n",
3546 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003547 /** @todo issue fatal error, it is quite serious situation */
3548 return;
3549 }
3550
3551 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003552 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3553 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3554 le16_to_cpu(bd->u.data.chunk_len[i]),
3555 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003556 if (txq->txb[txq->q.last_used]) {
3557 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3558 txq->txb[txq->q.last_used] = NULL;
3559 }
3560 }
3561}
3562
3563/**
3564 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003565 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003566 * Empty queue by removing and destroying all BD's.
3567 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003568 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003569 * @param dev
3570 * @param q
3571 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003572static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003573{
3574 struct clx2_queue *q = &txq->q;
3575 struct pci_dev *dev = priv->pci_dev;
3576
Jeff Garzikbf794512005-07-31 13:07:26 -04003577 if (q->n_bd == 0)
3578 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003579
3580 /* first, empty all BD's */
3581 for (; q->first_empty != q->last_used;
3582 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3583 ipw_queue_tx_free_tfd(priv, txq);
3584 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003585
James Ketrenos43f66a62005-03-25 12:31:53 -06003586 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003587 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003588 q->dma_addr);
3589 kfree(txq->txb);
3590
3591 /* 0 fill whole structure */
3592 memset(txq, 0, sizeof(*txq));
3593}
3594
James Ketrenos43f66a62005-03-25 12:31:53 -06003595/**
3596 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003597 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003598 * @param priv
3599 */
3600static void ipw_tx_queue_free(struct ipw_priv *priv)
3601{
3602 /* Tx CMD queue */
3603 ipw_queue_tx_free(priv, &priv->txq_cmd);
3604
3605 /* Tx queues */
3606 ipw_queue_tx_free(priv, &priv->txq[0]);
3607 ipw_queue_tx_free(priv, &priv->txq[1]);
3608 ipw_queue_tx_free(priv, &priv->txq[2]);
3609 ipw_queue_tx_free(priv, &priv->txq[3]);
3610}
3611
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003612static inline void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003613{
3614 /* First 3 bytes are manufacturer */
3615 bssid[0] = priv->mac_addr[0];
3616 bssid[1] = priv->mac_addr[1];
3617 bssid[2] = priv->mac_addr[2];
3618
3619 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003620 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003621
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003622 bssid[0] &= 0xfe; /* clear multicast bit */
3623 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003624}
3625
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003626static inline u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003627{
3628 struct ipw_station_entry entry;
3629 int i;
3630
3631 for (i = 0; i < priv->num_stations; i++) {
3632 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3633 /* Another node is active in network */
3634 priv->missed_adhoc_beacons = 0;
3635 if (!(priv->config & CFG_STATIC_CHANNEL))
3636 /* when other nodes drop out, we drop out */
3637 priv->config &= ~CFG_ADHOC_PERSIST;
3638
3639 return i;
3640 }
3641 }
3642
3643 if (i == MAX_STATIONS)
3644 return IPW_INVALID_STATION;
3645
3646 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3647
3648 entry.reserved = 0;
3649 entry.support_mode = 0;
3650 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3651 memcpy(priv->stations[i], bssid, ETH_ALEN);
3652 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003653 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003654 priv->num_stations++;
3655
3656 return i;
3657}
3658
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003659static inline u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003660{
3661 int i;
3662
Jeff Garzikbf794512005-07-31 13:07:26 -04003663 for (i = 0; i < priv->num_stations; i++)
3664 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003665 return i;
3666
3667 return IPW_INVALID_STATION;
3668}
3669
3670static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3671{
3672 int err;
3673
Hong Liu7b996592005-08-25 17:36:13 +08003674 if (priv->status & STATUS_ASSOCIATING) {
3675 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3676 queue_work(priv->workqueue, &priv->disassociate);
3677 return;
3678 }
3679
3680 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003681 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3682 return;
3683 }
3684
3685 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3686 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003687 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003688 priv->assoc_request.channel);
3689
3690 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3691 priv->status |= STATUS_DISASSOCIATING;
3692
3693 if (quiet)
3694 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3695 else
3696 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003697
James Ketrenos43f66a62005-03-25 12:31:53 -06003698 err = ipw_send_associate(priv, &priv->assoc_request);
3699 if (err) {
3700 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3701 "failed.\n");
3702 return;
3703 }
3704
3705}
3706
James Ketrenosc848d0a2005-08-24 21:56:24 -05003707static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003708{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003709 struct ipw_priv *priv = data;
3710 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3711 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003712 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003713 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003714}
3715
James Ketrenosc848d0a2005-08-24 21:56:24 -05003716static void ipw_bg_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003717{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003718 struct ipw_priv *priv = data;
3719 down(&priv->sem);
3720 ipw_disassociate(data);
3721 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06003722}
3723
Zhu Yid8bad6d2005-07-13 12:25:38 -05003724static void ipw_system_config(void *data)
3725{
3726 struct ipw_priv *priv = data;
3727 ipw_send_system_config(priv, &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06003728}
3729
3730struct ipw_status_code {
3731 u16 status;
3732 const char *reason;
3733};
3734
3735static const struct ipw_status_code ipw_status_codes[] = {
3736 {0x00, "Successful"},
3737 {0x01, "Unspecified failure"},
3738 {0x0A, "Cannot support all requested capabilities in the "
3739 "Capability information field"},
3740 {0x0B, "Reassociation denied due to inability to confirm that "
3741 "association exists"},
3742 {0x0C, "Association denied due to reason outside the scope of this "
3743 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003744 {0x0D,
3745 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003746 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003747 {0x0E,
3748 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003749 "transaction sequence number out of expected sequence"},
3750 {0x0F, "Authentication rejected because of challenge failure"},
3751 {0x10, "Authentication rejected due to timeout waiting for next "
3752 "frame in sequence"},
3753 {0x11, "Association denied because AP is unable to handle additional "
3754 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003755 {0x12,
3756 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003757 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003758 {0x13,
3759 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003760 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003761 {0x14,
3762 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003763 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003764 {0x15,
3765 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003766 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003767 {0x19,
3768 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003769 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003770 {0x1A,
3771 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003772 "DSSS-OFDM operation"},
3773 {0x28, "Invalid Information Element"},
3774 {0x29, "Group Cipher is not valid"},
3775 {0x2A, "Pairwise Cipher is not valid"},
3776 {0x2B, "AKMP is not valid"},
3777 {0x2C, "Unsupported RSN IE version"},
3778 {0x2D, "Invalid RSN IE Capabilities"},
3779 {0x2E, "Cipher suite is rejected per security policy"},
3780};
3781
3782#ifdef CONFIG_IPW_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003783static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003784{
3785 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003786 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003787 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003788 return ipw_status_codes[i].reason;
3789 return "Unknown status value.";
3790}
3791#endif
3792
3793static void inline average_init(struct average *avg)
3794{
3795 memset(avg, 0, sizeof(*avg));
3796}
3797
3798static void inline average_add(struct average *avg, s16 val)
3799{
3800 avg->sum -= avg->entries[avg->pos];
3801 avg->sum += val;
3802 avg->entries[avg->pos++] = val;
3803 if (unlikely(avg->pos == AVG_ENTRIES)) {
3804 avg->init = 1;
3805 avg->pos = 0;
3806 }
3807}
3808
3809static s16 inline average_value(struct average *avg)
3810{
3811 if (!unlikely(avg->init)) {
3812 if (avg->pos)
3813 return avg->sum / avg->pos;
3814 return 0;
3815 }
3816
3817 return avg->sum / AVG_ENTRIES;
3818}
3819
3820static void ipw_reset_stats(struct ipw_priv *priv)
3821{
3822 u32 len = sizeof(u32);
3823
3824 priv->quality = 0;
3825
3826 average_init(&priv->average_missed_beacons);
3827 average_init(&priv->average_rssi);
3828 average_init(&priv->average_noise);
3829
3830 priv->last_rate = 0;
3831 priv->last_missed_beacons = 0;
3832 priv->last_rx_packets = 0;
3833 priv->last_tx_packets = 0;
3834 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003835
James Ketrenos43f66a62005-03-25 12:31:53 -06003836 /* Firmware managed, reset only when NIC is restarted, so we have to
3837 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003838 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003839 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003840 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003841 &priv->last_tx_failures, &len);
3842
3843 /* Driver managed, reset with each association */
3844 priv->missed_adhoc_beacons = 0;
3845 priv->missed_beacons = 0;
3846 priv->tx_packets = 0;
3847 priv->rx_packets = 0;
3848
3849}
3850
James Ketrenos43f66a62005-03-25 12:31:53 -06003851static inline u32 ipw_get_max_rate(struct ipw_priv *priv)
3852{
3853 u32 i = 0x80000000;
3854 u32 mask = priv->rates_mask;
3855 /* If currently associated in B mode, restrict the maximum
3856 * rate match to B rates */
3857 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3858 mask &= IEEE80211_CCK_RATES_MASK;
3859
3860 /* TODO: Verify that the rate is supported by the current rates
3861 * list. */
3862
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003863 while (i && !(mask & i))
3864 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003865 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003866 case IEEE80211_CCK_RATE_1MB_MASK:
3867 return 1000000;
3868 case IEEE80211_CCK_RATE_2MB_MASK:
3869 return 2000000;
3870 case IEEE80211_CCK_RATE_5MB_MASK:
3871 return 5500000;
3872 case IEEE80211_OFDM_RATE_6MB_MASK:
3873 return 6000000;
3874 case IEEE80211_OFDM_RATE_9MB_MASK:
3875 return 9000000;
3876 case IEEE80211_CCK_RATE_11MB_MASK:
3877 return 11000000;
3878 case IEEE80211_OFDM_RATE_12MB_MASK:
3879 return 12000000;
3880 case IEEE80211_OFDM_RATE_18MB_MASK:
3881 return 18000000;
3882 case IEEE80211_OFDM_RATE_24MB_MASK:
3883 return 24000000;
3884 case IEEE80211_OFDM_RATE_36MB_MASK:
3885 return 36000000;
3886 case IEEE80211_OFDM_RATE_48MB_MASK:
3887 return 48000000;
3888 case IEEE80211_OFDM_RATE_54MB_MASK:
3889 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003890 }
3891
Jeff Garzikbf794512005-07-31 13:07:26 -04003892 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003893 return 11000000;
3894 else
3895 return 54000000;
3896}
3897
3898static u32 ipw_get_current_rate(struct ipw_priv *priv)
3899{
3900 u32 rate, len = sizeof(rate);
3901 int err;
3902
Jeff Garzikbf794512005-07-31 13:07:26 -04003903 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003904 return 0;
3905
3906 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003907 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003908 &len);
3909 if (err) {
3910 IPW_DEBUG_INFO("failed querying ordinals.\n");
3911 return 0;
3912 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003913 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003914 return ipw_get_max_rate(priv);
3915
3916 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003917 case IPW_TX_RATE_1MB:
3918 return 1000000;
3919 case IPW_TX_RATE_2MB:
3920 return 2000000;
3921 case IPW_TX_RATE_5MB:
3922 return 5500000;
3923 case IPW_TX_RATE_6MB:
3924 return 6000000;
3925 case IPW_TX_RATE_9MB:
3926 return 9000000;
3927 case IPW_TX_RATE_11MB:
3928 return 11000000;
3929 case IPW_TX_RATE_12MB:
3930 return 12000000;
3931 case IPW_TX_RATE_18MB:
3932 return 18000000;
3933 case IPW_TX_RATE_24MB:
3934 return 24000000;
3935 case IPW_TX_RATE_36MB:
3936 return 36000000;
3937 case IPW_TX_RATE_48MB:
3938 return 48000000;
3939 case IPW_TX_RATE_54MB:
3940 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003941 }
3942
3943 return 0;
3944}
3945
James Ketrenos43f66a62005-03-25 12:31:53 -06003946#define IPW_STATS_INTERVAL (2 * HZ)
3947static void ipw_gather_stats(struct ipw_priv *priv)
3948{
3949 u32 rx_err, rx_err_delta, rx_packets_delta;
3950 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3951 u32 missed_beacons_percent, missed_beacons_delta;
3952 u32 quality = 0;
3953 u32 len = sizeof(u32);
3954 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003955 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003956 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003957 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003958
3959 if (!(priv->status & STATUS_ASSOCIATED)) {
3960 priv->quality = 0;
3961 return;
3962 }
3963
3964 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003965 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003966 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003967 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003968 priv->last_missed_beacons = priv->missed_beacons;
3969 if (priv->assoc_request.beacon_interval) {
3970 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003971 (HZ * priv->assoc_request.beacon_interval) /
3972 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003973 } else {
3974 missed_beacons_percent = 0;
3975 }
3976 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3977
3978 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3979 rx_err_delta = rx_err - priv->last_rx_err;
3980 priv->last_rx_err = rx_err;
3981
3982 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3983 tx_failures_delta = tx_failures - priv->last_tx_failures;
3984 priv->last_tx_failures = tx_failures;
3985
3986 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3987 priv->last_rx_packets = priv->rx_packets;
3988
3989 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
3990 priv->last_tx_packets = priv->tx_packets;
3991
3992 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04003993 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003994 * Missed beacon: 100% = 0, 0% = 70% missed
3995 * Rate: 60% = 1Mbs, 100% = Max
3996 * Rx and Tx errors represent a straight % of total Rx/Tx
3997 * RSSI: 100% = > -50, 0% = < -80
3998 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04003999 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004000 * The lowest computed quality is used.
4001 *
4002 */
4003#define BEACON_THRESHOLD 5
4004 beacon_quality = 100 - missed_beacons_percent;
4005 if (beacon_quality < BEACON_THRESHOLD)
4006 beacon_quality = 0;
4007 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004008 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004009 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004010 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004011 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004012
James Ketrenos43f66a62005-03-25 12:31:53 -06004013 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004014 max_rate = ipw_get_max_rate(priv);
4015 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004016 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4017 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004018
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004019 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004020 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004021 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004022 else
4023 rx_quality = 100;
4024 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4025 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004026
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004027 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004028 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004029 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004030 else
4031 tx_quality = 100;
4032 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4033 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004034
James Ketrenos43f66a62005-03-25 12:31:53 -06004035 rssi = average_value(&priv->average_rssi);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004036 signal_quality =
4037 (100 *
4038 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4039 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4040 (priv->ieee->perfect_rssi - rssi) *
4041 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4042 62 * (priv->ieee->perfect_rssi - rssi))) /
4043 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4044 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4045 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004046 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004047 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004048 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004049
James Ketrenos43f66a62005-03-25 12:31:53 -06004050 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
4051 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004052
4053 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06004054 min(rate_quality,
4055 min(tx_quality, min(rx_quality, signal_quality))));
4056 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004057 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4058 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004059 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004060 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4061 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004062 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004063 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4064 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004065 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004066 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4067 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004068 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004069 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4070 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004071
4072 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004073
4074 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004075 IPW_STATS_INTERVAL);
4076}
4077
James Ketrenosc848d0a2005-08-24 21:56:24 -05004078static void ipw_bg_gather_stats(void *data)
4079{
4080 struct ipw_priv *priv = data;
4081 down(&priv->sem);
4082 ipw_gather_stats(data);
4083 up(&priv->sem);
4084}
4085
Ben Cahille7582562005-10-06 15:34:41 -05004086/* Missed beacon behavior:
4087 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4088 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4089 * Above disassociate threshold, give up and stop scanning.
4090 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004091static inline void ipw_handle_missed_beacon(struct ipw_priv *priv,
4092 int missed_count)
4093{
4094 priv->notif_missed_beacons = missed_count;
4095
James Ketrenosafbf30a2005-08-25 00:05:33 -05004096 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004097 priv->status & STATUS_ASSOCIATED) {
4098 /* If associated and we've hit the missed
4099 * beacon threshold, disassociate, turn
4100 * off roaming, and abort any active scans */
4101 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004102 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004103 "Missed beacon: %d - disassociate\n", missed_count);
4104 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004105 if (priv->status & STATUS_SCANNING) {
4106 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4107 IPW_DL_STATE,
4108 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004109 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004110 }
4111
James Ketrenosea2b26e2005-08-24 21:25:16 -05004112 queue_work(priv->workqueue, &priv->disassociate);
4113 return;
4114 }
4115
4116 if (priv->status & STATUS_ROAMING) {
4117 /* If we are currently roaming, then just
4118 * print a debug statement... */
4119 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4120 "Missed beacon: %d - roam in progress\n",
4121 missed_count);
4122 return;
4123 }
4124
Ben Cahille7582562005-10-06 15:34:41 -05004125 if (missed_count > priv->roaming_threshold &&
4126 missed_count <= priv->disassociate_threshold) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004127 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004128 * bit in the status and kick off a scan.
4129 * This can happen several times before we reach
4130 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004131 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4132 "Missed beacon: %d - initiate "
4133 "roaming\n", missed_count);
4134 if (!(priv->status & STATUS_ROAMING)) {
4135 priv->status |= STATUS_ROAMING;
4136 if (!(priv->status & STATUS_SCANNING))
4137 queue_work(priv->workqueue,
4138 &priv->request_scan);
4139 }
4140 return;
4141 }
4142
4143 if (priv->status & STATUS_SCANNING) {
4144 /* Stop scan to keep fw from getting
4145 * stuck (only if we aren't roaming --
4146 * otherwise we'll never scan more than 2 or 3
4147 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004148 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4149 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004150 queue_work(priv->workqueue, &priv->abort_scan);
4151 }
4152
4153 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
4154
4155}
4156
James Ketrenos43f66a62005-03-25 12:31:53 -06004157/**
4158 * Handle host notification packet.
4159 * Called from interrupt routine
4160 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004161static inline void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004162 struct ipw_rx_notification *notif)
4163{
James Ketrenosa613bff2005-08-24 21:43:11 -05004164 notif->size = le16_to_cpu(notif->size);
4165
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004166 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004167
James Ketrenos43f66a62005-03-25 12:31:53 -06004168 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004169 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4170 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004171
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004172 switch (assoc->state) {
4173 case CMAS_ASSOCIATED:{
4174 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4175 IPW_DL_ASSOC,
4176 "associated: '%s' " MAC_FMT
4177 " \n",
4178 escape_essid(priv->essid,
4179 priv->essid_len),
4180 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004181
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004182 switch (priv->ieee->iw_mode) {
4183 case IW_MODE_INFRA:
4184 memcpy(priv->ieee->bssid,
4185 priv->bssid, ETH_ALEN);
4186 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004187
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004188 case IW_MODE_ADHOC:
4189 memcpy(priv->ieee->bssid,
4190 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004191
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004192 /* clear out the station table */
4193 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004194
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004195 IPW_DEBUG_ASSOC
4196 ("queueing adhoc check\n");
4197 queue_delayed_work(priv->
4198 workqueue,
4199 &priv->
4200 adhoc_check,
4201 priv->
4202 assoc_request.
4203 beacon_interval);
4204 break;
4205 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004206
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004207 priv->status &= ~STATUS_ASSOCIATING;
4208 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004209 queue_work(priv->workqueue,
4210 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004211
James Ketrenosb095c382005-08-24 22:04:42 -05004212#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004213#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4214 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4215 if ((priv->status & STATUS_AUTH) &&
4216 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4217 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004218 if ((sizeof
4219 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004220 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004221 <= notif->size)
4222 && (notif->size <= 2314)) {
4223 struct
4224 ieee80211_rx_stats
4225 stats = {
4226 .len =
4227 notif->
4228 size - 1,
4229 };
4230
4231 IPW_DEBUG_QOS
4232 ("QoS Associate "
4233 "size %d\n",
4234 notif->size);
4235 ieee80211_rx_mgt(priv->
4236 ieee,
4237 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004238 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004239 *)
4240 &notif->u.raw, &stats);
4241 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004242 }
James Ketrenosb095c382005-08-24 22:04:42 -05004243#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004244
James Ketrenosa613bff2005-08-24 21:43:11 -05004245 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004246
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004247 break;
4248 }
4249
4250 case CMAS_AUTHENTICATED:{
4251 if (priv->
4252 status & (STATUS_ASSOCIATED |
4253 STATUS_AUTH)) {
4254#ifdef CONFIG_IPW_DEBUG
4255 struct notif_authenticate *auth
4256 = &notif->u.auth;
4257 IPW_DEBUG(IPW_DL_NOTIF |
4258 IPW_DL_STATE |
4259 IPW_DL_ASSOC,
4260 "deauthenticated: '%s' "
4261 MAC_FMT
4262 ": (0x%04X) - %s \n",
4263 escape_essid(priv->
4264 essid,
4265 priv->
4266 essid_len),
4267 MAC_ARG(priv->bssid),
4268 ntohs(auth->status),
4269 ipw_get_status_code
4270 (ntohs
4271 (auth->status)));
4272#endif
4273
4274 priv->status &=
4275 ~(STATUS_ASSOCIATING |
4276 STATUS_AUTH |
4277 STATUS_ASSOCIATED);
4278
James Ketrenosa613bff2005-08-24 21:43:11 -05004279 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004280 break;
4281 }
4282
4283 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4284 IPW_DL_ASSOC,
4285 "authenticated: '%s' " MAC_FMT
4286 "\n",
4287 escape_essid(priv->essid,
4288 priv->essid_len),
4289 MAC_ARG(priv->bssid));
4290 break;
4291 }
4292
4293 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004294 if (priv->status & STATUS_AUTH) {
4295 struct
4296 ieee80211_assoc_response
4297 *resp;
4298 resp =
4299 (struct
4300 ieee80211_assoc_response
4301 *)&notif->u.raw;
4302 IPW_DEBUG(IPW_DL_NOTIF |
4303 IPW_DL_STATE |
4304 IPW_DL_ASSOC,
4305 "association failed (0x%04X): %s\n",
4306 ntohs(resp->status),
4307 ipw_get_status_code
4308 (ntohs
4309 (resp->status)));
4310 }
4311
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004312 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4313 IPW_DL_ASSOC,
4314 "disassociated: '%s' " MAC_FMT
4315 " \n",
4316 escape_essid(priv->essid,
4317 priv->essid_len),
4318 MAC_ARG(priv->bssid));
4319
4320 priv->status &=
4321 ~(STATUS_DISASSOCIATING |
4322 STATUS_ASSOCIATING |
4323 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004324 if (priv->assoc_network
4325 && (priv->assoc_network->
4326 capability &
4327 WLAN_CAPABILITY_IBSS))
4328 ipw_remove_current_network
4329 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004330
James Ketrenosa613bff2005-08-24 21:43:11 -05004331 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004332
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004333 break;
4334 }
4335
James Ketrenosb095c382005-08-24 22:04:42 -05004336 case CMAS_RX_ASSOC_RESP:
4337 break;
4338
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004339 default:
4340 IPW_ERROR("assoc: unknown (%d)\n",
4341 assoc->state);
4342 break;
4343 }
4344
James Ketrenos43f66a62005-03-25 12:31:53 -06004345 break;
4346 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004347
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004348 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4349 struct notif_authenticate *auth = &notif->u.auth;
4350 switch (auth->state) {
4351 case CMAS_AUTHENTICATED:
4352 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4353 "authenticated: '%s' " MAC_FMT " \n",
4354 escape_essid(priv->essid,
4355 priv->essid_len),
4356 MAC_ARG(priv->bssid));
4357 priv->status |= STATUS_AUTH;
4358 break;
4359
4360 case CMAS_INIT:
4361 if (priv->status & STATUS_AUTH) {
4362 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4363 IPW_DL_ASSOC,
4364 "authentication failed (0x%04X): %s\n",
4365 ntohs(auth->status),
4366 ipw_get_status_code(ntohs
4367 (auth->
4368 status)));
4369 }
4370 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4371 IPW_DL_ASSOC,
4372 "deauthenticated: '%s' " MAC_FMT "\n",
4373 escape_essid(priv->essid,
4374 priv->essid_len),
4375 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004376
4377 priv->status &= ~(STATUS_ASSOCIATING |
4378 STATUS_AUTH |
4379 STATUS_ASSOCIATED);
4380
James Ketrenosa613bff2005-08-24 21:43:11 -05004381 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004382 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004383
4384 case CMAS_TX_AUTH_SEQ_1:
4385 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4386 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4387 break;
4388 case CMAS_RX_AUTH_SEQ_2:
4389 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4390 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4391 break;
4392 case CMAS_AUTH_SEQ_1_PASS:
4393 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4394 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4395 break;
4396 case CMAS_AUTH_SEQ_1_FAIL:
4397 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4398 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4399 break;
4400 case CMAS_TX_AUTH_SEQ_3:
4401 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4402 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4403 break;
4404 case CMAS_RX_AUTH_SEQ_4:
4405 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4406 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4407 break;
4408 case CMAS_AUTH_SEQ_2_PASS:
4409 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4410 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4411 break;
4412 case CMAS_AUTH_SEQ_2_FAIL:
4413 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4414 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4415 break;
4416 case CMAS_TX_ASSOC:
4417 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4418 IPW_DL_ASSOC, "TX_ASSOC\n");
4419 break;
4420 case CMAS_RX_ASSOC_RESP:
4421 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4422 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004423
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004424 break;
4425 case CMAS_ASSOCIATED:
4426 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4427 IPW_DL_ASSOC, "ASSOCIATED\n");
4428 break;
4429 default:
4430 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4431 auth->state);
4432 break;
4433 }
4434 break;
4435 }
4436
4437 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4438 struct notif_channel_result *x =
4439 &notif->u.channel_result;
4440
4441 if (notif->size == sizeof(*x)) {
4442 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4443 x->channel_num);
4444 } else {
4445 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4446 "(should be %zd)\n",
4447 notif->size, sizeof(*x));
4448 }
4449 break;
4450 }
4451
4452 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4453 struct notif_scan_complete *x = &notif->u.scan_complete;
4454 if (notif->size == sizeof(*x)) {
4455 IPW_DEBUG_SCAN
4456 ("Scan completed: type %d, %d channels, "
4457 "%d status\n", x->scan_type,
4458 x->num_channels, x->status);
4459 } else {
4460 IPW_ERROR("Scan completed of wrong size %d "
4461 "(should be %zd)\n",
4462 notif->size, sizeof(*x));
4463 }
4464
4465 priv->status &=
4466 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4467
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004468 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004469 cancel_delayed_work(&priv->scan_check);
4470
James Ketrenosb095c382005-08-24 22:04:42 -05004471 if (priv->status & STATUS_EXIT_PENDING)
4472 break;
4473
4474 priv->ieee->scans++;
4475
4476#ifdef CONFIG_IPW2200_MONITOR
4477 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004478 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004479 queue_work(priv->workqueue,
4480 &priv->request_scan);
4481 break;
4482 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004483 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004484#endif /* CONFIG_IPW2200_MONITOR */
4485
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004486 if (!(priv->status & (STATUS_ASSOCIATED |
4487 STATUS_ASSOCIATING |
4488 STATUS_ROAMING |
4489 STATUS_DISASSOCIATING)))
4490 queue_work(priv->workqueue, &priv->associate);
4491 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004492 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4493 /* If a scan completed and we are in roam mode, then
4494 * the scan that completed was the one requested as a
4495 * result of entering roam... so, schedule the
4496 * roam work */
4497 queue_work(priv->workqueue,
4498 &priv->roam);
4499 else
4500 /* Don't schedule if we aborted the scan */
4501 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004502 } else if (priv->status & STATUS_SCAN_PENDING)
4503 queue_work(priv->workqueue,
4504 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004505 else if (priv->config & CFG_BACKGROUND_SCAN
4506 && priv->status & STATUS_ASSOCIATED)
4507 queue_delayed_work(priv->workqueue,
4508 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004509 break;
4510 }
4511
4512 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4513 struct notif_frag_length *x = &notif->u.frag_len;
4514
James Ketrenosa613bff2005-08-24 21:43:11 -05004515 if (notif->size == sizeof(*x))
4516 IPW_ERROR("Frag length: %d\n",
4517 le16_to_cpu(x->frag_length));
4518 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004519 IPW_ERROR("Frag length of wrong size %d "
4520 "(should be %zd)\n",
4521 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004522 break;
4523 }
4524
4525 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4526 struct notif_link_deterioration *x =
4527 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004528
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004529 if (notif->size == sizeof(*x)) {
4530 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4531 "link deterioration: '%s' " MAC_FMT
4532 " \n", escape_essid(priv->essid,
4533 priv->essid_len),
4534 MAC_ARG(priv->bssid));
4535 memcpy(&priv->last_link_deterioration, x,
4536 sizeof(*x));
4537 } else {
4538 IPW_ERROR("Link Deterioration of wrong size %d "
4539 "(should be %zd)\n",
4540 notif->size, sizeof(*x));
4541 }
4542 break;
4543 }
4544
4545 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4546 IPW_ERROR("Dino config\n");
4547 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004548 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004549 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004550
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004551 break;
4552 }
4553
4554 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4555 struct notif_beacon_state *x = &notif->u.beacon_state;
4556 if (notif->size != sizeof(*x)) {
4557 IPW_ERROR
4558 ("Beacon state of wrong size %d (should "
4559 "be %zd)\n", notif->size, sizeof(*x));
4560 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004561 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004562
James Ketrenosa613bff2005-08-24 21:43:11 -05004563 if (le32_to_cpu(x->state) ==
4564 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4565 ipw_handle_missed_beacon(priv,
4566 le32_to_cpu(x->
4567 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004568
James Ketrenos43f66a62005-03-25 12:31:53 -06004569 break;
4570 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004571
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004572 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4573 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4574 if (notif->size == sizeof(*x)) {
4575 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4576 "0x%02x station %d\n",
4577 x->key_state, x->security_type,
4578 x->station_index);
4579 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004580 }
4581
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004582 IPW_ERROR
4583 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4584 notif->size, sizeof(*x));
4585 break;
4586 }
4587
4588 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4589 struct notif_calibration *x = &notif->u.calibration;
4590
4591 if (notif->size == sizeof(*x)) {
4592 memcpy(&priv->calib, x, sizeof(*x));
4593 IPW_DEBUG_INFO("TODO: Calibration\n");
4594 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004595 }
4596
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004597 IPW_ERROR
4598 ("Calibration of wrong size %d (should be %zd)\n",
4599 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004600 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004601 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004602
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004603 case HOST_NOTIFICATION_NOISE_STATS:{
4604 if (notif->size == sizeof(u32)) {
4605 priv->last_noise =
James Ketrenosa613bff2005-08-24 21:43:11 -05004606 (u8) (le32_to_cpu(notif->u.noise.value) &
4607 0xff);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004608 average_add(&priv->average_noise,
4609 priv->last_noise);
4610 break;
4611 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004612
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004613 IPW_ERROR
4614 ("Noise stat is wrong size %d (should be %zd)\n",
4615 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004616 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004617 }
4618
James Ketrenos43f66a62005-03-25 12:31:53 -06004619 default:
4620 IPW_ERROR("Unknown notification: "
4621 "subtype=%d,flags=0x%2x,size=%d\n",
4622 notif->subtype, notif->flags, notif->size);
4623 }
4624}
4625
4626/**
4627 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004628 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004629 * @param priv
4630 * @return error code
4631 */
4632static int ipw_queue_reset(struct ipw_priv *priv)
4633{
4634 int rc = 0;
4635 /** @todo customize queue sizes */
4636 int nTx = 64, nTxCmd = 8;
4637 ipw_tx_queue_free(priv);
4638 /* Tx CMD queue */
4639 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004640 IPW_TX_CMD_QUEUE_READ_INDEX,
4641 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4642 IPW_TX_CMD_QUEUE_BD_BASE,
4643 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004644 if (rc) {
4645 IPW_ERROR("Tx Cmd queue init failed\n");
4646 goto error;
4647 }
4648 /* Tx queue(s) */
4649 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004650 IPW_TX_QUEUE_0_READ_INDEX,
4651 IPW_TX_QUEUE_0_WRITE_INDEX,
4652 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004653 if (rc) {
4654 IPW_ERROR("Tx 0 queue init failed\n");
4655 goto error;
4656 }
4657 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004658 IPW_TX_QUEUE_1_READ_INDEX,
4659 IPW_TX_QUEUE_1_WRITE_INDEX,
4660 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004661 if (rc) {
4662 IPW_ERROR("Tx 1 queue init failed\n");
4663 goto error;
4664 }
4665 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004666 IPW_TX_QUEUE_2_READ_INDEX,
4667 IPW_TX_QUEUE_2_WRITE_INDEX,
4668 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004669 if (rc) {
4670 IPW_ERROR("Tx 2 queue init failed\n");
4671 goto error;
4672 }
4673 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004674 IPW_TX_QUEUE_3_READ_INDEX,
4675 IPW_TX_QUEUE_3_WRITE_INDEX,
4676 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004677 if (rc) {
4678 IPW_ERROR("Tx 3 queue init failed\n");
4679 goto error;
4680 }
4681 /* statistics */
4682 priv->rx_bufs_min = 0;
4683 priv->rx_pend_max = 0;
4684 return rc;
4685
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004686 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004687 ipw_tx_queue_free(priv);
4688 return rc;
4689}
4690
4691/**
4692 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004693 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004694 * When FW adwances 'R' index, all entries between old and
4695 * new 'R' index need to be reclaimed. As result, some free space
4696 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004697 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004698 * @note Need to protect against garbage in 'R' index
4699 * @param priv
4700 * @param txq
4701 * @param qindex
4702 * @return Number of used entries remains in the queue
4703 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004704static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004705 struct clx2_tx_queue *txq, int qindex)
4706{
4707 u32 hw_tail;
4708 int used;
4709 struct clx2_queue *q = &txq->q;
4710
4711 hw_tail = ipw_read32(priv, q->reg_r);
4712 if (hw_tail >= q->n_bd) {
4713 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004714 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4715 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004716 goto done;
4717 }
4718 for (; q->last_used != hw_tail;
4719 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4720 ipw_queue_tx_free_tfd(priv, txq);
4721 priv->tx_packets++;
4722 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004723 done:
James Ketrenos9ddf84f2005-08-16 17:07:11 -05004724 if ((ipw_queue_space(q) > q->low_mark) &&
4725 (qindex >= 0) &&
4726 (priv->status & STATUS_ASSOCIATED) && netif_running(priv->net_dev))
4727 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06004728 used = q->first_empty - q->last_used;
4729 if (used < 0)
4730 used += q->n_bd;
4731
4732 return used;
4733}
4734
4735static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4736 int len, int sync)
4737{
4738 struct clx2_tx_queue *txq = &priv->txq_cmd;
4739 struct clx2_queue *q = &txq->q;
4740 struct tfd_frame *tfd;
4741
4742 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4743 IPW_ERROR("No space for Tx\n");
4744 return -EBUSY;
4745 }
4746
4747 tfd = &txq->bd[q->first_empty];
4748 txq->txb[q->first_empty] = NULL;
4749
4750 memset(tfd, 0, sizeof(*tfd));
4751 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4752 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4753 priv->hcmd_seq++;
4754 tfd->u.cmd.index = hcmd;
4755 tfd->u.cmd.length = len;
4756 memcpy(tfd->u.cmd.payload, buf, len);
4757 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4758 ipw_write32(priv, q->reg_w, q->first_empty);
4759 _ipw_read32(priv, 0x90);
4760
4761 return 0;
4762}
4763
Jeff Garzikbf794512005-07-31 13:07:26 -04004764/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004765 * Rx theory of operation
4766 *
4767 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004768 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004769 * 0 to 31
4770 *
4771 * Rx Queue Indexes
4772 * The host/firmware share two index registers for managing the Rx buffers.
4773 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004774 * The READ index maps to the first position that the firmware may be writing
4775 * to -- the driver can read up to (but not including) this position and get
4776 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004777 * The READ index is managed by the firmware once the card is enabled.
4778 *
4779 * The WRITE index maps to the last position the driver has read from -- the
4780 * position preceding WRITE is the last slot the firmware can place a packet.
4781 *
4782 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004783 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004784 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004785 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004786 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4787 *
4788 * When the firmware places a packet in a buffer it will advance the READ index
4789 * and fire the RX interrupt. The driver can then query the READ index and
4790 * process as many packets as possible, moving the WRITE index forward as it
4791 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004792 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004793 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004794 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004795 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004796 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004797 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4798 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4799 * 'processed' and 'read' driver indexes as well)
4800 * + A received packet is processed and handed to the kernel network stack,
4801 * detached from the ipw->rxq. The driver 'processed' index is updated.
4802 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004803 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4804 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004805 * were enough free buffers and RX_STALLED is set it is cleared.
4806 *
4807 *
4808 * Driver sequence:
4809 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004810 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004811 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4812 * ipw_rx_queue_restock
4813 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4814 * queue, updates firmware pointers, and updates
4815 * the WRITE index. If insufficient rx_free buffers
4816 * are available, schedules ipw_rx_queue_replenish
4817 *
4818 * -- enable interrupts --
4819 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004820 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004821 * Moves the packet buffer from queue to rx_used.
4822 * Calls ipw_rx_queue_restock to refill any empty
4823 * slots.
4824 * ...
4825 *
4826 */
4827
Jeff Garzikbf794512005-07-31 13:07:26 -04004828/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004829 * If there are slots in the RX queue that need to be restocked,
4830 * and we have free pre-allocated buffers, fill the ranks as much
4831 * as we can pulling from rx_free.
4832 *
4833 * This moves the 'write' index forward to catch up with 'processed', and
4834 * also updates the memory address in the firmware to reference the new
4835 * target buffer.
4836 */
4837static void ipw_rx_queue_restock(struct ipw_priv *priv)
4838{
4839 struct ipw_rx_queue *rxq = priv->rxq;
4840 struct list_head *element;
4841 struct ipw_rx_mem_buffer *rxb;
4842 unsigned long flags;
4843 int write;
4844
4845 spin_lock_irqsave(&rxq->lock, flags);
4846 write = rxq->write;
4847 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4848 element = rxq->rx_free.next;
4849 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4850 list_del(element);
4851
James Ketrenosb095c382005-08-24 22:04:42 -05004852 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004853 rxb->dma_addr);
4854 rxq->queue[rxq->write] = rxb;
4855 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4856 rxq->free_count--;
4857 }
4858 spin_unlock_irqrestore(&rxq->lock, flags);
4859
Jeff Garzikbf794512005-07-31 13:07:26 -04004860 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004861 * refill it */
4862 if (rxq->free_count <= RX_LOW_WATERMARK)
4863 queue_work(priv->workqueue, &priv->rx_replenish);
4864
4865 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004866 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004867 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004868}
4869
4870/*
4871 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004872 * Also restock the Rx queue via ipw_rx_queue_restock.
4873 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004874 * This is called as a scheduled work item (except for during intialization)
4875 */
4876static void ipw_rx_queue_replenish(void *data)
4877{
4878 struct ipw_priv *priv = data;
4879 struct ipw_rx_queue *rxq = priv->rxq;
4880 struct list_head *element;
4881 struct ipw_rx_mem_buffer *rxb;
4882 unsigned long flags;
4883
4884 spin_lock_irqsave(&rxq->lock, flags);
4885 while (!list_empty(&rxq->rx_used)) {
4886 element = rxq->rx_used.next;
4887 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004888 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004889 if (!rxb->skb) {
4890 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4891 priv->net_dev->name);
4892 /* We don't reschedule replenish work here -- we will
4893 * call the restock method and if it still needs
4894 * more buffers it will schedule replenish */
4895 break;
4896 }
4897 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004898
James Ketrenos43f66a62005-03-25 12:31:53 -06004899 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004900 rxb->dma_addr =
4901 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004902 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004903
James Ketrenos43f66a62005-03-25 12:31:53 -06004904 list_add_tail(&rxb->list, &rxq->rx_free);
4905 rxq->free_count++;
4906 }
4907 spin_unlock_irqrestore(&rxq->lock, flags);
4908
4909 ipw_rx_queue_restock(priv);
4910}
4911
James Ketrenosc848d0a2005-08-24 21:56:24 -05004912static void ipw_bg_rx_queue_replenish(void *data)
4913{
4914 struct ipw_priv *priv = data;
4915 down(&priv->sem);
4916 ipw_rx_queue_replenish(data);
4917 up(&priv->sem);
4918}
4919
James Ketrenos43f66a62005-03-25 12:31:53 -06004920/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4921 * If an SKB has been detached, the POOL needs to have it's SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004922 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004923 * non NULL it is unmapped and freed
4924 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004925static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004926{
4927 int i;
4928
4929 if (!rxq)
4930 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004931
James Ketrenos43f66a62005-03-25 12:31:53 -06004932 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4933 if (rxq->pool[i].skb != NULL) {
4934 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004935 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004936 dev_kfree_skb(rxq->pool[i].skb);
4937 }
4938 }
4939
4940 kfree(rxq);
4941}
4942
4943static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4944{
4945 struct ipw_rx_queue *rxq;
4946 int i;
4947
4948 rxq = (struct ipw_rx_queue *)kmalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004949 if (unlikely(!rxq)) {
4950 IPW_ERROR("memory allocation failed\n");
4951 return NULL;
4952 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004953 memset(rxq, 0, sizeof(*rxq));
4954 spin_lock_init(&rxq->lock);
4955 INIT_LIST_HEAD(&rxq->rx_free);
4956 INIT_LIST_HEAD(&rxq->rx_used);
4957
4958 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004959 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004960 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4961
4962 /* Set us so that we have processed and used all buffers, but have
4963 * not restocked the Rx queue with fresh buffers */
4964 rxq->read = rxq->write = 0;
4965 rxq->processed = RX_QUEUE_SIZE - 1;
4966 rxq->free_count = 0;
4967
4968 return rxq;
4969}
4970
4971static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4972{
4973 rate &= ~IEEE80211_BASIC_RATE_MASK;
4974 if (ieee_mode == IEEE_A) {
4975 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004976 case IEEE80211_OFDM_RATE_6MB:
4977 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004978 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004979 case IEEE80211_OFDM_RATE_9MB:
4980 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004981 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004982 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004983 return priv->
4984 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004985 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004986 return priv->
4987 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004988 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004989 return priv->
4990 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004991 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004992 return priv->
4993 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004994 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004995 return priv->
4996 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004997 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004998 return priv->
4999 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005000 default:
5001 return 0;
5002 }
5003 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005004
James Ketrenos43f66a62005-03-25 12:31:53 -06005005 /* B and G mixed */
5006 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005007 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005008 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005009 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005010 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005011 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005012 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005013 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005014 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
5015 }
5016
5017 /* If we are limited to B modulations, bail at this point */
5018 if (ieee_mode == IEEE_B)
5019 return 0;
5020
5021 /* G */
5022 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005023 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005024 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005025 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005026 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005027 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005028 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005029 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005030 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005031 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005032 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005033 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005034 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005035 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005036 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005037 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005038 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
5039 }
5040
5041 return 0;
5042}
5043
Jeff Garzikbf794512005-07-31 13:07:26 -04005044static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005045 const struct ieee80211_network *network,
5046 struct ipw_supported_rates *rates)
5047{
5048 int num_rates, i;
5049
5050 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005051 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005052 rates->num_rates = 0;
5053 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005054 if (!ipw_is_rate_in_mask(priv, network->mode,
5055 network->rates[i])) {
5056
James Ketrenosea2b26e2005-08-24 21:25:16 -05005057 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005058 IPW_DEBUG_SCAN("Adding masked mandatory "
5059 "rate %02X\n",
5060 network->rates[i]);
5061 rates->supported_rates[rates->num_rates++] =
5062 network->rates[i];
5063 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005064 }
5065
James Ketrenos43f66a62005-03-25 12:31:53 -06005066 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5067 network->rates[i], priv->rates_mask);
5068 continue;
5069 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005070
James Ketrenos43f66a62005-03-25 12:31:53 -06005071 rates->supported_rates[rates->num_rates++] = network->rates[i];
5072 }
5073
James Ketrenosa613bff2005-08-24 21:43:11 -05005074 num_rates = min(network->rates_ex_len,
5075 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005076 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005077 if (!ipw_is_rate_in_mask(priv, network->mode,
5078 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005079 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005080 IPW_DEBUG_SCAN("Adding masked mandatory "
5081 "rate %02X\n",
5082 network->rates_ex[i]);
5083 rates->supported_rates[rates->num_rates++] =
5084 network->rates[i];
5085 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005086 }
5087
James Ketrenos43f66a62005-03-25 12:31:53 -06005088 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5089 network->rates_ex[i], priv->rates_mask);
5090 continue;
5091 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005092
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005093 rates->supported_rates[rates->num_rates++] =
5094 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005095 }
5096
James Ketrenosea2b26e2005-08-24 21:25:16 -05005097 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005098}
5099
5100static inline void ipw_copy_rates(struct ipw_supported_rates *dest,
5101 const struct ipw_supported_rates *src)
5102{
5103 u8 i;
5104 for (i = 0; i < src->num_rates; i++)
5105 dest->supported_rates[i] = src->supported_rates[i];
5106 dest->num_rates = src->num_rates;
5107}
5108
5109/* TODO: Look at sniffed packets in the air to determine if the basic rate
5110 * mask should ever be used -- right now all callers to add the scan rates are
5111 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5112static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005113 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005114{
Jeff Garzikbf794512005-07-31 13:07:26 -04005115 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005116 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005117
James Ketrenos43f66a62005-03-25 12:31:53 -06005118 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005119 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005120 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005121
5122 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005123 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005124 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005125
5126 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005127 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005128 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005129
5130 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005131 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005132 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005133}
5134
5135static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005136 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005137{
Jeff Garzikbf794512005-07-31 13:07:26 -04005138 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005139 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005140
5141 if (rate_mask & IEEE80211_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005142 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005143 IEEE80211_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005144
5145 if (rate_mask & IEEE80211_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005146 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005147 IEEE80211_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005148
5149 if (rate_mask & IEEE80211_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005150 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005151 IEEE80211_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005152
5153 if (rate_mask & IEEE80211_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005154 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005155 IEEE80211_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005156
5157 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005158 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005159 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005160
5161 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005162 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005163 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005164
5165 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005166 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005167 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005168
5169 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005170 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005171 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005172}
5173
5174struct ipw_network_match {
5175 struct ieee80211_network *network;
5176 struct ipw_supported_rates rates;
5177};
5178
James Ketrenosc848d0a2005-08-24 21:56:24 -05005179static int ipw_find_adhoc_network(struct ipw_priv *priv,
5180 struct ipw_network_match *match,
5181 struct ieee80211_network *network,
5182 int roaming)
5183{
5184 struct ipw_supported_rates rates;
5185
5186 /* Verify that this network's capability is compatible with the
5187 * current mode (AdHoc or Infrastructure) */
5188 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5189 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5190 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5191 "capability mismatch.\n",
5192 escape_essid(network->ssid, network->ssid_len),
5193 MAC_ARG(network->bssid));
5194 return 0;
5195 }
5196
5197 /* If we do not have an ESSID for this AP, we can not associate with
5198 * it */
5199 if (network->flags & NETWORK_EMPTY_ESSID) {
5200 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5201 "because of hidden ESSID.\n",
5202 escape_essid(network->ssid, network->ssid_len),
5203 MAC_ARG(network->bssid));
5204 return 0;
5205 }
5206
5207 if (unlikely(roaming)) {
5208 /* If we are roaming, then ensure check if this is a valid
5209 * network to try and roam to */
5210 if ((network->ssid_len != match->network->ssid_len) ||
5211 memcmp(network->ssid, match->network->ssid,
5212 network->ssid_len)) {
5213 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5214 "because of non-network ESSID.\n",
5215 escape_essid(network->ssid,
5216 network->ssid_len),
5217 MAC_ARG(network->bssid));
5218 return 0;
5219 }
5220 } else {
5221 /* If an ESSID has been configured then compare the broadcast
5222 * ESSID to ours */
5223 if ((priv->config & CFG_STATIC_ESSID) &&
5224 ((network->ssid_len != priv->essid_len) ||
5225 memcmp(network->ssid, priv->essid,
5226 min(network->ssid_len, priv->essid_len)))) {
5227 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005228
James Ketrenosc848d0a2005-08-24 21:56:24 -05005229 strncpy(escaped,
5230 escape_essid(network->ssid, network->ssid_len),
5231 sizeof(escaped));
5232 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5233 "because of ESSID mismatch: '%s'.\n",
5234 escaped, MAC_ARG(network->bssid),
5235 escape_essid(priv->essid,
5236 priv->essid_len));
5237 return 0;
5238 }
5239 }
5240
5241 /* If the old network rate is better than this one, don't bother
5242 * testing everything else. */
5243
5244 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005245 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5246 "current network.\n",
5247 escape_essid(match->network->ssid,
5248 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005249 return 0;
5250 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005251 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5252 "current network.\n",
5253 escape_essid(match->network->ssid,
5254 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005255 return 0;
5256 }
5257
5258 /* Now go through and see if the requested network is valid... */
5259 if (priv->ieee->scan_age != 0 &&
5260 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5261 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5262 "because of age: %lums.\n",
5263 escape_essid(network->ssid, network->ssid_len),
5264 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005265 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005266 return 0;
5267 }
5268
5269 if ((priv->config & CFG_STATIC_CHANNEL) &&
5270 (network->channel != priv->channel)) {
5271 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5272 "because of channel mismatch: %d != %d.\n",
5273 escape_essid(network->ssid, network->ssid_len),
5274 MAC_ARG(network->bssid),
5275 network->channel, priv->channel);
5276 return 0;
5277 }
5278
5279 /* Verify privacy compatability */
5280 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5281 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5282 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5283 "because of privacy mismatch: %s != %s.\n",
5284 escape_essid(network->ssid, network->ssid_len),
5285 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005286 priv->
5287 capability & CAP_PRIVACY_ON ? "on" : "off",
5288 network->
5289 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5290 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005291 return 0;
5292 }
5293
5294 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5295 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5296 "because of the same BSSID match: " MAC_FMT
5297 ".\n", escape_essid(network->ssid,
5298 network->ssid_len),
5299 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5300 return 0;
5301 }
5302
5303 /* Filter out any incompatible freq / mode combinations */
5304 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5305 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5306 "because of invalid frequency/mode "
5307 "combination.\n",
5308 escape_essid(network->ssid, network->ssid_len),
5309 MAC_ARG(network->bssid));
5310 return 0;
5311 }
5312
5313 /* Ensure that the rates supported by the driver are compatible with
5314 * this AP, including verification of basic rates (mandatory) */
5315 if (!ipw_compatible_rates(priv, network, &rates)) {
5316 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5317 "because configured rate mask excludes "
5318 "AP mandatory rate.\n",
5319 escape_essid(network->ssid, network->ssid_len),
5320 MAC_ARG(network->bssid));
5321 return 0;
5322 }
5323
5324 if (rates.num_rates == 0) {
5325 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5326 "because of no compatible rates.\n",
5327 escape_essid(network->ssid, network->ssid_len),
5328 MAC_ARG(network->bssid));
5329 return 0;
5330 }
5331
5332 /* TODO: Perform any further minimal comparititive tests. We do not
5333 * want to put too much policy logic here; intelligent scan selection
5334 * should occur within a generic IEEE 802.11 user space tool. */
5335
5336 /* Set up 'new' AP to this network */
5337 ipw_copy_rates(&match->rates, &rates);
5338 match->network = network;
5339 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5340 escape_essid(network->ssid, network->ssid_len),
5341 MAC_ARG(network->bssid));
5342
5343 return 1;
5344}
5345
5346static void ipw_merge_adhoc_network(void *data)
5347{
5348 struct ipw_priv *priv = data;
5349 struct ieee80211_network *network = NULL;
5350 struct ipw_network_match match = {
5351 .network = priv->assoc_network
5352 };
5353
James Ketrenosafbf30a2005-08-25 00:05:33 -05005354 if ((priv->status & STATUS_ASSOCIATED) &&
5355 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005356 /* First pass through ROAM process -- look for a better
5357 * network */
5358 unsigned long flags;
5359
5360 spin_lock_irqsave(&priv->ieee->lock, flags);
5361 list_for_each_entry(network, &priv->ieee->network_list, list) {
5362 if (network != priv->assoc_network)
5363 ipw_find_adhoc_network(priv, &match, network,
5364 1);
5365 }
5366 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5367
5368 if (match.network == priv->assoc_network) {
5369 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5370 "merge to.\n");
5371 return;
5372 }
5373
5374 down(&priv->sem);
5375 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5376 IPW_DEBUG_MERGE("remove network %s\n",
5377 escape_essid(priv->essid,
5378 priv->essid_len));
5379 ipw_remove_current_network(priv);
5380 }
5381
5382 ipw_disassociate(priv);
5383 priv->assoc_network = match.network;
5384 up(&priv->sem);
5385 return;
5386 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005387}
5388
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005389static int ipw_best_network(struct ipw_priv *priv,
5390 struct ipw_network_match *match,
5391 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005392{
5393 struct ipw_supported_rates rates;
5394
5395 /* Verify that this network's capability is compatible with the
5396 * current mode (AdHoc or Infrastructure) */
5397 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005398 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005399 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5400 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5401 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005402 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005403 escape_essid(network->ssid, network->ssid_len),
5404 MAC_ARG(network->bssid));
5405 return 0;
5406 }
5407
5408 /* If we do not have an ESSID for this AP, we can not associate with
5409 * it */
5410 if (network->flags & NETWORK_EMPTY_ESSID) {
5411 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5412 "because of hidden ESSID.\n",
5413 escape_essid(network->ssid, network->ssid_len),
5414 MAC_ARG(network->bssid));
5415 return 0;
5416 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005417
James Ketrenos43f66a62005-03-25 12:31:53 -06005418 if (unlikely(roaming)) {
5419 /* If we are roaming, then ensure check if this is a valid
5420 * network to try and roam to */
5421 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005422 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005423 network->ssid_len)) {
5424 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5425 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005426 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005427 network->ssid_len),
5428 MAC_ARG(network->bssid));
5429 return 0;
5430 }
5431 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005432 /* If an ESSID has been configured then compare the broadcast
5433 * ESSID to ours */
5434 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005435 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005436 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005437 min(network->ssid_len, priv->essid_len)))) {
5438 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005439 strncpy(escaped,
5440 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005441 sizeof(escaped));
5442 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005443 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005444 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005445 escape_essid(priv->essid,
5446 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005447 return 0;
5448 }
5449 }
5450
5451 /* If the old network rate is better than this one, don't bother
5452 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005453 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005454 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005455 strncpy(escaped,
5456 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005457 sizeof(escaped));
5458 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5459 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5460 escaped, MAC_ARG(network->bssid),
5461 escape_essid(match->network->ssid,
5462 match->network->ssid_len),
5463 MAC_ARG(match->network->bssid));
5464 return 0;
5465 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005466
James Ketrenos43f66a62005-03-25 12:31:53 -06005467 /* If this network has already had an association attempt within the
5468 * last 3 seconds, do not try and associate again... */
5469 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005470 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005471 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
James Ketrenosafbf30a2005-08-25 00:05:33 -05005472 "because of storming (%lus since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005473 "assoc attempt).\n",
5474 escape_essid(network->ssid, network->ssid_len),
5475 MAC_ARG(network->bssid),
5476 (jiffies - network->last_associate) / HZ);
5477 return 0;
5478 }
5479
5480 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005481 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005482 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005483 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5484 "because of age: %lums.\n",
5485 escape_essid(network->ssid, network->ssid_len),
5486 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005487 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06005488 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005489 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005490
Jeff Garzikbf794512005-07-31 13:07:26 -04005491 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005492 (network->channel != priv->channel)) {
5493 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5494 "because of channel mismatch: %d != %d.\n",
5495 escape_essid(network->ssid, network->ssid_len),
5496 MAC_ARG(network->bssid),
5497 network->channel, priv->channel);
5498 return 0;
5499 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005500
James Ketrenos43f66a62005-03-25 12:31:53 -06005501 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005502 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005503 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5504 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5505 "because of privacy mismatch: %s != %s.\n",
5506 escape_essid(network->ssid, network->ssid_len),
5507 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005508 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005509 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005510 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005511 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005512 return 0;
5513 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005514
Hong Liucdd1fa12005-08-31 18:14:27 +08005515 if (!priv->ieee->wpa_enabled && (network->wpa_ie_len > 0 ||
5516 network->rsn_ie_len > 0)) {
5517 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5518 "because of WPA capability mismatch.\n",
5519 escape_essid(network->ssid, network->ssid_len),
5520 MAC_ARG(network->bssid));
5521 return 0;
5522 }
5523
Jeff Garzikbf794512005-07-31 13:07:26 -04005524 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005525 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5526 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5527 "because of BSSID mismatch: " MAC_FMT ".\n",
5528 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005529 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005530 return 0;
5531 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005532
James Ketrenos43f66a62005-03-25 12:31:53 -06005533 /* Filter out any incompatible freq / mode combinations */
5534 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5535 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5536 "because of invalid frequency/mode "
5537 "combination.\n",
5538 escape_essid(network->ssid, network->ssid_len),
5539 MAC_ARG(network->bssid));
5540 return 0;
5541 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005542
Liu Hong1fe0adb2005-08-19 09:33:10 -05005543 /* Filter out invalid channel in current GEO */
5544 if (!ipw_is_valid_channel(priv->ieee, network->channel)) {
5545 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5546 "because of invalid channel in current GEO\n",
5547 escape_essid(network->ssid, network->ssid_len),
5548 MAC_ARG(network->bssid));
5549 return 0;
5550 }
5551
James Ketrenosea2b26e2005-08-24 21:25:16 -05005552 /* Ensure that the rates supported by the driver are compatible with
5553 * this AP, including verification of basic rates (mandatory) */
5554 if (!ipw_compatible_rates(priv, network, &rates)) {
5555 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5556 "because configured rate mask excludes "
5557 "AP mandatory rate.\n",
5558 escape_essid(network->ssid, network->ssid_len),
5559 MAC_ARG(network->bssid));
5560 return 0;
5561 }
5562
James Ketrenos43f66a62005-03-25 12:31:53 -06005563 if (rates.num_rates == 0) {
5564 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5565 "because of no compatible rates.\n",
5566 escape_essid(network->ssid, network->ssid_len),
5567 MAC_ARG(network->bssid));
5568 return 0;
5569 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005570
James Ketrenos43f66a62005-03-25 12:31:53 -06005571 /* TODO: Perform any further minimal comparititive tests. We do not
5572 * want to put too much policy logic here; intelligent scan selection
5573 * should occur within a generic IEEE 802.11 user space tool. */
5574
5575 /* Set up 'new' AP to this network */
5576 ipw_copy_rates(&match->rates, &rates);
5577 match->network = network;
5578
5579 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5580 escape_essid(network->ssid, network->ssid_len),
5581 MAC_ARG(network->bssid));
5582
5583 return 1;
5584}
5585
Jeff Garzikbf794512005-07-31 13:07:26 -04005586static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005587 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005588{
Liu Hong1fe0adb2005-08-19 09:33:10 -05005589 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005590 int i;
5591
James Ketrenos43f66a62005-03-25 12:31:53 -06005592 /*
5593 * For the purposes of scanning, we can set our wireless mode
5594 * to trigger scans across combinations of bands, but when it
5595 * comes to creating a new ad-hoc network, we have tell the FW
5596 * exactly which band to use.
5597 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005598 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005599 * chossen band. Attempting to create a new ad-hoc network
5600 * with an invalid channel for wireless mode will trigger a
5601 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005602 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005603 */
Liu Hong1fe0adb2005-08-19 09:33:10 -05005604 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005605 case IEEE80211_52GHZ_BAND:
5606 network->mode = IEEE_A;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005607 i = ipw_channel_to_index(priv->ieee, priv->channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005608 if (i == -1)
5609 BUG();
5610 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5611 IPW_WARNING("Overriding invalid channel\n");
5612 priv->channel = geo->a[0].channel;
5613 }
5614 break;
5615
5616 case IEEE80211_24GHZ_BAND:
5617 if (priv->ieee->mode & IEEE_G)
5618 network->mode = IEEE_G;
5619 else
5620 network->mode = IEEE_B;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005621 i = ipw_channel_to_index(priv->ieee, priv->channel);
5622 if (i == -1)
5623 BUG();
5624 if (geo->bg[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5625 IPW_WARNING("Overriding invalid channel\n");
5626 priv->channel = geo->bg[0].channel;
5627 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005628 break;
5629
5630 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005631 IPW_WARNING("Overriding invalid channel\n");
5632 if (priv->ieee->mode & IEEE_A) {
5633 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005634 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005635 } else if (priv->ieee->mode & IEEE_G) {
5636 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005637 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005638 } else {
5639 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005640 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005641 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005642 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005643 }
5644
5645 network->channel = priv->channel;
5646 priv->config |= CFG_ADHOC_PERSIST;
5647 ipw_create_bssid(priv, network->bssid);
5648 network->ssid_len = priv->essid_len;
5649 memcpy(network->ssid, priv->essid, priv->essid_len);
5650 memset(&network->stats, 0, sizeof(network->stats));
5651 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005652 if (!(priv->config & CFG_PREAMBLE_LONG))
5653 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005654 if (priv->capability & CAP_PRIVACY_ON)
5655 network->capability |= WLAN_CAPABILITY_PRIVACY;
5656 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005657 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005658 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005659 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005660 &priv->rates.supported_rates[network->rates_len],
5661 network->rates_ex_len);
5662 network->last_scanned = 0;
5663 network->flags = 0;
5664 network->last_associate = 0;
5665 network->time_stamp[0] = 0;
5666 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005667 network->beacon_interval = 100; /* Default */
5668 network->listen_interval = 10; /* Default */
5669 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005670 network->wpa_ie_len = 0;
5671 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005672}
5673
James Ketrenosb095c382005-08-24 22:04:42 -05005674static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5675{
5676 struct ipw_tgi_tx_key *key;
5677 struct host_cmd cmd = {
5678 .cmd = IPW_CMD_TGI_TX_KEY,
5679 .len = sizeof(*key)
5680 };
5681
5682 if (!(priv->ieee->sec.flags & (1 << index)))
5683 return;
5684
5685 key = (struct ipw_tgi_tx_key *)&cmd.param;
5686 key->key_id = index;
5687 memcpy(key->key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5688 key->security_type = type;
5689 key->station_index = 0; /* always 0 for BSS */
5690 key->flags = 0;
5691 /* 0 for new key; previous value of counter (after fatal error) */
5692 key->tx_counter[0] = 0;
5693 key->tx_counter[1] = 0;
5694
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005695 ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05005696}
5697
5698static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005699{
5700 struct ipw_wep_key *key;
5701 int i;
5702 struct host_cmd cmd = {
5703 .cmd = IPW_CMD_WEP_KEY,
5704 .len = sizeof(*key)
5705 };
5706
5707 key = (struct ipw_wep_key *)&cmd.param;
5708 key->cmd_id = DINO_CMD_WEP_KEY;
5709 key->seq_num = 0;
5710
James Ketrenosb095c382005-08-24 22:04:42 -05005711 /* Note: AES keys cannot be set for multiple times.
5712 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005713 for (i = 0; i < 4; i++) {
James Ketrenosb095c382005-08-24 22:04:42 -05005714 key->key_index = i | type;
5715 if (!(priv->ieee->sec.flags & (1 << i))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005716 key->key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005717 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005718 }
5719
James Ketrenosb095c382005-08-24 22:04:42 -05005720 key->key_size = priv->ieee->sec.key_sizes[i];
5721 memcpy(key->key, priv->ieee->sec.keys[i], key->key_size);
5722
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005723 ipw_send_cmd(priv, &cmd);
Jeff Garzikbf794512005-07-31 13:07:26 -04005724 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005725}
5726
Zhu Yi1fbfea52005-08-05 17:22:56 +08005727static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5728{
5729 if (priv->ieee->host_encrypt)
5730 return;
5731
5732 switch (level) {
5733 case SEC_LEVEL_3:
5734 priv->sys_config.disable_unicast_decryption = 0;
5735 priv->ieee->host_decrypt = 0;
5736 break;
5737 case SEC_LEVEL_2:
5738 priv->sys_config.disable_unicast_decryption = 1;
5739 priv->ieee->host_decrypt = 1;
5740 break;
5741 case SEC_LEVEL_1:
5742 priv->sys_config.disable_unicast_decryption = 0;
5743 priv->ieee->host_decrypt = 0;
5744 break;
5745 case SEC_LEVEL_0:
5746 priv->sys_config.disable_unicast_decryption = 1;
5747 break;
5748 default:
5749 break;
5750 }
5751}
5752
5753static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5754{
5755 if (priv->ieee->host_encrypt)
5756 return;
5757
5758 switch (level) {
5759 case SEC_LEVEL_3:
5760 priv->sys_config.disable_multicast_decryption = 0;
5761 break;
5762 case SEC_LEVEL_2:
5763 priv->sys_config.disable_multicast_decryption = 1;
5764 break;
5765 case SEC_LEVEL_1:
5766 priv->sys_config.disable_multicast_decryption = 0;
5767 break;
5768 case SEC_LEVEL_0:
5769 priv->sys_config.disable_multicast_decryption = 1;
5770 break;
5771 default:
5772 break;
5773 }
5774}
5775
James Ketrenosb095c382005-08-24 22:04:42 -05005776static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5777{
5778 switch (priv->ieee->sec.level) {
5779 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005780 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5781 ipw_send_tgi_tx_key(priv,
5782 DCT_FLAG_EXT_SECURITY_CCM,
5783 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005784
Hong Liu567deaf2005-08-31 18:07:22 +08005785 if (!priv->ieee->host_mc_decrypt)
5786 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005787 break;
5788 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005789 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5790 ipw_send_tgi_tx_key(priv,
5791 DCT_FLAG_EXT_SECURITY_TKIP,
5792 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005793 break;
5794 case SEC_LEVEL_1:
5795 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05005796 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
5797 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05005798 break;
5799 case SEC_LEVEL_0:
5800 default:
5801 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005802 }
5803}
5804
5805static void ipw_adhoc_check(void *data)
5806{
5807 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005808
James Ketrenosafbf30a2005-08-25 00:05:33 -05005809 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005810 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005811 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5812 IPW_DL_STATE | IPW_DL_ASSOC,
5813 "Missed beacon: %d - disassociate\n",
5814 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005815 ipw_remove_current_network(priv);
5816 ipw_disassociate(priv);
5817 return;
5818 }
5819
Jeff Garzikbf794512005-07-31 13:07:26 -04005820 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005821 priv->assoc_request.beacon_interval);
5822}
5823
James Ketrenosc848d0a2005-08-24 21:56:24 -05005824static void ipw_bg_adhoc_check(void *data)
5825{
5826 struct ipw_priv *priv = data;
5827 down(&priv->sem);
5828 ipw_adhoc_check(data);
5829 up(&priv->sem);
5830}
5831
James Ketrenos43f66a62005-03-25 12:31:53 -06005832#ifdef CONFIG_IPW_DEBUG
5833static void ipw_debug_config(struct ipw_priv *priv)
5834{
5835 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5836 "[CFG 0x%08X]\n", priv->config);
5837 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005838 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005839 else
5840 IPW_DEBUG_INFO("Channel unlocked.\n");
5841 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005842 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005843 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005844 else
5845 IPW_DEBUG_INFO("ESSID unlocked.\n");
5846 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005847 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5848 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005849 else
5850 IPW_DEBUG_INFO("BSSID unlocked.\n");
5851 if (priv->capability & CAP_PRIVACY_ON)
5852 IPW_DEBUG_INFO("PRIVACY on\n");
5853 else
5854 IPW_DEBUG_INFO("PRIVACY off\n");
5855 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5856}
5857#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005858#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005859#endif
5860
James Ketrenosb095c382005-08-24 22:04:42 -05005861static inline void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005862{
5863 /* TODO: Verify that this works... */
5864 struct ipw_fixed_rate fr = {
5865 .tx_rates = priv->rates_mask
5866 };
5867 u32 reg;
5868 u16 mask = 0;
5869
Jeff Garzikbf794512005-07-31 13:07:26 -04005870 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005871 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005872
James Ketrenos43f66a62005-03-25 12:31:53 -06005873 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005874 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005875 /* IEEE_A */
5876 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5877 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005878 IPW_DEBUG_WX
5879 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005880 fr.tx_rates = 0;
5881 break;
5882 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005883
James Ketrenos43f66a62005-03-25 12:31:53 -06005884 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5885 break;
5886
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005887 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005888 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005889 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005890 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5891 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005892 IPW_DEBUG_WX
5893 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005894 fr.tx_rates = 0;
5895 }
5896 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005897 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005898
5899 /* IEEE_G */
5900 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5901 IEEE80211_OFDM_RATES_MASK)) {
5902 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005903 IPW_DEBUG_WX
5904 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005905 fr.tx_rates = 0;
5906 break;
5907 }
5908
5909 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5910 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5911 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5912 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005913
James Ketrenos43f66a62005-03-25 12:31:53 -06005914 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5915 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5916 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5917 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005918
James Ketrenos43f66a62005-03-25 12:31:53 -06005919 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5920 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5921 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5922 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005923
James Ketrenos43f66a62005-03-25 12:31:53 -06005924 fr.tx_rates |= mask;
5925 break;
5926 }
5927
5928 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005929 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005930}
5931
James Ketrenosea2b26e2005-08-24 21:25:16 -05005932static void ipw_abort_scan(struct ipw_priv *priv)
5933{
5934 int err;
5935
5936 if (priv->status & STATUS_SCAN_ABORTING) {
5937 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5938 return;
5939 }
5940 priv->status |= STATUS_SCAN_ABORTING;
5941
5942 err = ipw_send_scan_abort(priv);
5943 if (err)
5944 IPW_DEBUG_HC("Request to abort scan failed.\n");
5945}
5946
James Ketrenosafbf30a2005-08-25 00:05:33 -05005947static void ipw_add_scan_channels(struct ipw_priv *priv,
5948 struct ipw_scan_request_ext *scan,
5949 int scan_type)
5950{
5951 int channel_index = 0;
5952 const struct ieee80211_geo *geo;
5953 int i;
5954
Liu Hong1fe0adb2005-08-19 09:33:10 -05005955 geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005956
5957 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5958 int start = channel_index;
5959 for (i = 0; i < geo->a_channels; i++) {
5960 if ((priv->status & STATUS_ASSOCIATED) &&
5961 geo->a[i].channel == priv->channel)
5962 continue;
5963 channel_index++;
5964 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005965 ipw_set_scan_type(scan, channel_index,
5966 geo->a[i].
5967 flags & IEEE80211_CH_PASSIVE_ONLY ?
5968 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
5969 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005970 }
5971
5972 if (start != channel_index) {
5973 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5974 (channel_index - start);
5975 channel_index++;
5976 }
5977 }
5978
5979 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5980 int start = channel_index;
5981 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005982 int index;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005983 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5984 /* nop out the list */
5985 [0] = 0
5986 };
5987
5988 u8 channel;
5989 while (channel_index < IPW_SCAN_CHANNELS) {
5990 channel =
5991 priv->speed_scan[priv->speed_scan_pos];
5992 if (channel == 0) {
5993 priv->speed_scan_pos = 0;
5994 channel = priv->speed_scan[0];
5995 }
5996 if ((priv->status & STATUS_ASSOCIATED) &&
5997 channel == priv->channel) {
5998 priv->speed_scan_pos++;
5999 continue;
6000 }
6001
6002 /* If this channel has already been
6003 * added in scan, break from loop
6004 * and this will be the first channel
6005 * in the next scan.
6006 */
6007 if (channels[channel - 1] != 0)
6008 break;
6009
6010 channels[channel - 1] = 1;
6011 priv->speed_scan_pos++;
6012 channel_index++;
6013 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006014 index =
6015 ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006016 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006017 geo->bg[index].
6018 flags &
6019 IEEE80211_CH_PASSIVE_ONLY ?
6020 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6021 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006022 }
6023 } else {
6024 for (i = 0; i < geo->bg_channels; i++) {
6025 if ((priv->status & STATUS_ASSOCIATED) &&
6026 geo->bg[i].channel == priv->channel)
6027 continue;
6028 channel_index++;
6029 scan->channels_list[channel_index] =
6030 geo->bg[i].channel;
6031 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006032 geo->bg[i].
6033 flags &
6034 IEEE80211_CH_PASSIVE_ONLY ?
6035 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6036 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006037 }
6038 }
6039
6040 if (start != channel_index) {
6041 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6042 (channel_index - start);
6043 }
6044 }
6045}
6046
James Ketrenosea2b26e2005-08-24 21:25:16 -05006047static int ipw_request_scan(struct ipw_priv *priv)
6048{
6049 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006050 int err = 0, scan_type;
6051
6052 if (!(priv->status & STATUS_INIT) ||
6053 (priv->status & STATUS_EXIT_PENDING))
6054 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006055
James Ketrenosb095c382005-08-24 22:04:42 -05006056 down(&priv->sem);
6057
James Ketrenosea2b26e2005-08-24 21:25:16 -05006058 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05006059 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05006060 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006061 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006062 }
6063
James Ketrenosafbf30a2005-08-25 00:05:33 -05006064 if (!(priv->status & STATUS_SCAN_FORCED) &&
6065 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006066 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6067 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006068 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006069 }
6070
6071 if (priv->status & STATUS_RF_KILL_MASK) {
6072 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6073 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006074 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006075 }
6076
6077 memset(&scan, 0, sizeof(scan));
6078
James Ketrenosb095c382005-08-24 22:04:42 -05006079 if (priv->config & CFG_SPEED_SCAN)
6080 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6081 cpu_to_le16(30);
6082 else
6083 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6084 cpu_to_le16(20);
6085
James Ketrenosa613bff2005-08-24 21:43:11 -05006086 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
6087 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05006088 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006089
James Ketrenosa613bff2005-08-24 21:43:11 -05006090 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006091
James Ketrenosb095c382005-08-24 22:04:42 -05006092#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006093 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006094 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006095 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006096
Liu Hong1fe0adb2005-08-19 09:33:10 -05006097 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006098 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006099 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006100 channel = priv->channel;
6101 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006102
James Ketrenosb095c382005-08-24 22:04:42 -05006103 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006104 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006105 channel = priv->channel;
6106 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006107
James Ketrenosb095c382005-08-24 22:04:42 -05006108 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006109 band = (u8) (IPW_B_MODE << 6) | 1;
6110 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006111 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006112 }
6113
James Ketrenosb095c382005-08-24 22:04:42 -05006114 scan.channels_list[0] = band;
6115 scan.channels_list[1] = channel;
6116 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006117
James Ketrenosb095c382005-08-24 22:04:42 -05006118 /* NOTE: The card will sit on this channel for this time
6119 * period. Scan aborts are timing sensitive and frequently
6120 * result in firmware restarts. As such, it is best to
6121 * set a small dwell_time here and just keep re-issuing
6122 * scans. Otherwise fast channel hopping will not actually
6123 * hop channels.
6124 *
6125 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006126 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6127 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006128 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006129#endif /* CONFIG_IPW2200_MONITOR */
6130 /* If we are roaming, then make this a directed scan for the
6131 * current network. Otherwise, ensure that every other scan
6132 * is a fast channel hop scan */
6133 if ((priv->status & STATUS_ROAMING)
6134 || (!(priv->status & STATUS_ASSOCIATED)
6135 && (priv->config & CFG_STATIC_ESSID)
6136 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006137 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6138 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006139 IPW_DEBUG_HC("Attempt to send SSID command "
6140 "failed.\n");
6141 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006142 }
6143
6144 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006145 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006146 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006147
James Ketrenosafbf30a2005-08-25 00:05:33 -05006148 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006149#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006150 }
6151#endif
6152
6153 err = ipw_send_scan_request_ext(priv, &scan);
6154 if (err) {
6155 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006156 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006157 }
6158
6159 priv->status |= STATUS_SCANNING;
6160 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006161 queue_delayed_work(priv->workqueue, &priv->scan_check,
6162 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05006163 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05006164 up(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05006165 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006166}
6167
6168static void ipw_bg_abort_scan(void *data)
6169{
6170 struct ipw_priv *priv = data;
6171 down(&priv->sem);
6172 ipw_abort_scan(data);
6173 up(&priv->sem);
6174}
6175
James Ketrenosea2b26e2005-08-24 21:25:16 -05006176static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6177{
James Ketrenosb095c382005-08-24 22:04:42 -05006178 /* This is called when wpa_supplicant loads and closes the driver
6179 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006180 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006181 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006182}
6183
James Ketrenosea2b26e2005-08-24 21:25:16 -05006184static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6185{
6186 struct ieee80211_device *ieee = priv->ieee;
6187 struct ieee80211_security sec = {
6188 .flags = SEC_AUTH_MODE,
6189 };
6190 int ret = 0;
6191
James Ketrenosafbf30a2005-08-25 00:05:33 -05006192 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006193 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6194 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006195 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006196 sec.auth_mode = WLAN_AUTH_OPEN;
6197 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006198 } else
6199 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006200
6201 if (ieee->set_security)
6202 ieee->set_security(ieee->dev, &sec);
6203 else
6204 ret = -EOPNOTSUPP;
6205
6206 return ret;
6207}
6208
James Ketrenosafbf30a2005-08-25 00:05:33 -05006209void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie, int wpa_ie_len)
6210{
6211 /* make sure WPA is enabled */
6212 ipw_wpa_enable(priv, 1);
6213
6214 ipw_disassociate(priv);
6215}
6216
6217static int ipw_set_rsn_capa(struct ipw_priv *priv,
6218 char *capabilities, int length)
6219{
6220 struct host_cmd cmd = {
6221 .cmd = IPW_CMD_RSN_CAPABILITIES,
6222 .len = length,
6223 };
6224
6225 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6226
6227 memcpy(cmd.param, capabilities, length);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05006228 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006229}
6230
James Ketrenosafbf30a2005-08-25 00:05:33 -05006231/*
6232 * WE-18 support
6233 */
6234
6235/* SIOCSIWGENIE */
6236static int ipw_wx_set_genie(struct net_device *dev,
6237 struct iw_request_info *info,
6238 union iwreq_data *wrqu, char *extra)
6239{
6240 struct ipw_priv *priv = ieee80211_priv(dev);
6241 struct ieee80211_device *ieee = priv->ieee;
6242 u8 *buf;
6243 int err = 0;
6244
6245 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6246 (wrqu->data.length && extra == NULL))
6247 return -EINVAL;
6248
6249 //down(&priv->sem);
6250
6251 //if (!ieee->wpa_enabled) {
6252 // err = -EOPNOTSUPP;
6253 // goto out;
6254 //}
6255
6256 if (wrqu->data.length) {
6257 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6258 if (buf == NULL) {
6259 err = -ENOMEM;
6260 goto out;
6261 }
6262
6263 memcpy(buf, extra, wrqu->data.length);
6264 kfree(ieee->wpa_ie);
6265 ieee->wpa_ie = buf;
6266 ieee->wpa_ie_len = wrqu->data.length;
6267 } else {
6268 kfree(ieee->wpa_ie);
6269 ieee->wpa_ie = NULL;
6270 ieee->wpa_ie_len = 0;
6271 }
6272
6273 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6274 out:
6275 //up(&priv->sem);
6276 return err;
6277}
6278
6279/* SIOCGIWGENIE */
6280static int ipw_wx_get_genie(struct net_device *dev,
6281 struct iw_request_info *info,
6282 union iwreq_data *wrqu, char *extra)
6283{
6284 struct ipw_priv *priv = ieee80211_priv(dev);
6285 struct ieee80211_device *ieee = priv->ieee;
6286 int err = 0;
6287
6288 //down(&priv->sem);
6289
6290 //if (!ieee->wpa_enabled) {
6291 // err = -EOPNOTSUPP;
6292 // goto out;
6293 //}
6294
6295 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6296 wrqu->data.length = 0;
6297 goto out;
6298 }
6299
6300 if (wrqu->data.length < ieee->wpa_ie_len) {
6301 err = -E2BIG;
6302 goto out;
6303 }
6304
6305 wrqu->data.length = ieee->wpa_ie_len;
6306 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6307
6308 out:
6309 //up(&priv->sem);
6310 return err;
6311}
6312
Zhu Yi1fbfea52005-08-05 17:22:56 +08006313static int wext_cipher2level(int cipher)
6314{
6315 switch (cipher) {
6316 case IW_AUTH_CIPHER_NONE:
6317 return SEC_LEVEL_0;
6318 case IW_AUTH_CIPHER_WEP40:
6319 case IW_AUTH_CIPHER_WEP104:
6320 return SEC_LEVEL_1;
6321 case IW_AUTH_CIPHER_TKIP:
6322 return SEC_LEVEL_2;
6323 case IW_AUTH_CIPHER_CCMP:
6324 return SEC_LEVEL_3;
6325 default:
6326 return -1;
6327 }
6328}
6329
James Ketrenosafbf30a2005-08-25 00:05:33 -05006330/* SIOCSIWAUTH */
6331static int ipw_wx_set_auth(struct net_device *dev,
6332 struct iw_request_info *info,
6333 union iwreq_data *wrqu, char *extra)
6334{
6335 struct ipw_priv *priv = ieee80211_priv(dev);
6336 struct ieee80211_device *ieee = priv->ieee;
6337 struct iw_param *param = &wrqu->param;
6338 struct ieee80211_crypt_data *crypt;
6339 unsigned long flags;
6340 int ret = 0;
6341
6342 switch (param->flags & IW_AUTH_INDEX) {
6343 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006344 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006345 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006346 ipw_set_hw_decrypt_unicast(priv,
6347 wext_cipher2level(param->value));
6348 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006349 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006350 ipw_set_hw_decrypt_multicast(priv,
6351 wext_cipher2level(param->value));
6352 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006353 case IW_AUTH_KEY_MGMT:
6354 /*
6355 * ipw2200 does not use these parameters
6356 */
6357 break;
6358
6359 case IW_AUTH_TKIP_COUNTERMEASURES:
6360 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006361 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006362 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006363
6364 flags = crypt->ops->get_flags(crypt->priv);
6365
6366 if (param->value)
6367 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6368 else
6369 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6370
6371 crypt->ops->set_flags(flags, crypt->priv);
6372
6373 break;
6374
6375 case IW_AUTH_DROP_UNENCRYPTED:{
6376 /* HACK:
6377 *
6378 * wpa_supplicant calls set_wpa_enabled when the driver
6379 * is loaded and unloaded, regardless of if WPA is being
6380 * used. No other calls are made which can be used to
6381 * determine if encryption will be used or not prior to
6382 * association being expected. If encryption is not being
6383 * used, drop_unencrypted is set to false, else true -- we
6384 * can use this to determine if the CAP_PRIVACY_ON bit should
6385 * be set.
6386 */
6387 struct ieee80211_security sec = {
6388 .flags = SEC_ENABLED,
6389 .enabled = param->value,
6390 };
6391 priv->ieee->drop_unencrypted = param->value;
6392 /* We only change SEC_LEVEL for open mode. Others
6393 * are set by ipw_wpa_set_encryption.
6394 */
6395 if (!param->value) {
6396 sec.flags |= SEC_LEVEL;
6397 sec.level = SEC_LEVEL_0;
6398 } else {
6399 sec.flags |= SEC_LEVEL;
6400 sec.level = SEC_LEVEL_1;
6401 }
6402 if (priv->ieee->set_security)
6403 priv->ieee->set_security(priv->ieee->dev, &sec);
6404 break;
6405 }
6406
6407 case IW_AUTH_80211_AUTH_ALG:
6408 ret = ipw_wpa_set_auth_algs(priv, param->value);
6409 break;
6410
6411 case IW_AUTH_WPA_ENABLED:
6412 ret = ipw_wpa_enable(priv, param->value);
6413 break;
6414
6415 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6416 ieee->ieee802_1x = param->value;
6417 break;
6418
6419 //case IW_AUTH_ROAMING_CONTROL:
6420 case IW_AUTH_PRIVACY_INVOKED:
6421 ieee->privacy_invoked = param->value;
6422 break;
6423
6424 default:
6425 return -EOPNOTSUPP;
6426 }
6427 return ret;
6428}
6429
6430/* SIOCGIWAUTH */
6431static int ipw_wx_get_auth(struct net_device *dev,
6432 struct iw_request_info *info,
6433 union iwreq_data *wrqu, char *extra)
6434{
6435 struct ipw_priv *priv = ieee80211_priv(dev);
6436 struct ieee80211_device *ieee = priv->ieee;
6437 struct ieee80211_crypt_data *crypt;
6438 struct iw_param *param = &wrqu->param;
6439 int ret = 0;
6440
6441 switch (param->flags & IW_AUTH_INDEX) {
6442 case IW_AUTH_WPA_VERSION:
6443 case IW_AUTH_CIPHER_PAIRWISE:
6444 case IW_AUTH_CIPHER_GROUP:
6445 case IW_AUTH_KEY_MGMT:
6446 /*
6447 * wpa_supplicant will control these internally
6448 */
6449 ret = -EOPNOTSUPP;
6450 break;
6451
6452 case IW_AUTH_TKIP_COUNTERMEASURES:
6453 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006454 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006455 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006456
6457 param->value = (crypt->ops->get_flags(crypt->priv) &
6458 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6459
6460 break;
6461
6462 case IW_AUTH_DROP_UNENCRYPTED:
6463 param->value = ieee->drop_unencrypted;
6464 break;
6465
6466 case IW_AUTH_80211_AUTH_ALG:
6467 param->value = ieee->sec.auth_mode;
6468 break;
6469
6470 case IW_AUTH_WPA_ENABLED:
6471 param->value = ieee->wpa_enabled;
6472 break;
6473
6474 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6475 param->value = ieee->ieee802_1x;
6476 break;
6477
6478 case IW_AUTH_ROAMING_CONTROL:
6479 case IW_AUTH_PRIVACY_INVOKED:
6480 param->value = ieee->privacy_invoked;
6481 break;
6482
6483 default:
6484 return -EOPNOTSUPP;
6485 }
6486 return 0;
6487}
6488
6489/* SIOCSIWENCODEEXT */
6490static int ipw_wx_set_encodeext(struct net_device *dev,
6491 struct iw_request_info *info,
6492 union iwreq_data *wrqu, char *extra)
6493{
6494 struct ipw_priv *priv = ieee80211_priv(dev);
6495 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6496
6497 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006498 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006499 /* IPW HW can't build TKIP MIC,
6500 host decryption still needed */
6501 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6502 priv->ieee->host_mc_decrypt = 1;
6503 else {
6504 priv->ieee->host_encrypt = 0;
6505 priv->ieee->host_encrypt_msdu = 1;
6506 priv->ieee->host_decrypt = 1;
6507 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006508 } else {
6509 priv->ieee->host_encrypt = 0;
6510 priv->ieee->host_encrypt_msdu = 0;
6511 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006512 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006513 }
6514 }
6515
6516 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6517}
6518
6519/* SIOCGIWENCODEEXT */
6520static int ipw_wx_get_encodeext(struct net_device *dev,
6521 struct iw_request_info *info,
6522 union iwreq_data *wrqu, char *extra)
6523{
6524 struct ipw_priv *priv = ieee80211_priv(dev);
6525 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
6526}
6527
6528/* SIOCSIWMLME */
6529static int ipw_wx_set_mlme(struct net_device *dev,
6530 struct iw_request_info *info,
6531 union iwreq_data *wrqu, char *extra)
6532{
6533 struct ipw_priv *priv = ieee80211_priv(dev);
6534 struct iw_mlme *mlme = (struct iw_mlme *)extra;
6535 u16 reason;
6536
6537 reason = cpu_to_le16(mlme->reason_code);
6538
6539 switch (mlme->cmd) {
6540 case IW_MLME_DEAUTH:
6541 // silently ignore
6542 break;
6543
6544 case IW_MLME_DISASSOC:
6545 ipw_disassociate(priv);
6546 break;
6547
6548 default:
6549 return -EOPNOTSUPP;
6550 }
6551 return 0;
6552}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006553
James Ketrenosb095c382005-08-24 22:04:42 -05006554#ifdef CONFIG_IPW_QOS
6555
6556/* QoS */
6557/*
6558* get the modulation type of the current network or
6559* the card current mode
6560*/
6561u8 ipw_qos_current_mode(struct ipw_priv * priv)
6562{
6563 u8 mode = 0;
6564
6565 if (priv->status & STATUS_ASSOCIATED) {
6566 unsigned long flags;
6567
6568 spin_lock_irqsave(&priv->ieee->lock, flags);
6569 mode = priv->assoc_network->mode;
6570 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6571 } else {
6572 mode = priv->ieee->mode;
6573 }
6574 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
6575 return mode;
6576}
6577
6578/*
6579* Handle management frame beacon and probe response
6580*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006581static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6582 int active_network,
6583 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006584{
6585 u32 size = sizeof(struct ieee80211_qos_parameters);
6586
James Ketrenosafbf30a2005-08-25 00:05:33 -05006587 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006588 network->qos_data.active = network->qos_data.supported;
6589
6590 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006591 if (active_network &&
6592 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006593 network->qos_data.active = network->qos_data.supported;
6594
6595 if ((network->qos_data.active == 1) && (active_network == 1) &&
6596 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6597 (network->qos_data.old_param_count !=
6598 network->qos_data.param_count)) {
6599 network->qos_data.old_param_count =
6600 network->qos_data.param_count;
6601 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006602 IPW_DEBUG_QOS("QoS parameters change call "
6603 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006604 }
6605 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006606 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6607 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006608 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006609 else
6610 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006611 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006612
James Ketrenosb095c382005-08-24 22:04:42 -05006613 if ((network->qos_data.active == 1) && (active_network == 1)) {
6614 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
6615 schedule_work(&priv->qos_activate);
6616 }
6617
6618 network->qos_data.active = 0;
6619 network->qos_data.supported = 0;
6620 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006621 if ((priv->status & STATUS_ASSOCIATED) &&
6622 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
6623 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
6624 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
6625 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05006626 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006627 priv->assoc_network->ssid_len) &&
6628 !memcmp(network->ssid,
6629 priv->assoc_network->ssid,
6630 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006631 queue_work(priv->workqueue,
6632 &priv->merge_networks);
6633 }
James Ketrenosb095c382005-08-24 22:04:42 -05006634 }
6635
6636 return 0;
6637}
6638
6639/*
6640* This function set up the firmware to support QoS. It sends
6641* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6642*/
6643static int ipw_qos_activate(struct ipw_priv *priv,
6644 struct ieee80211_qos_data *qos_network_data)
6645{
6646 int err;
6647 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
6648 struct ieee80211_qos_parameters *active_one = NULL;
6649 u32 size = sizeof(struct ieee80211_qos_parameters);
6650 u32 burst_duration;
6651 int i;
6652 u8 type;
6653
6654 type = ipw_qos_current_mode(priv);
6655
6656 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6657 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6658 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6659 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6660
6661 if (qos_network_data == NULL) {
6662 if (type == IEEE_B) {
6663 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
6664 active_one = &def_parameters_CCK;
6665 } else
6666 active_one = &def_parameters_OFDM;
6667
James Ketrenosafbf30a2005-08-25 00:05:33 -05006668 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006669 burst_duration = ipw_qos_get_burst_duration(priv);
6670 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006671 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
6672 (u16) burst_duration;
6673 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05006674 if (type == IEEE_B) {
6675 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
6676 type);
6677 if (priv->qos_data.qos_enable == 0)
6678 active_one = &def_parameters_CCK;
6679 else
6680 active_one = priv->qos_data.def_qos_parm_CCK;
6681 } else {
6682 if (priv->qos_data.qos_enable == 0)
6683 active_one = &def_parameters_OFDM;
6684 else
6685 active_one = priv->qos_data.def_qos_parm_OFDM;
6686 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006687 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006688 } else {
6689 unsigned long flags;
6690 int active;
6691
6692 spin_lock_irqsave(&priv->ieee->lock, flags);
6693 active_one = &(qos_network_data->parameters);
6694 qos_network_data->old_param_count =
6695 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006696 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006697 active = qos_network_data->supported;
6698 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6699
6700 if (active == 0) {
6701 burst_duration = ipw_qos_get_burst_duration(priv);
6702 for (i = 0; i < QOS_QUEUE_NUM; i++)
6703 qos_parameters[QOS_PARAM_SET_ACTIVE].
6704 tx_op_limit[i] = (u16) burst_duration;
6705 }
6706 }
6707
6708 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05006709 err = ipw_send_qos_params_command(priv,
6710 (struct ieee80211_qos_parameters *)
6711 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05006712 if (err)
6713 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
6714
6715 return err;
6716}
6717
6718/*
6719* send IPW_CMD_WME_INFO to the firmware
6720*/
6721static int ipw_qos_set_info_element(struct ipw_priv *priv)
6722{
6723 int ret = 0;
6724 struct ieee80211_qos_information_element qos_info;
6725
6726 if (priv == NULL)
6727 return -1;
6728
6729 qos_info.elementID = QOS_ELEMENT_ID;
6730 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
6731
6732 qos_info.version = QOS_VERSION_1;
6733 qos_info.ac_info = 0;
6734
6735 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
6736 qos_info.qui_type = QOS_OUI_TYPE;
6737 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
6738
6739 ret = ipw_send_qos_info_command(priv, &qos_info);
6740 if (ret != 0) {
6741 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
6742 }
6743 return ret;
6744}
6745
6746/*
6747* Set the QoS parameter with the association request structure
6748*/
6749static int ipw_qos_association(struct ipw_priv *priv,
6750 struct ieee80211_network *network)
6751{
6752 int err = 0;
6753 struct ieee80211_qos_data *qos_data = NULL;
6754 struct ieee80211_qos_data ibss_data = {
6755 .supported = 1,
6756 .active = 1,
6757 };
6758
6759 switch (priv->ieee->iw_mode) {
6760 case IW_MODE_ADHOC:
6761 if (!(network->capability & WLAN_CAPABILITY_IBSS))
6762 BUG();
6763
6764 qos_data = &ibss_data;
6765 break;
6766
6767 case IW_MODE_INFRA:
6768 qos_data = &network->qos_data;
6769 break;
6770
6771 default:
6772 BUG();
6773 break;
6774 }
6775
6776 err = ipw_qos_activate(priv, qos_data);
6777 if (err) {
6778 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
6779 return err;
6780 }
6781
6782 if (priv->qos_data.qos_enable && qos_data->supported) {
6783 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
6784 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
6785 return ipw_qos_set_info_element(priv);
6786 }
6787
6788 return 0;
6789}
6790
6791/*
6792* handling the beaconing responces. if we get different QoS setting
6793* of the network from the the associated setting adjust the QoS
6794* setting
6795*/
6796static int ipw_qos_association_resp(struct ipw_priv *priv,
6797 struct ieee80211_network *network)
6798{
6799 int ret = 0;
6800 unsigned long flags;
6801 u32 size = sizeof(struct ieee80211_qos_parameters);
6802 int set_qos_param = 0;
6803
James Ketrenosafbf30a2005-08-25 00:05:33 -05006804 if ((priv == NULL) || (network == NULL) ||
6805 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05006806 return ret;
6807
6808 if (!(priv->status & STATUS_ASSOCIATED))
6809 return ret;
6810
James Ketrenosafbf30a2005-08-25 00:05:33 -05006811 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05006812 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05006813
6814 spin_lock_irqsave(&priv->ieee->lock, flags);
6815 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006816 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05006817 sizeof(struct ieee80211_qos_data));
6818 priv->assoc_network->qos_data.active = 1;
6819 if ((network->qos_data.old_param_count !=
6820 network->qos_data.param_count)) {
6821 set_qos_param = 1;
6822 network->qos_data.old_param_count =
6823 network->qos_data.param_count;
6824 }
6825
6826 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006827 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
6828 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006829 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006830 else
6831 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006832 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006833 priv->assoc_network->qos_data.active = 0;
6834 priv->assoc_network->qos_data.supported = 0;
6835 set_qos_param = 1;
6836 }
6837
6838 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6839
6840 if (set_qos_param == 1)
6841 schedule_work(&priv->qos_activate);
6842
6843 return ret;
6844}
6845
6846static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
6847{
6848 u32 ret = 0;
6849
6850 if ((priv == NULL))
6851 return 0;
6852
James Ketrenosafbf30a2005-08-25 00:05:33 -05006853 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05006854 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006855 else
James Ketrenosb095c382005-08-24 22:04:42 -05006856 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006857
James Ketrenosb095c382005-08-24 22:04:42 -05006858 return ret;
6859}
6860
6861/*
6862* Initialize the setting of QoS global
6863*/
6864static void ipw_qos_init(struct ipw_priv *priv, int enable,
6865 int burst_enable, u32 burst_duration_CCK,
6866 u32 burst_duration_OFDM)
6867{
6868 priv->qos_data.qos_enable = enable;
6869
6870 if (priv->qos_data.qos_enable) {
6871 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
6872 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
6873 IPW_DEBUG_QOS("QoS is enabled\n");
6874 } else {
6875 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
6876 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
6877 IPW_DEBUG_QOS("QoS is not enabled\n");
6878 }
6879
6880 priv->qos_data.burst_enable = burst_enable;
6881
6882 if (burst_enable) {
6883 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
6884 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
6885 } else {
6886 priv->qos_data.burst_duration_CCK = 0;
6887 priv->qos_data.burst_duration_OFDM = 0;
6888 }
6889}
6890
6891/*
6892* map the packet priority to the right TX Queue
6893*/
6894static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
6895{
6896 if (priority > 7 || !priv->qos_data.qos_enable)
6897 priority = 0;
6898
6899 return from_priority_to_tx_queue[priority] - 1;
6900}
6901
6902/*
6903* add QoS parameter to the TX command
6904*/
6905static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
6906 u16 priority,
6907 struct tfd_data *tfd, u8 unicast)
6908{
6909 int ret = 0;
6910 int tx_queue_id = 0;
6911 struct ieee80211_qos_data *qos_data = NULL;
6912 int active, supported;
6913 unsigned long flags;
6914
6915 if (!(priv->status & STATUS_ASSOCIATED))
6916 return 0;
6917
6918 qos_data = &priv->assoc_network->qos_data;
6919
6920 spin_lock_irqsave(&priv->ieee->lock, flags);
6921
6922 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
6923 if (unicast == 0)
6924 qos_data->active = 0;
6925 else
6926 qos_data->active = qos_data->supported;
6927 }
6928
6929 active = qos_data->active;
6930 supported = qos_data->supported;
6931
6932 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6933
James Ketrenosafbf30a2005-08-25 00:05:33 -05006934 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
6935 "unicast %d\n",
6936 priv->qos_data.qos_enable, active, supported, unicast);
James Ketrenosb095c382005-08-24 22:04:42 -05006937 if (active && priv->qos_data.qos_enable) {
6938 ret = from_priority_to_tx_queue[priority];
6939 tx_queue_id = ret - 1;
6940 IPW_DEBUG_QOS("QoS packet priority is %d \n", priority);
6941 if (priority <= 7) {
6942 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
6943 tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
6944 tfd->tfd.tfd_26.mchdr.frame_ctl |=
6945 IEEE80211_STYPE_QOS_DATA;
6946
6947 if (priv->qos_data.qos_no_ack_mask &
6948 (1UL << tx_queue_id)) {
6949 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
6950 tfd->tfd.tfd_26.mchdr.qos_ctrl |=
6951 CTRL_QOS_NO_ACK;
6952 }
6953 }
6954 }
6955
6956 return ret;
6957}
6958
6959/*
6960* background support to run QoS activate functionality
6961*/
6962static void ipw_bg_qos_activate(void *data)
6963{
6964 struct ipw_priv *priv = data;
6965
6966 if (priv == NULL)
6967 return;
6968
6969 down(&priv->sem);
6970
6971 if (priv->status & STATUS_ASSOCIATED)
6972 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
6973
6974 up(&priv->sem);
6975}
6976
James Ketrenos3b9990c2005-08-19 13:18:55 -05006977static int ipw_handle_probe_response(struct net_device *dev,
6978 struct ieee80211_probe_response *resp,
6979 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006980{
6981 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05006982 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
6983 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05006984
James Ketrenos3b9990c2005-08-19 13:18:55 -05006985 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05006986
James Ketrenos3b9990c2005-08-19 13:18:55 -05006987 return 0;
6988}
James Ketrenosb095c382005-08-24 22:04:42 -05006989
James Ketrenos3b9990c2005-08-19 13:18:55 -05006990static int ipw_handle_beacon(struct net_device *dev,
6991 struct ieee80211_beacon *resp,
6992 struct ieee80211_network *network)
6993{
6994 struct ipw_priv *priv = ieee80211_priv(dev);
6995 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
6996 (network == priv->assoc_network));
6997
6998 ipw_qos_handle_probe_response(priv, active_network, network);
6999
7000 return 0;
7001}
7002
7003static int ipw_handle_assoc_response(struct net_device *dev,
7004 struct ieee80211_assoc_response *resp,
7005 struct ieee80211_network *network)
7006{
7007 struct ipw_priv *priv = ieee80211_priv(dev);
7008 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007009 return 0;
7010}
7011
7012static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
7013 *qos_param)
7014{
7015 struct host_cmd cmd = {
7016 .cmd = IPW_CMD_QOS_PARAMETERS,
7017 .len = (sizeof(struct ieee80211_qos_parameters) * 3)
7018 };
7019
James Ketrenosafbf30a2005-08-25 00:05:33 -05007020 memcpy(cmd.param, qos_param, sizeof(*qos_param) * 3);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007021 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007022}
7023
7024static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
7025 *qos_param)
7026{
7027 struct host_cmd cmd = {
7028 .cmd = IPW_CMD_WME_INFO,
7029 .len = sizeof(*qos_param)
7030 };
7031
James Ketrenosafbf30a2005-08-25 00:05:33 -05007032 memcpy(cmd.param, qos_param, sizeof(*qos_param));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007033 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007034}
7035
7036#endif /* CONFIG_IPW_QOS */
7037
James Ketrenos43f66a62005-03-25 12:31:53 -06007038static int ipw_associate_network(struct ipw_priv *priv,
7039 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007040 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007041{
7042 int err;
7043
7044 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007045 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007046
7047 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007048 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007049 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007050 memcpy(priv->essid, network->ssid, priv->essid_len);
7051 }
7052
7053 network->last_associate = jiffies;
7054
7055 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7056 priv->assoc_request.channel = network->channel;
7057 if ((priv->capability & CAP_PRIVACY_ON) &&
7058 (priv->capability & CAP_SHARED_KEY)) {
7059 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007060 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7061
7062 if ((priv->capability & CAP_PRIVACY_ON) &&
7063 (priv->ieee->sec.level == SEC_LEVEL_1) &&
7064 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
7065 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenos43f66a62005-03-25 12:31:53 -06007066 } else {
7067 priv->assoc_request.auth_type = AUTH_OPEN;
7068 priv->assoc_request.auth_key = 0;
7069 }
7070
James Ketrenosa613bff2005-08-24 21:43:11 -05007071 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007072 priv->assoc_request.policy_support = 0x02; /* RSN active */
7073 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7074 priv->ieee->wpa_ie_len);
7075 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007076
Jeff Garzikbf794512005-07-31 13:07:26 -04007077 /*
7078 * It is valid for our ieee device to support multiple modes, but
7079 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007080 * just one mode.
7081 */
7082 if (network->mode & priv->ieee->mode & IEEE_A)
7083 priv->assoc_request.ieee_mode = IPW_A_MODE;
7084 else if (network->mode & priv->ieee->mode & IEEE_G)
7085 priv->assoc_request.ieee_mode = IPW_G_MODE;
7086 else if (network->mode & priv->ieee->mode & IEEE_B)
7087 priv->assoc_request.ieee_mode = IPW_B_MODE;
7088
James Ketrenosea2b26e2005-08-24 21:25:16 -05007089 priv->assoc_request.capability = network->capability;
7090 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7091 && !(priv->config & CFG_PREAMBLE_LONG)) {
7092 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7093 } else {
7094 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7095
7096 /* Clear the short preamble if we won't be supporting it */
7097 priv->assoc_request.capability &=
7098 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7099 }
7100
James Ketrenosafbf30a2005-08-25 00:05:33 -05007101 /* Clear capability bits that aren't used in Ad Hoc */
7102 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7103 priv->assoc_request.capability &=
7104 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7105
James Ketrenos43f66a62005-03-25 12:31:53 -06007106 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007107 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007108 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007109 escape_essid(priv->essid, priv->essid_len),
7110 network->channel,
7111 ipw_modes[priv->assoc_request.ieee_mode],
7112 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007113 (priv->assoc_request.preamble_length ==
7114 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7115 network->capability &
7116 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007117 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007118 priv->capability & CAP_PRIVACY_ON ?
7119 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007120 "(open)") : "",
7121 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007122 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007123 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007124 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007125
7126 priv->assoc_request.beacon_interval = network->beacon_interval;
7127 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007128 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007129 priv->assoc_request.assoc_type = HC_IBSS_START;
7130 priv->assoc_request.assoc_tsf_msw = 0;
7131 priv->assoc_request.assoc_tsf_lsw = 0;
7132 } else {
7133 if (unlikely(roaming))
7134 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7135 else
7136 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7137 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7138 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7139 }
7140
James Ketrenosafbf30a2005-08-25 00:05:33 -05007141 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007142
7143 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7144 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7145 priv->assoc_request.atim_window = network->atim_window;
7146 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007147 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007148 priv->assoc_request.atim_window = 0;
7149 }
7150
James Ketrenos43f66a62005-03-25 12:31:53 -06007151 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007152
James Ketrenos43f66a62005-03-25 12:31:53 -06007153 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7154 if (err) {
7155 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7156 return err;
7157 }
7158
7159 rates->ieee_mode = priv->assoc_request.ieee_mode;
7160 rates->purpose = IPW_RATE_CONNECT;
7161 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007162
James Ketrenos43f66a62005-03-25 12:31:53 -06007163 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7164 priv->sys_config.dot11g_auto_detection = 1;
7165 else
7166 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007167
7168 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7169 priv->sys_config.answer_broadcast_ssid_probe = 1;
7170 else
7171 priv->sys_config.answer_broadcast_ssid_probe = 0;
7172
James Ketrenos43f66a62005-03-25 12:31:53 -06007173 err = ipw_send_system_config(priv, &priv->sys_config);
7174 if (err) {
7175 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7176 return err;
7177 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007178
James Ketrenos43f66a62005-03-25 12:31:53 -06007179 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007180 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007181 if (err) {
7182 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7183 return err;
7184 }
7185
7186 /*
7187 * If preemption is enabled, it is possible for the association
7188 * to complete before we return from ipw_send_associate. Therefore
7189 * we have to be sure and update our priviate data first.
7190 */
7191 priv->channel = network->channel;
7192 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007193 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007194 priv->status &= ~STATUS_SECURITY_UPDATED;
7195
7196 priv->assoc_network = network;
7197
James Ketrenosb095c382005-08-24 22:04:42 -05007198#ifdef CONFIG_IPW_QOS
7199 ipw_qos_association(priv, network);
7200#endif
7201
James Ketrenos43f66a62005-03-25 12:31:53 -06007202 err = ipw_send_associate(priv, &priv->assoc_request);
7203 if (err) {
7204 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7205 return err;
7206 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007207
7208 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007209 escape_essid(priv->essid, priv->essid_len),
7210 MAC_ARG(priv->bssid));
7211
7212 return 0;
7213}
7214
7215static void ipw_roam(void *data)
7216{
7217 struct ipw_priv *priv = data;
7218 struct ieee80211_network *network = NULL;
7219 struct ipw_network_match match = {
7220 .network = priv->assoc_network
7221 };
7222
7223 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007224 *
7225 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007226 * setting the status ROAM bit and requesting a scan.
7227 * 2. When the scan completes, it schedules the ROAM work
7228 * 3. The ROAM work looks at all of the known networks for one that
7229 * is a better network than the currently associated. If none
7230 * found, the ROAM process is over (ROAM bit cleared)
7231 * 4. If a better network is found, a disassociation request is
7232 * sent.
7233 * 5. When the disassociation completes, the roam work is again
7234 * scheduled. The second time through, the driver is no longer
7235 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007236 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007237 * 6. At this point ,the roaming process is complete and the ROAM
7238 * status bit is cleared.
7239 */
7240
7241 /* If we are no longer associated, and the roaming bit is no longer
7242 * set, then we are not actively roaming, so just return */
7243 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7244 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007245
James Ketrenos43f66a62005-03-25 12:31:53 -06007246 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007247 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007248 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007249 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007250 u8 rssi = priv->assoc_network->stats.rssi;
7251 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007252 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007253 list_for_each_entry(network, &priv->ieee->network_list, list) {
7254 if (network != priv->assoc_network)
7255 ipw_best_network(priv, &match, network, 1);
7256 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007257 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007258 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007259
James Ketrenos43f66a62005-03-25 12:31:53 -06007260 if (match.network == priv->assoc_network) {
7261 IPW_DEBUG_ASSOC("No better APs in this network to "
7262 "roam to.\n");
7263 priv->status &= ~STATUS_ROAMING;
7264 ipw_debug_config(priv);
7265 return;
7266 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007267
James Ketrenos43f66a62005-03-25 12:31:53 -06007268 ipw_send_disassociate(priv, 1);
7269 priv->assoc_network = match.network;
7270
7271 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007272 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007273
7274 /* Second pass through ROAM process -- request association */
7275 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7276 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7277 priv->status &= ~STATUS_ROAMING;
7278}
7279
James Ketrenosc848d0a2005-08-24 21:56:24 -05007280static void ipw_bg_roam(void *data)
7281{
7282 struct ipw_priv *priv = data;
7283 down(&priv->sem);
7284 ipw_roam(data);
7285 up(&priv->sem);
7286}
7287
7288static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007289{
7290 struct ipw_priv *priv = data;
7291
7292 struct ieee80211_network *network = NULL;
7293 struct ipw_network_match match = {
7294 .network = NULL
7295 };
7296 struct ipw_supported_rates *rates;
7297 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007298 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007299
James Ketrenosb095c382005-08-24 22:04:42 -05007300 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7301 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7302 return 0;
7303 }
7304
James Ketrenosc848d0a2005-08-24 21:56:24 -05007305 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007306 IPW_DEBUG_ASSOC("Not attempting association (already in "
7307 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007308 return 0;
7309 }
7310
Hong Liue6324722005-09-14 21:04:15 -05007311 if (priv->status & STATUS_DISASSOCIATING) {
7312 IPW_DEBUG_ASSOC("Not attempting association (in "
7313 "disassociating)\n ");
7314 queue_work(priv->workqueue, &priv->associate);
7315 return 0;
7316 }
7317
James Ketrenosc848d0a2005-08-24 21:56:24 -05007318 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007319 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7320 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007321 return 0;
7322 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007323
7324 if (!(priv->config & CFG_ASSOCIATE) &&
7325 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007326 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007327 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007328 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007329 }
7330
James Ketrenosa613bff2005-08-24 21:43:11 -05007331 /* Protect our use of the network_list */
7332 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007333 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007334 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007335
7336 network = match.network;
7337 rates = &match.rates;
7338
7339 if (network == NULL &&
7340 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7341 priv->config & CFG_ADHOC_CREATE &&
7342 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007343 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007344 !list_empty(&priv->ieee->network_free_list)) {
7345 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007346 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007347 ipw_adhoc_create(priv, network);
7348 rates = &priv->rates;
7349 list_del(element);
7350 list_add_tail(&network->list, &priv->ieee->network_list);
7351 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007352 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007353
James Ketrenos43f66a62005-03-25 12:31:53 -06007354 /* If we reached the end of the list, then we don't have any valid
7355 * matching APs */
7356 if (!network) {
7357 ipw_debug_config(priv);
7358
James Ketrenosb095c382005-08-24 22:04:42 -05007359 if (!(priv->status & STATUS_SCANNING)) {
7360 if (!(priv->config & CFG_SPEED_SCAN))
7361 queue_delayed_work(priv->workqueue,
7362 &priv->request_scan,
7363 SCAN_INTERVAL);
7364 else
7365 queue_work(priv->workqueue,
7366 &priv->request_scan);
7367 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007368
James Ketrenosc848d0a2005-08-24 21:56:24 -05007369 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007370 }
7371
7372 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007373
7374 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007375}
Jeff Garzikbf794512005-07-31 13:07:26 -04007376
James Ketrenosc848d0a2005-08-24 21:56:24 -05007377static void ipw_bg_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007378{
James Ketrenosc848d0a2005-08-24 21:56:24 -05007379 struct ipw_priv *priv = data;
7380 down(&priv->sem);
7381 ipw_associate(data);
7382 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06007383}
7384
James Ketrenosb095c382005-08-24 22:04:42 -05007385static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7386 struct sk_buff *skb)
7387{
7388 struct ieee80211_hdr *hdr;
7389 u16 fc;
7390
7391 hdr = (struct ieee80211_hdr *)skb->data;
7392 fc = le16_to_cpu(hdr->frame_ctl);
7393 if (!(fc & IEEE80211_FCTL_PROTECTED))
7394 return;
7395
7396 fc &= ~IEEE80211_FCTL_PROTECTED;
7397 hdr->frame_ctl = cpu_to_le16(fc);
7398 switch (priv->ieee->sec.level) {
7399 case SEC_LEVEL_3:
7400 /* Remove CCMP HDR */
7401 memmove(skb->data + IEEE80211_3ADDR_LEN,
7402 skb->data + IEEE80211_3ADDR_LEN + 8,
7403 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007404 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007405 break;
7406 case SEC_LEVEL_2:
7407 break;
7408 case SEC_LEVEL_1:
7409 /* Remove IV */
7410 memmove(skb->data + IEEE80211_3ADDR_LEN,
7411 skb->data + IEEE80211_3ADDR_LEN + 4,
7412 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007413 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007414 break;
7415 case SEC_LEVEL_0:
7416 break;
7417 default:
7418 printk(KERN_ERR "Unknow security level %d\n",
7419 priv->ieee->sec.level);
7420 break;
7421 }
7422}
7423
7424static void ipw_handle_data_packet(struct ipw_priv *priv,
7425 struct ipw_rx_mem_buffer *rxb,
7426 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007427{
Hong Liu567deaf2005-08-31 18:07:22 +08007428 struct ieee80211_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007429 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7430
7431 /* We received data from the HW, so stop the watchdog */
7432 priv->net_dev->trans_start = jiffies;
7433
Jeff Garzikbf794512005-07-31 13:07:26 -04007434 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007435 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007436 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007437 skb_tailroom(rxb->skb))) {
7438 priv->ieee->stats.rx_errors++;
7439 priv->wstats.discard.misc++;
7440 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7441 return;
7442 } else if (unlikely(!netif_running(priv->net_dev))) {
7443 priv->ieee->stats.rx_dropped++;
7444 priv->wstats.discard.misc++;
7445 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7446 return;
7447 }
7448
7449 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007450 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007451
7452 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007453 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007454
7455 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7456
James Ketrenosb095c382005-08-24 22:04:42 -05007457 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
Hong Liu567deaf2005-08-31 18:07:22 +08007458 hdr = (struct ieee80211_hdr_4addr *)rxb->skb->data;
7459 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Hong Liu9d5b8802005-10-19 16:25:33 -05007460 ((is_multicast_ether_addr(hdr->addr1) ||
7461 is_broadcast_ether_addr(hdr->addr1)) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007462 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007463 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7464
Jeff Garzikbf794512005-07-31 13:07:26 -04007465 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007466 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007467 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007468 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007469 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007470 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007471}
7472
Mike Kershaw24a47db2005-08-26 00:41:54 -05007473#ifdef CONFIG_IEEE80211_RADIOTAP
7474static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7475 struct ipw_rx_mem_buffer *rxb,
7476 struct ieee80211_rx_stats *stats)
7477{
7478 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7479 struct ipw_rx_frame *frame = &pkt->u.frame;
7480
7481 /* initial pull of some data */
7482 u16 received_channel = frame->received_channel;
7483 u8 antennaAndPhy = frame->antennaAndPhy;
7484 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7485 u16 pktrate = frame->rate;
7486
7487 /* Magic struct that slots into the radiotap header -- no reason
7488 * to build this manually element by element, we can write it much
7489 * more efficiently than we can parse it. ORDER MATTERS HERE */
7490 struct ipw_rt_hdr {
7491 struct ieee80211_radiotap_header rt_hdr;
7492 u8 rt_flags; /* radiotap packet flags */
7493 u8 rt_rate; /* rate in 500kb/s */
7494 u16 rt_channel; /* channel in mhz */
7495 u16 rt_chbitmask; /* channel bitfield */
7496 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
7497 u8 rt_antenna; /* antenna number */
7498 } *ipw_rt;
7499
7500 short len = le16_to_cpu(pkt->u.frame.length);
7501
7502 /* We received data from the HW, so stop the watchdog */
7503 priv->net_dev->trans_start = jiffies;
7504
7505 /* We only process data packets if the
7506 * interface is open */
7507 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7508 skb_tailroom(rxb->skb))) {
7509 priv->ieee->stats.rx_errors++;
7510 priv->wstats.discard.misc++;
7511 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7512 return;
7513 } else if (unlikely(!netif_running(priv->net_dev))) {
7514 priv->ieee->stats.rx_dropped++;
7515 priv->wstats.discard.misc++;
7516 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7517 return;
7518 }
7519
7520 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7521 * that now */
7522 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7523 /* FIXME: Should alloc bigger skb instead */
7524 priv->ieee->stats.rx_dropped++;
7525 priv->wstats.discard.misc++;
7526 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7527 return;
7528 }
7529
7530 /* copy the frame itself */
7531 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7532 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7533
7534 /* Zero the radiotap static buffer ... We only need to zero the bytes NOT
7535 * part of our real header, saves a little time.
7536 *
7537 * No longer necessary since we fill in all our data. Purge before merging
7538 * patch officially.
7539 * memset(rxb->skb->data + sizeof(struct ipw_rt_hdr), 0,
7540 * IEEE80211_RADIOTAP_HDRLEN - sizeof(struct ipw_rt_hdr));
7541 */
7542
7543 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7544
7545 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7546 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
7547 ipw_rt->rt_hdr.it_len = sizeof(struct ipw_rt_hdr); /* total header+data */
7548
7549 /* Big bitfield of all the fields we provide in radiotap */
7550 ipw_rt->rt_hdr.it_present =
7551 ((1 << IEEE80211_RADIOTAP_FLAGS) |
7552 (1 << IEEE80211_RADIOTAP_RATE) |
7553 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7554 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
7555 (1 << IEEE80211_RADIOTAP_ANTENNA));
7556
7557 /* Zero the flags, we'll add to them as we go */
7558 ipw_rt->rt_flags = 0;
7559
7560 /* Convert signal to DBM */
7561 ipw_rt->rt_dbmsignal = antsignal;
7562
7563 /* Convert the channel data and set the flags */
7564 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7565 if (received_channel > 14) { /* 802.11a */
7566 ipw_rt->rt_chbitmask =
7567 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7568 } else if (antennaAndPhy & 32) { /* 802.11b */
7569 ipw_rt->rt_chbitmask =
7570 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7571 } else { /* 802.11g */
7572 ipw_rt->rt_chbitmask =
7573 (IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
7574 }
7575
7576 /* set the rate in multiples of 500k/s */
7577 switch (pktrate) {
7578 case IPW_TX_RATE_1MB:
7579 ipw_rt->rt_rate = 2;
7580 break;
7581 case IPW_TX_RATE_2MB:
7582 ipw_rt->rt_rate = 4;
7583 break;
7584 case IPW_TX_RATE_5MB:
7585 ipw_rt->rt_rate = 10;
7586 break;
7587 case IPW_TX_RATE_6MB:
7588 ipw_rt->rt_rate = 12;
7589 break;
7590 case IPW_TX_RATE_9MB:
7591 ipw_rt->rt_rate = 18;
7592 break;
7593 case IPW_TX_RATE_11MB:
7594 ipw_rt->rt_rate = 22;
7595 break;
7596 case IPW_TX_RATE_12MB:
7597 ipw_rt->rt_rate = 24;
7598 break;
7599 case IPW_TX_RATE_18MB:
7600 ipw_rt->rt_rate = 36;
7601 break;
7602 case IPW_TX_RATE_24MB:
7603 ipw_rt->rt_rate = 48;
7604 break;
7605 case IPW_TX_RATE_36MB:
7606 ipw_rt->rt_rate = 72;
7607 break;
7608 case IPW_TX_RATE_48MB:
7609 ipw_rt->rt_rate = 96;
7610 break;
7611 case IPW_TX_RATE_54MB:
7612 ipw_rt->rt_rate = 108;
7613 break;
7614 default:
7615 ipw_rt->rt_rate = 0;
7616 break;
7617 }
7618
7619 /* antenna number */
7620 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7621
7622 /* set the preamble flag if we have it */
7623 if ((antennaAndPhy & 64))
7624 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7625
7626 /* Set the size of the skb to the size of the frame */
7627 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007628
7629 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7630
7631 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
7632 priv->ieee->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007633 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007634 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007635 /* no LED during capture */
7636 }
7637}
7638#endif
7639
James Ketrenosea2b26e2005-08-24 21:25:16 -05007640static inline int is_network_packet(struct ipw_priv *priv,
7641 struct ieee80211_hdr_4addr *header)
7642{
7643 /* Filter incoming packets to determine if they are targetted toward
7644 * this network, discarding packets coming from ourselves */
7645 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05007646 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007647 /* packets from our adapter are dropped (echo) */
7648 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
7649 return 0;
7650
Peter Jones90700fd2005-08-26 16:51:06 -05007651 /* {broad,multi}cast packets to our BSSID go through */
7652 if (is_multicast_ether_addr(header->addr1) ||
7653 is_broadcast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05007654 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007655
7656 /* packets to our adapter go through */
7657 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7658 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007659
Peter Jones90700fd2005-08-26 16:51:06 -05007660 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007661 /* packets from our adapter are dropped (echo) */
7662 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
7663 return 0;
7664
Peter Jones90700fd2005-08-26 16:51:06 -05007665 /* {broad,multi}cast packets to our BSS go through */
7666 if (is_multicast_ether_addr(header->addr1) ||
7667 is_broadcast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05007668 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
7669
7670 /* packets to our adapter go through */
7671 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7672 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007673 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007674
James Ketrenosea2b26e2005-08-24 21:25:16 -05007675 return 1;
7676}
7677
James Ketrenosafbf30a2005-08-25 00:05:33 -05007678#define IPW_PACKET_RETRY_TIME HZ
7679
7680static inline int is_duplicate_packet(struct ipw_priv *priv,
7681 struct ieee80211_hdr_4addr *header)
7682{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007683 u16 sc = le16_to_cpu(header->seq_ctl);
7684 u16 seq = WLAN_GET_SEQ_SEQ(sc);
7685 u16 frag = WLAN_GET_SEQ_FRAG(sc);
7686 u16 *last_seq, *last_frag;
7687 unsigned long *last_time;
7688
7689 switch (priv->ieee->iw_mode) {
7690 case IW_MODE_ADHOC:
7691 {
7692 struct list_head *p;
7693 struct ipw_ibss_seq *entry = NULL;
7694 u8 *mac = header->addr2;
7695 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
7696
7697 __list_for_each(p, &priv->ibss_mac_hash[index]) {
7698 entry =
7699 list_entry(p, struct ipw_ibss_seq, list);
7700 if (!memcmp(entry->mac, mac, ETH_ALEN))
7701 break;
7702 }
7703 if (p == &priv->ibss_mac_hash[index]) {
7704 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
7705 if (!entry) {
7706 IPW_ERROR
7707 ("Cannot malloc new mac entry\n");
7708 return 0;
7709 }
7710 memcpy(entry->mac, mac, ETH_ALEN);
7711 entry->seq_num = seq;
7712 entry->frag_num = frag;
7713 entry->packet_time = jiffies;
7714 list_add(&entry->list,
7715 &priv->ibss_mac_hash[index]);
7716 return 0;
7717 }
7718 last_seq = &entry->seq_num;
7719 last_frag = &entry->frag_num;
7720 last_time = &entry->packet_time;
7721 break;
7722 }
7723 case IW_MODE_INFRA:
7724 last_seq = &priv->last_seq_num;
7725 last_frag = &priv->last_frag_num;
7726 last_time = &priv->last_packet_time;
7727 break;
7728 default:
7729 return 0;
7730 }
7731 if ((*last_seq == seq) &&
7732 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
7733 if (*last_frag == frag)
7734 goto drop;
7735 if (*last_frag + 1 != frag)
7736 /* out-of-order fragment */
7737 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007738 } else
7739 *last_seq = seq;
7740
Zhu Yif57ce7c2005-07-13 12:22:15 -05007741 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007742 *last_time = jiffies;
7743 return 0;
7744
7745 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08007746 /* Comment this line now since we observed the card receives
7747 * duplicate packets but the FCTL_RETRY bit is not set in the
7748 * IBSS mode with fragmentation enabled.
7749 BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05007750 return 1;
7751}
7752
James Ketrenosb095c382005-08-24 22:04:42 -05007753static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
7754 struct ipw_rx_mem_buffer *rxb,
7755 struct ieee80211_rx_stats *stats)
7756{
7757 struct sk_buff *skb = rxb->skb;
7758 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
7759 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
7760 (skb->data + IPW_RX_FRAME_SIZE);
7761
7762 ieee80211_rx_mgt(priv->ieee, header, stats);
7763
7764 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
7765 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7766 IEEE80211_STYPE_PROBE_RESP) ||
7767 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7768 IEEE80211_STYPE_BEACON))) {
7769 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
7770 ipw_add_station(priv, header->addr2);
7771 }
7772
7773 if (priv->config & CFG_NET_STATS) {
7774 IPW_DEBUG_HC("sending stat packet\n");
7775
7776 /* Set the size of the skb to the size of the full
7777 * ipw header and 802.11 frame */
7778 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
7779 IPW_RX_FRAME_SIZE);
7780
7781 /* Advance past the ipw packet header to the 802.11 frame */
7782 skb_pull(skb, IPW_RX_FRAME_SIZE);
7783
7784 /* Push the ieee80211_rx_stats before the 802.11 frame */
7785 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
7786
7787 skb->dev = priv->ieee->dev;
7788
7789 /* Point raw at the ieee80211_stats */
7790 skb->mac.raw = skb->data;
7791
7792 skb->pkt_type = PACKET_OTHERHOST;
7793 skb->protocol = __constant_htons(ETH_P_80211_STATS);
7794 memset(skb->cb, 0, sizeof(rxb->skb->cb));
7795 netif_rx(skb);
7796 rxb->skb = NULL;
7797 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007798}
7799
James Ketrenos43f66a62005-03-25 12:31:53 -06007800/*
7801 * Main entry function for recieving a packet with 80211 headers. This
7802 * should be called when ever the FW has notified us that there is a new
7803 * skb in the recieve queue.
7804 */
7805static void ipw_rx(struct ipw_priv *priv)
7806{
7807 struct ipw_rx_mem_buffer *rxb;
7808 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05007809 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06007810 u32 r, w, i;
7811 u8 network_packet;
7812
James Ketrenosb095c382005-08-24 22:04:42 -05007813 r = ipw_read32(priv, IPW_RX_READ_INDEX);
7814 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06007815 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
7816
7817 while (i != r) {
7818 rxb = priv->rxq->queue[i];
7819#ifdef CONFIG_IPW_DEBUG
7820 if (unlikely(rxb == NULL)) {
7821 printk(KERN_CRIT "Queue not allocated!\n");
7822 break;
7823 }
7824#endif
7825 priv->rxq->queue[i] = NULL;
7826
7827 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007828 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06007829 PCI_DMA_FROMDEVICE);
7830
7831 pkt = (struct ipw_rx_packet *)rxb->skb->data;
7832 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
7833 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007834 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06007835
7836 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007837 case RX_FRAME_TYPE: /* 802.11 frame */ {
7838 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05007839 .rssi =
7840 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007841 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05007842 .signal =
7843 le16_to_cpu(pkt->u.frame.signal),
7844 .noise =
7845 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007846 .rate = pkt->u.frame.rate,
7847 .mac_time = jiffies,
7848 .received_channel =
7849 pkt->u.frame.received_channel,
7850 .freq =
7851 (pkt->u.frame.
7852 control & (1 << 0)) ?
7853 IEEE80211_24GHZ_BAND :
7854 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05007855 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007856 };
James Ketrenos43f66a62005-03-25 12:31:53 -06007857
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007858 if (stats.rssi != 0)
7859 stats.mask |= IEEE80211_STATMASK_RSSI;
7860 if (stats.signal != 0)
7861 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007862 if (stats.noise != 0)
7863 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007864 if (stats.rate != 0)
7865 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06007866
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007867 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007868
James Ketrenosb095c382005-08-24 22:04:42 -05007869#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007870 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05007871#ifdef CONFIG_IEEE80211_RADIOTAP
7872 ipw_handle_data_packet_monitor(priv,
7873 rxb,
7874 &stats);
7875#else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007876 ipw_handle_data_packet(priv, rxb,
7877 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007878#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007879 break;
7880 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007881#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04007882
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007883 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05007884 (struct ieee80211_hdr_4addr *)(rxb->skb->
7885 data +
7886 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007887 /* TODO: Check Ad-Hoc dest/source and make sure
7888 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04007889 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06007890 * frame control of the packet and disregard
7891 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06007892
James Ketrenosea2b26e2005-08-24 21:25:16 -05007893 network_packet =
7894 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007895 if (network_packet && priv->assoc_network) {
7896 priv->assoc_network->stats.rssi =
7897 stats.rssi;
7898 average_add(&priv->average_rssi,
7899 stats.rssi);
7900 priv->last_rx_rssi = stats.rssi;
7901 }
7902
7903 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05007904 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007905
James Ketrenosa613bff2005-08-24 21:43:11 -05007906 if (le16_to_cpu(pkt->u.frame.length) <
7907 frame_hdr_len(header)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007908 IPW_DEBUG_DROP
7909 ("Received packet is too small. "
7910 "Dropping.\n");
7911 priv->ieee->stats.rx_errors++;
7912 priv->wstats.discard.misc++;
7913 break;
7914 }
7915
James Ketrenosa613bff2005-08-24 21:43:11 -05007916 switch (WLAN_FC_GET_TYPE
7917 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05007918
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007919 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05007920 ipw_handle_mgmt_packet(priv, rxb,
7921 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007922 break;
7923
7924 case IEEE80211_FTYPE_CTL:
7925 break;
7926
7927 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05007928 if (unlikely(!network_packet ||
7929 is_duplicate_packet(priv,
7930 header)))
7931 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007932 IPW_DEBUG_DROP("Dropping: "
7933 MAC_FMT ", "
7934 MAC_FMT ", "
7935 MAC_FMT "\n",
7936 MAC_ARG(header->
7937 addr1),
7938 MAC_ARG(header->
7939 addr2),
7940 MAC_ARG(header->
7941 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05007942 break;
7943 }
7944
7945 ipw_handle_data_packet(priv, rxb,
7946 &stats);
7947
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007948 break;
7949 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007950 break;
7951 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007952
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007953 case RX_HOST_NOTIFICATION_TYPE:{
7954 IPW_DEBUG_RX
7955 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007956 pkt->u.notification.subtype,
7957 pkt->u.notification.flags,
7958 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007959 ipw_rx_notification(priv, &pkt->u.notification);
7960 break;
7961 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007962
7963 default:
7964 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
7965 pkt->header.message_type);
7966 break;
7967 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007968
7969 /* For now we just don't re-use anything. We can tweak this
7970 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06007971 * fail to Rx correctly */
7972 if (rxb->skb != NULL) {
7973 dev_kfree_skb_any(rxb->skb);
7974 rxb->skb = NULL;
7975 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007976
James Ketrenos43f66a62005-03-25 12:31:53 -06007977 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007978 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007979 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04007980
James Ketrenos43f66a62005-03-25 12:31:53 -06007981 i = (i + 1) % RX_QUEUE_SIZE;
7982 }
7983
7984 /* Backtrack one entry */
7985 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
7986
7987 ipw_rx_queue_restock(priv);
7988}
7989
James Ketrenosafbf30a2005-08-25 00:05:33 -05007990#define DEFAULT_RTS_THRESHOLD 2304U
7991#define MIN_RTS_THRESHOLD 1U
7992#define MAX_RTS_THRESHOLD 2304U
7993#define DEFAULT_BEACON_INTERVAL 100U
7994#define DEFAULT_SHORT_RETRY_LIMIT 7U
7995#define DEFAULT_LONG_RETRY_LIMIT 4U
7996
7997static int ipw_sw_reset(struct ipw_priv *priv, int init)
James Ketrenos43f66a62005-03-25 12:31:53 -06007998{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007999 int band, modulation;
8000 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008001
James Ketrenosafbf30a2005-08-25 00:05:33 -05008002 /* Initialize module parameter values here */
8003 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008004
James Ketrenosafbf30a2005-08-25 00:05:33 -05008005 /* We default to disabling the LED code as right now it causes
8006 * too many systems to lock up... */
8007 if (!led)
8008 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06008009
James Ketrenosafbf30a2005-08-25 00:05:33 -05008010 if (associate)
8011 priv->config |= CFG_ASSOCIATE;
8012 else
8013 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04008014
James Ketrenosafbf30a2005-08-25 00:05:33 -05008015 if (auto_create)
8016 priv->config |= CFG_ADHOC_CREATE;
8017 else
8018 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8019
8020 if (disable) {
8021 priv->status |= STATUS_RF_KILL_SW;
8022 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06008023 }
8024
James Ketrenosafbf30a2005-08-25 00:05:33 -05008025 if (channel != 0) {
8026 priv->config |= CFG_STATIC_CHANNEL;
8027 priv->channel = channel;
8028 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
8029 /* TODO: Validate that provided channel is in range */
8030 }
8031#ifdef CONFIG_IPW_QOS
8032 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8033 burst_duration_CCK, burst_duration_OFDM);
8034#endif /* CONFIG_IPW_QOS */
8035
8036 switch (mode) {
8037 case 1:
8038 priv->ieee->iw_mode = IW_MODE_ADHOC;
8039 priv->net_dev->type = ARPHRD_ETHER;
8040
8041 break;
8042#ifdef CONFIG_IPW2200_MONITOR
8043 case 2:
8044 priv->ieee->iw_mode = IW_MODE_MONITOR;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008045#ifdef CONFIG_IEEE80211_RADIOTAP
8046 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8047#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008048 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008049#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008050 break;
8051#endif
8052 default:
8053 case 0:
8054 priv->net_dev->type = ARPHRD_ETHER;
8055 priv->ieee->iw_mode = IW_MODE_INFRA;
8056 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008057 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008058
James Ketrenosafbf30a2005-08-25 00:05:33 -05008059 if (hwcrypto) {
8060 priv->ieee->host_encrypt = 0;
8061 priv->ieee->host_encrypt_msdu = 0;
8062 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008063 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008064 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008065 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008066
Zhu Yie402c932005-08-05 17:20:40 +08008067 /* IPW2200/2915 is abled to do hardware fragmentation. */
8068 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008069
James Ketrenosafbf30a2005-08-25 00:05:33 -05008070 if ((priv->pci_dev->device == 0x4223) ||
8071 (priv->pci_dev->device == 0x4224)) {
8072 if (init)
8073 printk(KERN_INFO DRV_NAME
8074 ": Detected Intel PRO/Wireless 2915ABG Network "
8075 "Connection\n");
8076 priv->ieee->abg_true = 1;
8077 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8078 modulation = IEEE80211_OFDM_MODULATION |
8079 IEEE80211_CCK_MODULATION;
8080 priv->adapter = IPW_2915ABG;
8081 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008082 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008083 if (init)
8084 printk(KERN_INFO DRV_NAME
8085 ": Detected Intel PRO/Wireless 2200BG Network "
8086 "Connection\n");
8087
8088 priv->ieee->abg_true = 0;
8089 band = IEEE80211_24GHZ_BAND;
8090 modulation = IEEE80211_OFDM_MODULATION |
8091 IEEE80211_CCK_MODULATION;
8092 priv->adapter = IPW_2200BG;
8093 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008094 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008095
James Ketrenosafbf30a2005-08-25 00:05:33 -05008096 priv->ieee->freq_band = band;
8097 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008098
James Ketrenosafbf30a2005-08-25 00:05:33 -05008099 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008100
James Ketrenosafbf30a2005-08-25 00:05:33 -05008101 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8102 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008103
James Ketrenosafbf30a2005-08-25 00:05:33 -05008104 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8105 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8106 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008107
James Ketrenosafbf30a2005-08-25 00:05:33 -05008108 /* If power management is turned on, default to AC mode */
8109 priv->power_mode = IPW_POWER_AC;
8110 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008111
Zhu Yi0ece35b2005-08-05 17:26:51 +08008112 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008113}
8114
8115/*
8116 * This file defines the Wireless Extension handlers. It does not
8117 * define any methods of hardware manipulation and relies on the
8118 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008119 *
8120 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008121 * function used to poll the hardware vs. making unecessary calls.
8122 *
8123 */
8124
Jeff Garzikbf794512005-07-31 13:07:26 -04008125static int ipw_wx_get_name(struct net_device *dev,
8126 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008127 union iwreq_data *wrqu, char *extra)
8128{
8129 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008130 down(&priv->sem);
8131 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008132 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008133 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008134 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008135 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008136 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8137 ipw_modes[priv->assoc_request.ieee_mode]);
8138 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008139 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008140 return 0;
8141}
8142
8143static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8144{
8145 if (channel == 0) {
8146 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8147 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008148 IPW_DEBUG_ASSOC("Attempting to associate with new "
8149 "parameters.\n");
8150 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008151 return 0;
8152 }
8153
8154 priv->config |= CFG_STATIC_CHANNEL;
8155
8156 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008157 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8158 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008159 return 0;
8160 }
8161
8162 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8163 priv->channel = channel;
8164
James Ketrenosb095c382005-08-24 22:04:42 -05008165#ifdef CONFIG_IPW2200_MONITOR
8166 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008167 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008168 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008169 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008170 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008171 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008172 }
8173
8174 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8175 udelay(10);
8176
8177 if (priv->status & STATUS_SCANNING)
8178 IPW_DEBUG_SCAN("Still scanning...\n");
8179 else
8180 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8181 1000 - i);
8182
8183 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008184 }
James Ketrenosb095c382005-08-24 22:04:42 -05008185#endif /* CONFIG_IPW2200_MONITOR */
8186
James Ketrenosc848d0a2005-08-24 21:56:24 -05008187 /* Network configuration changed -- force [re]association */
8188 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8189 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008190 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008191
8192 return 0;
8193}
8194
Jeff Garzikbf794512005-07-31 13:07:26 -04008195static int ipw_wx_set_freq(struct net_device *dev,
8196 struct iw_request_info *info,
8197 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008198{
8199 struct ipw_priv *priv = ieee80211_priv(dev);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008200 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008201 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008202 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008203 u8 channel, flags;
8204 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008205
James Ketrenosb095c382005-08-24 22:04:42 -05008206 if (fwrq->m == 0) {
8207 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
8208 down(&priv->sem);
8209 ret = ipw_set_channel(priv, 0);
8210 up(&priv->sem);
8211 return ret;
8212 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008213 /* if setting by freq convert to channel */
8214 if (fwrq->e == 1) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05008215 channel = ipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008216 if (channel == 0)
8217 return -EINVAL;
8218 } else
8219 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008220
Liu Hong1fe0adb2005-08-19 09:33:10 -05008221 if (!(band = ipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008222 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008223
Liu Hong1fe0adb2005-08-19 09:33:10 -05008224 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
8225 i = ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008226 if (i == -1)
8227 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008228
8229 flags = (band == IEEE80211_24GHZ_BAND) ?
8230 geo->bg[i].flags : geo->a[i].flags;
8231 if (flags & IEEE80211_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008232 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8233 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008234 }
8235 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008236
James Ketrenos43f66a62005-03-25 12:31:53 -06008237 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008238 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008239 ret = ipw_set_channel(priv, channel);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008240 up(&priv->sem);
8241 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008242}
8243
Jeff Garzikbf794512005-07-31 13:07:26 -04008244static int ipw_wx_get_freq(struct net_device *dev,
8245 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008246 union iwreq_data *wrqu, char *extra)
8247{
8248 struct ipw_priv *priv = ieee80211_priv(dev);
8249
8250 wrqu->freq.e = 0;
8251
8252 /* If we are associated, trying to associate, or have a statically
8253 * configured CHANNEL then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008254 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008255 if (priv->config & CFG_STATIC_CHANNEL ||
8256 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8257 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008258 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008259 wrqu->freq.m = 0;
8260
James Ketrenosc848d0a2005-08-24 21:56:24 -05008261 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008262 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8263 return 0;
8264}
8265
Jeff Garzikbf794512005-07-31 13:07:26 -04008266static int ipw_wx_set_mode(struct net_device *dev,
8267 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008268 union iwreq_data *wrqu, char *extra)
8269{
8270 struct ipw_priv *priv = ieee80211_priv(dev);
8271 int err = 0;
8272
8273 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8274
James Ketrenos43f66a62005-03-25 12:31:53 -06008275 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008276#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008277 case IW_MODE_MONITOR:
8278#endif
8279 case IW_MODE_ADHOC:
8280 case IW_MODE_INFRA:
8281 break;
8282 case IW_MODE_AUTO:
8283 wrqu->mode = IW_MODE_INFRA;
8284 break;
8285 default:
8286 return -EINVAL;
8287 }
James Ketrenosb095c382005-08-24 22:04:42 -05008288 if (wrqu->mode == priv->ieee->iw_mode)
8289 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008290
James Ketrenosb095c382005-08-24 22:04:42 -05008291 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008292
8293 ipw_sw_reset(priv, 0);
8294
James Ketrenosb095c382005-08-24 22:04:42 -05008295#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008296 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008297 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008298
8299 if (wrqu->mode == IW_MODE_MONITOR)
Mike Kershaw24a47db2005-08-26 00:41:54 -05008300#ifdef CONFIG_IEEE80211_RADIOTAP
8301 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8302#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008303 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008304#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008305#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008306
Jeff Garzikbf794512005-07-31 13:07:26 -04008307 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008308 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008309 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008310
8311 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008312
James Ketrenosc848d0a2005-08-24 21:56:24 -05008313 queue_work(priv->workqueue, &priv->adapter_restart);
8314 up(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008315 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008316}
8317
Jeff Garzikbf794512005-07-31 13:07:26 -04008318static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008319 struct iw_request_info *info,
8320 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008321{
8322 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008323 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008324 wrqu->mode = priv->ieee->iw_mode;
8325 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008326 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008327 return 0;
8328}
8329
James Ketrenos43f66a62005-03-25 12:31:53 -06008330/* Values are in microsecond */
8331static const s32 timeout_duration[] = {
8332 350000,
8333 250000,
8334 75000,
8335 37000,
8336 25000,
8337};
8338
8339static const s32 period_duration[] = {
8340 400000,
8341 700000,
8342 1000000,
8343 1000000,
8344 1000000
8345};
8346
Jeff Garzikbf794512005-07-31 13:07:26 -04008347static int ipw_wx_get_range(struct net_device *dev,
8348 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008349 union iwreq_data *wrqu, char *extra)
8350{
8351 struct ipw_priv *priv = ieee80211_priv(dev);
8352 struct iw_range *range = (struct iw_range *)extra;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008353 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008354 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008355
8356 wrqu->data.length = sizeof(*range);
8357 memset(range, 0, sizeof(*range));
8358
8359 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008360 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008361
8362 range->max_qual.qual = 100;
8363 /* TODO: Find real max RSSI and stick here */
8364 range->max_qual.level = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008365 range->max_qual.noise = priv->ieee->worst_rssi + 0x100;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008366 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008367
8368 range->avg_qual.qual = 70;
8369 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008370 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008371 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008372 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008373 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008374 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008375
Jeff Garzikbf794512005-07-31 13:07:26 -04008376 for (i = 0; i < range->num_bitrates; i++)
8377 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008378 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008379
James Ketrenos43f66a62005-03-25 12:31:53 -06008380 range->max_rts = DEFAULT_RTS_THRESHOLD;
8381 range->min_frag = MIN_FRAG_THRESHOLD;
8382 range->max_frag = MAX_FRAG_THRESHOLD;
8383
8384 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008385 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008386 range->num_encoding_sizes = 2;
8387 range->max_encoding_tokens = WEP_KEYS;
8388
8389 /* Set the Wireless Extension versions */
8390 range->we_version_compiled = WIRELESS_EXT;
8391 range->we_version_source = 16;
8392
James Ketrenosb095c382005-08-24 22:04:42 -05008393 i = 0;
8394 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
8395 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES;
8396 i++, j++) {
8397 range->freq[i].i = geo->bg[j].channel;
8398 range->freq[i].m = geo->bg[j].freq * 100000;
8399 range->freq[i].e = 1;
8400 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008401 }
James Ketrenosb095c382005-08-24 22:04:42 -05008402
8403 if (priv->ieee->mode & IEEE_A) {
8404 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES;
8405 i++, j++) {
8406 range->freq[i].i = geo->a[j].channel;
8407 range->freq[i].m = geo->a[j].freq * 100000;
8408 range->freq[i].e = 1;
8409 }
8410 }
8411
8412 range->num_channels = i;
8413 range->num_frequency = i;
8414
James Ketrenosc848d0a2005-08-24 21:56:24 -05008415 up(&priv->sem);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008416
8417 /* Event capability (kernel + driver) */
8418 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
8419 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
8420 IW_EVENT_CAPA_MASK(SIOCGIWAP));
8421 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008422
8423 IPW_DEBUG_WX("GET Range\n");
8424 return 0;
8425}
8426
Jeff Garzikbf794512005-07-31 13:07:26 -04008427static int ipw_wx_set_wap(struct net_device *dev,
8428 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008429 union iwreq_data *wrqu, char *extra)
8430{
8431 struct ipw_priv *priv = ieee80211_priv(dev);
8432
8433 static const unsigned char any[] = {
8434 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8435 };
8436 static const unsigned char off[] = {
8437 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8438 };
8439
Jeff Garzikbf794512005-07-31 13:07:26 -04008440 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008441 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008442 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008443 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8444 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8445 /* we disable mandatory BSSID association */
8446 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8447 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008448 IPW_DEBUG_ASSOC("Attempting to associate with new "
8449 "parameters.\n");
8450 ipw_associate(priv);
8451 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008452 return 0;
8453 }
8454
8455 priv->config |= CFG_STATIC_BSSID;
8456 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8457 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008458 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008459 return 0;
8460 }
8461
8462 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8463 MAC_ARG(wrqu->ap_addr.sa_data));
8464
8465 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8466
James Ketrenosc848d0a2005-08-24 21:56:24 -05008467 /* Network configuration changed -- force [re]association */
8468 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8469 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008470 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008471
James Ketrenosc848d0a2005-08-24 21:56:24 -05008472 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008473 return 0;
8474}
8475
Jeff Garzikbf794512005-07-31 13:07:26 -04008476static int ipw_wx_get_wap(struct net_device *dev,
8477 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008478 union iwreq_data *wrqu, char *extra)
8479{
8480 struct ipw_priv *priv = ieee80211_priv(dev);
8481 /* If we are associated, trying to associate, or have a statically
8482 * configured BSSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008483 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04008484 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008485 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8486 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008487 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008488 } else
8489 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8490
8491 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8492 MAC_ARG(wrqu->ap_addr.sa_data));
James Ketrenosc848d0a2005-08-24 21:56:24 -05008493 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008494 return 0;
8495}
8496
Jeff Garzikbf794512005-07-31 13:07:26 -04008497static int ipw_wx_set_essid(struct net_device *dev,
8498 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008499 union iwreq_data *wrqu, char *extra)
8500{
8501 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008502 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008503 int length = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008504 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008505 if (wrqu->essid.flags && wrqu->essid.length) {
8506 length = wrqu->essid.length - 1;
8507 essid = extra;
8508 }
8509 if (length == 0) {
8510 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008511 if ((priv->config & CFG_STATIC_ESSID) &&
8512 !(priv->status & (STATUS_ASSOCIATED |
James Ketrenos43f66a62005-03-25 12:31:53 -06008513 STATUS_ASSOCIATING))) {
8514 IPW_DEBUG_ASSOC("Attempting to associate with new "
8515 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008516 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008517 ipw_associate(priv);
8518 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008519 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008520 return 0;
8521 }
8522
8523 length = min(length, IW_ESSID_MAX_SIZE);
8524
8525 priv->config |= CFG_STATIC_ESSID;
8526
8527 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
8528 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008529 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008530 return 0;
8531 }
8532
8533 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
8534 length);
8535
8536 priv->essid_len = length;
8537 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04008538
James Ketrenosc848d0a2005-08-24 21:56:24 -05008539 /* Network configuration changed -- force [re]association */
8540 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
8541 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008542 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008543
James Ketrenosc848d0a2005-08-24 21:56:24 -05008544 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008545 return 0;
8546}
8547
Jeff Garzikbf794512005-07-31 13:07:26 -04008548static int ipw_wx_get_essid(struct net_device *dev,
8549 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008550 union iwreq_data *wrqu, char *extra)
8551{
8552 struct ipw_priv *priv = ieee80211_priv(dev);
8553
8554 /* If we are associated, trying to associate, or have a statically
8555 * configured ESSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008556 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008557 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04008558 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8559 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008560 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04008561 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06008562 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008563 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008564 } else {
8565 IPW_DEBUG_WX("Getting essid: ANY\n");
8566 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008567 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008568 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008569 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008570 return 0;
8571}
8572
Jeff Garzikbf794512005-07-31 13:07:26 -04008573static int ipw_wx_set_nick(struct net_device *dev,
8574 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008575 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008576{
James Ketrenos43f66a62005-03-25 12:31:53 -06008577 struct ipw_priv *priv = ieee80211_priv(dev);
8578
8579 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
8580 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
8581 return -E2BIG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008582 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008583 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06008584 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008585 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06008586 IPW_DEBUG_TRACE("<<\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008587 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008588 return 0;
8589
8590}
8591
Jeff Garzikbf794512005-07-31 13:07:26 -04008592static int ipw_wx_get_nick(struct net_device *dev,
8593 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008594 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008595{
James Ketrenos43f66a62005-03-25 12:31:53 -06008596 struct ipw_priv *priv = ieee80211_priv(dev);
8597 IPW_DEBUG_WX("Getting nick\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008598 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008599 wrqu->data.length = strlen(priv->nick) + 1;
8600 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008601 wrqu->data.flags = 1; /* active */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008602 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008603 return 0;
8604}
8605
James Ketrenos43f66a62005-03-25 12:31:53 -06008606static int ipw_wx_set_rate(struct net_device *dev,
8607 struct iw_request_info *info,
8608 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008609{
James Ketrenosea2b26e2005-08-24 21:25:16 -05008610 /* TODO: We should use semaphores or locks for access to priv */
8611 struct ipw_priv *priv = ieee80211_priv(dev);
8612 u32 target_rate = wrqu->bitrate.value;
8613 u32 fixed, mask;
8614
8615 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
8616 /* value = X, fixed = 1 means only rate X */
8617 /* value = X, fixed = 0 means all rates lower equal X */
8618
8619 if (target_rate == -1) {
8620 fixed = 0;
8621 mask = IEEE80211_DEFAULT_RATES_MASK;
8622 /* Now we should reassociate */
8623 goto apply;
8624 }
8625
8626 mask = 0;
8627 fixed = wrqu->bitrate.fixed;
8628
8629 if (target_rate == 1000000 || !fixed)
8630 mask |= IEEE80211_CCK_RATE_1MB_MASK;
8631 if (target_rate == 1000000)
8632 goto apply;
8633
8634 if (target_rate == 2000000 || !fixed)
8635 mask |= IEEE80211_CCK_RATE_2MB_MASK;
8636 if (target_rate == 2000000)
8637 goto apply;
8638
8639 if (target_rate == 5500000 || !fixed)
8640 mask |= IEEE80211_CCK_RATE_5MB_MASK;
8641 if (target_rate == 5500000)
8642 goto apply;
8643
8644 if (target_rate == 6000000 || !fixed)
8645 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
8646 if (target_rate == 6000000)
8647 goto apply;
8648
8649 if (target_rate == 9000000 || !fixed)
8650 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
8651 if (target_rate == 9000000)
8652 goto apply;
8653
8654 if (target_rate == 11000000 || !fixed)
8655 mask |= IEEE80211_CCK_RATE_11MB_MASK;
8656 if (target_rate == 11000000)
8657 goto apply;
8658
8659 if (target_rate == 12000000 || !fixed)
8660 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
8661 if (target_rate == 12000000)
8662 goto apply;
8663
8664 if (target_rate == 18000000 || !fixed)
8665 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
8666 if (target_rate == 18000000)
8667 goto apply;
8668
8669 if (target_rate == 24000000 || !fixed)
8670 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
8671 if (target_rate == 24000000)
8672 goto apply;
8673
8674 if (target_rate == 36000000 || !fixed)
8675 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
8676 if (target_rate == 36000000)
8677 goto apply;
8678
8679 if (target_rate == 48000000 || !fixed)
8680 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
8681 if (target_rate == 48000000)
8682 goto apply;
8683
8684 if (target_rate == 54000000 || !fixed)
8685 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
8686 if (target_rate == 54000000)
8687 goto apply;
8688
8689 IPW_DEBUG_WX("invalid rate specified, returning error\n");
8690 return -EINVAL;
8691
8692 apply:
8693 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
8694 mask, fixed ? "fixed" : "sub-rates");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008695 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008696 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05008697 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05008698 ipw_set_fixed_rate(priv, priv->ieee->mode);
8699 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05008700 priv->config |= CFG_FIXED_RATE;
8701
James Ketrenosc848d0a2005-08-24 21:56:24 -05008702 if (priv->rates_mask == mask) {
8703 IPW_DEBUG_WX("Mask set to current mask.\n");
8704 up(&priv->sem);
8705 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05008706 }
8707
James Ketrenosc848d0a2005-08-24 21:56:24 -05008708 priv->rates_mask = mask;
8709
8710 /* Network configuration changed -- force [re]association */
8711 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
8712 if (!ipw_disassociate(priv))
8713 ipw_associate(priv);
8714
8715 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008716 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008717}
8718
Jeff Garzikbf794512005-07-31 13:07:26 -04008719static int ipw_wx_get_rate(struct net_device *dev,
8720 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008721 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008722{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008723 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008724 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008725 wrqu->bitrate.value = priv->last_rate;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008726 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008727 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
8728 return 0;
8729}
8730
Jeff Garzikbf794512005-07-31 13:07:26 -04008731static int ipw_wx_set_rts(struct net_device *dev,
8732 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008733 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008734{
James Ketrenos43f66a62005-03-25 12:31:53 -06008735 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008736 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008737 if (wrqu->rts.disabled)
8738 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8739 else {
8740 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05008741 wrqu->rts.value > MAX_RTS_THRESHOLD) {
8742 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008743 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008744 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008745 priv->rts_threshold = wrqu->rts.value;
8746 }
8747
8748 ipw_send_rts_threshold(priv, priv->rts_threshold);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008749 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008750 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
8751 return 0;
8752}
8753
Jeff Garzikbf794512005-07-31 13:07:26 -04008754static int ipw_wx_get_rts(struct net_device *dev,
8755 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008756 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008757{
James Ketrenos43f66a62005-03-25 12:31:53 -06008758 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008759 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008760 wrqu->rts.value = priv->rts_threshold;
8761 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008762 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008763 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008764 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
8765 return 0;
8766}
8767
Jeff Garzikbf794512005-07-31 13:07:26 -04008768static int ipw_wx_set_txpow(struct net_device *dev,
8769 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008770 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008771{
James Ketrenos43f66a62005-03-25 12:31:53 -06008772 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008773 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008774
James Ketrenosc848d0a2005-08-24 21:56:24 -05008775 down(&priv->sem);
8776 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008777 err = -EINPROGRESS;
8778 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008779 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008780
James Ketrenosb095c382005-08-24 22:04:42 -05008781 if (!wrqu->power.fixed)
8782 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008783
James Ketrenosc848d0a2005-08-24 21:56:24 -05008784 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008785 err = -EINVAL;
8786 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008787 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008788
James Ketrenosb095c382005-08-24 22:04:42 -05008789 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05008790 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008791 err = -EINVAL;
8792 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008793 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008794
8795 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008796 err = ipw_set_tx_power(priv);
8797 out:
James Ketrenosc848d0a2005-08-24 21:56:24 -05008798 up(&priv->sem);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008799 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008800}
8801
Jeff Garzikbf794512005-07-31 13:07:26 -04008802static int ipw_wx_get_txpow(struct net_device *dev,
8803 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008804 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008805{
James Ketrenos43f66a62005-03-25 12:31:53 -06008806 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008807 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008808 wrqu->power.value = priv->tx_power;
8809 wrqu->power.fixed = 1;
8810 wrqu->power.flags = IW_TXPOW_DBM;
8811 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008812 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008813
Jeff Garzikbf794512005-07-31 13:07:26 -04008814 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08008815 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06008816
8817 return 0;
8818}
8819
Jeff Garzikbf794512005-07-31 13:07:26 -04008820static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008821 struct iw_request_info *info,
8822 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008823{
8824 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008825 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008826 if (wrqu->frag.disabled)
8827 priv->ieee->fts = DEFAULT_FTS;
8828 else {
8829 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05008830 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
8831 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008832 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05008833 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008834
James Ketrenos43f66a62005-03-25 12:31:53 -06008835 priv->ieee->fts = wrqu->frag.value & ~0x1;
8836 }
8837
8838 ipw_send_frag_threshold(priv, wrqu->frag.value);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008839 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008840 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
8841 return 0;
8842}
8843
Jeff Garzikbf794512005-07-31 13:07:26 -04008844static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008845 struct iw_request_info *info,
8846 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008847{
8848 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008849 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008850 wrqu->frag.value = priv->ieee->fts;
8851 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008852 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008853 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008854 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
8855
8856 return 0;
8857}
8858
Jeff Garzikbf794512005-07-31 13:07:26 -04008859static int ipw_wx_set_retry(struct net_device *dev,
8860 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008861 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008862{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008863 struct ipw_priv *priv = ieee80211_priv(dev);
8864
8865 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
8866 return -EINVAL;
8867
8868 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
8869 return 0;
8870
8871 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
8872 return -EINVAL;
8873
8874 down(&priv->sem);
8875 if (wrqu->retry.flags & IW_RETRY_MIN)
8876 priv->short_retry_limit = (u8) wrqu->retry.value;
8877 else if (wrqu->retry.flags & IW_RETRY_MAX)
8878 priv->long_retry_limit = (u8) wrqu->retry.value;
8879 else {
8880 priv->short_retry_limit = (u8) wrqu->retry.value;
8881 priv->long_retry_limit = (u8) wrqu->retry.value;
8882 }
8883
8884 ipw_send_retry_limit(priv, priv->short_retry_limit,
8885 priv->long_retry_limit);
8886 up(&priv->sem);
8887 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
8888 priv->short_retry_limit, priv->long_retry_limit);
8889 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008890}
8891
Jeff Garzikbf794512005-07-31 13:07:26 -04008892static int ipw_wx_get_retry(struct net_device *dev,
8893 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008894 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008895{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008896 struct ipw_priv *priv = ieee80211_priv(dev);
8897
8898 down(&priv->sem);
8899 wrqu->retry.disabled = 0;
8900
8901 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
8902 up(&priv->sem);
8903 return -EINVAL;
8904 }
8905
8906 if (wrqu->retry.flags & IW_RETRY_MAX) {
8907 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
8908 wrqu->retry.value = priv->long_retry_limit;
8909 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
8910 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
8911 wrqu->retry.value = priv->short_retry_limit;
8912 } else {
8913 wrqu->retry.flags = IW_RETRY_LIMIT;
8914 wrqu->retry.value = priv->short_retry_limit;
8915 }
8916 up(&priv->sem);
8917
8918 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
8919
8920 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008921}
8922
James Ketrenosafbf30a2005-08-25 00:05:33 -05008923static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
8924 int essid_len)
8925{
8926 struct ipw_scan_request_ext scan;
8927 int err = 0, scan_type;
8928
Pekka Enbergefb34422005-11-16 21:55:05 +02008929 if (!(priv->status & STATUS_INIT) ||
8930 (priv->status & STATUS_EXIT_PENDING))
8931 return 0;
8932
James Ketrenosafbf30a2005-08-25 00:05:33 -05008933 down(&priv->sem);
8934
8935 if (priv->status & STATUS_RF_KILL_MASK) {
8936 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
8937 priv->status |= STATUS_SCAN_PENDING;
8938 goto done;
8939 }
8940
8941 IPW_DEBUG_HC("starting request direct scan!\n");
8942
8943 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
8944 err = wait_event_interruptible(priv->wait_state,
8945 !(priv->
8946 status & (STATUS_SCANNING |
8947 STATUS_SCAN_ABORTING)));
8948 if (err) {
8949 IPW_DEBUG_HC("aborting direct scan");
8950 goto done;
8951 }
8952 }
8953 memset(&scan, 0, sizeof(scan));
8954
8955 if (priv->config & CFG_SPEED_SCAN)
8956 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8957 cpu_to_le16(30);
8958 else
8959 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8960 cpu_to_le16(20);
8961
8962 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
8963 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008964 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008965 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
8966
8967 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
8968
8969 err = ipw_send_ssid(priv, essid, essid_len);
8970 if (err) {
8971 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
8972 goto done;
8973 }
8974 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
8975
8976 ipw_add_scan_channels(priv, &scan, scan_type);
8977
8978 err = ipw_send_scan_request_ext(priv, &scan);
8979 if (err) {
8980 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
8981 goto done;
8982 }
8983
8984 priv->status |= STATUS_SCANNING;
8985
8986 done:
8987 up(&priv->sem);
8988 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008989}
8990
Jeff Garzikbf794512005-07-31 13:07:26 -04008991static int ipw_wx_set_scan(struct net_device *dev,
8992 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008993 union iwreq_data *wrqu, char *extra)
8994{
8995 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008996 struct iw_scan_req *req = NULL;
8997 if (wrqu->data.length
8998 && wrqu->data.length == sizeof(struct iw_scan_req)) {
8999 req = (struct iw_scan_req *)extra;
9000 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
9001 ipw_request_direct_scan(priv, req->essid,
9002 req->essid_len);
9003 return 0;
9004 }
9005 }
James Ketrenos8935f392005-10-05 15:59:08 -05009006
James Ketrenos43f66a62005-03-25 12:31:53 -06009007 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009008
9009 queue_work(priv->workqueue, &priv->request_scan);
9010
James Ketrenos43f66a62005-03-25 12:31:53 -06009011 return 0;
9012}
9013
Jeff Garzikbf794512005-07-31 13:07:26 -04009014static int ipw_wx_get_scan(struct net_device *dev,
9015 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009016 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009017{
James Ketrenos43f66a62005-03-25 12:31:53 -06009018 struct ipw_priv *priv = ieee80211_priv(dev);
9019 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9020}
9021
Jeff Garzikbf794512005-07-31 13:07:26 -04009022static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009023 struct iw_request_info *info,
9024 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009025{
9026 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009027 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009028 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009029
9030 down(&priv->sem);
9031 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009032
Hong Liucaeff812005-08-05 17:25:50 +08009033 /* In IBSS mode, we need to notify the firmware to update
9034 * the beacon info after we changed the capability. */
9035 if (cap != priv->capability &&
9036 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9037 priv->status & STATUS_ASSOCIATED)
9038 ipw_disassociate(priv);
9039
9040 up(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009041 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009042}
9043
Jeff Garzikbf794512005-07-31 13:07:26 -04009044static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009045 struct iw_request_info *info,
9046 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009047{
9048 struct ipw_priv *priv = ieee80211_priv(dev);
9049 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9050}
9051
Jeff Garzikbf794512005-07-31 13:07:26 -04009052static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009053 struct iw_request_info *info,
9054 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009055{
9056 struct ipw_priv *priv = ieee80211_priv(dev);
9057 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009058 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009059 if (wrqu->power.disabled) {
9060 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9061 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9062 if (err) {
9063 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009064 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009065 return err;
9066 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009067 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009068 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009069 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009070 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009071
9072 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009073 case IW_POWER_ON: /* If not specified */
9074 case IW_POWER_MODE: /* If set all mask */
9075 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009076 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009077 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009078 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9079 wrqu->power.flags);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009080 up(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009081 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009082 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009083
James Ketrenos43f66a62005-03-25 12:31:53 -06009084 /* If the user hasn't specified a power management mode yet, default
9085 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009086 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009087 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009088 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009089 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9090 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9091 if (err) {
9092 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009093 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009094 return err;
9095 }
9096
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009097 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009098 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009099 return 0;
9100}
9101
Jeff Garzikbf794512005-07-31 13:07:26 -04009102static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009103 struct iw_request_info *info,
9104 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009105{
9106 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009107 down(&priv->sem);
James Ketrenosa613bff2005-08-24 21:43:11 -05009108 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009109 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009110 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009111 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009112
James Ketrenosc848d0a2005-08-24 21:56:24 -05009113 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009114 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009115
James Ketrenos43f66a62005-03-25 12:31:53 -06009116 return 0;
9117}
9118
Jeff Garzikbf794512005-07-31 13:07:26 -04009119static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009120 struct iw_request_info *info,
9121 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009122{
9123 struct ipw_priv *priv = ieee80211_priv(dev);
9124 int mode = *(int *)extra;
9125 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009126 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009127 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9128 mode = IPW_POWER_AC;
9129 priv->power_mode = mode;
9130 } else {
9131 priv->power_mode = IPW_POWER_ENABLED | mode;
9132 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009133
James Ketrenos43f66a62005-03-25 12:31:53 -06009134 if (priv->power_mode != mode) {
9135 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009136
James Ketrenos43f66a62005-03-25 12:31:53 -06009137 if (err) {
9138 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009139 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009140 return err;
9141 }
9142 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009143 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009144 return 0;
9145}
9146
9147#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009148static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009149 struct iw_request_info *info,
9150 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009151{
9152 struct ipw_priv *priv = ieee80211_priv(dev);
9153 int level = IPW_POWER_LEVEL(priv->power_mode);
9154 char *p = extra;
9155
9156 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9157
9158 switch (level) {
9159 case IPW_POWER_AC:
9160 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9161 break;
9162 case IPW_POWER_BATTERY:
9163 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9164 break;
9165 default:
9166 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009167 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009168 timeout_duration[level - 1] / 1000,
9169 period_duration[level - 1] / 1000);
9170 }
9171
9172 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009173 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009174
9175 wrqu->data.length = p - extra + 1;
9176
9177 return 0;
9178}
9179
9180static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009181 struct iw_request_info *info,
9182 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009183{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009184 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009185 int mode = *(int *)extra;
9186 u8 band = 0, modulation = 0;
9187
9188 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009189 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009190 return -EINVAL;
9191 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009192 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009193 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009194 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009195 if (mode & IEEE_A) {
9196 band |= IEEE80211_52GHZ_BAND;
9197 modulation |= IEEE80211_OFDM_MODULATION;
9198 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009199 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009200 } else {
9201 if (mode & IEEE_A) {
9202 IPW_WARNING("Attempt to set 2200BG into "
9203 "802.11a mode\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009204 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009205 return -EINVAL;
9206 }
9207
James Ketrenosa33a1982005-09-14 14:28:59 -05009208 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009209 }
9210
9211 if (mode & IEEE_B) {
9212 band |= IEEE80211_24GHZ_BAND;
9213 modulation |= IEEE80211_CCK_MODULATION;
9214 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009215 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009216
James Ketrenos43f66a62005-03-25 12:31:53 -06009217 if (mode & IEEE_G) {
9218 band |= IEEE80211_24GHZ_BAND;
9219 modulation |= IEEE80211_OFDM_MODULATION;
9220 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009221 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009222
9223 priv->ieee->mode = mode;
9224 priv->ieee->freq_band = band;
9225 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009226 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009227
James Ketrenosc848d0a2005-08-24 21:56:24 -05009228 /* Network configuration changed -- force [re]association */
9229 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9230 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009231 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009232 ipw_associate(priv);
9233 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009234
James Ketrenosa613bff2005-08-24 21:43:11 -05009235 /* Update the band LEDs */
9236 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009237
Jeff Garzikbf794512005-07-31 13:07:26 -04009238 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009239 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009240 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
James Ketrenosc848d0a2005-08-24 21:56:24 -05009241 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009242 return 0;
9243}
9244
9245static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009246 struct iw_request_info *info,
9247 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009248{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009249 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009250 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009251 switch (priv->ieee->mode) {
9252 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009253 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9254 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009255 case IEEE_B:
9256 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9257 break;
9258 case IEEE_A | IEEE_B:
9259 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9260 break;
9261 case IEEE_G:
9262 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9263 break;
9264 case IEEE_A | IEEE_G:
9265 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9266 break;
9267 case IEEE_B | IEEE_G:
9268 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9269 break;
9270 case IEEE_A | IEEE_B | IEEE_G:
9271 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9272 break;
9273 default:
9274 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009275 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009276 }
9277
James Ketrenos43f66a62005-03-25 12:31:53 -06009278 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9279
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009280 wrqu->data.length = strlen(extra) + 1;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009281 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009282
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009283 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009284}
9285
James Ketrenosea2b26e2005-08-24 21:25:16 -05009286static int ipw_wx_set_preamble(struct net_device *dev,
9287 struct iw_request_info *info,
9288 union iwreq_data *wrqu, char *extra)
9289{
9290 struct ipw_priv *priv = ieee80211_priv(dev);
9291 int mode = *(int *)extra;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009292 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009293 /* Switching from SHORT -> LONG requires a disassociation */
9294 if (mode == 1) {
9295 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9296 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009297
9298 /* Network configuration changed -- force [re]association */
9299 IPW_DEBUG_ASSOC
9300 ("[re]association triggered due to preamble change.\n");
9301 if (!ipw_disassociate(priv))
9302 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009303 }
9304 goto done;
9305 }
9306
9307 if (mode == 0) {
9308 priv->config &= ~CFG_PREAMBLE_LONG;
9309 goto done;
9310 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009311 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009312 return -EINVAL;
9313
9314 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009315 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009316 return 0;
9317}
9318
9319static int ipw_wx_get_preamble(struct net_device *dev,
9320 struct iw_request_info *info,
9321 union iwreq_data *wrqu, char *extra)
9322{
9323 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009324 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009325 if (priv->config & CFG_PREAMBLE_LONG)
9326 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9327 else
9328 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009329 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009330 return 0;
9331}
9332
James Ketrenosb095c382005-08-24 22:04:42 -05009333#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009334static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009335 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009336 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009337{
James Ketrenos43f66a62005-03-25 12:31:53 -06009338 struct ipw_priv *priv = ieee80211_priv(dev);
9339 int *parms = (int *)extra;
9340 int enable = (parms[0] > 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009341 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009342 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009343 if (enable) {
9344 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05009345#ifdef CONFIG_IEEE80211_RADIOTAP
9346 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9347#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009348 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009349#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009350 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009351 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009352
James Ketrenos43f66a62005-03-25 12:31:53 -06009353 ipw_set_channel(priv, parms[1]);
9354 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009355 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9356 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009357 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009358 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009359 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009360 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009361 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009362 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009363 return 0;
9364}
9365
James Ketrenosb095c382005-08-24 22:04:42 -05009366#endif // CONFIG_IPW2200_MONITOR
9367
Jeff Garzikbf794512005-07-31 13:07:26 -04009368static int ipw_wx_reset(struct net_device *dev,
9369 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009370 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009371{
James Ketrenos43f66a62005-03-25 12:31:53 -06009372 struct ipw_priv *priv = ieee80211_priv(dev);
9373 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009374 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009375 return 0;
9376}
James Ketrenosb095c382005-08-24 22:04:42 -05009377
James Ketrenosb095c382005-08-24 22:04:42 -05009378static int ipw_wx_sw_reset(struct net_device *dev,
9379 struct iw_request_info *info,
9380 union iwreq_data *wrqu, char *extra)
9381{
9382 struct ipw_priv *priv = ieee80211_priv(dev);
9383 union iwreq_data wrqu_sec = {
9384 .encoding = {
9385 .flags = IW_ENCODE_DISABLED,
9386 },
9387 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009388 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009389
9390 IPW_DEBUG_WX("SW_RESET\n");
9391
9392 down(&priv->sem);
9393
James Ketrenosafbf30a2005-08-25 00:05:33 -05009394 ret = ipw_sw_reset(priv, 0);
9395 if (!ret) {
9396 free_firmware();
9397 ipw_adapter_restart(priv);
9398 }
James Ketrenosb095c382005-08-24 22:04:42 -05009399
9400 /* The SW reset bit might have been toggled on by the 'disable'
9401 * module parameter, so take appropriate action */
9402 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9403
9404 up(&priv->sem);
9405 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
9406 down(&priv->sem);
9407
9408 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9409 /* Configuration likely changed -- force [re]association */
9410 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9411 "reset.\n");
9412 if (!ipw_disassociate(priv))
9413 ipw_associate(priv);
9414 }
9415
9416 up(&priv->sem);
9417
9418 return 0;
9419}
James Ketrenos43f66a62005-03-25 12:31:53 -06009420
9421/* Rebase the WE IOCTLs to zero for the handler array */
9422#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009423static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009424 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9425 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9426 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9427 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9428 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
9429 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9430 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9431 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9432 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9433 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9434 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9435 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9436 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9437 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9438 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9439 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9440 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9441 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9442 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9443 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9444 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9445 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9446 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9447 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9448 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9449 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9450 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9451 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009452 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9453 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9454 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9455 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009456 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9457 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9458 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9459 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9460 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9461 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9462 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
James Ketrenos43f66a62005-03-25 12:31:53 -06009463};
9464
James Ketrenosb095c382005-08-24 22:04:42 -05009465enum {
9466 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9467 IPW_PRIV_GET_POWER,
9468 IPW_PRIV_SET_MODE,
9469 IPW_PRIV_GET_MODE,
9470 IPW_PRIV_SET_PREAMBLE,
9471 IPW_PRIV_GET_PREAMBLE,
9472 IPW_PRIV_RESET,
9473 IPW_PRIV_SW_RESET,
9474#ifdef CONFIG_IPW2200_MONITOR
9475 IPW_PRIV_SET_MONITOR,
9476#endif
9477};
James Ketrenos43f66a62005-03-25 12:31:53 -06009478
Jeff Garzikbf794512005-07-31 13:07:26 -04009479static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009480 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009481 .cmd = IPW_PRIV_SET_POWER,
9482 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9483 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009484 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009485 .cmd = IPW_PRIV_GET_POWER,
9486 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9487 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009488 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009489 .cmd = IPW_PRIV_SET_MODE,
9490 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9491 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009492 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009493 .cmd = IPW_PRIV_GET_MODE,
9494 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9495 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009496 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009497 .cmd = IPW_PRIV_SET_PREAMBLE,
9498 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9499 .name = "set_preamble"},
9500 {
9501 .cmd = IPW_PRIV_GET_PREAMBLE,
9502 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9503 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009504 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009505 IPW_PRIV_RESET,
9506 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009507 {
9508 IPW_PRIV_SW_RESET,
9509 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9510#ifdef CONFIG_IPW2200_MONITOR
9511 {
9512 IPW_PRIV_SET_MONITOR,
9513 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9514#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009515};
9516
9517static iw_handler ipw_priv_handler[] = {
9518 ipw_wx_set_powermode,
9519 ipw_wx_get_powermode,
9520 ipw_wx_set_wireless_mode,
9521 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009522 ipw_wx_set_preamble,
9523 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009524 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -05009525 ipw_wx_sw_reset,
9526#ifdef CONFIG_IPW2200_MONITOR
9527 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -06009528#endif
9529};
9530
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009531static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009532 .standard = ipw_wx_handlers,
9533 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
9534 .num_private = ARRAY_SIZE(ipw_priv_handler),
9535 .num_private_args = ARRAY_SIZE(ipw_priv_args),
9536 .private = ipw_priv_handler,
9537 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00009538 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06009539};
9540
James Ketrenos43f66a62005-03-25 12:31:53 -06009541/*
9542 * Get wireless statistics.
9543 * Called by /proc/net/wireless
9544 * Also called by SIOCGIWSTATS
9545 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009546static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -06009547{
9548 struct ipw_priv *priv = ieee80211_priv(dev);
9549 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009550
James Ketrenos43f66a62005-03-25 12:31:53 -06009551 wstats = &priv->wstats;
9552
James Ketrenosea2b26e2005-08-24 21:25:16 -05009553 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -05009554 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -06009555 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
9556 * and associated; if not associcated, the values are all meaningless
9557 * anyway, so set them all to NULL and INVALID */
9558 if (!(priv->status & STATUS_ASSOCIATED)) {
9559 wstats->miss.beacon = 0;
9560 wstats->discard.retries = 0;
9561 wstats->qual.qual = 0;
9562 wstats->qual.level = 0;
9563 wstats->qual.noise = 0;
9564 wstats->qual.updated = 7;
9565 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009566 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -06009567 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009568 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009569
9570 wstats->qual.qual = priv->quality;
9571 wstats->qual.level = average_value(&priv->average_rssi);
9572 wstats->qual.noise = average_value(&priv->average_noise);
9573 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009574 IW_QUAL_NOISE_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -06009575
9576 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
9577 wstats->discard.retries = priv->last_tx_failures;
9578 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -04009579
James Ketrenos43f66a62005-03-25 12:31:53 -06009580/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
9581 goto fail_get_ordinal;
9582 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -04009583
James Ketrenos43f66a62005-03-25 12:31:53 -06009584 return wstats;
9585}
9586
James Ketrenos43f66a62005-03-25 12:31:53 -06009587/* net device stuff */
9588
9589static inline void init_sys_config(struct ipw_sys_config *sys_config)
9590{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009591 memset(sys_config, 0, sizeof(struct ipw_sys_config));
9592 sys_config->bt_coexistence = 1; /* We may need to look into prvStaBtConfig */
James Ketrenos43f66a62005-03-25 12:31:53 -06009593 sys_config->answer_broadcast_ssid_probe = 0;
9594 sys_config->accept_all_data_frames = 0;
9595 sys_config->accept_non_directed_frames = 1;
9596 sys_config->exclude_unicast_unencrypted = 0;
9597 sys_config->disable_unicast_decryption = 1;
9598 sys_config->exclude_multicast_unencrypted = 0;
9599 sys_config->disable_multicast_decryption = 1;
9600 sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009601 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -06009602 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009603 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009604 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009605 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
James Ketrenos43f66a62005-03-25 12:31:53 -06009606}
9607
9608static int ipw_net_open(struct net_device *dev)
9609{
9610 struct ipw_priv *priv = ieee80211_priv(dev);
9611 IPW_DEBUG_INFO("dev->open\n");
9612 /* we should be verifying the device is ready to be opened */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009613 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009614 if (!(priv->status & STATUS_RF_KILL_MASK) &&
9615 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009616 netif_start_queue(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009617 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009618 return 0;
9619}
9620
9621static int ipw_net_stop(struct net_device *dev)
9622{
9623 IPW_DEBUG_INFO("dev->close\n");
9624 netif_stop_queue(dev);
9625 return 0;
9626}
9627
9628/*
9629todo:
9630
9631modify to send one tfd per fragment instead of using chunking. otherwise
9632we need to heavily modify the ieee80211_skb_to_txb.
9633*/
9634
James Ketrenos227d2dc2005-07-28 16:25:55 -05009635static inline int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
9636 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009637{
James Ketrenos0dacca12005-09-21 12:23:41 -05009638 struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009639 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -06009640 int i = 0;
9641 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -05009642#ifdef CONFIG_IPW_QOS
9643 int tx_id = ipw_get_tx_queue_number(priv, pri);
9644 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9645#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009646 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -05009647#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009648 struct clx2_queue *q = &txq->q;
9649 u8 id, hdr_len, unicast;
9650 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009651 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -06009652
James Ketrenos227d2dc2005-07-28 16:25:55 -05009653 /* If there isn't room in the queue, we return busy and let the
9654 * network stack requeue the packet for us */
9655 if (ipw_queue_space(q) < q->high_mark)
9656 return NETDEV_TX_BUSY;
James Ketrenos43f66a62005-03-25 12:31:53 -06009657
9658 switch (priv->ieee->iw_mode) {
9659 case IW_MODE_ADHOC:
9660 hdr_len = IEEE80211_3ADDR_LEN;
Hong Liu9d5b8802005-10-19 16:25:33 -05009661 unicast = !(is_multicast_ether_addr(hdr->addr1) ||
9662 is_broadcast_ether_addr(hdr->addr1));
James Ketrenos43f66a62005-03-25 12:31:53 -06009663 id = ipw_find_station(priv, hdr->addr1);
9664 if (id == IPW_INVALID_STATION) {
9665 id = ipw_add_station(priv, hdr->addr1);
9666 if (id == IPW_INVALID_STATION) {
9667 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -04009668 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009669 MAC_ARG(hdr->addr1));
9670 goto drop;
9671 }
9672 }
9673 break;
9674
9675 case IW_MODE_INFRA:
9676 default:
Hong Liu9d5b8802005-10-19 16:25:33 -05009677 unicast = !(is_multicast_ether_addr(hdr->addr3) ||
9678 is_broadcast_ether_addr(hdr->addr3));
James Ketrenos43f66a62005-03-25 12:31:53 -06009679 hdr_len = IEEE80211_3ADDR_LEN;
9680 id = 0;
9681 break;
9682 }
9683
9684 tfd = &txq->bd[q->first_empty];
9685 txq->txb[q->first_empty] = txb;
9686 memset(tfd, 0, sizeof(*tfd));
9687 tfd->u.data.station_number = id;
9688
9689 tfd->control_flags.message_type = TX_FRAME_TYPE;
9690 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
9691
9692 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -05009693 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009694 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -04009695
James Ketrenos43f66a62005-03-25 12:31:53 -06009696 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -05009697 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009698 else
James Ketrenosb095c382005-08-24 22:04:42 -05009699 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -06009700
James Ketrenosea2b26e2005-08-24 21:25:16 -05009701 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
9702 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009703
James Ketrenosc848d0a2005-08-24 21:56:24 -05009704 fc = le16_to_cpu(hdr->frame_ctl);
9705 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -06009706
9707 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
9708
James Ketrenosb095c382005-08-24 22:04:42 -05009709 if (likely(unicast))
9710 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9711
9712 if (txb->encrypted && !priv->ieee->host_encrypt) {
9713 switch (priv->ieee->sec.level) {
9714 case SEC_LEVEL_3:
9715 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9716 IEEE80211_FCTL_PROTECTED;
9717 /* XXX: ACK flag must be set for CCMP even if it
9718 * is a multicast/broadcast packet, because CCMP
9719 * group communication encrypted by GTK is
9720 * actually done by the AP. */
9721 if (!unicast)
9722 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9723
9724 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9725 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
9726 tfd->u.data.key_index = 0;
9727 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
9728 break;
9729 case SEC_LEVEL_2:
9730 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9731 IEEE80211_FCTL_PROTECTED;
9732 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9733 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
9734 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
9735 break;
9736 case SEC_LEVEL_1:
9737 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9738 IEEE80211_FCTL_PROTECTED;
9739 tfd->u.data.key_index = priv->ieee->tx_keyidx;
9740 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
9741 40)
9742 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
9743 else
9744 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
9745 break;
9746 case SEC_LEVEL_0:
9747 break;
9748 default:
9749 printk(KERN_ERR "Unknow security level %d\n",
9750 priv->ieee->sec.level);
9751 break;
9752 }
9753 } else
9754 /* No hardware encryption */
9755 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
9756
9757#ifdef CONFIG_IPW_QOS
9758 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast);
9759#endif /* CONFIG_IPW_QOS */
9760
James Ketrenos43f66a62005-03-25 12:31:53 -06009761 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -05009762 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
9763 txb->nr_frags));
9764 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
9765 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
9766 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
9767 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
9768 i, le32_to_cpu(tfd->u.data.num_chunks),
9769 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009770 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009771 i, tfd->u.data.num_chunks,
9772 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009773 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -06009774 txb->fragments[i]->len - hdr_len);
9775
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009776 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009777 cpu_to_le32(pci_map_single
9778 (priv->pci_dev,
9779 txb->fragments[i]->data + hdr_len,
9780 txb->fragments[i]->len - hdr_len,
9781 PCI_DMA_TODEVICE));
9782 tfd->u.data.chunk_len[i] =
9783 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009784 }
9785
9786 if (i != txb->nr_frags) {
9787 struct sk_buff *skb;
9788 u16 remaining_bytes = 0;
9789 int j;
9790
9791 for (j = i; j < txb->nr_frags; j++)
9792 remaining_bytes += txb->fragments[j]->len - hdr_len;
9793
9794 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
9795 remaining_bytes);
9796 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
9797 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -05009798 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -06009799 for (j = i; j < txb->nr_frags; j++) {
9800 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009801
James Ketrenos43f66a62005-03-25 12:31:53 -06009802 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009803 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009804 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009805 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009806 }
9807 dev_kfree_skb_any(txb->fragments[i]);
9808 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009809 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009810 cpu_to_le32(pci_map_single
9811 (priv->pci_dev, skb->data,
9812 tfd->u.data.chunk_len[i],
9813 PCI_DMA_TODEVICE));
9814
9815 tfd->u.data.num_chunks =
9816 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
9817 1);
Jeff Garzikbf794512005-07-31 13:07:26 -04009818 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009819 }
9820
9821 /* kick DMA */
9822 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
9823 ipw_write32(priv, q->reg_w, q->first_empty);
9824
James Ketrenos227d2dc2005-07-28 16:25:55 -05009825 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009826
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009827 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -06009828 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
9829 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -05009830 return NETDEV_TX_OK;
9831}
9832
9833static int ipw_net_is_queue_full(struct net_device *dev, int pri)
9834{
9835 struct ipw_priv *priv = ieee80211_priv(dev);
9836#ifdef CONFIG_IPW_QOS
9837 int tx_id = ipw_get_tx_queue_number(priv, pri);
9838 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9839#else
9840 struct clx2_tx_queue *txq = &priv->txq[0];
9841#endif /* CONFIG_IPW_QOS */
9842
9843 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
9844 return 1;
9845
9846 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009847}
9848
9849static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -05009850 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009851{
9852 struct ipw_priv *priv = ieee80211_priv(dev);
9853 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -05009854 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009855
9856 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009857 spin_lock_irqsave(&priv->lock, flags);
9858
9859 if (!(priv->status & STATUS_ASSOCIATED)) {
9860 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
9861 priv->ieee->stats.tx_carrier_errors++;
9862 netif_stop_queue(dev);
9863 goto fail_unlock;
9864 }
9865
James Ketrenos227d2dc2005-07-28 16:25:55 -05009866 ret = ipw_tx_skb(priv, txb, pri);
9867 if (ret == NETDEV_TX_OK)
9868 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009869 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06009870
James Ketrenos227d2dc2005-07-28 16:25:55 -05009871 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009872
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009873 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -06009874 spin_unlock_irqrestore(&priv->lock, flags);
9875 return 1;
9876}
9877
9878static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
9879{
9880 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -04009881
James Ketrenos43f66a62005-03-25 12:31:53 -06009882 priv->ieee->stats.tx_packets = priv->tx_packets;
9883 priv->ieee->stats.rx_packets = priv->rx_packets;
9884 return &priv->ieee->stats;
9885}
9886
9887static void ipw_net_set_multicast_list(struct net_device *dev)
9888{
9889
9890}
9891
9892static int ipw_net_set_mac_address(struct net_device *dev, void *p)
9893{
9894 struct ipw_priv *priv = ieee80211_priv(dev);
9895 struct sockaddr *addr = p;
9896 if (!is_valid_ether_addr(addr->sa_data))
9897 return -EADDRNOTAVAIL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009898 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009899 priv->config |= CFG_CUSTOM_MAC;
9900 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
9901 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
9902 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -05009903 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009904 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009905 return 0;
9906}
9907
Jeff Garzikbf794512005-07-31 13:07:26 -04009908static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -06009909 struct ethtool_drvinfo *info)
9910{
9911 struct ipw_priv *p = ieee80211_priv(dev);
9912 char vers[64];
9913 char date[32];
9914 u32 len;
9915
9916 strcpy(info->driver, DRV_NAME);
9917 strcpy(info->version, DRV_VERSION);
9918
9919 len = sizeof(vers);
9920 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
9921 len = sizeof(date);
9922 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
9923
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009924 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009925 vers, date);
9926 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -05009927 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009928}
9929
9930static u32 ipw_ethtool_get_link(struct net_device *dev)
9931{
9932 struct ipw_priv *priv = ieee80211_priv(dev);
9933 return (priv->status & STATUS_ASSOCIATED) != 0;
9934}
9935
9936static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
9937{
James Ketrenosb095c382005-08-24 22:04:42 -05009938 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009939}
9940
9941static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009942 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009943{
9944 struct ipw_priv *p = ieee80211_priv(dev);
9945
James Ketrenosb095c382005-08-24 22:04:42 -05009946 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009947 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009948 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009949 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009950 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009951 return 0;
9952}
9953
9954static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009955 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009956{
9957 struct ipw_priv *p = ieee80211_priv(dev);
9958 int i;
9959
James Ketrenosb095c382005-08-24 22:04:42 -05009960 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009961 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009962 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009963 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009964 for (i = IPW_EEPROM_DATA;
James Ketrenosb095c382005-08-24 22:04:42 -05009965 i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06009966 ipw_write8(p, i, p->eeprom[i]);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009967 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009968 return 0;
9969}
9970
9971static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009972 .get_link = ipw_ethtool_get_link,
9973 .get_drvinfo = ipw_ethtool_get_drvinfo,
9974 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
9975 .get_eeprom = ipw_ethtool_get_eeprom,
9976 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -06009977};
9978
9979static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
9980{
9981 struct ipw_priv *priv = data;
9982 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -04009983
James Ketrenos43f66a62005-03-25 12:31:53 -06009984 if (!priv)
9985 return IRQ_NONE;
9986
9987 spin_lock(&priv->lock);
9988
9989 if (!(priv->status & STATUS_INT_ENABLED)) {
9990 /* Shared IRQ */
9991 goto none;
9992 }
9993
James Ketrenosb095c382005-08-24 22:04:42 -05009994 inta = ipw_read32(priv, IPW_INTA_RW);
9995 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -04009996
James Ketrenos43f66a62005-03-25 12:31:53 -06009997 if (inta == 0xFFFFFFFF) {
9998 /* Hardware disappeared */
9999 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10000 goto none;
10001 }
10002
James Ketrenosb095c382005-08-24 22:04:42 -050010003 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010004 /* Shared interrupt */
10005 goto none;
10006 }
10007
10008 /* tell the device to stop sending interrupts */
10009 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010010
James Ketrenos43f66a62005-03-25 12:31:53 -060010011 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010012 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10013 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010014
James Ketrenos43f66a62005-03-25 12:31:53 -060010015 /* Cache INTA value for our tasklet */
10016 priv->isr_inta = inta;
10017
10018 tasklet_schedule(&priv->irq_tasklet);
10019
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010020 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010021
10022 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010023 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010024 spin_unlock(&priv->lock);
10025 return IRQ_NONE;
10026}
10027
10028static void ipw_rf_kill(void *adapter)
10029{
10030 struct ipw_priv *priv = adapter;
10031 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010032
James Ketrenos43f66a62005-03-25 12:31:53 -060010033 spin_lock_irqsave(&priv->lock, flags);
10034
10035 if (rf_kill_active(priv)) {
10036 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10037 if (priv->workqueue)
10038 queue_delayed_work(priv->workqueue,
10039 &priv->rf_kill, 2 * HZ);
10040 goto exit_unlock;
10041 }
10042
10043 /* RF Kill is now disabled, so bring the device back up */
10044
10045 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10046 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10047 "device\n");
10048
10049 /* we can not do an adapter restart while inside an irq lock */
10050 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010051 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010052 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10053 "enabled\n");
10054
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010055 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010056 spin_unlock_irqrestore(&priv->lock, flags);
10057}
10058
James Ketrenosc848d0a2005-08-24 21:56:24 -050010059static void ipw_bg_rf_kill(void *data)
10060{
10061 struct ipw_priv *priv = data;
10062 down(&priv->sem);
10063 ipw_rf_kill(data);
10064 up(&priv->sem);
10065}
10066
James Ketrenosa613bff2005-08-24 21:43:11 -050010067void ipw_link_up(struct ipw_priv *priv)
10068{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010069 priv->last_seq_num = -1;
10070 priv->last_frag_num = -1;
10071 priv->last_packet_time = 0;
10072
James Ketrenosa613bff2005-08-24 21:43:11 -050010073 netif_carrier_on(priv->net_dev);
10074 if (netif_queue_stopped(priv->net_dev)) {
10075 IPW_DEBUG_NOTIF("waking queue\n");
10076 netif_wake_queue(priv->net_dev);
10077 } else {
10078 IPW_DEBUG_NOTIF("starting queue\n");
10079 netif_start_queue(priv->net_dev);
10080 }
10081
James Ketrenosc848d0a2005-08-24 21:56:24 -050010082 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010083 ipw_reset_stats(priv);
10084 /* Ensure the rate is updated immediately */
10085 priv->last_rate = ipw_get_current_rate(priv);
10086 ipw_gather_stats(priv);
10087 ipw_led_link_up(priv);
10088 notify_wx_assoc_event(priv);
10089
10090 if (priv->config & CFG_BACKGROUND_SCAN)
10091 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10092}
10093
James Ketrenosc848d0a2005-08-24 21:56:24 -050010094static void ipw_bg_link_up(void *data)
10095{
10096 struct ipw_priv *priv = data;
10097 down(&priv->sem);
10098 ipw_link_up(data);
10099 up(&priv->sem);
10100}
10101
James Ketrenosa613bff2005-08-24 21:43:11 -050010102void ipw_link_down(struct ipw_priv *priv)
10103{
10104 ipw_led_link_down(priv);
10105 netif_carrier_off(priv->net_dev);
10106 netif_stop_queue(priv->net_dev);
10107 notify_wx_assoc_event(priv);
10108
10109 /* Cancel any queued work ... */
10110 cancel_delayed_work(&priv->request_scan);
10111 cancel_delayed_work(&priv->adhoc_check);
10112 cancel_delayed_work(&priv->gather_stats);
10113
10114 ipw_reset_stats(priv);
10115
James Ketrenosafbf30a2005-08-25 00:05:33 -050010116 if (!(priv->status & STATUS_EXIT_PENDING)) {
10117 /* Queue up another scan... */
10118 queue_work(priv->workqueue, &priv->request_scan);
10119 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010120}
10121
James Ketrenosc848d0a2005-08-24 21:56:24 -050010122static void ipw_bg_link_down(void *data)
10123{
10124 struct ipw_priv *priv = data;
10125 down(&priv->sem);
10126 ipw_link_down(data);
10127 up(&priv->sem);
10128}
10129
James Ketrenos43f66a62005-03-25 12:31:53 -060010130static int ipw_setup_deferred_work(struct ipw_priv *priv)
10131{
10132 int ret = 0;
10133
James Ketrenos43f66a62005-03-25 12:31:53 -060010134 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010135 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010136 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010137
James Ketrenosc848d0a2005-08-24 21:56:24 -050010138 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10139 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10140 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010141 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010142 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10143 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10144 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10145 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10146 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010147 INIT_WORK(&priv->request_scan,
James Ketrenos43f66a62005-03-25 12:31:53 -060010148 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010149 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010150 (void (*)(void *))ipw_bg_gather_stats, priv);
10151 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10152 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10153 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10154 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10155 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10156 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010157 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010158 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010159 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010160 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10161 priv);
10162 INIT_WORK(&priv->merge_networks,
10163 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010164
James Ketrenosb095c382005-08-24 22:04:42 -050010165#ifdef CONFIG_IPW_QOS
10166 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10167 priv);
10168#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010169
10170 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10171 ipw_irq_tasklet, (unsigned long)priv);
10172
10173 return ret;
10174}
10175
James Ketrenos43f66a62005-03-25 12:31:53 -060010176static void shim__set_security(struct net_device *dev,
10177 struct ieee80211_security *sec)
10178{
10179 struct ipw_priv *priv = ieee80211_priv(dev);
10180 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010181 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010182 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010183 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010184 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010185 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010186 priv->ieee->sec.flags &= ~(1 << i);
10187 else {
10188 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010189 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010190 priv->ieee->sec.flags |= (1 << i);
10191 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010192 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010193 } else if (sec->level != SEC_LEVEL_1)
10194 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010195 }
10196
James Ketrenosb095c382005-08-24 22:04:42 -050010197 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010198 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010199 priv->ieee->sec.active_key = sec->active_key;
10200 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010201 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010202 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010203 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010204 } else
10205 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010206
10207 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010208 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10209 priv->ieee->sec.auth_mode = sec->auth_mode;
10210 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010211 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10212 priv->capability |= CAP_SHARED_KEY;
10213 else
10214 priv->capability &= ~CAP_SHARED_KEY;
10215 priv->status |= STATUS_SECURITY_UPDATED;
10216 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010217
James Ketrenosb095c382005-08-24 22:04:42 -050010218 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10219 priv->ieee->sec.flags |= SEC_ENABLED;
10220 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010221 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010222 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010223 priv->capability |= CAP_PRIVACY_ON;
10224 else
10225 priv->capability &= ~CAP_PRIVACY_ON;
10226 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010227
James Ketrenosafbf30a2005-08-25 00:05:33 -050010228 if (sec->flags & SEC_ENCRYPT)
10229 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010230
James Ketrenosb095c382005-08-24 22:04:42 -050010231 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10232 priv->ieee->sec.level = sec->level;
10233 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010234 priv->status |= STATUS_SECURITY_UPDATED;
10235 }
10236
Zhu Yi1fbfea52005-08-05 17:22:56 +080010237 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10238 ipw_set_hwcrypto_keys(priv);
10239
Jeff Garzikbf794512005-07-31 13:07:26 -040010240 /* To match current functionality of ipw2100 (which works well w/
10241 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010242 * privacy capability changes ... */
10243#if 0
10244 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010245 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010246 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010247 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010248 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010249 IPW_DEBUG_ASSOC("Disassociating due to capability "
10250 "change.\n");
10251 ipw_disassociate(priv);
10252 }
10253#endif
10254}
10255
Jeff Garzikbf794512005-07-31 13:07:26 -040010256static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010257 struct ipw_supported_rates *rates)
10258{
10259 /* TODO: Mask out rates based on priv->rates_mask */
10260
10261 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010262 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010263 switch (priv->ieee->freq_band) {
10264 case IEEE80211_52GHZ_BAND:
10265 rates->ieee_mode = IPW_A_MODE;
10266 rates->purpose = IPW_RATE_CAPABILITIES;
10267 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10268 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10269 break;
10270
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010271 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010272 rates->ieee_mode = IPW_G_MODE;
10273 rates->purpose = IPW_RATE_CAPABILITIES;
10274 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10275 IEEE80211_CCK_DEFAULT_RATES_MASK);
10276 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10277 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10278 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10279 }
10280 break;
10281 }
10282
10283 return 0;
10284}
10285
Jeff Garzikbf794512005-07-31 13:07:26 -040010286static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010287{
James Ketrenos43f66a62005-03-25 12:31:53 -060010288 /* This is only called from ipw_up, which resets/reloads the firmware
10289 so, we don't need to first disable the card before we configure
10290 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010291 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010292 goto error;
10293
10294 /* initialize adapter address */
10295 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10296 goto error;
10297
10298 /* set basic system config settings */
10299 init_sys_config(&priv->sys_config);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010300 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10301 priv->sys_config.answer_broadcast_ssid_probe = 1;
10302 else
10303 priv->sys_config.answer_broadcast_ssid_probe = 0;
10304
James Ketrenos43f66a62005-03-25 12:31:53 -060010305 if (ipw_send_system_config(priv, &priv->sys_config))
10306 goto error;
10307
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010308 init_supported_rates(priv, &priv->rates);
10309 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010310 goto error;
10311
10312 /* Set request-to-send threshold */
10313 if (priv->rts_threshold) {
10314 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10315 goto error;
10316 }
James Ketrenosb095c382005-08-24 22:04:42 -050010317#ifdef CONFIG_IPW_QOS
10318 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10319 ipw_qos_activate(priv, NULL);
10320#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010321
10322 if (ipw_set_random_seed(priv))
10323 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010324
James Ketrenos43f66a62005-03-25 12:31:53 -060010325 /* final state transition to the RUN state */
10326 if (ipw_send_host_complete(priv))
10327 goto error;
10328
James Ketrenose6666192005-08-12 09:17:04 -050010329 priv->status |= STATUS_INIT;
10330
10331 ipw_led_init(priv);
10332 ipw_led_radio_on(priv);
10333 priv->notif_missed_beacons = 0;
10334
10335 /* Set hardware WEP key if it is configured. */
10336 if ((priv->capability & CAP_PRIVACY_ON) &&
10337 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10338 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10339 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010340
10341 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010342
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010343 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010344 return -EIO;
10345}
10346
James Ketrenos4f36f802005-08-03 20:36:56 -050010347/*
10348 * NOTE:
10349 *
10350 * These tables have been tested in conjunction with the
10351 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10352 *
10353 * Altering this values, using it on other hardware, or in geographies
10354 * not intended for resale of the above mentioned Intel adapters has
10355 * not been tested.
10356 *
10357 */
10358static const struct ieee80211_geo ipw_geos[] = {
10359 { /* Restricted */
10360 "---",
10361 .bg_channels = 11,
10362 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10363 {2427, 4}, {2432, 5}, {2437, 6},
10364 {2442, 7}, {2447, 8}, {2452, 9},
10365 {2457, 10}, {2462, 11}},
10366 },
10367
10368 { /* Custom US/Canada */
10369 "ZZF",
10370 .bg_channels = 11,
10371 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10372 {2427, 4}, {2432, 5}, {2437, 6},
10373 {2442, 7}, {2447, 8}, {2452, 9},
10374 {2457, 10}, {2462, 11}},
10375 .a_channels = 8,
10376 .a = {{5180, 36},
10377 {5200, 40},
10378 {5220, 44},
10379 {5240, 48},
10380 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10381 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10382 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10383 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10384 },
10385
10386 { /* Rest of World */
10387 "ZZD",
10388 .bg_channels = 13,
10389 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10390 {2427, 4}, {2432, 5}, {2437, 6},
10391 {2442, 7}, {2447, 8}, {2452, 9},
10392 {2457, 10}, {2462, 11}, {2467, 12},
10393 {2472, 13}},
10394 },
10395
10396 { /* Custom USA & Europe & High */
10397 "ZZA",
10398 .bg_channels = 11,
10399 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10400 {2427, 4}, {2432, 5}, {2437, 6},
10401 {2442, 7}, {2447, 8}, {2452, 9},
10402 {2457, 10}, {2462, 11}},
10403 .a_channels = 13,
10404 .a = {{5180, 36},
10405 {5200, 40},
10406 {5220, 44},
10407 {5240, 48},
10408 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10409 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10410 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10411 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10412 {5745, 149},
10413 {5765, 153},
10414 {5785, 157},
10415 {5805, 161},
10416 {5825, 165}},
10417 },
10418
10419 { /* Custom NA & Europe */
10420 "ZZB",
10421 .bg_channels = 11,
10422 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10423 {2427, 4}, {2432, 5}, {2437, 6},
10424 {2442, 7}, {2447, 8}, {2452, 9},
10425 {2457, 10}, {2462, 11}},
10426 .a_channels = 13,
10427 .a = {{5180, 36},
10428 {5200, 40},
10429 {5220, 44},
10430 {5240, 48},
10431 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10432 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10433 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10434 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10435 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10436 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10437 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10438 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10439 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10440 },
10441
10442 { /* Custom Japan */
10443 "ZZC",
10444 .bg_channels = 11,
10445 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10446 {2427, 4}, {2432, 5}, {2437, 6},
10447 {2442, 7}, {2447, 8}, {2452, 9},
10448 {2457, 10}, {2462, 11}},
10449 .a_channels = 4,
10450 .a = {{5170, 34}, {5190, 38},
10451 {5210, 42}, {5230, 46}},
10452 },
10453
10454 { /* Custom */
10455 "ZZM",
10456 .bg_channels = 11,
10457 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10458 {2427, 4}, {2432, 5}, {2437, 6},
10459 {2442, 7}, {2447, 8}, {2452, 9},
10460 {2457, 10}, {2462, 11}},
10461 },
10462
10463 { /* Europe */
10464 "ZZE",
10465 .bg_channels = 13,
10466 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10467 {2427, 4}, {2432, 5}, {2437, 6},
10468 {2442, 7}, {2447, 8}, {2452, 9},
10469 {2457, 10}, {2462, 11}, {2467, 12},
10470 {2472, 13}},
10471 .a_channels = 19,
10472 .a = {{5180, 36},
10473 {5200, 40},
10474 {5220, 44},
10475 {5240, 48},
10476 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10477 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10478 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10479 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10480 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10481 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10482 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10483 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10484 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10485 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10486 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10487 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10488 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10489 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10490 {5700, 140, IEEE80211_CH_PASSIVE_ONLY}},
10491 },
10492
10493 { /* Custom Japan */
10494 "ZZJ",
10495 .bg_channels = 14,
10496 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10497 {2427, 4}, {2432, 5}, {2437, 6},
10498 {2442, 7}, {2447, 8}, {2452, 9},
10499 {2457, 10}, {2462, 11}, {2467, 12},
10500 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY}},
10501 .a_channels = 4,
10502 .a = {{5170, 34}, {5190, 38},
10503 {5210, 42}, {5230, 46}},
10504 },
10505
James Ketrenos03520572005-10-19 16:12:31 -050010506 { /* Rest of World */
10507 "ZZR",
10508 .bg_channels = 14,
10509 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10510 {2427, 4}, {2432, 5}, {2437, 6},
10511 {2442, 7}, {2447, 8}, {2452, 9},
10512 {2457, 10}, {2462, 11}, {2467, 12},
10513 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY |
10514 IEEE80211_CH_PASSIVE_ONLY}},
10515 },
10516
James Ketrenos4f36f802005-08-03 20:36:56 -050010517 { /* High Band */
10518 "ZZH",
10519 .bg_channels = 13,
10520 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10521 {2427, 4}, {2432, 5}, {2437, 6},
10522 {2442, 7}, {2447, 8}, {2452, 9},
10523 {2457, 10}, {2462, 11},
10524 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10525 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10526 .a_channels = 4,
10527 .a = {{5745, 149}, {5765, 153},
10528 {5785, 157}, {5805, 161}},
10529 },
10530
10531 { /* Custom Europe */
10532 "ZZG",
10533 .bg_channels = 13,
10534 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10535 {2427, 4}, {2432, 5}, {2437, 6},
10536 {2442, 7}, {2447, 8}, {2452, 9},
10537 {2457, 10}, {2462, 11},
10538 {2467, 12}, {2472, 13}},
10539 .a_channels = 4,
10540 .a = {{5180, 36}, {5200, 40},
10541 {5220, 44}, {5240, 48}},
10542 },
10543
10544 { /* Europe */
10545 "ZZK",
10546 .bg_channels = 13,
10547 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10548 {2427, 4}, {2432, 5}, {2437, 6},
10549 {2442, 7}, {2447, 8}, {2452, 9},
10550 {2457, 10}, {2462, 11},
10551 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10552 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10553 .a_channels = 24,
10554 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10555 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10556 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10557 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10558 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10559 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10560 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10561 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10562 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10563 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10564 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10565 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10566 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10567 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10568 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10569 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10570 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10571 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10572 {5700, 140, IEEE80211_CH_PASSIVE_ONLY},
10573 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10574 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10575 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10576 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10577 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10578 },
10579
10580 { /* Europe */
10581 "ZZL",
10582 .bg_channels = 11,
10583 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10584 {2427, 4}, {2432, 5}, {2437, 6},
10585 {2442, 7}, {2447, 8}, {2452, 9},
10586 {2457, 10}, {2462, 11}},
10587 .a_channels = 13,
10588 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10589 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10590 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10591 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10592 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10593 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10594 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10595 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10596 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10597 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10598 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10599 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10600 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10601 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010602};
10603
Liu Hong1fe0adb2005-08-19 09:33:10 -050010604/* GEO code borrowed from ieee80211_geo.c */
10605static int ipw_is_valid_channel(struct ieee80211_device *ieee, u8 channel)
10606{
10607 int i;
10608
10609 /* Driver needs to initialize the geography map before using
10610 * these helper functions */
10611 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10612
10613 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10614 for (i = 0; i < ieee->geo.bg_channels; i++)
10615 /* NOTE: If G mode is currently supported but
10616 * this is a B only channel, we don't see it
10617 * as valid. */
10618 if ((ieee->geo.bg[i].channel == channel) &&
10619 (!(ieee->mode & IEEE_G) ||
10620 !(ieee->geo.bg[i].flags & IEEE80211_CH_B_ONLY)))
10621 return IEEE80211_24GHZ_BAND;
10622
10623 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10624 for (i = 0; i < ieee->geo.a_channels; i++)
10625 if (ieee->geo.a[i].channel == channel)
10626 return IEEE80211_52GHZ_BAND;
10627
10628 return 0;
10629}
10630
10631static int ipw_channel_to_index(struct ieee80211_device *ieee, u8 channel)
10632{
10633 int i;
10634
10635 /* Driver needs to initialize the geography map before using
10636 * these helper functions */
10637 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10638
10639 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10640 for (i = 0; i < ieee->geo.bg_channels; i++)
10641 if (ieee->geo.bg[i].channel == channel)
10642 return i;
10643
10644 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10645 for (i = 0; i < ieee->geo.a_channels; i++)
10646 if (ieee->geo.a[i].channel == channel)
10647 return i;
10648
10649 return -1;
10650}
10651
10652static u8 ipw_freq_to_channel(struct ieee80211_device *ieee, u32 freq)
10653{
10654 int i;
10655
10656 /* Driver needs to initialize the geography map before using
10657 * these helper functions */
10658 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10659
10660 freq /= 100000;
10661
10662 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10663 for (i = 0; i < ieee->geo.bg_channels; i++)
10664 if (ieee->geo.bg[i].freq == freq)
10665 return ieee->geo.bg[i].channel;
10666
10667 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10668 for (i = 0; i < ieee->geo.a_channels; i++)
10669 if (ieee->geo.a[i].freq == freq)
10670 return ieee->geo.a[i].channel;
10671
10672 return 0;
10673}
10674
10675static int ipw_set_geo(struct ieee80211_device *ieee,
10676 const struct ieee80211_geo *geo)
10677{
10678 memcpy(ieee->geo.name, geo->name, 3);
10679 ieee->geo.name[3] = '\0';
10680 ieee->geo.bg_channels = geo->bg_channels;
10681 ieee->geo.a_channels = geo->a_channels;
10682 memcpy(ieee->geo.bg, geo->bg, geo->bg_channels *
10683 sizeof(struct ieee80211_channel));
10684 memcpy(ieee->geo.a, geo->a, ieee->geo.a_channels *
10685 sizeof(struct ieee80211_channel));
10686 return 0;
10687}
10688
10689static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *ieee)
10690{
10691 return &ieee->geo;
10692}
10693
James Ketrenos43f66a62005-03-25 12:31:53 -060010694#define MAX_HW_RESTARTS 5
10695static int ipw_up(struct ipw_priv *priv)
10696{
James Ketrenos4f36f802005-08-03 20:36:56 -050010697 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060010698
10699 if (priv->status & STATUS_EXIT_PENDING)
10700 return -EIO;
10701
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010702 if (cmdlog && !priv->cmdlog) {
10703 priv->cmdlog = kmalloc(sizeof(*priv->cmdlog) * cmdlog,
10704 GFP_KERNEL);
10705 if (priv->cmdlog == NULL) {
10706 IPW_ERROR("Error allocating %d command log entries.\n",
10707 cmdlog);
10708 } else {
10709 memset(priv->cmdlog, 0, sizeof(*priv->cmdlog) * cmdlog);
10710 priv->cmdlog_len = cmdlog;
10711 }
10712 }
10713
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010714 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040010715 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060010716 * Also start the clocks. */
10717 rc = ipw_load(priv);
10718 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050010719 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010720 return rc;
10721 }
10722
10723 ipw_init_ordinals(priv);
10724 if (!(priv->config & CFG_CUSTOM_MAC))
10725 eeprom_parse_mac(priv, priv->mac_addr);
10726 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
10727
James Ketrenos4f36f802005-08-03 20:36:56 -050010728 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
10729 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
10730 ipw_geos[j].name, 3))
10731 break;
10732 }
James Ketrenos03520572005-10-19 16:12:31 -050010733 if (j == ARRAY_SIZE(ipw_geos)) {
10734 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
10735 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
10736 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
10737 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
James Ketrenos4f36f802005-08-03 20:36:56 -050010738 j = 0;
James Ketrenos03520572005-10-19 16:12:31 -050010739 }
Liu Hong1fe0adb2005-08-19 09:33:10 -050010740 if (ipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050010741 IPW_WARNING("Could not set geography.");
James Ketrenos43f66a62005-03-25 12:31:53 -060010742 return 0;
James Ketrenos4f36f802005-08-03 20:36:56 -050010743 }
10744
10745 IPW_DEBUG_INFO("Geography %03d [%s] detected.\n",
10746 j, priv->ieee->geo.name);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010747
James Ketrenosb095c382005-08-24 22:04:42 -050010748 if (priv->status & STATUS_RF_KILL_SW) {
10749 IPW_WARNING("Radio disabled by module parameter.\n");
10750 return 0;
10751 } else if (rf_kill_active(priv)) {
10752 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
10753 "Kill switch must be turned off for "
10754 "wireless networking to work.\n");
10755 queue_delayed_work(priv->workqueue, &priv->rf_kill,
10756 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010757 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010758 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010759
10760 rc = ipw_config(priv);
10761 if (!rc) {
10762 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010763
James Ketrenose6666192005-08-12 09:17:04 -050010764 /* If configure to try and auto-associate, kick
10765 * off a scan. */
10766 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010767
James Ketrenos43f66a62005-03-25 12:31:53 -060010768 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010769 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010770
James Ketrenosc848d0a2005-08-24 21:56:24 -050010771 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010772 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
10773 i, MAX_HW_RESTARTS);
10774
10775 /* We had an error bringing up the hardware, so take it
10776 * all the way back down so we can try again */
10777 ipw_down(priv);
10778 }
10779
Jeff Garzikbf794512005-07-31 13:07:26 -040010780 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060010781 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010782 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010783
James Ketrenos43f66a62005-03-25 12:31:53 -060010784 return -EIO;
10785}
10786
James Ketrenosc848d0a2005-08-24 21:56:24 -050010787static void ipw_bg_up(void *data)
10788{
10789 struct ipw_priv *priv = data;
10790 down(&priv->sem);
10791 ipw_up(data);
10792 up(&priv->sem);
10793}
10794
James Ketrenosb095c382005-08-24 22:04:42 -050010795static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010796{
James Ketrenosb095c382005-08-24 22:04:42 -050010797 int i;
10798
10799 if (priv->status & STATUS_SCANNING) {
10800 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
10801 ipw_abort_scan(priv);
10802 }
10803
10804 if (priv->status & STATUS_ASSOCIATED) {
10805 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
10806 ipw_disassociate(priv);
10807 }
10808
10809 ipw_led_shutdown(priv);
10810
10811 /* Wait up to 1s for status to change to not scanning and not
10812 * associated (disassociation can take a while for a ful 802.11
10813 * exchange */
10814 for (i = 1000; i && (priv->status &
10815 (STATUS_DISASSOCIATING |
10816 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
10817 udelay(10);
10818
10819 if (priv->status & (STATUS_DISASSOCIATING |
10820 STATUS_ASSOCIATED | STATUS_SCANNING))
10821 IPW_DEBUG_INFO("Still associated or scanning...\n");
10822 else
10823 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
10824
James Ketrenosc848d0a2005-08-24 21:56:24 -050010825 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060010826 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050010827
10828 priv->status &= ~STATUS_INIT;
10829}
10830
James Ketrenos43f66a62005-03-25 12:31:53 -060010831static void ipw_down(struct ipw_priv *priv)
10832{
James Ketrenosb095c382005-08-24 22:04:42 -050010833 int exit_pending = priv->status & STATUS_EXIT_PENDING;
10834
10835 priv->status |= STATUS_EXIT_PENDING;
10836
10837 if (ipw_is_init(priv))
10838 ipw_deinit(priv);
10839
10840 /* Wipe out the EXIT_PENDING status bit if we are not actually
10841 * exiting the module */
10842 if (!exit_pending)
10843 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010844
10845 /* tell the device to stop sending interrupts */
10846 ipw_disable_interrupts(priv);
10847
10848 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050010849 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010850 netif_carrier_off(priv->net_dev);
10851 netif_stop_queue(priv->net_dev);
10852
10853 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050010854
10855 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010856}
10857
James Ketrenosc848d0a2005-08-24 21:56:24 -050010858static void ipw_bg_down(void *data)
10859{
10860 struct ipw_priv *priv = data;
10861 down(&priv->sem);
10862 ipw_down(data);
10863 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010864}
10865
10866/* Called by register_netdev() */
10867static int ipw_net_init(struct net_device *dev)
10868{
10869 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010870 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010871
James Ketrenosc848d0a2005-08-24 21:56:24 -050010872 if (ipw_up(priv)) {
10873 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010874 return -EIO;
James Ketrenos43f66a62005-03-25 12:31:53 -060010875 }
10876
James Ketrenosc848d0a2005-08-24 21:56:24 -050010877 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010878 return 0;
10879}
10880
10881/* PCI driver stuff */
10882static struct pci_device_id card_ids[] = {
10883 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
10884 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
10885 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
10886 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
10887 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
10888 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
10889 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
10890 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
10891 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
10892 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
10893 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
10894 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
10895 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
10896 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
10897 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
10898 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
10899 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
10900 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010901 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050010902 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010903 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
10904 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040010905
James Ketrenos43f66a62005-03-25 12:31:53 -060010906 /* required last entry */
10907 {0,}
10908};
10909
10910MODULE_DEVICE_TABLE(pci, card_ids);
10911
10912static struct attribute *ipw_sysfs_entries[] = {
10913 &dev_attr_rf_kill.attr,
10914 &dev_attr_direct_dword.attr,
10915 &dev_attr_indirect_byte.attr,
10916 &dev_attr_indirect_dword.attr,
10917 &dev_attr_mem_gpio_reg.attr,
10918 &dev_attr_command_event_reg.attr,
10919 &dev_attr_nic_type.attr,
10920 &dev_attr_status.attr,
10921 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050010922 &dev_attr_error.attr,
10923 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010924 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060010925 &dev_attr_eeprom_delay.attr,
10926 &dev_attr_ucode_version.attr,
10927 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050010928 &dev_attr_scan_age.attr,
10929 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050010930 &dev_attr_speed_scan.attr,
10931 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060010932 NULL
10933};
10934
10935static struct attribute_group ipw_attribute_group = {
10936 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010937 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060010938};
10939
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010940static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060010941{
10942 int err = 0;
10943 struct net_device *net_dev;
10944 void __iomem *base;
10945 u32 length, val;
10946 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010947 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060010948
10949 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
10950 if (net_dev == NULL) {
10951 err = -ENOMEM;
10952 goto out;
10953 }
10954
10955 priv = ieee80211_priv(net_dev);
10956 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010957
James Ketrenos43f66a62005-03-25 12:31:53 -060010958 priv->net_dev = net_dev;
10959 priv->pci_dev = pdev;
10960#ifdef CONFIG_IPW_DEBUG
10961 ipw_debug_level = debug;
10962#endif
10963 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010964 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
10965 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060010966
James Ketrenosc848d0a2005-08-24 21:56:24 -050010967 init_MUTEX(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010968 if (pci_enable_device(pdev)) {
10969 err = -ENODEV;
10970 goto out_free_ieee80211;
10971 }
10972
10973 pci_set_master(pdev);
10974
Tobias Klauser0e08b442005-06-20 14:28:41 -070010975 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040010976 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070010977 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010978 if (err) {
10979 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
10980 goto out_pci_disable_device;
10981 }
10982
10983 pci_set_drvdata(pdev, priv);
10984
10985 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040010986 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060010987 goto out_pci_disable_device;
10988
Jeff Garzikbf794512005-07-31 13:07:26 -040010989 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060010990 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040010991 pci_read_config_dword(pdev, 0x40, &val);
10992 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060010993 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040010994
James Ketrenos43f66a62005-03-25 12:31:53 -060010995 length = pci_resource_len(pdev, 0);
10996 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040010997
James Ketrenos43f66a62005-03-25 12:31:53 -060010998 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
10999 if (!base) {
11000 err = -ENODEV;
11001 goto out_pci_release_regions;
11002 }
11003
11004 priv->hw_base = base;
11005 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11006 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11007
11008 err = ipw_setup_deferred_work(priv);
11009 if (err) {
11010 IPW_ERROR("Unable to setup deferred work\n");
11011 goto out_iounmap;
11012 }
11013
James Ketrenosb095c382005-08-24 22:04:42 -050011014 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011015
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011016 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011017 if (err) {
11018 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11019 goto out_destroy_workqueue;
11020 }
11021
11022 SET_MODULE_OWNER(net_dev);
11023 SET_NETDEV_DEV(net_dev, &pdev->dev);
11024
James Ketrenosc848d0a2005-08-24 21:56:24 -050011025 down(&priv->sem);
11026
James Ketrenos43f66a62005-03-25 12:31:53 -060011027 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11028 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011029 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011030
James Ketrenosb095c382005-08-24 22:04:42 -050011031#ifdef CONFIG_IPW_QOS
James Ketrenos3b9990c2005-08-19 13:18:55 -050011032 priv->ieee->handle_probe_response = ipw_handle_beacon;
11033 priv->ieee->handle_beacon = ipw_handle_probe_response;
11034 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
James Ketrenosb095c382005-08-24 22:04:42 -050011035#endif /* CONFIG_IPW_QOS */
11036
James Ketrenosc848d0a2005-08-24 21:56:24 -050011037 priv->ieee->perfect_rssi = -20;
11038 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060011039
11040 net_dev->open = ipw_net_open;
11041 net_dev->stop = ipw_net_stop;
11042 net_dev->init = ipw_net_init;
11043 net_dev->get_stats = ipw_net_get_stats;
11044 net_dev->set_multicast_list = ipw_net_set_multicast_list;
11045 net_dev->set_mac_address = ipw_net_set_mac_address;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011046 priv->wireless_data.spy_data = &priv->ieee->spy_data;
11047 priv->wireless_data.ieee80211 = priv->ieee;
11048 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011049 net_dev->wireless_handlers = &ipw_wx_handler_def;
11050 net_dev->ethtool_ops = &ipw_ethtool_ops;
11051 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011052 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011053 net_dev->mem_start = pci_resource_start(pdev, 0);
11054 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11055
11056 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11057 if (err) {
11058 IPW_ERROR("failed to create sysfs device attributes\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -050011059 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011060 goto out_release_irq;
11061 }
11062
James Ketrenosc848d0a2005-08-24 21:56:24 -050011063 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011064 err = register_netdev(net_dev);
11065 if (err) {
11066 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011067 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011068 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011069 return 0;
11070
James Ketrenosa613bff2005-08-24 21:43:11 -050011071 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011072 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011073 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011074 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011075 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011076 destroy_workqueue(priv->workqueue);
11077 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011078 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011079 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011080 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011081 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011082 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011083 pci_disable_device(pdev);
11084 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011085 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060011086 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011087 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011088 return err;
11089}
11090
11091static void ipw_pci_remove(struct pci_dev *pdev)
11092{
11093 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011094 struct list_head *p, *q;
11095 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011096
James Ketrenos43f66a62005-03-25 12:31:53 -060011097 if (!priv)
11098 return;
11099
James Ketrenosb095c382005-08-24 22:04:42 -050011100 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011101
James Ketrenosafbf30a2005-08-25 00:05:33 -050011102 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011103 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011104 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11105
James Ketrenosb095c382005-08-24 22:04:42 -050011106 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011107
11108 unregister_netdev(priv->net_dev);
11109
11110 if (priv->rxq) {
11111 ipw_rx_queue_free(priv, priv->rxq);
11112 priv->rxq = NULL;
11113 }
11114 ipw_tx_queue_free(priv);
11115
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011116 if (priv->cmdlog) {
11117 kfree(priv->cmdlog);
11118 priv->cmdlog = NULL;
11119 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011120 /* ipw_down will ensure that there is no more pending work
11121 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011122 cancel_delayed_work(&priv->adhoc_check);
11123 cancel_delayed_work(&priv->gather_stats);
11124 cancel_delayed_work(&priv->request_scan);
11125 cancel_delayed_work(&priv->rf_kill);
11126 cancel_delayed_work(&priv->scan_check);
11127 destroy_workqueue(priv->workqueue);
11128 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011129
James Ketrenosafbf30a2005-08-25 00:05:33 -050011130 /* Free MAC hash list for ADHOC */
11131 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11132 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
11133 kfree(list_entry(p, struct ipw_ibss_seq, list));
11134 list_del(p);
11135 }
11136 }
11137
James Ketrenosb39860c2005-08-12 09:36:32 -050011138 if (priv->error) {
11139 ipw_free_error_log(priv->error);
11140 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011141 }
11142
11143 free_irq(pdev->irq, priv);
11144 iounmap(priv->hw_base);
11145 pci_release_regions(pdev);
11146 pci_disable_device(pdev);
11147 pci_set_drvdata(pdev, NULL);
11148 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011149 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011150}
11151
James Ketrenos43f66a62005-03-25 12:31:53 -060011152#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011153static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011154{
11155 struct ipw_priv *priv = pci_get_drvdata(pdev);
11156 struct net_device *dev = priv->net_dev;
11157
11158 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11159
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011160 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011161 ipw_down(priv);
11162
11163 /* Remove the PRESENT state of the device */
11164 netif_device_detach(dev);
11165
James Ketrenos43f66a62005-03-25 12:31:53 -060011166 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011167 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011168 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011169
James Ketrenos43f66a62005-03-25 12:31:53 -060011170 return 0;
11171}
11172
11173static int ipw_pci_resume(struct pci_dev *pdev)
11174{
11175 struct ipw_priv *priv = pci_get_drvdata(pdev);
11176 struct net_device *dev = priv->net_dev;
11177 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011178
James Ketrenos43f66a62005-03-25 12:31:53 -060011179 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11180
James Ketrenosea2b26e2005-08-24 21:25:16 -050011181 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011182 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011183 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011184
James Ketrenos43f66a62005-03-25 12:31:53 -060011185 /*
11186 * Suspend/Resume resets the PCI configuration space, so we have to
11187 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11188 * from interfering with C3 CPU state. pci_restore_state won't help
11189 * here since it only restores the first 64 bytes pci config header.
11190 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011191 pci_read_config_dword(pdev, 0x40, &val);
11192 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011193 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11194
11195 /* Set the device back into the PRESENT state; this will also wake
11196 * the queue of needed */
11197 netif_device_attach(dev);
11198
11199 /* Bring the device back up */
11200 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011201
James Ketrenos43f66a62005-03-25 12:31:53 -060011202 return 0;
11203}
11204#endif
11205
11206/* driver initialization stuff */
11207static struct pci_driver ipw_driver = {
11208 .name = DRV_NAME,
11209 .id_table = card_ids,
11210 .probe = ipw_pci_probe,
11211 .remove = __devexit_p(ipw_pci_remove),
11212#ifdef CONFIG_PM
11213 .suspend = ipw_pci_suspend,
11214 .resume = ipw_pci_resume,
11215#endif
11216};
11217
11218static int __init ipw_init(void)
11219{
11220 int ret;
11221
11222 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11223 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11224
11225 ret = pci_module_init(&ipw_driver);
11226 if (ret) {
11227 IPW_ERROR("Unable to initialize PCI module\n");
11228 return ret;
11229 }
11230
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011231 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011232 if (ret) {
11233 IPW_ERROR("Unable to create driver sysfs file\n");
11234 pci_unregister_driver(&ipw_driver);
11235 return ret;
11236 }
11237
11238 return ret;
11239}
11240
11241static void __exit ipw_exit(void)
11242{
11243 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11244 pci_unregister_driver(&ipw_driver);
11245}
11246
11247module_param(disable, int, 0444);
11248MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11249
11250module_param(associate, int, 0444);
11251MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
11252
11253module_param(auto_create, int, 0444);
11254MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11255
James Ketrenosa613bff2005-08-24 21:43:11 -050011256module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011257MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011258
James Ketrenos43f66a62005-03-25 12:31:53 -060011259module_param(debug, int, 0444);
11260MODULE_PARM_DESC(debug, "debug output mask");
11261
11262module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011263MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011264
James Ketrenosb095c382005-08-24 22:04:42 -050011265#ifdef CONFIG_IPW_QOS
11266module_param(qos_enable, int, 0444);
11267MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060011268
James Ketrenosb095c382005-08-24 22:04:42 -050011269module_param(qos_burst_enable, int, 0444);
11270MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11271
11272module_param(qos_no_ack_mask, int, 0444);
11273MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11274
11275module_param(burst_duration_CCK, int, 0444);
11276MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11277
11278module_param(burst_duration_OFDM, int, 0444);
11279MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
11280#endif /* CONFIG_IPW_QOS */
11281
11282#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060011283module_param(mode, int, 0444);
11284MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
11285#else
11286module_param(mode, int, 0444);
11287MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
11288#endif
11289
James Ketrenosb095c382005-08-24 22:04:42 -050011290module_param(hwcrypto, int, 0444);
11291MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)");
11292
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011293module_param(cmdlog, int, 0444);
11294MODULE_PARM_DESC(cmdlog,
11295 "allocate a ring buffer for logging firmware commands");
11296
James Ketrenos43f66a62005-03-25 12:31:53 -060011297module_exit(ipw_exit);
11298module_init(ipw_init);