blob: 14beab4bc91cba2e21a7af20a8a6cc6dbe8241b5 [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
Brice Goglin0f52bf92005-12-01 01:41:46 -0800465#ifdef CONFIG_IPW2200_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
Arjan van de Ven858119e2006-01-14 13:20:43 -0800816static 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;
Zhu Yi3b26b112005-11-17 13:58:30 +08001113 error->log = (struct ipw_event *)(error->elem + elem_len);
James Ketrenosb39860c2005-08-12 09:36:32 -05001114
1115 ipw_capture_event_log(priv, log_len, error->log);
1116
1117 if (elem_len)
1118 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1119 sizeof(*error->elem) * elem_len);
1120
1121 return error;
1122}
1123
1124static void ipw_free_error_log(struct ipw_fw_error *error)
1125{
1126 if (error)
1127 kfree(error);
1128}
1129
1130static ssize_t show_event_log(struct device *d,
1131 struct device_attribute *attr, char *buf)
1132{
1133 struct ipw_priv *priv = dev_get_drvdata(d);
1134 u32 log_len = ipw_get_event_log_len(priv);
1135 struct ipw_event log[log_len];
1136 u32 len = 0, i;
1137
1138 ipw_capture_event_log(priv, log_len, log);
1139
1140 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1141 for (i = 0; i < log_len; i++)
1142 len += snprintf(buf + len, PAGE_SIZE - len,
1143 "\n%08X%08X%08X",
1144 log[i].time, log[i].event, log[i].data);
1145 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1146 return len;
1147}
1148
1149static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1150
1151static ssize_t show_error(struct device *d,
1152 struct device_attribute *attr, char *buf)
1153{
1154 struct ipw_priv *priv = dev_get_drvdata(d);
1155 u32 len = 0, i;
1156 if (!priv->error)
1157 return 0;
1158 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001159 "%08lX%08X%08X%08X",
1160 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001161 priv->error->status,
1162 priv->error->config, priv->error->elem_len);
1163 for (i = 0; i < priv->error->elem_len; i++)
1164 len += snprintf(buf + len, PAGE_SIZE - len,
1165 "\n%08X%08X%08X%08X%08X%08X%08X",
1166 priv->error->elem[i].time,
1167 priv->error->elem[i].desc,
1168 priv->error->elem[i].blink1,
1169 priv->error->elem[i].blink2,
1170 priv->error->elem[i].link1,
1171 priv->error->elem[i].link2,
1172 priv->error->elem[i].data);
1173
1174 len += snprintf(buf + len, PAGE_SIZE - len,
1175 "\n%08X", priv->error->log_len);
1176 for (i = 0; i < priv->error->log_len; i++)
1177 len += snprintf(buf + len, PAGE_SIZE - len,
1178 "\n%08X%08X%08X",
1179 priv->error->log[i].time,
1180 priv->error->log[i].event,
1181 priv->error->log[i].data);
1182 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1183 return len;
1184}
1185
1186static ssize_t clear_error(struct device *d,
1187 struct device_attribute *attr,
1188 const char *buf, size_t count)
1189{
1190 struct ipw_priv *priv = dev_get_drvdata(d);
1191 if (priv->error) {
1192 ipw_free_error_log(priv->error);
1193 priv->error = NULL;
1194 }
1195 return count;
1196}
1197
1198static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1199
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001200static ssize_t show_cmd_log(struct device *d,
1201 struct device_attribute *attr, char *buf)
1202{
1203 struct ipw_priv *priv = dev_get_drvdata(d);
1204 u32 len = 0, i;
1205 if (!priv->cmdlog)
1206 return 0;
1207 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1208 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1209 i = (i + 1) % priv->cmdlog_len) {
1210 len +=
1211 snprintf(buf + len, PAGE_SIZE - len,
1212 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1213 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1214 priv->cmdlog[i].cmd.len);
1215 len +=
1216 snprintk_buf(buf + len, PAGE_SIZE - len,
1217 (u8 *) priv->cmdlog[i].cmd.param,
1218 priv->cmdlog[i].cmd.len);
1219 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1220 }
1221 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1222 return len;
1223}
1224
1225static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1226
James Ketrenosa613bff2005-08-24 21:43:11 -05001227static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1228 char *buf)
1229{
1230 struct ipw_priv *priv = dev_get_drvdata(d);
1231 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1232}
1233
1234static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1235 const char *buf, size_t count)
1236{
1237 struct ipw_priv *priv = dev_get_drvdata(d);
Brice Goglin0f52bf92005-12-01 01:41:46 -08001238#ifdef CONFIG_IPW2200_DEBUG
James Ketrenosa613bff2005-08-24 21:43:11 -05001239 struct net_device *dev = priv->net_dev;
James Ketrenosc848d0a2005-08-24 21:56:24 -05001240#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05001241 char buffer[] = "00000000";
1242 unsigned long len =
1243 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1244 unsigned long val;
1245 char *p = buffer;
1246
1247 IPW_DEBUG_INFO("enter\n");
1248
1249 strncpy(buffer, buf, len);
1250 buffer[len] = 0;
1251
1252 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1253 p++;
1254 if (p[0] == 'x' || p[0] == 'X')
1255 p++;
1256 val = simple_strtoul(p, &p, 16);
1257 } else
1258 val = simple_strtoul(p, &p, 10);
1259 if (p == buffer) {
1260 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1261 } else {
1262 priv->ieee->scan_age = val;
1263 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1264 }
1265
1266 IPW_DEBUG_INFO("exit\n");
1267 return len;
1268}
1269
1270static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1271
1272static ssize_t show_led(struct device *d, struct device_attribute *attr,
1273 char *buf)
1274{
1275 struct ipw_priv *priv = dev_get_drvdata(d);
1276 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1277}
1278
1279static ssize_t store_led(struct device *d, struct device_attribute *attr,
1280 const char *buf, size_t count)
1281{
1282 struct ipw_priv *priv = dev_get_drvdata(d);
1283
1284 IPW_DEBUG_INFO("enter\n");
1285
1286 if (count == 0)
1287 return 0;
1288
1289 if (*buf == 0) {
1290 IPW_DEBUG_LED("Disabling LED control.\n");
1291 priv->config |= CFG_NO_LED;
1292 ipw_led_shutdown(priv);
1293 } else {
1294 IPW_DEBUG_LED("Enabling LED control.\n");
1295 priv->config &= ~CFG_NO_LED;
1296 ipw_led_init(priv);
1297 }
1298
1299 IPW_DEBUG_INFO("exit\n");
1300 return count;
1301}
1302
1303static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1304
Andrew Mortonad3fee52005-06-20 14:30:36 -07001305static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001306 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001307{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001308 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001309 return sprintf(buf, "0x%08x\n", (int)p->status);
1310}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001311
James Ketrenos43f66a62005-03-25 12:31:53 -06001312static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1313
Andrew Mortonad3fee52005-06-20 14:30:36 -07001314static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1315 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001316{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001317 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001318 return sprintf(buf, "0x%08x\n", (int)p->config);
1319}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001320
James Ketrenos43f66a62005-03-25 12:31:53 -06001321static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1322
Andrew Mortonad3fee52005-06-20 14:30:36 -07001323static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001324 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001325{
James Ketrenosa613bff2005-08-24 21:43:11 -05001326 struct ipw_priv *priv = d->driver_data;
1327 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001328}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001329
James Ketrenos43f66a62005-03-25 12:31:53 -06001330static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1331
Andrew Mortonad3fee52005-06-20 14:30:36 -07001332static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001333 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001334{
1335 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001336 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001337
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001338 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001339 return 0;
1340
1341 return sprintf(buf, "0x%08x\n", tmp);
1342}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001343
1344static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001345
Andrew Mortonad3fee52005-06-20 14:30:36 -07001346static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1347 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001348{
1349 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001350 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001351
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001352 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001353 return 0;
1354
1355 return sprintf(buf, "0x%08x\n", tmp);
1356}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001357
1358static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001359
1360/*
1361 * Add a device attribute to view/control the delay between eeprom
1362 * operations.
1363 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001364static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001365 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001366{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001367 int n = ((struct ipw_priv *)d->driver_data)->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001368 return sprintf(buf, "%i\n", n);
1369}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001370static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001371 struct device_attribute *attr,
1372 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001373{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001374 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001375 sscanf(buf, "%i", &p->eeprom_delay);
1376 return strnlen(buf, count);
1377}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001378
1379static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1380 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001381
Andrew Mortonad3fee52005-06-20 14:30:36 -07001382static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001383 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001384{
1385 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001386 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001387
James Ketrenosb095c382005-08-24 22:04:42 -05001388 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001389 return sprintf(buf, "0x%08x\n", reg);
1390}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001391static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001392 struct device_attribute *attr,
1393 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001394{
1395 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001396 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001397
1398 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001399 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001400 return strnlen(buf, count);
1401}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001402
1403static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1404 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001405
Andrew Mortonad3fee52005-06-20 14:30:36 -07001406static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001407 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001408{
1409 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001410 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001411
1412 reg = ipw_read_reg32(p, 0x301100);
1413 return sprintf(buf, "0x%08x\n", reg);
1414}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001415static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001416 struct device_attribute *attr,
1417 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001418{
1419 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001420 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001421
1422 sscanf(buf, "%x", &reg);
1423 ipw_write_reg32(p, 0x301100, reg);
1424 return strnlen(buf, count);
1425}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001426
1427static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1428 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001429
Andrew Mortonad3fee52005-06-20 14:30:36 -07001430static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001431 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001432{
1433 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001434 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001435
Jeff Garzikbf794512005-07-31 13:07:26 -04001436 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001437 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001438 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001439 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001440
James Ketrenos43f66a62005-03-25 12:31:53 -06001441 return sprintf(buf, "0x%08x\n", reg);
1442}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001443static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001444 struct device_attribute *attr,
1445 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001446{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001447 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001448
1449 sscanf(buf, "%x", &priv->indirect_dword);
1450 priv->status |= STATUS_INDIRECT_DWORD;
1451 return strnlen(buf, count);
1452}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001453
1454static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1455 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001456
Andrew Mortonad3fee52005-06-20 14:30:36 -07001457static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001458 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001459{
1460 u8 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001461 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001462
Jeff Garzikbf794512005-07-31 13:07:26 -04001463 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001464 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001465 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001466 reg = 0;
1467
1468 return sprintf(buf, "0x%02x\n", reg);
1469}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001470static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001471 struct device_attribute *attr,
1472 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001473{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001474 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001475
1476 sscanf(buf, "%x", &priv->indirect_byte);
1477 priv->status |= STATUS_INDIRECT_BYTE;
1478 return strnlen(buf, count);
1479}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001480
1481static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001482 show_indirect_byte, store_indirect_byte);
1483
Andrew Mortonad3fee52005-06-20 14:30:36 -07001484static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001485 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001486{
1487 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001488 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001489
Jeff Garzikbf794512005-07-31 13:07:26 -04001490 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001491 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001492 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001493 reg = 0;
1494
1495 return sprintf(buf, "0x%08x\n", reg);
1496}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001497static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001498 struct device_attribute *attr,
1499 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001500{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001501 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001502
1503 sscanf(buf, "%x", &priv->direct_dword);
1504 priv->status |= STATUS_DIRECT_DWORD;
1505 return strnlen(buf, count);
1506}
James Ketrenos43f66a62005-03-25 12:31:53 -06001507
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001508static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1509 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001510
Arjan van de Ven858119e2006-01-14 13:20:43 -08001511static int rf_kill_active(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06001512{
1513 if (0 == (ipw_read32(priv, 0x30) & 0x10000))
1514 priv->status |= STATUS_RF_KILL_HW;
1515 else
1516 priv->status &= ~STATUS_RF_KILL_HW;
1517
1518 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1519}
1520
Andrew Mortonad3fee52005-06-20 14:30:36 -07001521static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001522 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001523{
1524 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001525 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001526 2 - HW based RF kill active
1527 3 - Both HW and SW baed RF kill active */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001528 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001529 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001530 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001531 return sprintf(buf, "%i\n", val);
1532}
1533
1534static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1535{
Jeff Garzikbf794512005-07-31 13:07:26 -04001536 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001537 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001538 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001539
1540 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1541 disable_radio ? "OFF" : "ON");
1542
1543 if (disable_radio) {
1544 priv->status |= STATUS_RF_KILL_SW;
1545
James Ketrenosa613bff2005-08-24 21:43:11 -05001546 if (priv->workqueue)
James Ketrenos43f66a62005-03-25 12:31:53 -06001547 cancel_delayed_work(&priv->request_scan);
James Ketrenos43f66a62005-03-25 12:31:53 -06001548 queue_work(priv->workqueue, &priv->down);
1549 } else {
1550 priv->status &= ~STATUS_RF_KILL_SW;
1551 if (rf_kill_active(priv)) {
1552 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1553 "disabled by HW switch\n");
1554 /* Make sure the RF_KILL check timer is running */
1555 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001556 queue_delayed_work(priv->workqueue, &priv->rf_kill,
James Ketrenos43f66a62005-03-25 12:31:53 -06001557 2 * HZ);
Jeff Garzikbf794512005-07-31 13:07:26 -04001558 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001559 queue_work(priv->workqueue, &priv->up);
1560 }
1561
1562 return 1;
1563}
1564
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001565static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1566 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001567{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001568 struct ipw_priv *priv = d->driver_data;
Jeff Garzikbf794512005-07-31 13:07:26 -04001569
James Ketrenos43f66a62005-03-25 12:31:53 -06001570 ipw_radio_kill_sw(priv, buf[0] == '1');
1571
1572 return count;
1573}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001574
1575static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001576
James Ketrenosb095c382005-08-24 22:04:42 -05001577static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1578 char *buf)
1579{
1580 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1581 int pos = 0, len = 0;
1582 if (priv->config & CFG_SPEED_SCAN) {
1583 while (priv->speed_scan[pos] != 0)
1584 len += sprintf(&buf[len], "%d ",
1585 priv->speed_scan[pos++]);
1586 return len + sprintf(&buf[len], "\n");
1587 }
1588
1589 return sprintf(buf, "0\n");
1590}
1591
1592static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1593 const char *buf, size_t count)
1594{
1595 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1596 int channel, pos = 0;
1597 const char *p = buf;
1598
1599 /* list of space separated channels to scan, optionally ending with 0 */
1600 while ((channel = simple_strtol(p, NULL, 0))) {
1601 if (pos == MAX_SPEED_SCAN - 1) {
1602 priv->speed_scan[pos] = 0;
1603 break;
1604 }
1605
Liu Hong1fe0adb2005-08-19 09:33:10 -05001606 if (ipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001607 priv->speed_scan[pos++] = channel;
1608 else
1609 IPW_WARNING("Skipping invalid channel request: %d\n",
1610 channel);
1611 p = strchr(p, ' ');
1612 if (!p)
1613 break;
1614 while (*p == ' ' || *p == '\t')
1615 p++;
1616 }
1617
1618 if (pos == 0)
1619 priv->config &= ~CFG_SPEED_SCAN;
1620 else {
1621 priv->speed_scan_pos = 0;
1622 priv->config |= CFG_SPEED_SCAN;
1623 }
1624
1625 return count;
1626}
1627
1628static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1629 store_speed_scan);
1630
1631static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1632 char *buf)
1633{
1634 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1635 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1636}
1637
1638static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1639 const char *buf, size_t count)
1640{
1641 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1642 if (buf[0] == '1')
1643 priv->config |= CFG_NET_STATS;
1644 else
1645 priv->config &= ~CFG_NET_STATS;
1646
1647 return count;
1648}
1649
James Ketrenosafbf30a2005-08-25 00:05:33 -05001650static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1651 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001652
James Ketrenosea2b26e2005-08-24 21:25:16 -05001653static void notify_wx_assoc_event(struct ipw_priv *priv)
1654{
1655 union iwreq_data wrqu;
1656 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1657 if (priv->status & STATUS_ASSOCIATED)
1658 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1659 else
1660 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1661 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1662}
1663
James Ketrenos43f66a62005-03-25 12:31:53 -06001664static void ipw_irq_tasklet(struct ipw_priv *priv)
1665{
1666 u32 inta, inta_mask, handled = 0;
1667 unsigned long flags;
1668 int rc = 0;
1669
1670 spin_lock_irqsave(&priv->lock, flags);
1671
James Ketrenosb095c382005-08-24 22:04:42 -05001672 inta = ipw_read32(priv, IPW_INTA_RW);
1673 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1674 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001675
1676 /* Add any cached INTA values that need to be handled */
1677 inta |= priv->isr_inta;
1678
1679 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001680 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001681 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001682 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001683 }
1684
James Ketrenosb095c382005-08-24 22:04:42 -05001685 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001686 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001687 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001688 priv->status &= ~STATUS_HCMD_ACTIVE;
1689 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001690 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001691 }
1692
James Ketrenosb095c382005-08-24 22:04:42 -05001693 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001694 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001695 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05001696 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06001697 }
1698
James Ketrenosb095c382005-08-24 22:04:42 -05001699 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001700 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001701 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05001702 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06001703 }
1704
James Ketrenosb095c382005-08-24 22:04:42 -05001705 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001706 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001707 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05001708 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06001709 }
1710
James Ketrenosb095c382005-08-24 22:04:42 -05001711 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001712 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001713 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05001714 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06001715 }
1716
James Ketrenosb095c382005-08-24 22:04:42 -05001717 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001718 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001719 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001720 }
1721
James Ketrenosb095c382005-08-24 22:04:42 -05001722 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001723 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001724 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06001725 }
1726
James Ketrenosb095c382005-08-24 22:04:42 -05001727 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001728 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001729 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001730 }
1731
James Ketrenosb095c382005-08-24 22:04:42 -05001732 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001733 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001734 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001735 }
1736
James Ketrenosb095c382005-08-24 22:04:42 -05001737 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001738 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001739 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001740 }
1741
James Ketrenosb095c382005-08-24 22:04:42 -05001742 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001743 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
1744 priv->status |= STATUS_RF_KILL_HW;
1745 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001746 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06001747 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05001748 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001749 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05001750 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001751 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001752
James Ketrenosb095c382005-08-24 22:04:42 -05001753 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001754 IPW_ERROR("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05001755 if (priv->error) {
1756 IPW_ERROR("Sysfs 'error' log already exists.\n");
Brice Goglin0f52bf92005-12-01 01:41:46 -08001757#ifdef CONFIG_IPW2200_DEBUG
James Ketrenosb39860c2005-08-12 09:36:32 -05001758 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
1759 struct ipw_fw_error *error =
1760 ipw_alloc_error_log(priv);
1761 ipw_dump_error_log(priv, error);
1762 if (error)
1763 ipw_free_error_log(error);
1764 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001765#endif
James Ketrenosb39860c2005-08-12 09:36:32 -05001766 } else {
1767 priv->error = ipw_alloc_error_log(priv);
1768 if (priv->error)
1769 IPW_ERROR("Sysfs 'error' log captured.\n");
1770 else
1771 IPW_ERROR("Error allocating sysfs 'error' "
1772 "log.\n");
Brice Goglin0f52bf92005-12-01 01:41:46 -08001773#ifdef CONFIG_IPW2200_DEBUG
James Ketrenosb39860c2005-08-12 09:36:32 -05001774 if (ipw_debug_level & IPW_DL_FW_ERRORS)
1775 ipw_dump_error_log(priv, priv->error);
1776#endif
1777 }
1778
James Ketrenosb095c382005-08-24 22:04:42 -05001779 /* XXX: If hardware encryption is for WPA/WPA2,
1780 * we have to notify the supplicant. */
1781 if (priv->ieee->sec.encrypt) {
1782 priv->status &= ~STATUS_ASSOCIATED;
1783 notify_wx_assoc_event(priv);
1784 }
1785
1786 /* Keep the restart process from trying to send host
1787 * commands by clearing the INIT status bit */
1788 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001789
1790 /* Cancel currently queued command. */
1791 priv->status &= ~STATUS_HCMD_ACTIVE;
1792 wake_up_interruptible(&priv->wait_command_queue);
1793
James Ketrenos43f66a62005-03-25 12:31:53 -06001794 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05001795 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001796 }
1797
James Ketrenosb095c382005-08-24 22:04:42 -05001798 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001799 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001800 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001801 }
1802
1803 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001804 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06001805 }
1806
1807 /* enable all interrupts */
1808 ipw_enable_interrupts(priv);
1809
1810 spin_unlock_irqrestore(&priv->lock, flags);
1811}
Jeff Garzikbf794512005-07-31 13:07:26 -04001812
James Ketrenos43f66a62005-03-25 12:31:53 -06001813#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
1814static char *get_cmd_string(u8 cmd)
1815{
1816 switch (cmd) {
1817 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04001818 IPW_CMD(POWER_DOWN);
1819 IPW_CMD(SYSTEM_CONFIG);
1820 IPW_CMD(MULTICAST_ADDRESS);
1821 IPW_CMD(SSID);
1822 IPW_CMD(ADAPTER_ADDRESS);
1823 IPW_CMD(PORT_TYPE);
1824 IPW_CMD(RTS_THRESHOLD);
1825 IPW_CMD(FRAG_THRESHOLD);
1826 IPW_CMD(POWER_MODE);
1827 IPW_CMD(WEP_KEY);
1828 IPW_CMD(TGI_TX_KEY);
1829 IPW_CMD(SCAN_REQUEST);
1830 IPW_CMD(SCAN_REQUEST_EXT);
1831 IPW_CMD(ASSOCIATE);
1832 IPW_CMD(SUPPORTED_RATES);
1833 IPW_CMD(SCAN_ABORT);
1834 IPW_CMD(TX_FLUSH);
1835 IPW_CMD(QOS_PARAMETERS);
1836 IPW_CMD(DINO_CONFIG);
1837 IPW_CMD(RSN_CAPABILITIES);
1838 IPW_CMD(RX_KEY);
1839 IPW_CMD(CARD_DISABLE);
1840 IPW_CMD(SEED_NUMBER);
1841 IPW_CMD(TX_POWER);
1842 IPW_CMD(COUNTRY_INFO);
1843 IPW_CMD(AIRONET_INFO);
1844 IPW_CMD(AP_TX_POWER);
1845 IPW_CMD(CCKM_INFO);
1846 IPW_CMD(CCX_VER_INFO);
1847 IPW_CMD(SET_CALIBRATION);
1848 IPW_CMD(SENSITIVITY_CALIB);
1849 IPW_CMD(RETRY_LIMIT);
1850 IPW_CMD(IPW_PRE_POWER_DOWN);
1851 IPW_CMD(VAP_BEACON_TEMPLATE);
1852 IPW_CMD(VAP_DTIM_PERIOD);
1853 IPW_CMD(EXT_SUPPORTED_RATES);
1854 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
1855 IPW_CMD(VAP_QUIET_INTERVALS);
1856 IPW_CMD(VAP_CHANNEL_SWITCH);
1857 IPW_CMD(VAP_MANDATORY_CHANNELS);
1858 IPW_CMD(VAP_CELL_PWR_LIMIT);
1859 IPW_CMD(VAP_CF_PARAM_SET);
1860 IPW_CMD(VAP_SET_BEACONING_STATE);
1861 IPW_CMD(MEASUREMENT);
1862 IPW_CMD(POWER_CAPABILITY);
1863 IPW_CMD(SUPPORTED_CHANNELS);
1864 IPW_CMD(TPC_REPORT);
1865 IPW_CMD(WME_INFO);
1866 IPW_CMD(PRODUCTION_COMMAND);
1867 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06001868 return "UNKNOWN";
1869 }
1870}
James Ketrenos43f66a62005-03-25 12:31:53 -06001871
1872#define HOST_COMPLETE_TIMEOUT HZ
1873static int ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
1874{
1875 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001876 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06001877
James Ketrenosa613bff2005-08-24 21:43:11 -05001878 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001879 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001880 IPW_ERROR("Failed to send %s: Already sending a command.\n",
1881 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001882 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001883 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06001884 }
1885
1886 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001887
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001888 if (priv->cmdlog) {
1889 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
1890 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
1891 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
1892 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
1893 cmd->len);
1894 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
1895 }
1896
James Ketrenosb095c382005-08-24 22:04:42 -05001897 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1898 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1899 priv->status);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001900 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001901
1902 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, &cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001903 if (rc) {
1904 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001905 IPW_ERROR("Failed to send %s: Reason %d\n",
1906 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05001907 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001908 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001909 }
1910 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001911
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001912 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1913 !(priv->
1914 status & STATUS_HCMD_ACTIVE),
1915 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001916 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001917 spin_lock_irqsave(&priv->lock, flags);
1918 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001919 IPW_ERROR("Failed to send %s: Command timed out.\n",
1920 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001921 priv->status &= ~STATUS_HCMD_ACTIVE;
1922 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001923 rc = -EIO;
1924 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001925 }
1926 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05001927 } else
1928 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001929
James Ketrenosb095c382005-08-24 22:04:42 -05001930 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001931 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
1932 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001933 rc = -EIO;
1934 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06001935 }
1936
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001937 exit:
1938 if (priv->cmdlog) {
1939 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
1940 priv->cmdlog_pos %= priv->cmdlog_len;
1941 }
1942 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06001943}
1944
1945static int ipw_send_host_complete(struct ipw_priv *priv)
1946{
1947 struct host_cmd cmd = {
1948 .cmd = IPW_CMD_HOST_COMPLETE,
1949 .len = 0
1950 };
1951
1952 if (!priv) {
1953 IPW_ERROR("Invalid args\n");
1954 return -1;
1955 }
1956
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001957 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001958}
1959
Jeff Garzikbf794512005-07-31 13:07:26 -04001960static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06001961 struct ipw_sys_config *config)
1962{
1963 struct host_cmd cmd = {
1964 .cmd = IPW_CMD_SYSTEM_CONFIG,
1965 .len = sizeof(*config)
1966 };
1967
1968 if (!priv || !config) {
1969 IPW_ERROR("Invalid args\n");
1970 return -1;
1971 }
1972
James Ketrenosafbf30a2005-08-25 00:05:33 -05001973 memcpy(cmd.param, config, sizeof(*config));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001974 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001975}
1976
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001977static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06001978{
1979 struct host_cmd cmd = {
1980 .cmd = IPW_CMD_SSID,
1981 .len = min(len, IW_ESSID_MAX_SIZE)
1982 };
1983
1984 if (!priv || !ssid) {
1985 IPW_ERROR("Invalid args\n");
1986 return -1;
1987 }
1988
James Ketrenosafbf30a2005-08-25 00:05:33 -05001989 memcpy(cmd.param, ssid, cmd.len);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001990 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001991}
1992
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001993static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06001994{
1995 struct host_cmd cmd = {
1996 .cmd = IPW_CMD_ADAPTER_ADDRESS,
1997 .len = ETH_ALEN
1998 };
1999
2000 if (!priv || !mac) {
2001 IPW_ERROR("Invalid args\n");
2002 return -1;
2003 }
2004
2005 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
2006 priv->net_dev->name, MAC_ARG(mac));
2007
James Ketrenosafbf30a2005-08-25 00:05:33 -05002008 memcpy(cmd.param, mac, ETH_ALEN);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002009 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002010}
2011
James Ketrenosa613bff2005-08-24 21:43:11 -05002012/*
2013 * NOTE: This must be executed from our workqueue as it results in udelay
2014 * being called which may corrupt the keyboard if executed on default
2015 * workqueue
2016 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002017static void ipw_adapter_restart(void *adapter)
2018{
2019 struct ipw_priv *priv = adapter;
2020
2021 if (priv->status & STATUS_RF_KILL_MASK)
2022 return;
2023
2024 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002025
2026 if (priv->assoc_network &&
2027 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2028 ipw_remove_current_network(priv);
2029
James Ketrenos43f66a62005-03-25 12:31:53 -06002030 if (ipw_up(priv)) {
2031 IPW_ERROR("Failed to up device\n");
2032 return;
2033 }
2034}
2035
James Ketrenosc848d0a2005-08-24 21:56:24 -05002036static void ipw_bg_adapter_restart(void *data)
2037{
2038 struct ipw_priv *priv = data;
2039 down(&priv->sem);
2040 ipw_adapter_restart(data);
2041 up(&priv->sem);
2042}
2043
James Ketrenos43f66a62005-03-25 12:31:53 -06002044#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2045
2046static void ipw_scan_check(void *data)
2047{
2048 struct ipw_priv *priv = data;
2049 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2050 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Jeff Garzikbf794512005-07-31 13:07:26 -04002051 "adapter (%dms).\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002052 IPW_SCAN_CHECK_WATCHDOG / 100);
James Ketrenosa613bff2005-08-24 21:43:11 -05002053 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002054 }
2055}
2056
James Ketrenosc848d0a2005-08-24 21:56:24 -05002057static void ipw_bg_scan_check(void *data)
2058{
2059 struct ipw_priv *priv = data;
2060 down(&priv->sem);
2061 ipw_scan_check(data);
2062 up(&priv->sem);
2063}
2064
James Ketrenos43f66a62005-03-25 12:31:53 -06002065static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2066 struct ipw_scan_request_ext *request)
2067{
2068 struct host_cmd cmd = {
2069 .cmd = IPW_CMD_SCAN_REQUEST_EXT,
2070 .len = sizeof(*request)
2071 };
2072
James Ketrenosafbf30a2005-08-25 00:05:33 -05002073 memcpy(cmd.param, request, sizeof(*request));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002074 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002075}
2076
2077static int ipw_send_scan_abort(struct ipw_priv *priv)
2078{
2079 struct host_cmd cmd = {
2080 .cmd = IPW_CMD_SCAN_ABORT,
2081 .len = 0
2082 };
2083
2084 if (!priv) {
2085 IPW_ERROR("Invalid args\n");
2086 return -1;
2087 }
2088
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002089 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002090}
2091
2092static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2093{
2094 struct host_cmd cmd = {
2095 .cmd = IPW_CMD_SENSITIVITY_CALIB,
2096 .len = sizeof(struct ipw_sensitivity_calib)
2097 };
2098 struct ipw_sensitivity_calib *calib = (struct ipw_sensitivity_calib *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002099 &cmd.param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002100 calib->beacon_rssi_raw = sens;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002101 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002102}
2103
2104static int ipw_send_associate(struct ipw_priv *priv,
2105 struct ipw_associate *associate)
2106{
2107 struct host_cmd cmd = {
2108 .cmd = IPW_CMD_ASSOCIATE,
2109 .len = sizeof(*associate)
2110 };
2111
James Ketrenosa613bff2005-08-24 21:43:11 -05002112 struct ipw_associate tmp_associate;
2113 memcpy(&tmp_associate, associate, sizeof(*associate));
2114 tmp_associate.policy_support =
2115 cpu_to_le16(tmp_associate.policy_support);
2116 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
2117 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
2118 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
2119 tmp_associate.listen_interval =
2120 cpu_to_le16(tmp_associate.listen_interval);
2121 tmp_associate.beacon_interval =
2122 cpu_to_le16(tmp_associate.beacon_interval);
2123 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
2124
James Ketrenos43f66a62005-03-25 12:31:53 -06002125 if (!priv || !associate) {
2126 IPW_ERROR("Invalid args\n");
2127 return -1;
2128 }
2129
James Ketrenosafbf30a2005-08-25 00:05:33 -05002130 memcpy(cmd.param, &tmp_associate, sizeof(*associate));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002131 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002132}
2133
2134static int ipw_send_supported_rates(struct ipw_priv *priv,
2135 struct ipw_supported_rates *rates)
2136{
2137 struct host_cmd cmd = {
2138 .cmd = IPW_CMD_SUPPORTED_RATES,
2139 .len = sizeof(*rates)
2140 };
2141
2142 if (!priv || !rates) {
2143 IPW_ERROR("Invalid args\n");
2144 return -1;
2145 }
2146
James Ketrenosafbf30a2005-08-25 00:05:33 -05002147 memcpy(cmd.param, rates, sizeof(*rates));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002148 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002149}
2150
2151static int ipw_set_random_seed(struct ipw_priv *priv)
2152{
2153 struct host_cmd cmd = {
2154 .cmd = IPW_CMD_SEED_NUMBER,
2155 .len = sizeof(u32)
2156 };
2157
2158 if (!priv) {
2159 IPW_ERROR("Invalid args\n");
2160 return -1;
2161 }
2162
2163 get_random_bytes(&cmd.param, sizeof(u32));
2164
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002165 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002166}
2167
James Ketrenos43f66a62005-03-25 12:31:53 -06002168static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2169{
2170 struct host_cmd cmd = {
2171 .cmd = IPW_CMD_CARD_DISABLE,
2172 .len = sizeof(u32)
2173 };
2174
2175 if (!priv) {
2176 IPW_ERROR("Invalid args\n");
2177 return -1;
2178 }
2179
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002180 *((u32 *) & cmd.param) = phy_off;
James Ketrenos43f66a62005-03-25 12:31:53 -06002181
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002182 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002183}
James Ketrenos43f66a62005-03-25 12:31:53 -06002184
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002185static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002186{
2187 struct host_cmd cmd = {
2188 .cmd = IPW_CMD_TX_POWER,
2189 .len = sizeof(*power)
2190 };
2191
2192 if (!priv || !power) {
2193 IPW_ERROR("Invalid args\n");
2194 return -1;
2195 }
2196
James Ketrenosafbf30a2005-08-25 00:05:33 -05002197 memcpy(cmd.param, power, sizeof(*power));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002198 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002199}
James Ketrenos43f66a62005-03-25 12:31:53 -06002200
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002201static int ipw_set_tx_power(struct ipw_priv *priv)
2202{
Liu Hong1fe0adb2005-08-19 09:33:10 -05002203 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002204 struct ipw_tx_power tx_power;
2205 s8 max_power;
2206 int i;
2207
2208 memset(&tx_power, 0, sizeof(tx_power));
2209
2210 /* configure device for 'G' band */
2211 tx_power.ieee_mode = IPW_G_MODE;
2212 tx_power.num_channels = geo->bg_channels;
2213 for (i = 0; i < geo->bg_channels; i++) {
2214 max_power = geo->bg[i].max_power;
2215 tx_power.channels_tx_power[i].channel_number =
2216 geo->bg[i].channel;
2217 tx_power.channels_tx_power[i].tx_power = max_power ?
2218 min(max_power, priv->tx_power) : priv->tx_power;
2219 }
2220 if (ipw_send_tx_power(priv, &tx_power))
2221 return -EIO;
2222
2223 /* configure device to also handle 'B' band */
2224 tx_power.ieee_mode = IPW_B_MODE;
2225 if (ipw_send_tx_power(priv, &tx_power))
2226 return -EIO;
2227
2228 /* configure device to also handle 'A' band */
2229 if (priv->ieee->abg_true) {
2230 tx_power.ieee_mode = IPW_A_MODE;
2231 tx_power.num_channels = geo->a_channels;
2232 for (i = 0; i < tx_power.num_channels; i++) {
2233 max_power = geo->a[i].max_power;
2234 tx_power.channels_tx_power[i].channel_number =
2235 geo->a[i].channel;
2236 tx_power.channels_tx_power[i].tx_power = max_power ?
2237 min(max_power, priv->tx_power) : priv->tx_power;
2238 }
2239 if (ipw_send_tx_power(priv, &tx_power))
2240 return -EIO;
2241 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002242 return 0;
2243}
2244
2245static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2246{
2247 struct ipw_rts_threshold rts_threshold = {
2248 .rts_threshold = rts,
2249 };
2250 struct host_cmd cmd = {
2251 .cmd = IPW_CMD_RTS_THRESHOLD,
2252 .len = sizeof(rts_threshold)
2253 };
2254
2255 if (!priv) {
2256 IPW_ERROR("Invalid args\n");
2257 return -1;
2258 }
2259
James Ketrenosafbf30a2005-08-25 00:05:33 -05002260 memcpy(cmd.param, &rts_threshold, sizeof(rts_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002261 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002262}
2263
2264static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2265{
2266 struct ipw_frag_threshold frag_threshold = {
2267 .frag_threshold = frag,
2268 };
2269 struct host_cmd cmd = {
2270 .cmd = IPW_CMD_FRAG_THRESHOLD,
2271 .len = sizeof(frag_threshold)
2272 };
2273
2274 if (!priv) {
2275 IPW_ERROR("Invalid args\n");
2276 return -1;
2277 }
2278
James Ketrenosafbf30a2005-08-25 00:05:33 -05002279 memcpy(cmd.param, &frag_threshold, sizeof(frag_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002280 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002281}
2282
2283static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2284{
2285 struct host_cmd cmd = {
2286 .cmd = IPW_CMD_POWER_MODE,
2287 .len = sizeof(u32)
2288 };
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002289 u32 *param = (u32 *) (&cmd.param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002290
2291 if (!priv) {
2292 IPW_ERROR("Invalid args\n");
2293 return -1;
2294 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002295
James Ketrenos43f66a62005-03-25 12:31:53 -06002296 /* If on battery, set to 3, if AC set to CAM, else user
2297 * level */
2298 switch (mode) {
2299 case IPW_POWER_BATTERY:
2300 *param = IPW_POWER_INDEX_3;
2301 break;
2302 case IPW_POWER_AC:
2303 *param = IPW_POWER_MODE_CAM;
2304 break;
2305 default:
2306 *param = mode;
2307 break;
2308 }
2309
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002310 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002311}
2312
James Ketrenosafbf30a2005-08-25 00:05:33 -05002313static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2314{
2315 struct ipw_retry_limit retry_limit = {
2316 .short_retry_limit = slimit,
2317 .long_retry_limit = llimit
2318 };
2319 struct host_cmd cmd = {
2320 .cmd = IPW_CMD_RETRY_LIMIT,
2321 .len = sizeof(retry_limit)
2322 };
2323
2324 if (!priv) {
2325 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002326 return -1;
2327 }
2328
James Ketrenosafbf30a2005-08-25 00:05:33 -05002329 memcpy(cmd.param, &retry_limit, sizeof(retry_limit));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002330 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002331}
2332
2333/*
2334 * The IPW device contains a Microwire compatible EEPROM that stores
2335 * various data like the MAC address. Usually the firmware has exclusive
2336 * access to the eeprom, but during device initialization (before the
2337 * device driver has sent the HostComplete command to the firmware) the
2338 * device driver has read access to the EEPROM by way of indirect addressing
2339 * through a couple of memory mapped registers.
2340 *
2341 * The following is a simplified implementation for pulling data out of the
2342 * the eeprom, along with some helper functions to find information in
2343 * the per device private data's copy of the eeprom.
2344 *
2345 * NOTE: To better understand how these functions work (i.e what is a chip
2346 * select and why do have to keep driving the eeprom clock?), read
2347 * just about any data sheet for a Microwire compatible EEPROM.
2348 */
2349
2350/* write a 32 bit value into the indirect accessor register */
2351static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2352{
2353 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002354
James Ketrenos43f66a62005-03-25 12:31:53 -06002355 /* the eeprom requires some time to complete the operation */
2356 udelay(p->eeprom_delay);
2357
2358 return;
2359}
2360
2361/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002362static void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002363{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002364 eeprom_write_reg(priv, 0);
2365 eeprom_write_reg(priv, EEPROM_BIT_CS);
2366 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2367 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002368}
2369
2370/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002371static void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002372{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002373 eeprom_write_reg(priv, EEPROM_BIT_CS);
2374 eeprom_write_reg(priv, 0);
2375 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002376}
2377
2378/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002379static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002380{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002381 int d = (bit ? EEPROM_BIT_DI : 0);
2382 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2383 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002384}
2385
2386/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002387static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002388{
2389 int i;
2390
2391 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002392 eeprom_write_bit(priv, 1);
2393 eeprom_write_bit(priv, op & 2);
2394 eeprom_write_bit(priv, op & 1);
2395 for (i = 7; i >= 0; i--) {
2396 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002397 }
2398}
2399
2400/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002401static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002402{
2403 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002404 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002405
James Ketrenos43f66a62005-03-25 12:31:53 -06002406 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002407 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002408
2409 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002410 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002411
2412 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002413 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002414 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002415 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2416 eeprom_write_reg(priv, EEPROM_BIT_CS);
2417 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2418 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002419 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002420
James Ketrenos43f66a62005-03-25 12:31:53 -06002421 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002422 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002423 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002424
James Ketrenos43f66a62005-03-25 12:31:53 -06002425 return r;
2426}
2427
2428/* helper function for pulling the mac address out of the private */
2429/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002430static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002431{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002432 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002433}
2434
2435/*
2436 * Either the device driver (i.e. the host) or the firmware can
2437 * load eeprom data into the designated region in SRAM. If neither
2438 * happens then the FW will shutdown with a fatal error.
2439 *
2440 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2441 * bit needs region of shared SRAM needs to be non-zero.
2442 */
2443static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2444{
2445 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002446 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002447
James Ketrenos43f66a62005-03-25 12:31:53 -06002448 IPW_DEBUG_TRACE(">>\n");
2449
2450 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002451 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002452 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002453
Jeff Garzikbf794512005-07-31 13:07:26 -04002454 /*
2455 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002456 copy. Otherwise let the firmware know to perform the operation
2457 on it's own
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002458 */
Alexey Dobriyan386093e2006-02-01 03:04:57 -08002459 if (priv->eeprom[EEPROM_VERSION] != 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002460 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2461
2462 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002463 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002464 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002465
2466 /* Do not load eeprom data on fatal error or suspend */
2467 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2468 } else {
2469 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2470
2471 /* Load eeprom data on fatal error or suspend */
2472 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2473 }
2474
2475 IPW_DEBUG_TRACE("<<\n");
2476}
2477
Arjan van de Ven858119e2006-01-14 13:20:43 -08002478static void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
James Ketrenos43f66a62005-03-25 12:31:53 -06002479{
2480 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002481 if (!count)
2482 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002483 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002484 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002485 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002486}
2487
2488static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2489{
James Ketrenosb095c382005-08-24 22:04:42 -05002490 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002491 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002492 sizeof(struct command_block));
2493}
2494
2495static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002496{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002497
2498 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002499
James Ketrenos43f66a62005-03-25 12:31:53 -06002500 /* Start the dma */
2501 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002502
James Ketrenos43f66a62005-03-25 12:31:53 -06002503 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002504 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002505
2506 IPW_DEBUG_FW("<< : \n");
2507 return 0;
2508}
2509
2510static void ipw_fw_dma_abort(struct ipw_priv *priv)
2511{
2512 u32 control = 0;
2513
2514 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002515
2516 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002517 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002518 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002519 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002520
James Ketrenos43f66a62005-03-25 12:31:53 -06002521 IPW_DEBUG_FW("<< \n");
2522}
2523
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002524static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2525 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002526{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002527 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002528 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002529 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002530 IPW_DEBUG_FW(">> :\n");
2531
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002532 ipw_write_indirect(priv, address, (u8 *) cb,
2533 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002534
2535 IPW_DEBUG_FW("<< :\n");
2536 return 0;
2537
2538}
2539
2540static int ipw_fw_dma_kick(struct ipw_priv *priv)
2541{
2542 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002543 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002544
2545 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002546
James Ketrenos43f66a62005-03-25 12:31:53 -06002547 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002548 ipw_fw_dma_write_command_block(priv, index,
2549 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002550
2551 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002552 ipw_clear_bit(priv, IPW_RESET_REG,
2553 IPW_RESET_REG_MASTER_DISABLED |
2554 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002555
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002556 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002557 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002558 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002559
2560 IPW_DEBUG_FW("<< :\n");
2561 return 0;
2562}
2563
2564static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2565{
2566 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002567 u32 register_value = 0;
2568 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002569
2570 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002571 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002572 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002573
2574 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002575 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2576 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002577
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002578 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002579 cb_fields_address = address;
2580 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002581 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002582
2583 cb_fields_address += sizeof(u32);
2584 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002585 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002586
2587 cb_fields_address += sizeof(u32);
2588 register_value = ipw_read_reg32(priv, cb_fields_address);
2589 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2590 register_value);
2591
2592 cb_fields_address += sizeof(u32);
2593 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002594 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002595
2596 IPW_DEBUG_FW(">> :\n");
2597}
2598
2599static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2600{
2601 u32 current_cb_address = 0;
2602 u32 current_cb_index = 0;
2603
2604 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002605 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002606
James Ketrenosb095c382005-08-24 22:04:42 -05002607 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002608 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002609
James Ketrenos43f66a62005-03-25 12:31:53 -06002610 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002611 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002612
2613 IPW_DEBUG_FW(">> :\n");
2614 return current_cb_index;
2615
2616}
2617
2618static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2619 u32 src_address,
2620 u32 dest_address,
2621 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002622 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002623{
2624
Jeff Garzikbf794512005-07-31 13:07:26 -04002625 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002626 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2627 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002628 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002629 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002630
2631 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2632 src_address, dest_address, length);
2633
2634 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2635 return -1;
2636
2637 last_cb_element = priv->sram_desc.last_cb_index;
2638 cb = &priv->sram_desc.cb_list[last_cb_element];
2639 priv->sram_desc.last_cb_index++;
2640
2641 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002642 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002643 control |= CB_INT_ENABLED;
2644
2645 if (is_last)
2646 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002647
James Ketrenos43f66a62005-03-25 12:31:53 -06002648 control |= length;
2649
2650 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002651 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002652
2653 /* Copy the Source and Destination addresses */
2654 cb->dest_addr = dest_address;
2655 cb->source_addr = src_address;
2656
2657 /* Copy the Control Word last */
2658 cb->control = control;
2659
2660 return 0;
2661}
2662
2663static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002664 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002665{
2666 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002667 u32 src_offset = 0;
2668 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002669 int status = 0;
2670 IPW_DEBUG_FW(">> \n");
2671 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2672 src_phys, dest_address, length);
2673 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002674 status = ipw_fw_dma_add_command_block(priv,
2675 src_phys + src_offset,
2676 dest_address +
2677 dest_offset,
2678 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002679 if (status) {
2680 IPW_DEBUG_FW_INFO(": Failed\n");
2681 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002682 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002683 IPW_DEBUG_FW_INFO(": Added new cb\n");
2684
2685 src_offset += CB_MAX_LENGTH;
2686 dest_offset += CB_MAX_LENGTH;
2687 bytes_left -= CB_MAX_LENGTH;
2688 }
2689
2690 /* add the buffer tail */
2691 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002692 status =
2693 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2694 dest_address + dest_offset,
2695 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002696 if (status) {
2697 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2698 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002699 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002700 IPW_DEBUG_FW_INFO
2701 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002702 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002703
James Ketrenos43f66a62005-03-25 12:31:53 -06002704 IPW_DEBUG_FW("<< \n");
2705 return 0;
2706}
2707
2708static int ipw_fw_dma_wait(struct ipw_priv *priv)
2709{
2710 u32 current_index = 0;
2711 u32 watchdog = 0;
2712
2713 IPW_DEBUG_FW(">> : \n");
2714
2715 current_index = ipw_fw_dma_command_block_index(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002716 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%8X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002717 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002718
2719 while (current_index < priv->sram_desc.last_cb_index) {
2720 udelay(50);
2721 current_index = ipw_fw_dma_command_block_index(priv);
2722
2723 watchdog++;
2724
2725 if (watchdog > 400) {
2726 IPW_DEBUG_FW_INFO("Timeout\n");
2727 ipw_fw_dma_dump_command_block(priv);
2728 ipw_fw_dma_abort(priv);
2729 return -1;
2730 }
2731 }
2732
2733 ipw_fw_dma_abort(priv);
2734
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002735 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002736 ipw_set_bit(priv, IPW_RESET_REG,
2737 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002738
2739 IPW_DEBUG_FW("<< dmaWaitSync \n");
2740 return 0;
2741}
2742
Jeff Garzikbf794512005-07-31 13:07:26 -04002743static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002744{
2745 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002746 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002747 unsigned long flags;
2748
2749 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002750 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2751 network = list_entry(element, struct ieee80211_network, list);
2752 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2753 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002754 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002755 &priv->ieee->network_free_list);
2756 }
2757 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002758 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002759}
2760
2761/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002762 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002763 * Reads debug register from domain0.
2764 * If card is present, pre-defined value should
2765 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002766 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002767 * @param priv
2768 * @return 1 if card is present, 0 otherwise
2769 */
2770static inline int ipw_alive(struct ipw_priv *priv)
2771{
2772 return ipw_read32(priv, 0x90) == 0xd55555d5;
2773}
2774
Arjan van de Ven858119e2006-01-14 13:20:43 -08002775static int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
James Ketrenos43f66a62005-03-25 12:31:53 -06002776 int timeout)
2777{
2778 int i = 0;
2779
2780 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002781 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002782 return i;
2783 mdelay(10);
2784 i += 10;
2785 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002786
James Ketrenos43f66a62005-03-25 12:31:53 -06002787 return -ETIME;
2788}
2789
Jeff Garzikbf794512005-07-31 13:07:26 -04002790/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002791 * the ipw hardware. It assumes the buffer has all the bits for the
2792 * image and the caller is handling the memory allocation and clean up.
2793 */
2794
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002795static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002796{
2797 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002798
James Ketrenos43f66a62005-03-25 12:31:53 -06002799 IPW_DEBUG_TRACE(">> \n");
2800 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002801 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002802
James Ketrenosb095c382005-08-24 22:04:42 -05002803 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2804 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002805 if (rc < 0) {
2806 IPW_ERROR("stop master failed in 10ms\n");
2807 return -1;
2808 }
2809
2810 IPW_DEBUG_INFO("stop master %dms\n", rc);
2811
2812 return rc;
2813}
2814
2815static void ipw_arc_release(struct ipw_priv *priv)
2816{
2817 IPW_DEBUG_TRACE(">> \n");
2818 mdelay(5);
2819
James Ketrenosb095c382005-08-24 22:04:42 -05002820 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002821
2822 /* no one knows timing, for safety add some delay */
2823 mdelay(5);
2824}
2825
2826struct fw_header {
2827 u32 version;
2828 u32 mode;
2829};
2830
2831struct fw_chunk {
2832 u32 address;
2833 u32 length;
2834};
2835
2836#define IPW_FW_MAJOR_VERSION 2
James Ketrenos817153762005-08-25 01:37:28 -05002837#define IPW_FW_MINOR_VERSION 4
James Ketrenos43f66a62005-03-25 12:31:53 -06002838
2839#define IPW_FW_MINOR(x) ((x & 0xff) >> 8)
2840#define IPW_FW_MAJOR(x) (x & 0xff)
2841
James Ketrenosafbf30a2005-08-25 00:05:33 -05002842#define IPW_FW_VERSION ((IPW_FW_MINOR_VERSION << 8) | IPW_FW_MAJOR_VERSION)
James Ketrenos43f66a62005-03-25 12:31:53 -06002843
2844#define IPW_FW_PREFIX "ipw-" __stringify(IPW_FW_MAJOR_VERSION) \
2845"." __stringify(IPW_FW_MINOR_VERSION) "-"
2846
2847#if IPW_FW_MAJOR_VERSION >= 2 && IPW_FW_MINOR_VERSION > 0
2848#define IPW_FW_NAME(x) IPW_FW_PREFIX "" x ".fw"
2849#else
2850#define IPW_FW_NAME(x) "ipw2200_" x ".fw"
2851#endif
2852
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002853static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002854{
2855 int rc = 0, i, addr;
2856 u8 cr = 0;
2857 u16 *image;
2858
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002859 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002860
James Ketrenos43f66a62005-03-25 12:31:53 -06002861 IPW_DEBUG_TRACE(">> \n");
2862
2863 rc = ipw_stop_master(priv);
2864
2865 if (rc < 0)
2866 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002867
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002868// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002869
James Ketrenosb095c382005-08-24 22:04:42 -05002870 for (addr = IPW_SHARED_LOWER_BOUND;
2871 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002872 ipw_write32(priv, addr, 0);
2873 }
2874
2875 /* no ucode (yet) */
2876 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2877 /* destroy DMA queues */
2878 /* reset sequence */
2879
James Ketrenosb095c382005-08-24 22:04:42 -05002880 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002881 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002882 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002883 mdelay(1);
2884
2885 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002886 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002887 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002888
James Ketrenosb095c382005-08-24 22:04:42 -05002889 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002890 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002891
James Ketrenos43f66a62005-03-25 12:31:53 -06002892 /* enable ucode store */
2893 ipw_write_reg8(priv, DINO_CONTROL_REG, 0x0);
2894 ipw_write_reg8(priv, DINO_CONTROL_REG, DINO_ENABLE_CS);
2895 mdelay(1);
2896
2897 /* write ucode */
2898 /**
2899 * @bug
2900 * Do NOT set indirect address register once and then
2901 * store data to indirect data register in the loop.
2902 * It seems very reasonable, but in this case DINO do not
2903 * accept ucode. It is essential to set address each time.
2904 */
2905 /* load new ipw uCode */
2906 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002907 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002908 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002909
James Ketrenos43f66a62005-03-25 12:31:53 -06002910 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002911 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2912 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002913
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002914 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002915
2916 /* wait for alive response */
2917 for (i = 0; i < 100; i++) {
2918 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002919 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002920 if (cr & DINO_RXFIFO_DATA)
2921 break;
2922 mdelay(1);
2923 }
2924
2925 if (cr & DINO_RXFIFO_DATA) {
2926 /* alive_command_responce size is NOT multiple of 4 */
2927 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002928
2929 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002930 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002931 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002932 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002933 memcpy(&priv->dino_alive, response_buffer,
2934 sizeof(priv->dino_alive));
2935 if (priv->dino_alive.alive_command == 1
2936 && priv->dino_alive.ucode_valid == 1) {
2937 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002938 IPW_DEBUG_INFO
2939 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2940 "of %02d/%02d/%02d %02d:%02d\n",
2941 priv->dino_alive.software_revision,
2942 priv->dino_alive.software_revision,
2943 priv->dino_alive.device_identifier,
2944 priv->dino_alive.device_identifier,
2945 priv->dino_alive.time_stamp[0],
2946 priv->dino_alive.time_stamp[1],
2947 priv->dino_alive.time_stamp[2],
2948 priv->dino_alive.time_stamp[3],
2949 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002950 } else {
2951 IPW_DEBUG_INFO("Microcode is not alive\n");
2952 rc = -EINVAL;
2953 }
2954 } else {
2955 IPW_DEBUG_INFO("No alive response from DINO\n");
2956 rc = -ETIME;
2957 }
2958
2959 /* disable DINO, otherwise for some reason
2960 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002961 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002962
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002963// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002964
2965 return rc;
2966}
2967
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002968static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002969{
2970 int rc = -1;
2971 int offset = 0;
2972 struct fw_chunk *chunk;
2973 dma_addr_t shared_phys;
2974 u8 *shared_virt;
2975
2976 IPW_DEBUG_TRACE("<< : \n");
2977 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2978
2979 if (!shared_virt)
2980 return -ENOMEM;
2981
2982 memmove(shared_virt, data, len);
2983
2984 /* Start the Dma */
2985 rc = ipw_fw_dma_enable(priv);
2986
2987 if (priv->sram_desc.last_cb_index > 0) {
2988 /* the DMA is already ready this would be a bug. */
2989 BUG();
2990 goto out;
2991 }
2992
2993 do {
2994 chunk = (struct fw_chunk *)(data + offset);
2995 offset += sizeof(struct fw_chunk);
2996 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04002997 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06002998 * offeset*/
2999 /* Dma loading */
3000 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05003001 le32_to_cpu(chunk->address),
3002 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06003003 if (rc) {
3004 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3005 goto out;
3006 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003007
James Ketrenosa613bff2005-08-24 21:43:11 -05003008 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06003009 } while (offset < len);
3010
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003011 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06003012 rc = ipw_fw_dma_kick(priv);
3013 if (rc) {
3014 IPW_ERROR("dmaKick Failed\n");
3015 goto out;
3016 }
3017
3018 rc = ipw_fw_dma_wait(priv);
3019 if (rc) {
3020 IPW_ERROR("dmaWaitSync Failed\n");
3021 goto out;
3022 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003023 out:
3024 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06003025 return rc;
3026}
3027
3028/* stop nic */
3029static int ipw_stop_nic(struct ipw_priv *priv)
3030{
3031 int rc = 0;
3032
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003033 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003034 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003035
James Ketrenosb095c382005-08-24 22:04:42 -05003036 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3037 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003038 if (rc < 0) {
3039 IPW_ERROR("wait for reg master disabled failed\n");
3040 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003041 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003042
James Ketrenosb095c382005-08-24 22:04:42 -05003043 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003044
James Ketrenos43f66a62005-03-25 12:31:53 -06003045 return rc;
3046}
3047
3048static void ipw_start_nic(struct ipw_priv *priv)
3049{
3050 IPW_DEBUG_TRACE(">>\n");
3051
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003052 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003053 ipw_clear_bit(priv, IPW_RESET_REG,
3054 IPW_RESET_REG_MASTER_DISABLED |
3055 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003056 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003057
James Ketrenos43f66a62005-03-25 12:31:53 -06003058 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003059 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3060 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003061
3062 IPW_DEBUG_TRACE("<<\n");
3063}
Jeff Garzikbf794512005-07-31 13:07:26 -04003064
James Ketrenos43f66a62005-03-25 12:31:53 -06003065static int ipw_init_nic(struct ipw_priv *priv)
3066{
3067 int rc;
3068
3069 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003070 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003071 /*prvHwInitNic */
3072 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003073 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003074
3075 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003076 ipw_write32(priv, IPW_READ_INT_REGISTER,
3077 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003078
3079 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003080 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3081 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003082 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003083 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3084
3085 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003086 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003087
3088 udelay(10);
3089
3090 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003091 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003092
3093 IPW_DEBUG_TRACE(">>\n");
3094 return 0;
3095}
3096
Jeff Garzikbf794512005-07-31 13:07:26 -04003097/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003098 * Probe is an ok place to call this from.
3099 */
3100static int ipw_reset_nic(struct ipw_priv *priv)
3101{
3102 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003103 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003104
3105 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003106
James Ketrenos43f66a62005-03-25 12:31:53 -06003107 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003108
James Ketrenosa613bff2005-08-24 21:43:11 -05003109 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003110 /* Clear the 'host command active' bit... */
3111 priv->status &= ~STATUS_HCMD_ACTIVE;
3112 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003113 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3114 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003115 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003116
3117 IPW_DEBUG_TRACE("<<\n");
3118 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003119}
James Ketrenos43f66a62005-03-25 12:31:53 -06003120
Jeff Garzikbf794512005-07-31 13:07:26 -04003121static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003122 const struct firmware **fw, const char *name)
3123{
3124 struct fw_header *header;
3125 int rc;
3126
3127 /* ask firmware_class module to get the boot firmware off disk */
3128 rc = request_firmware(fw, name, &priv->pci_dev->dev);
3129 if (rc < 0) {
3130 IPW_ERROR("%s load failed: Reason %d\n", name, rc);
3131 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003132 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003133
3134 header = (struct fw_header *)(*fw)->data;
James Ketrenosa613bff2005-08-24 21:43:11 -05003135 if (IPW_FW_MAJOR(le32_to_cpu(header->version)) != IPW_FW_MAJOR_VERSION) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003136 IPW_ERROR("'%s' firmware version not compatible (%d != %d)\n",
3137 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003138 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3139 IPW_FW_MAJOR_VERSION);
James Ketrenos43f66a62005-03-25 12:31:53 -06003140 return -EINVAL;
3141 }
3142
Jiri Bencaaa4d302005-06-07 14:58:41 +02003143 IPW_DEBUG_INFO("Loading firmware '%s' file v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003144 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003145 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3146 IPW_FW_MINOR(le32_to_cpu(header->version)),
James Ketrenos43f66a62005-03-25 12:31:53 -06003147 (*fw)->size - sizeof(struct fw_header));
3148 return 0;
3149}
3150
James Ketrenosb095c382005-08-24 22:04:42 -05003151#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003152
Arjan van de Ven858119e2006-01-14 13:20:43 -08003153static void ipw_rx_queue_reset(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003154 struct ipw_rx_queue *rxq)
3155{
3156 unsigned long flags;
3157 int i;
3158
3159 spin_lock_irqsave(&rxq->lock, flags);
3160
3161 INIT_LIST_HEAD(&rxq->rx_free);
3162 INIT_LIST_HEAD(&rxq->rx_used);
3163
3164 /* Fill the rx_used queue with _all_ of the Rx buffers */
3165 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3166 /* In the reset function, these buffers may have been allocated
3167 * to an SKB, so we need to unmap and free potential storage */
3168 if (rxq->pool[i].skb != NULL) {
3169 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003170 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003171 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003172 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003173 }
3174 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3175 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003176
James Ketrenos43f66a62005-03-25 12:31:53 -06003177 /* Set us so that we have processed and used all buffers, but have
3178 * not restocked the Rx queue with fresh buffers */
3179 rxq->read = rxq->write = 0;
3180 rxq->processed = RX_QUEUE_SIZE - 1;
3181 rxq->free_count = 0;
3182 spin_unlock_irqrestore(&rxq->lock, flags);
3183}
3184
3185#ifdef CONFIG_PM
3186static int fw_loaded = 0;
3187static const struct firmware *bootfw = NULL;
3188static const struct firmware *firmware = NULL;
3189static const struct firmware *ucode = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003190
3191static void free_firmware(void)
3192{
3193 if (fw_loaded) {
3194 release_firmware(bootfw);
3195 release_firmware(ucode);
3196 release_firmware(firmware);
3197 bootfw = ucode = firmware = NULL;
3198 fw_loaded = 0;
3199 }
3200}
3201#else
3202#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003203#endif
3204
3205static int ipw_load(struct ipw_priv *priv)
3206{
3207#ifndef CONFIG_PM
3208 const struct firmware *bootfw = NULL;
3209 const struct firmware *firmware = NULL;
3210 const struct firmware *ucode = NULL;
3211#endif
3212 int rc = 0, retries = 3;
3213
3214#ifdef CONFIG_PM
3215 if (!fw_loaded) {
3216#endif
3217 rc = ipw_get_fw(priv, &bootfw, IPW_FW_NAME("boot"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003218 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003219 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003220
James Ketrenos43f66a62005-03-25 12:31:53 -06003221 switch (priv->ieee->iw_mode) {
3222 case IW_MODE_ADHOC:
Jeff Garzikbf794512005-07-31 13:07:26 -04003223 rc = ipw_get_fw(priv, &ucode,
James Ketrenos43f66a62005-03-25 12:31:53 -06003224 IPW_FW_NAME("ibss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003225 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003226 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003227
James Ketrenos43f66a62005-03-25 12:31:53 -06003228 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("ibss"));
3229 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003230
James Ketrenosb095c382005-08-24 22:04:42 -05003231#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06003232 case IW_MODE_MONITOR:
Jeff Garzikbf794512005-07-31 13:07:26 -04003233 rc = ipw_get_fw(priv, &ucode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003234 IPW_FW_NAME("sniffer_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003235 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003236 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003237
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003238 rc = ipw_get_fw(priv, &firmware,
3239 IPW_FW_NAME("sniffer"));
James Ketrenos43f66a62005-03-25 12:31:53 -06003240 break;
3241#endif
3242 case IW_MODE_INFRA:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003243 rc = ipw_get_fw(priv, &ucode, IPW_FW_NAME("bss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003244 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003245 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003246
James Ketrenos43f66a62005-03-25 12:31:53 -06003247 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("bss"));
3248 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003249
James Ketrenos43f66a62005-03-25 12:31:53 -06003250 default:
3251 rc = -EINVAL;
3252 }
3253
Jeff Garzikbf794512005-07-31 13:07:26 -04003254 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003255 goto error;
3256
3257#ifdef CONFIG_PM
3258 fw_loaded = 1;
3259 }
3260#endif
3261
3262 if (!priv->rxq)
3263 priv->rxq = ipw_rx_queue_alloc(priv);
3264 else
3265 ipw_rx_queue_reset(priv, priv->rxq);
3266 if (!priv->rxq) {
3267 IPW_ERROR("Unable to initialize Rx queue\n");
3268 goto error;
3269 }
3270
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003271 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003272 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003273 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003274 priv->status &= ~STATUS_INT_ENABLED;
3275
3276 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003277 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003278
James Ketrenos43f66a62005-03-25 12:31:53 -06003279 ipw_stop_nic(priv);
3280
3281 rc = ipw_reset_nic(priv);
3282 if (rc) {
3283 IPW_ERROR("Unable to reset NIC\n");
3284 goto error;
3285 }
3286
James Ketrenosb095c382005-08-24 22:04:42 -05003287 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3288 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003289
3290 /* DMA the initial boot firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003291 rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003292 bootfw->size - sizeof(struct fw_header));
3293 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003294 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003295 goto error;
3296 }
3297
3298 /* kick start the device */
3299 ipw_start_nic(priv);
3300
3301 /* wait for the device to finish it's initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003302 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3303 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003304 if (rc < 0) {
3305 IPW_ERROR("device failed to boot initial fw image\n");
3306 goto error;
3307 }
3308 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3309
Jeff Garzikbf794512005-07-31 13:07:26 -04003310 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003311 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003312
3313 /* DMA the ucode into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003314 rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003315 ucode->size - sizeof(struct fw_header));
3316 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003317 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003318 goto error;
3319 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003320
James Ketrenos43f66a62005-03-25 12:31:53 -06003321 /* stop nic */
3322 ipw_stop_nic(priv);
3323
3324 /* DMA bss firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003325 rc = ipw_load_firmware(priv, firmware->data +
3326 sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003327 firmware->size - sizeof(struct fw_header));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003328 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003329 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003330 goto error;
3331 }
3332
3333 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3334
3335 rc = ipw_queue_reset(priv);
3336 if (rc) {
3337 IPW_ERROR("Unable to initialize queues\n");
3338 goto error;
3339 }
3340
3341 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003342 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003343 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003344 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003345
James Ketrenos43f66a62005-03-25 12:31:53 -06003346 /* kick start the device */
3347 ipw_start_nic(priv);
3348
James Ketrenosb095c382005-08-24 22:04:42 -05003349 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003350 if (retries > 0) {
3351 IPW_WARNING("Parity error. Retrying init.\n");
3352 retries--;
3353 goto retry;
3354 }
3355
3356 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3357 rc = -EIO;
3358 goto error;
3359 }
3360
3361 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003362 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3363 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003364 if (rc < 0) {
3365 IPW_ERROR("device failed to start after 500ms\n");
3366 goto error;
3367 }
3368 IPW_DEBUG_INFO("device response after %dms\n", rc);
3369
3370 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003371 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003372
3373 /* read eeprom data and initialize the eeprom region of sram */
3374 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003375 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003376
3377 /* enable interrupts */
3378 ipw_enable_interrupts(priv);
3379
3380 /* Ensure our queue has valid packets */
3381 ipw_rx_queue_replenish(priv);
3382
James Ketrenosb095c382005-08-24 22:04:42 -05003383 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003384
3385 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003386 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003387
3388#ifndef CONFIG_PM
3389 release_firmware(bootfw);
3390 release_firmware(ucode);
3391 release_firmware(firmware);
3392#endif
3393 return 0;
3394
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003395 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003396 if (priv->rxq) {
3397 ipw_rx_queue_free(priv, priv->rxq);
3398 priv->rxq = NULL;
3399 }
3400 ipw_tx_queue_free(priv);
3401 if (bootfw)
3402 release_firmware(bootfw);
3403 if (ucode)
3404 release_firmware(ucode);
3405 if (firmware)
3406 release_firmware(firmware);
3407#ifdef CONFIG_PM
3408 fw_loaded = 0;
3409 bootfw = ucode = firmware = NULL;
3410#endif
3411
3412 return rc;
3413}
3414
Jeff Garzikbf794512005-07-31 13:07:26 -04003415/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003416 * DMA services
3417 *
3418 * Theory of operation
3419 *
3420 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3421 * 2 empty entries always kept in the buffer to protect from overflow.
3422 *
3423 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003424 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3425 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003426 * Tx queue resumed.
3427 *
3428 * The IPW operates with six queues, one receive queue in the device's
3429 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003430 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003431 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003432 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003433 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003434 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003435 * we only utilize the first data transmit queue (queue1).
3436 */
3437
3438/**
3439 * Driver allocates buffers of this size for Rx
3440 */
3441
3442static inline int ipw_queue_space(const struct clx2_queue *q)
3443{
3444 int s = q->last_used - q->first_empty;
3445 if (s <= 0)
3446 s += q->n_bd;
3447 s -= 2; /* keep some reserve to not confuse empty and full situations */
3448 if (s < 0)
3449 s = 0;
3450 return s;
3451}
3452
3453static inline int ipw_queue_inc_wrap(int index, int n_bd)
3454{
3455 return (++index == n_bd) ? 0 : index;
3456}
3457
3458/**
3459 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003460 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003461 * @param q queue to init
3462 * @param count Number of BD's to allocate. Should be power of 2
3463 * @param read_register Address for 'read' register
3464 * (not offset within BAR, full address)
3465 * @param write_register Address for 'write' register
3466 * (not offset within BAR, full address)
3467 * @param base_register Address for 'base' register
3468 * (not offset within BAR, full address)
3469 * @param size Address for 'size' register
3470 * (not offset within BAR, full address)
3471 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003472static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003473 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003474{
3475 q->n_bd = count;
3476
3477 q->low_mark = q->n_bd / 4;
3478 if (q->low_mark < 4)
3479 q->low_mark = 4;
3480
3481 q->high_mark = q->n_bd / 8;
3482 if (q->high_mark < 2)
3483 q->high_mark = 2;
3484
3485 q->first_empty = q->last_used = 0;
3486 q->reg_r = read;
3487 q->reg_w = write;
3488
3489 ipw_write32(priv, base, q->dma_addr);
3490 ipw_write32(priv, size, count);
3491 ipw_write32(priv, read, 0);
3492 ipw_write32(priv, write, 0);
3493
3494 _ipw_read32(priv, 0x90);
3495}
3496
Jeff Garzikbf794512005-07-31 13:07:26 -04003497static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003498 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003499 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003500{
3501 struct pci_dev *dev = priv->pci_dev;
3502
3503 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3504 if (!q->txb) {
3505 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3506 return -ENOMEM;
3507 }
3508
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003509 q->bd =
3510 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003511 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003512 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003513 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003514 kfree(q->txb);
3515 q->txb = NULL;
3516 return -ENOMEM;
3517 }
3518
3519 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3520 return 0;
3521}
3522
3523/**
3524 * Free one TFD, those at index [txq->q.last_used].
3525 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003526 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003527 * @param dev
3528 * @param txq
3529 */
3530static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3531 struct clx2_tx_queue *txq)
3532{
3533 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3534 struct pci_dev *dev = priv->pci_dev;
3535 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003536
James Ketrenos43f66a62005-03-25 12:31:53 -06003537 /* classify bd */
3538 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3539 /* nothing to cleanup after for host commands */
3540 return;
3541
3542 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003543 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3544 IPW_ERROR("Too many chunks: %i\n",
3545 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003546 /** @todo issue fatal error, it is quite serious situation */
3547 return;
3548 }
3549
3550 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003551 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3552 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3553 le16_to_cpu(bd->u.data.chunk_len[i]),
3554 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003555 if (txq->txb[txq->q.last_used]) {
3556 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3557 txq->txb[txq->q.last_used] = NULL;
3558 }
3559 }
3560}
3561
3562/**
3563 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003564 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003565 * Empty queue by removing and destroying all BD's.
3566 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003567 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003568 * @param dev
3569 * @param q
3570 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003571static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003572{
3573 struct clx2_queue *q = &txq->q;
3574 struct pci_dev *dev = priv->pci_dev;
3575
Jeff Garzikbf794512005-07-31 13:07:26 -04003576 if (q->n_bd == 0)
3577 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003578
3579 /* first, empty all BD's */
3580 for (; q->first_empty != q->last_used;
3581 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3582 ipw_queue_tx_free_tfd(priv, txq);
3583 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003584
James Ketrenos43f66a62005-03-25 12:31:53 -06003585 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003586 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003587 q->dma_addr);
3588 kfree(txq->txb);
3589
3590 /* 0 fill whole structure */
3591 memset(txq, 0, sizeof(*txq));
3592}
3593
James Ketrenos43f66a62005-03-25 12:31:53 -06003594/**
3595 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003596 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003597 * @param priv
3598 */
3599static void ipw_tx_queue_free(struct ipw_priv *priv)
3600{
3601 /* Tx CMD queue */
3602 ipw_queue_tx_free(priv, &priv->txq_cmd);
3603
3604 /* Tx queues */
3605 ipw_queue_tx_free(priv, &priv->txq[0]);
3606 ipw_queue_tx_free(priv, &priv->txq[1]);
3607 ipw_queue_tx_free(priv, &priv->txq[2]);
3608 ipw_queue_tx_free(priv, &priv->txq[3]);
3609}
3610
Arjan van de Ven858119e2006-01-14 13:20:43 -08003611static void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003612{
3613 /* First 3 bytes are manufacturer */
3614 bssid[0] = priv->mac_addr[0];
3615 bssid[1] = priv->mac_addr[1];
3616 bssid[2] = priv->mac_addr[2];
3617
3618 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003619 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003620
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003621 bssid[0] &= 0xfe; /* clear multicast bit */
3622 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003623}
3624
Arjan van de Ven858119e2006-01-14 13:20:43 -08003625static u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003626{
3627 struct ipw_station_entry entry;
3628 int i;
3629
3630 for (i = 0; i < priv->num_stations; i++) {
3631 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3632 /* Another node is active in network */
3633 priv->missed_adhoc_beacons = 0;
3634 if (!(priv->config & CFG_STATIC_CHANNEL))
3635 /* when other nodes drop out, we drop out */
3636 priv->config &= ~CFG_ADHOC_PERSIST;
3637
3638 return i;
3639 }
3640 }
3641
3642 if (i == MAX_STATIONS)
3643 return IPW_INVALID_STATION;
3644
3645 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3646
3647 entry.reserved = 0;
3648 entry.support_mode = 0;
3649 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3650 memcpy(priv->stations[i], bssid, ETH_ALEN);
3651 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003652 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003653 priv->num_stations++;
3654
3655 return i;
3656}
3657
Arjan van de Ven858119e2006-01-14 13:20:43 -08003658static u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003659{
3660 int i;
3661
Jeff Garzikbf794512005-07-31 13:07:26 -04003662 for (i = 0; i < priv->num_stations; i++)
3663 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003664 return i;
3665
3666 return IPW_INVALID_STATION;
3667}
3668
3669static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3670{
3671 int err;
3672
Hong Liu7b996592005-08-25 17:36:13 +08003673 if (priv->status & STATUS_ASSOCIATING) {
3674 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3675 queue_work(priv->workqueue, &priv->disassociate);
3676 return;
3677 }
3678
3679 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003680 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3681 return;
3682 }
3683
3684 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3685 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003686 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003687 priv->assoc_request.channel);
3688
3689 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3690 priv->status |= STATUS_DISASSOCIATING;
3691
3692 if (quiet)
3693 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3694 else
3695 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003696
James Ketrenos43f66a62005-03-25 12:31:53 -06003697 err = ipw_send_associate(priv, &priv->assoc_request);
3698 if (err) {
3699 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3700 "failed.\n");
3701 return;
3702 }
3703
3704}
3705
James Ketrenosc848d0a2005-08-24 21:56:24 -05003706static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003707{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003708 struct ipw_priv *priv = data;
3709 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3710 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003711 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003712 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003713}
3714
James Ketrenosc848d0a2005-08-24 21:56:24 -05003715static void ipw_bg_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003716{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003717 struct ipw_priv *priv = data;
3718 down(&priv->sem);
3719 ipw_disassociate(data);
3720 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06003721}
3722
Zhu Yid8bad6d2005-07-13 12:25:38 -05003723static void ipw_system_config(void *data)
3724{
3725 struct ipw_priv *priv = data;
3726 ipw_send_system_config(priv, &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06003727}
3728
3729struct ipw_status_code {
3730 u16 status;
3731 const char *reason;
3732};
3733
3734static const struct ipw_status_code ipw_status_codes[] = {
3735 {0x00, "Successful"},
3736 {0x01, "Unspecified failure"},
3737 {0x0A, "Cannot support all requested capabilities in the "
3738 "Capability information field"},
3739 {0x0B, "Reassociation denied due to inability to confirm that "
3740 "association exists"},
3741 {0x0C, "Association denied due to reason outside the scope of this "
3742 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003743 {0x0D,
3744 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003745 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003746 {0x0E,
3747 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003748 "transaction sequence number out of expected sequence"},
3749 {0x0F, "Authentication rejected because of challenge failure"},
3750 {0x10, "Authentication rejected due to timeout waiting for next "
3751 "frame in sequence"},
3752 {0x11, "Association denied because AP is unable to handle additional "
3753 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003754 {0x12,
3755 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003756 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003757 {0x13,
3758 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003759 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003760 {0x14,
3761 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003762 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003763 {0x15,
3764 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003765 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003766 {0x19,
3767 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003768 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003769 {0x1A,
3770 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003771 "DSSS-OFDM operation"},
3772 {0x28, "Invalid Information Element"},
3773 {0x29, "Group Cipher is not valid"},
3774 {0x2A, "Pairwise Cipher is not valid"},
3775 {0x2B, "AKMP is not valid"},
3776 {0x2C, "Unsupported RSN IE version"},
3777 {0x2D, "Invalid RSN IE Capabilities"},
3778 {0x2E, "Cipher suite is rejected per security policy"},
3779};
3780
Brice Goglin0f52bf92005-12-01 01:41:46 -08003781#ifdef CONFIG_IPW2200_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003782static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003783{
3784 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003785 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003786 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003787 return ipw_status_codes[i].reason;
3788 return "Unknown status value.";
3789}
3790#endif
3791
3792static void inline average_init(struct average *avg)
3793{
3794 memset(avg, 0, sizeof(*avg));
3795}
3796
Arjan van de Ven858119e2006-01-14 13:20:43 -08003797static void average_add(struct average *avg, s16 val)
James Ketrenos43f66a62005-03-25 12:31:53 -06003798{
3799 avg->sum -= avg->entries[avg->pos];
3800 avg->sum += val;
3801 avg->entries[avg->pos++] = val;
3802 if (unlikely(avg->pos == AVG_ENTRIES)) {
3803 avg->init = 1;
3804 avg->pos = 0;
3805 }
3806}
3807
Arjan van de Ven858119e2006-01-14 13:20:43 -08003808static s16 average_value(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06003809{
3810 if (!unlikely(avg->init)) {
3811 if (avg->pos)
3812 return avg->sum / avg->pos;
3813 return 0;
3814 }
3815
3816 return avg->sum / AVG_ENTRIES;
3817}
3818
3819static void ipw_reset_stats(struct ipw_priv *priv)
3820{
3821 u32 len = sizeof(u32);
3822
3823 priv->quality = 0;
3824
3825 average_init(&priv->average_missed_beacons);
3826 average_init(&priv->average_rssi);
3827 average_init(&priv->average_noise);
3828
3829 priv->last_rate = 0;
3830 priv->last_missed_beacons = 0;
3831 priv->last_rx_packets = 0;
3832 priv->last_tx_packets = 0;
3833 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003834
James Ketrenos43f66a62005-03-25 12:31:53 -06003835 /* Firmware managed, reset only when NIC is restarted, so we have to
3836 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003837 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003838 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003839 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003840 &priv->last_tx_failures, &len);
3841
3842 /* Driver managed, reset with each association */
3843 priv->missed_adhoc_beacons = 0;
3844 priv->missed_beacons = 0;
3845 priv->tx_packets = 0;
3846 priv->rx_packets = 0;
3847
3848}
3849
Arjan van de Ven858119e2006-01-14 13:20:43 -08003850static u32 ipw_get_max_rate(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003851{
3852 u32 i = 0x80000000;
3853 u32 mask = priv->rates_mask;
3854 /* If currently associated in B mode, restrict the maximum
3855 * rate match to B rates */
3856 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3857 mask &= IEEE80211_CCK_RATES_MASK;
3858
3859 /* TODO: Verify that the rate is supported by the current rates
3860 * list. */
3861
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003862 while (i && !(mask & i))
3863 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003864 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003865 case IEEE80211_CCK_RATE_1MB_MASK:
3866 return 1000000;
3867 case IEEE80211_CCK_RATE_2MB_MASK:
3868 return 2000000;
3869 case IEEE80211_CCK_RATE_5MB_MASK:
3870 return 5500000;
3871 case IEEE80211_OFDM_RATE_6MB_MASK:
3872 return 6000000;
3873 case IEEE80211_OFDM_RATE_9MB_MASK:
3874 return 9000000;
3875 case IEEE80211_CCK_RATE_11MB_MASK:
3876 return 11000000;
3877 case IEEE80211_OFDM_RATE_12MB_MASK:
3878 return 12000000;
3879 case IEEE80211_OFDM_RATE_18MB_MASK:
3880 return 18000000;
3881 case IEEE80211_OFDM_RATE_24MB_MASK:
3882 return 24000000;
3883 case IEEE80211_OFDM_RATE_36MB_MASK:
3884 return 36000000;
3885 case IEEE80211_OFDM_RATE_48MB_MASK:
3886 return 48000000;
3887 case IEEE80211_OFDM_RATE_54MB_MASK:
3888 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003889 }
3890
Jeff Garzikbf794512005-07-31 13:07:26 -04003891 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003892 return 11000000;
3893 else
3894 return 54000000;
3895}
3896
3897static u32 ipw_get_current_rate(struct ipw_priv *priv)
3898{
3899 u32 rate, len = sizeof(rate);
3900 int err;
3901
Jeff Garzikbf794512005-07-31 13:07:26 -04003902 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003903 return 0;
3904
3905 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003906 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003907 &len);
3908 if (err) {
3909 IPW_DEBUG_INFO("failed querying ordinals.\n");
3910 return 0;
3911 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003912 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003913 return ipw_get_max_rate(priv);
3914
3915 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003916 case IPW_TX_RATE_1MB:
3917 return 1000000;
3918 case IPW_TX_RATE_2MB:
3919 return 2000000;
3920 case IPW_TX_RATE_5MB:
3921 return 5500000;
3922 case IPW_TX_RATE_6MB:
3923 return 6000000;
3924 case IPW_TX_RATE_9MB:
3925 return 9000000;
3926 case IPW_TX_RATE_11MB:
3927 return 11000000;
3928 case IPW_TX_RATE_12MB:
3929 return 12000000;
3930 case IPW_TX_RATE_18MB:
3931 return 18000000;
3932 case IPW_TX_RATE_24MB:
3933 return 24000000;
3934 case IPW_TX_RATE_36MB:
3935 return 36000000;
3936 case IPW_TX_RATE_48MB:
3937 return 48000000;
3938 case IPW_TX_RATE_54MB:
3939 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003940 }
3941
3942 return 0;
3943}
3944
James Ketrenos43f66a62005-03-25 12:31:53 -06003945#define IPW_STATS_INTERVAL (2 * HZ)
3946static void ipw_gather_stats(struct ipw_priv *priv)
3947{
3948 u32 rx_err, rx_err_delta, rx_packets_delta;
3949 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3950 u32 missed_beacons_percent, missed_beacons_delta;
3951 u32 quality = 0;
3952 u32 len = sizeof(u32);
3953 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003954 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003955 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003956 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003957
3958 if (!(priv->status & STATUS_ASSOCIATED)) {
3959 priv->quality = 0;
3960 return;
3961 }
3962
3963 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003964 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003965 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003966 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003967 priv->last_missed_beacons = priv->missed_beacons;
3968 if (priv->assoc_request.beacon_interval) {
3969 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003970 (HZ * priv->assoc_request.beacon_interval) /
3971 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003972 } else {
3973 missed_beacons_percent = 0;
3974 }
3975 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3976
3977 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3978 rx_err_delta = rx_err - priv->last_rx_err;
3979 priv->last_rx_err = rx_err;
3980
3981 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3982 tx_failures_delta = tx_failures - priv->last_tx_failures;
3983 priv->last_tx_failures = tx_failures;
3984
3985 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3986 priv->last_rx_packets = priv->rx_packets;
3987
3988 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
3989 priv->last_tx_packets = priv->tx_packets;
3990
3991 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04003992 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003993 * Missed beacon: 100% = 0, 0% = 70% missed
3994 * Rate: 60% = 1Mbs, 100% = Max
3995 * Rx and Tx errors represent a straight % of total Rx/Tx
3996 * RSSI: 100% = > -50, 0% = < -80
3997 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04003998 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003999 * The lowest computed quality is used.
4000 *
4001 */
4002#define BEACON_THRESHOLD 5
4003 beacon_quality = 100 - missed_beacons_percent;
4004 if (beacon_quality < BEACON_THRESHOLD)
4005 beacon_quality = 0;
4006 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004007 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004008 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004009 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004010 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004011
James Ketrenos43f66a62005-03-25 12:31:53 -06004012 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004013 max_rate = ipw_get_max_rate(priv);
4014 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004015 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4016 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004017
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004018 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004019 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004020 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004021 else
4022 rx_quality = 100;
4023 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4024 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004025
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004026 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004027 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004028 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004029 else
4030 tx_quality = 100;
4031 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4032 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004033
James Ketrenos43f66a62005-03-25 12:31:53 -06004034 rssi = average_value(&priv->average_rssi);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004035 signal_quality =
4036 (100 *
4037 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4038 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4039 (priv->ieee->perfect_rssi - rssi) *
4040 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4041 62 * (priv->ieee->perfect_rssi - rssi))) /
4042 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4043 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4044 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004045 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004046 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004047 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004048
James Ketrenos43f66a62005-03-25 12:31:53 -06004049 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
4050 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004051
4052 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06004053 min(rate_quality,
4054 min(tx_quality, min(rx_quality, signal_quality))));
4055 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004056 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4057 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004058 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004059 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4060 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004061 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004062 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4063 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004064 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004065 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4066 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004067 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004068 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4069 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004070
4071 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004072
4073 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004074 IPW_STATS_INTERVAL);
4075}
4076
James Ketrenosc848d0a2005-08-24 21:56:24 -05004077static void ipw_bg_gather_stats(void *data)
4078{
4079 struct ipw_priv *priv = data;
4080 down(&priv->sem);
4081 ipw_gather_stats(data);
4082 up(&priv->sem);
4083}
4084
Ben Cahille7582562005-10-06 15:34:41 -05004085/* Missed beacon behavior:
4086 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4087 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4088 * Above disassociate threshold, give up and stop scanning.
4089 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004090static void ipw_handle_missed_beacon(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004091 int missed_count)
4092{
4093 priv->notif_missed_beacons = missed_count;
4094
James Ketrenosafbf30a2005-08-25 00:05:33 -05004095 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004096 priv->status & STATUS_ASSOCIATED) {
4097 /* If associated and we've hit the missed
4098 * beacon threshold, disassociate, turn
4099 * off roaming, and abort any active scans */
4100 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004101 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004102 "Missed beacon: %d - disassociate\n", missed_count);
4103 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004104 if (priv->status & STATUS_SCANNING) {
4105 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4106 IPW_DL_STATE,
4107 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004108 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004109 }
4110
James Ketrenosea2b26e2005-08-24 21:25:16 -05004111 queue_work(priv->workqueue, &priv->disassociate);
4112 return;
4113 }
4114
4115 if (priv->status & STATUS_ROAMING) {
4116 /* If we are currently roaming, then just
4117 * print a debug statement... */
4118 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4119 "Missed beacon: %d - roam in progress\n",
4120 missed_count);
4121 return;
4122 }
4123
Ben Cahille7582562005-10-06 15:34:41 -05004124 if (missed_count > priv->roaming_threshold &&
4125 missed_count <= priv->disassociate_threshold) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004126 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004127 * bit in the status and kick off a scan.
4128 * This can happen several times before we reach
4129 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004130 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4131 "Missed beacon: %d - initiate "
4132 "roaming\n", missed_count);
4133 if (!(priv->status & STATUS_ROAMING)) {
4134 priv->status |= STATUS_ROAMING;
4135 if (!(priv->status & STATUS_SCANNING))
4136 queue_work(priv->workqueue,
4137 &priv->request_scan);
4138 }
4139 return;
4140 }
4141
4142 if (priv->status & STATUS_SCANNING) {
4143 /* Stop scan to keep fw from getting
4144 * stuck (only if we aren't roaming --
4145 * otherwise we'll never scan more than 2 or 3
4146 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004147 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4148 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004149 queue_work(priv->workqueue, &priv->abort_scan);
4150 }
4151
4152 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
4153
4154}
4155
James Ketrenos43f66a62005-03-25 12:31:53 -06004156/**
4157 * Handle host notification packet.
4158 * Called from interrupt routine
4159 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004160static void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004161 struct ipw_rx_notification *notif)
4162{
James Ketrenosa613bff2005-08-24 21:43:11 -05004163 notif->size = le16_to_cpu(notif->size);
4164
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004165 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004166
James Ketrenos43f66a62005-03-25 12:31:53 -06004167 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004168 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4169 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004170
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004171 switch (assoc->state) {
4172 case CMAS_ASSOCIATED:{
4173 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4174 IPW_DL_ASSOC,
4175 "associated: '%s' " MAC_FMT
4176 " \n",
4177 escape_essid(priv->essid,
4178 priv->essid_len),
4179 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004180
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004181 switch (priv->ieee->iw_mode) {
4182 case IW_MODE_INFRA:
4183 memcpy(priv->ieee->bssid,
4184 priv->bssid, ETH_ALEN);
4185 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004186
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004187 case IW_MODE_ADHOC:
4188 memcpy(priv->ieee->bssid,
4189 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004190
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004191 /* clear out the station table */
4192 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004193
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004194 IPW_DEBUG_ASSOC
4195 ("queueing adhoc check\n");
4196 queue_delayed_work(priv->
4197 workqueue,
4198 &priv->
4199 adhoc_check,
4200 priv->
4201 assoc_request.
4202 beacon_interval);
4203 break;
4204 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004205
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004206 priv->status &= ~STATUS_ASSOCIATING;
4207 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004208 queue_work(priv->workqueue,
4209 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004210
James Ketrenosb095c382005-08-24 22:04:42 -05004211#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004212#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4213 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4214 if ((priv->status & STATUS_AUTH) &&
4215 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4216 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004217 if ((sizeof
4218 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004219 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004220 <= notif->size)
4221 && (notif->size <= 2314)) {
4222 struct
4223 ieee80211_rx_stats
4224 stats = {
4225 .len =
4226 notif->
4227 size - 1,
4228 };
4229
4230 IPW_DEBUG_QOS
4231 ("QoS Associate "
4232 "size %d\n",
4233 notif->size);
4234 ieee80211_rx_mgt(priv->
4235 ieee,
4236 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004237 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004238 *)
4239 &notif->u.raw, &stats);
4240 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004241 }
James Ketrenosb095c382005-08-24 22:04:42 -05004242#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004243
James Ketrenosa613bff2005-08-24 21:43:11 -05004244 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004245
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004246 break;
4247 }
4248
4249 case CMAS_AUTHENTICATED:{
4250 if (priv->
4251 status & (STATUS_ASSOCIATED |
4252 STATUS_AUTH)) {
Brice Goglin0f52bf92005-12-01 01:41:46 -08004253#ifdef CONFIG_IPW2200_DEBUG
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004254 struct notif_authenticate *auth
4255 = &notif->u.auth;
4256 IPW_DEBUG(IPW_DL_NOTIF |
4257 IPW_DL_STATE |
4258 IPW_DL_ASSOC,
4259 "deauthenticated: '%s' "
4260 MAC_FMT
4261 ": (0x%04X) - %s \n",
4262 escape_essid(priv->
4263 essid,
4264 priv->
4265 essid_len),
4266 MAC_ARG(priv->bssid),
4267 ntohs(auth->status),
4268 ipw_get_status_code
4269 (ntohs
4270 (auth->status)));
4271#endif
4272
4273 priv->status &=
4274 ~(STATUS_ASSOCIATING |
4275 STATUS_AUTH |
4276 STATUS_ASSOCIATED);
4277
James Ketrenosa613bff2005-08-24 21:43:11 -05004278 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004279 break;
4280 }
4281
4282 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4283 IPW_DL_ASSOC,
4284 "authenticated: '%s' " MAC_FMT
4285 "\n",
4286 escape_essid(priv->essid,
4287 priv->essid_len),
4288 MAC_ARG(priv->bssid));
4289 break;
4290 }
4291
4292 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004293 if (priv->status & STATUS_AUTH) {
4294 struct
4295 ieee80211_assoc_response
4296 *resp;
4297 resp =
4298 (struct
4299 ieee80211_assoc_response
4300 *)&notif->u.raw;
4301 IPW_DEBUG(IPW_DL_NOTIF |
4302 IPW_DL_STATE |
4303 IPW_DL_ASSOC,
4304 "association failed (0x%04X): %s\n",
4305 ntohs(resp->status),
4306 ipw_get_status_code
4307 (ntohs
4308 (resp->status)));
4309 }
4310
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004311 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4312 IPW_DL_ASSOC,
4313 "disassociated: '%s' " MAC_FMT
4314 " \n",
4315 escape_essid(priv->essid,
4316 priv->essid_len),
4317 MAC_ARG(priv->bssid));
4318
4319 priv->status &=
4320 ~(STATUS_DISASSOCIATING |
4321 STATUS_ASSOCIATING |
4322 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004323 if (priv->assoc_network
4324 && (priv->assoc_network->
4325 capability &
4326 WLAN_CAPABILITY_IBSS))
4327 ipw_remove_current_network
4328 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004329
James Ketrenosa613bff2005-08-24 21:43:11 -05004330 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004331
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004332 break;
4333 }
4334
James Ketrenosb095c382005-08-24 22:04:42 -05004335 case CMAS_RX_ASSOC_RESP:
4336 break;
4337
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004338 default:
4339 IPW_ERROR("assoc: unknown (%d)\n",
4340 assoc->state);
4341 break;
4342 }
4343
James Ketrenos43f66a62005-03-25 12:31:53 -06004344 break;
4345 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004346
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004347 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4348 struct notif_authenticate *auth = &notif->u.auth;
4349 switch (auth->state) {
4350 case CMAS_AUTHENTICATED:
4351 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4352 "authenticated: '%s' " MAC_FMT " \n",
4353 escape_essid(priv->essid,
4354 priv->essid_len),
4355 MAC_ARG(priv->bssid));
4356 priv->status |= STATUS_AUTH;
4357 break;
4358
4359 case CMAS_INIT:
4360 if (priv->status & STATUS_AUTH) {
4361 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4362 IPW_DL_ASSOC,
4363 "authentication failed (0x%04X): %s\n",
4364 ntohs(auth->status),
4365 ipw_get_status_code(ntohs
4366 (auth->
4367 status)));
4368 }
4369 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4370 IPW_DL_ASSOC,
4371 "deauthenticated: '%s' " MAC_FMT "\n",
4372 escape_essid(priv->essid,
4373 priv->essid_len),
4374 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004375
4376 priv->status &= ~(STATUS_ASSOCIATING |
4377 STATUS_AUTH |
4378 STATUS_ASSOCIATED);
4379
James Ketrenosa613bff2005-08-24 21:43:11 -05004380 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004381 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004382
4383 case CMAS_TX_AUTH_SEQ_1:
4384 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4385 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4386 break;
4387 case CMAS_RX_AUTH_SEQ_2:
4388 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4389 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4390 break;
4391 case CMAS_AUTH_SEQ_1_PASS:
4392 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4393 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4394 break;
4395 case CMAS_AUTH_SEQ_1_FAIL:
4396 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4397 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4398 break;
4399 case CMAS_TX_AUTH_SEQ_3:
4400 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4401 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4402 break;
4403 case CMAS_RX_AUTH_SEQ_4:
4404 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4405 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4406 break;
4407 case CMAS_AUTH_SEQ_2_PASS:
4408 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4409 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4410 break;
4411 case CMAS_AUTH_SEQ_2_FAIL:
4412 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4413 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4414 break;
4415 case CMAS_TX_ASSOC:
4416 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4417 IPW_DL_ASSOC, "TX_ASSOC\n");
4418 break;
4419 case CMAS_RX_ASSOC_RESP:
4420 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4421 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004422
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004423 break;
4424 case CMAS_ASSOCIATED:
4425 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4426 IPW_DL_ASSOC, "ASSOCIATED\n");
4427 break;
4428 default:
4429 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4430 auth->state);
4431 break;
4432 }
4433 break;
4434 }
4435
4436 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4437 struct notif_channel_result *x =
4438 &notif->u.channel_result;
4439
4440 if (notif->size == sizeof(*x)) {
4441 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4442 x->channel_num);
4443 } else {
4444 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4445 "(should be %zd)\n",
4446 notif->size, sizeof(*x));
4447 }
4448 break;
4449 }
4450
4451 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4452 struct notif_scan_complete *x = &notif->u.scan_complete;
4453 if (notif->size == sizeof(*x)) {
4454 IPW_DEBUG_SCAN
4455 ("Scan completed: type %d, %d channels, "
4456 "%d status\n", x->scan_type,
4457 x->num_channels, x->status);
4458 } else {
4459 IPW_ERROR("Scan completed of wrong size %d "
4460 "(should be %zd)\n",
4461 notif->size, sizeof(*x));
4462 }
4463
4464 priv->status &=
4465 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4466
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004467 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004468 cancel_delayed_work(&priv->scan_check);
4469
James Ketrenosb095c382005-08-24 22:04:42 -05004470 if (priv->status & STATUS_EXIT_PENDING)
4471 break;
4472
4473 priv->ieee->scans++;
4474
4475#ifdef CONFIG_IPW2200_MONITOR
4476 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004477 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004478 queue_work(priv->workqueue,
4479 &priv->request_scan);
4480 break;
4481 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004482 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004483#endif /* CONFIG_IPW2200_MONITOR */
4484
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004485 if (!(priv->status & (STATUS_ASSOCIATED |
4486 STATUS_ASSOCIATING |
4487 STATUS_ROAMING |
4488 STATUS_DISASSOCIATING)))
4489 queue_work(priv->workqueue, &priv->associate);
4490 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004491 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4492 /* If a scan completed and we are in roam mode, then
4493 * the scan that completed was the one requested as a
4494 * result of entering roam... so, schedule the
4495 * roam work */
4496 queue_work(priv->workqueue,
4497 &priv->roam);
4498 else
4499 /* Don't schedule if we aborted the scan */
4500 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004501 } else if (priv->status & STATUS_SCAN_PENDING)
4502 queue_work(priv->workqueue,
4503 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004504 else if (priv->config & CFG_BACKGROUND_SCAN
4505 && priv->status & STATUS_ASSOCIATED)
4506 queue_delayed_work(priv->workqueue,
4507 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004508 break;
4509 }
4510
4511 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4512 struct notif_frag_length *x = &notif->u.frag_len;
4513
James Ketrenosa613bff2005-08-24 21:43:11 -05004514 if (notif->size == sizeof(*x))
4515 IPW_ERROR("Frag length: %d\n",
4516 le16_to_cpu(x->frag_length));
4517 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004518 IPW_ERROR("Frag length of wrong size %d "
4519 "(should be %zd)\n",
4520 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004521 break;
4522 }
4523
4524 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4525 struct notif_link_deterioration *x =
4526 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004527
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004528 if (notif->size == sizeof(*x)) {
4529 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4530 "link deterioration: '%s' " MAC_FMT
4531 " \n", escape_essid(priv->essid,
4532 priv->essid_len),
4533 MAC_ARG(priv->bssid));
4534 memcpy(&priv->last_link_deterioration, x,
4535 sizeof(*x));
4536 } else {
4537 IPW_ERROR("Link Deterioration of wrong size %d "
4538 "(should be %zd)\n",
4539 notif->size, sizeof(*x));
4540 }
4541 break;
4542 }
4543
4544 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4545 IPW_ERROR("Dino config\n");
4546 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004547 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004548 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004549
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004550 break;
4551 }
4552
4553 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4554 struct notif_beacon_state *x = &notif->u.beacon_state;
4555 if (notif->size != sizeof(*x)) {
4556 IPW_ERROR
4557 ("Beacon state of wrong size %d (should "
4558 "be %zd)\n", notif->size, sizeof(*x));
4559 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004560 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004561
James Ketrenosa613bff2005-08-24 21:43:11 -05004562 if (le32_to_cpu(x->state) ==
4563 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4564 ipw_handle_missed_beacon(priv,
4565 le32_to_cpu(x->
4566 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004567
James Ketrenos43f66a62005-03-25 12:31:53 -06004568 break;
4569 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004570
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004571 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4572 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4573 if (notif->size == sizeof(*x)) {
4574 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4575 "0x%02x station %d\n",
4576 x->key_state, x->security_type,
4577 x->station_index);
4578 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004579 }
4580
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004581 IPW_ERROR
4582 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4583 notif->size, sizeof(*x));
4584 break;
4585 }
4586
4587 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4588 struct notif_calibration *x = &notif->u.calibration;
4589
4590 if (notif->size == sizeof(*x)) {
4591 memcpy(&priv->calib, x, sizeof(*x));
4592 IPW_DEBUG_INFO("TODO: Calibration\n");
4593 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004594 }
4595
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004596 IPW_ERROR
4597 ("Calibration of wrong size %d (should be %zd)\n",
4598 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004599 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004600 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004601
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004602 case HOST_NOTIFICATION_NOISE_STATS:{
4603 if (notif->size == sizeof(u32)) {
4604 priv->last_noise =
James Ketrenosa613bff2005-08-24 21:43:11 -05004605 (u8) (le32_to_cpu(notif->u.noise.value) &
4606 0xff);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004607 average_add(&priv->average_noise,
4608 priv->last_noise);
4609 break;
4610 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004611
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004612 IPW_ERROR
4613 ("Noise stat is wrong size %d (should be %zd)\n",
4614 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004615 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004616 }
4617
James Ketrenos43f66a62005-03-25 12:31:53 -06004618 default:
4619 IPW_ERROR("Unknown notification: "
4620 "subtype=%d,flags=0x%2x,size=%d\n",
4621 notif->subtype, notif->flags, notif->size);
4622 }
4623}
4624
4625/**
4626 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004627 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004628 * @param priv
4629 * @return error code
4630 */
4631static int ipw_queue_reset(struct ipw_priv *priv)
4632{
4633 int rc = 0;
4634 /** @todo customize queue sizes */
4635 int nTx = 64, nTxCmd = 8;
4636 ipw_tx_queue_free(priv);
4637 /* Tx CMD queue */
4638 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004639 IPW_TX_CMD_QUEUE_READ_INDEX,
4640 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4641 IPW_TX_CMD_QUEUE_BD_BASE,
4642 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004643 if (rc) {
4644 IPW_ERROR("Tx Cmd queue init failed\n");
4645 goto error;
4646 }
4647 /* Tx queue(s) */
4648 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004649 IPW_TX_QUEUE_0_READ_INDEX,
4650 IPW_TX_QUEUE_0_WRITE_INDEX,
4651 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004652 if (rc) {
4653 IPW_ERROR("Tx 0 queue init failed\n");
4654 goto error;
4655 }
4656 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004657 IPW_TX_QUEUE_1_READ_INDEX,
4658 IPW_TX_QUEUE_1_WRITE_INDEX,
4659 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004660 if (rc) {
4661 IPW_ERROR("Tx 1 queue init failed\n");
4662 goto error;
4663 }
4664 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004665 IPW_TX_QUEUE_2_READ_INDEX,
4666 IPW_TX_QUEUE_2_WRITE_INDEX,
4667 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004668 if (rc) {
4669 IPW_ERROR("Tx 2 queue init failed\n");
4670 goto error;
4671 }
4672 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004673 IPW_TX_QUEUE_3_READ_INDEX,
4674 IPW_TX_QUEUE_3_WRITE_INDEX,
4675 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004676 if (rc) {
4677 IPW_ERROR("Tx 3 queue init failed\n");
4678 goto error;
4679 }
4680 /* statistics */
4681 priv->rx_bufs_min = 0;
4682 priv->rx_pend_max = 0;
4683 return rc;
4684
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004685 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004686 ipw_tx_queue_free(priv);
4687 return rc;
4688}
4689
4690/**
4691 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004692 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004693 * When FW adwances 'R' index, all entries between old and
4694 * new 'R' index need to be reclaimed. As result, some free space
4695 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004696 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004697 * @note Need to protect against garbage in 'R' index
4698 * @param priv
4699 * @param txq
4700 * @param qindex
4701 * @return Number of used entries remains in the queue
4702 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004703static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004704 struct clx2_tx_queue *txq, int qindex)
4705{
4706 u32 hw_tail;
4707 int used;
4708 struct clx2_queue *q = &txq->q;
4709
4710 hw_tail = ipw_read32(priv, q->reg_r);
4711 if (hw_tail >= q->n_bd) {
4712 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004713 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4714 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004715 goto done;
4716 }
4717 for (; q->last_used != hw_tail;
4718 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4719 ipw_queue_tx_free_tfd(priv, txq);
4720 priv->tx_packets++;
4721 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004722 done:
James Ketrenos9ddf84f2005-08-16 17:07:11 -05004723 if ((ipw_queue_space(q) > q->low_mark) &&
4724 (qindex >= 0) &&
4725 (priv->status & STATUS_ASSOCIATED) && netif_running(priv->net_dev))
4726 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06004727 used = q->first_empty - q->last_used;
4728 if (used < 0)
4729 used += q->n_bd;
4730
4731 return used;
4732}
4733
4734static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4735 int len, int sync)
4736{
4737 struct clx2_tx_queue *txq = &priv->txq_cmd;
4738 struct clx2_queue *q = &txq->q;
4739 struct tfd_frame *tfd;
4740
4741 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4742 IPW_ERROR("No space for Tx\n");
4743 return -EBUSY;
4744 }
4745
4746 tfd = &txq->bd[q->first_empty];
4747 txq->txb[q->first_empty] = NULL;
4748
4749 memset(tfd, 0, sizeof(*tfd));
4750 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4751 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4752 priv->hcmd_seq++;
4753 tfd->u.cmd.index = hcmd;
4754 tfd->u.cmd.length = len;
4755 memcpy(tfd->u.cmd.payload, buf, len);
4756 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4757 ipw_write32(priv, q->reg_w, q->first_empty);
4758 _ipw_read32(priv, 0x90);
4759
4760 return 0;
4761}
4762
Jeff Garzikbf794512005-07-31 13:07:26 -04004763/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004764 * Rx theory of operation
4765 *
4766 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004767 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004768 * 0 to 31
4769 *
4770 * Rx Queue Indexes
4771 * The host/firmware share two index registers for managing the Rx buffers.
4772 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004773 * The READ index maps to the first position that the firmware may be writing
4774 * to -- the driver can read up to (but not including) this position and get
4775 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004776 * The READ index is managed by the firmware once the card is enabled.
4777 *
4778 * The WRITE index maps to the last position the driver has read from -- the
4779 * position preceding WRITE is the last slot the firmware can place a packet.
4780 *
4781 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004782 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004783 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004784 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004785 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4786 *
4787 * When the firmware places a packet in a buffer it will advance the READ index
4788 * and fire the RX interrupt. The driver can then query the READ index and
4789 * process as many packets as possible, moving the WRITE index forward as it
4790 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004791 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004792 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004793 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004794 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004795 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004796 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4797 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4798 * 'processed' and 'read' driver indexes as well)
4799 * + A received packet is processed and handed to the kernel network stack,
4800 * detached from the ipw->rxq. The driver 'processed' index is updated.
4801 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004802 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4803 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004804 * were enough free buffers and RX_STALLED is set it is cleared.
4805 *
4806 *
4807 * Driver sequence:
4808 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004809 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004810 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4811 * ipw_rx_queue_restock
4812 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4813 * queue, updates firmware pointers, and updates
4814 * the WRITE index. If insufficient rx_free buffers
4815 * are available, schedules ipw_rx_queue_replenish
4816 *
4817 * -- enable interrupts --
4818 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004819 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004820 * Moves the packet buffer from queue to rx_used.
4821 * Calls ipw_rx_queue_restock to refill any empty
4822 * slots.
4823 * ...
4824 *
4825 */
4826
Jeff Garzikbf794512005-07-31 13:07:26 -04004827/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004828 * If there are slots in the RX queue that need to be restocked,
4829 * and we have free pre-allocated buffers, fill the ranks as much
4830 * as we can pulling from rx_free.
4831 *
4832 * This moves the 'write' index forward to catch up with 'processed', and
4833 * also updates the memory address in the firmware to reference the new
4834 * target buffer.
4835 */
4836static void ipw_rx_queue_restock(struct ipw_priv *priv)
4837{
4838 struct ipw_rx_queue *rxq = priv->rxq;
4839 struct list_head *element;
4840 struct ipw_rx_mem_buffer *rxb;
4841 unsigned long flags;
4842 int write;
4843
4844 spin_lock_irqsave(&rxq->lock, flags);
4845 write = rxq->write;
4846 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4847 element = rxq->rx_free.next;
4848 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4849 list_del(element);
4850
James Ketrenosb095c382005-08-24 22:04:42 -05004851 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004852 rxb->dma_addr);
4853 rxq->queue[rxq->write] = rxb;
4854 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4855 rxq->free_count--;
4856 }
4857 spin_unlock_irqrestore(&rxq->lock, flags);
4858
Jeff Garzikbf794512005-07-31 13:07:26 -04004859 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004860 * refill it */
4861 if (rxq->free_count <= RX_LOW_WATERMARK)
4862 queue_work(priv->workqueue, &priv->rx_replenish);
4863
4864 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004865 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004866 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004867}
4868
4869/*
4870 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004871 * Also restock the Rx queue via ipw_rx_queue_restock.
4872 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004873 * This is called as a scheduled work item (except for during intialization)
4874 */
4875static void ipw_rx_queue_replenish(void *data)
4876{
4877 struct ipw_priv *priv = data;
4878 struct ipw_rx_queue *rxq = priv->rxq;
4879 struct list_head *element;
4880 struct ipw_rx_mem_buffer *rxb;
4881 unsigned long flags;
4882
4883 spin_lock_irqsave(&rxq->lock, flags);
4884 while (!list_empty(&rxq->rx_used)) {
4885 element = rxq->rx_used.next;
4886 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004887 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004888 if (!rxb->skb) {
4889 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4890 priv->net_dev->name);
4891 /* We don't reschedule replenish work here -- we will
4892 * call the restock method and if it still needs
4893 * more buffers it will schedule replenish */
4894 break;
4895 }
4896 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004897
James Ketrenos43f66a62005-03-25 12:31:53 -06004898 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004899 rxb->dma_addr =
4900 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004901 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004902
James Ketrenos43f66a62005-03-25 12:31:53 -06004903 list_add_tail(&rxb->list, &rxq->rx_free);
4904 rxq->free_count++;
4905 }
4906 spin_unlock_irqrestore(&rxq->lock, flags);
4907
4908 ipw_rx_queue_restock(priv);
4909}
4910
James Ketrenosc848d0a2005-08-24 21:56:24 -05004911static void ipw_bg_rx_queue_replenish(void *data)
4912{
4913 struct ipw_priv *priv = data;
4914 down(&priv->sem);
4915 ipw_rx_queue_replenish(data);
4916 up(&priv->sem);
4917}
4918
James Ketrenos43f66a62005-03-25 12:31:53 -06004919/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4920 * If an SKB has been detached, the POOL needs to have it's SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004921 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004922 * non NULL it is unmapped and freed
4923 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004924static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004925{
4926 int i;
4927
4928 if (!rxq)
4929 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004930
James Ketrenos43f66a62005-03-25 12:31:53 -06004931 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4932 if (rxq->pool[i].skb != NULL) {
4933 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004934 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004935 dev_kfree_skb(rxq->pool[i].skb);
4936 }
4937 }
4938
4939 kfree(rxq);
4940}
4941
4942static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4943{
4944 struct ipw_rx_queue *rxq;
4945 int i;
4946
Takisc75f4742005-12-01 01:41:45 -08004947 rxq = kzalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004948 if (unlikely(!rxq)) {
4949 IPW_ERROR("memory allocation failed\n");
4950 return NULL;
4951 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004952 spin_lock_init(&rxq->lock);
4953 INIT_LIST_HEAD(&rxq->rx_free);
4954 INIT_LIST_HEAD(&rxq->rx_used);
4955
4956 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004957 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004958 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4959
4960 /* Set us so that we have processed and used all buffers, but have
4961 * not restocked the Rx queue with fresh buffers */
4962 rxq->read = rxq->write = 0;
4963 rxq->processed = RX_QUEUE_SIZE - 1;
4964 rxq->free_count = 0;
4965
4966 return rxq;
4967}
4968
4969static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4970{
4971 rate &= ~IEEE80211_BASIC_RATE_MASK;
4972 if (ieee_mode == IEEE_A) {
4973 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004974 case IEEE80211_OFDM_RATE_6MB:
4975 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004976 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004977 case IEEE80211_OFDM_RATE_9MB:
4978 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004979 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004980 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004981 return priv->
4982 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004983 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004984 return priv->
4985 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004986 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004987 return priv->
4988 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004989 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004990 return priv->
4991 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004992 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004993 return priv->
4994 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004995 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004996 return priv->
4997 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004998 default:
4999 return 0;
5000 }
5001 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005002
James Ketrenos43f66a62005-03-25 12:31:53 -06005003 /* B and G mixed */
5004 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005005 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005006 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005007 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005008 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005009 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005010 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005011 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005012 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
5013 }
5014
5015 /* If we are limited to B modulations, bail at this point */
5016 if (ieee_mode == IEEE_B)
5017 return 0;
5018
5019 /* G */
5020 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005021 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005022 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005023 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005024 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005025 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005026 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005027 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005028 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005029 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005030 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005031 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005032 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005033 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005034 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005035 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005036 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
5037 }
5038
5039 return 0;
5040}
5041
Jeff Garzikbf794512005-07-31 13:07:26 -04005042static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005043 const struct ieee80211_network *network,
5044 struct ipw_supported_rates *rates)
5045{
5046 int num_rates, i;
5047
5048 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005049 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005050 rates->num_rates = 0;
5051 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005052 if (!ipw_is_rate_in_mask(priv, network->mode,
5053 network->rates[i])) {
5054
James Ketrenosea2b26e2005-08-24 21:25:16 -05005055 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005056 IPW_DEBUG_SCAN("Adding masked mandatory "
5057 "rate %02X\n",
5058 network->rates[i]);
5059 rates->supported_rates[rates->num_rates++] =
5060 network->rates[i];
5061 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005062 }
5063
James Ketrenos43f66a62005-03-25 12:31:53 -06005064 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5065 network->rates[i], priv->rates_mask);
5066 continue;
5067 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005068
James Ketrenos43f66a62005-03-25 12:31:53 -06005069 rates->supported_rates[rates->num_rates++] = network->rates[i];
5070 }
5071
James Ketrenosa613bff2005-08-24 21:43:11 -05005072 num_rates = min(network->rates_ex_len,
5073 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005074 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005075 if (!ipw_is_rate_in_mask(priv, network->mode,
5076 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005077 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005078 IPW_DEBUG_SCAN("Adding masked mandatory "
5079 "rate %02X\n",
5080 network->rates_ex[i]);
5081 rates->supported_rates[rates->num_rates++] =
5082 network->rates[i];
5083 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005084 }
5085
James Ketrenos43f66a62005-03-25 12:31:53 -06005086 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5087 network->rates_ex[i], priv->rates_mask);
5088 continue;
5089 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005090
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005091 rates->supported_rates[rates->num_rates++] =
5092 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005093 }
5094
James Ketrenosea2b26e2005-08-24 21:25:16 -05005095 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005096}
5097
Arjan van de Ven858119e2006-01-14 13:20:43 -08005098static void ipw_copy_rates(struct ipw_supported_rates *dest,
James Ketrenos43f66a62005-03-25 12:31:53 -06005099 const struct ipw_supported_rates *src)
5100{
5101 u8 i;
5102 for (i = 0; i < src->num_rates; i++)
5103 dest->supported_rates[i] = src->supported_rates[i];
5104 dest->num_rates = src->num_rates;
5105}
5106
5107/* TODO: Look at sniffed packets in the air to determine if the basic rate
5108 * mask should ever be used -- right now all callers to add the scan rates are
5109 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5110static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005111 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005112{
Jeff Garzikbf794512005-07-31 13:07:26 -04005113 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005114 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005115
James Ketrenos43f66a62005-03-25 12:31:53 -06005116 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005117 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005118 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005119
5120 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005121 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005122 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005123
5124 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005125 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005126 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005127
5128 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005129 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005130 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005131}
5132
5133static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005134 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005135{
Jeff Garzikbf794512005-07-31 13:07:26 -04005136 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005137 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005138
5139 if (rate_mask & IEEE80211_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005140 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005141 IEEE80211_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005142
5143 if (rate_mask & IEEE80211_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005144 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005145 IEEE80211_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005146
5147 if (rate_mask & IEEE80211_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005148 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005149 IEEE80211_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005150
5151 if (rate_mask & IEEE80211_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005152 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005153 IEEE80211_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005154
5155 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005156 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005157 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005158
5159 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005160 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005161 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005162
5163 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005164 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005165 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005166
5167 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005168 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005169 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005170}
5171
5172struct ipw_network_match {
5173 struct ieee80211_network *network;
5174 struct ipw_supported_rates rates;
5175};
5176
James Ketrenosc848d0a2005-08-24 21:56:24 -05005177static int ipw_find_adhoc_network(struct ipw_priv *priv,
5178 struct ipw_network_match *match,
5179 struct ieee80211_network *network,
5180 int roaming)
5181{
5182 struct ipw_supported_rates rates;
5183
5184 /* Verify that this network's capability is compatible with the
5185 * current mode (AdHoc or Infrastructure) */
5186 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5187 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5188 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5189 "capability mismatch.\n",
5190 escape_essid(network->ssid, network->ssid_len),
5191 MAC_ARG(network->bssid));
5192 return 0;
5193 }
5194
5195 /* If we do not have an ESSID for this AP, we can not associate with
5196 * it */
5197 if (network->flags & NETWORK_EMPTY_ESSID) {
5198 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5199 "because of hidden ESSID.\n",
5200 escape_essid(network->ssid, network->ssid_len),
5201 MAC_ARG(network->bssid));
5202 return 0;
5203 }
5204
5205 if (unlikely(roaming)) {
5206 /* If we are roaming, then ensure check if this is a valid
5207 * network to try and roam to */
5208 if ((network->ssid_len != match->network->ssid_len) ||
5209 memcmp(network->ssid, match->network->ssid,
5210 network->ssid_len)) {
5211 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5212 "because of non-network ESSID.\n",
5213 escape_essid(network->ssid,
5214 network->ssid_len),
5215 MAC_ARG(network->bssid));
5216 return 0;
5217 }
5218 } else {
5219 /* If an ESSID has been configured then compare the broadcast
5220 * ESSID to ours */
5221 if ((priv->config & CFG_STATIC_ESSID) &&
5222 ((network->ssid_len != priv->essid_len) ||
5223 memcmp(network->ssid, priv->essid,
5224 min(network->ssid_len, priv->essid_len)))) {
5225 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005226
James Ketrenosc848d0a2005-08-24 21:56:24 -05005227 strncpy(escaped,
5228 escape_essid(network->ssid, network->ssid_len),
5229 sizeof(escaped));
5230 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5231 "because of ESSID mismatch: '%s'.\n",
5232 escaped, MAC_ARG(network->bssid),
5233 escape_essid(priv->essid,
5234 priv->essid_len));
5235 return 0;
5236 }
5237 }
5238
5239 /* If the old network rate is better than this one, don't bother
5240 * testing everything else. */
5241
5242 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005243 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5244 "current network.\n",
5245 escape_essid(match->network->ssid,
5246 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005247 return 0;
5248 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005249 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5250 "current network.\n",
5251 escape_essid(match->network->ssid,
5252 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005253 return 0;
5254 }
5255
5256 /* Now go through and see if the requested network is valid... */
5257 if (priv->ieee->scan_age != 0 &&
5258 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5259 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5260 "because of age: %lums.\n",
5261 escape_essid(network->ssid, network->ssid_len),
5262 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005263 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005264 return 0;
5265 }
5266
5267 if ((priv->config & CFG_STATIC_CHANNEL) &&
5268 (network->channel != priv->channel)) {
5269 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5270 "because of channel mismatch: %d != %d.\n",
5271 escape_essid(network->ssid, network->ssid_len),
5272 MAC_ARG(network->bssid),
5273 network->channel, priv->channel);
5274 return 0;
5275 }
5276
5277 /* Verify privacy compatability */
5278 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5279 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5280 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5281 "because of privacy mismatch: %s != %s.\n",
5282 escape_essid(network->ssid, network->ssid_len),
5283 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005284 priv->
5285 capability & CAP_PRIVACY_ON ? "on" : "off",
5286 network->
5287 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5288 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005289 return 0;
5290 }
5291
5292 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5293 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5294 "because of the same BSSID match: " MAC_FMT
5295 ".\n", escape_essid(network->ssid,
5296 network->ssid_len),
5297 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5298 return 0;
5299 }
5300
5301 /* Filter out any incompatible freq / mode combinations */
5302 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5303 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5304 "because of invalid frequency/mode "
5305 "combination.\n",
5306 escape_essid(network->ssid, network->ssid_len),
5307 MAC_ARG(network->bssid));
5308 return 0;
5309 }
5310
5311 /* Ensure that the rates supported by the driver are compatible with
5312 * this AP, including verification of basic rates (mandatory) */
5313 if (!ipw_compatible_rates(priv, network, &rates)) {
5314 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5315 "because configured rate mask excludes "
5316 "AP mandatory rate.\n",
5317 escape_essid(network->ssid, network->ssid_len),
5318 MAC_ARG(network->bssid));
5319 return 0;
5320 }
5321
5322 if (rates.num_rates == 0) {
5323 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5324 "because of no compatible rates.\n",
5325 escape_essid(network->ssid, network->ssid_len),
5326 MAC_ARG(network->bssid));
5327 return 0;
5328 }
5329
5330 /* TODO: Perform any further minimal comparititive tests. We do not
5331 * want to put too much policy logic here; intelligent scan selection
5332 * should occur within a generic IEEE 802.11 user space tool. */
5333
5334 /* Set up 'new' AP to this network */
5335 ipw_copy_rates(&match->rates, &rates);
5336 match->network = network;
5337 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5338 escape_essid(network->ssid, network->ssid_len),
5339 MAC_ARG(network->bssid));
5340
5341 return 1;
5342}
5343
5344static void ipw_merge_adhoc_network(void *data)
5345{
5346 struct ipw_priv *priv = data;
5347 struct ieee80211_network *network = NULL;
5348 struct ipw_network_match match = {
5349 .network = priv->assoc_network
5350 };
5351
James Ketrenosafbf30a2005-08-25 00:05:33 -05005352 if ((priv->status & STATUS_ASSOCIATED) &&
5353 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005354 /* First pass through ROAM process -- look for a better
5355 * network */
5356 unsigned long flags;
5357
5358 spin_lock_irqsave(&priv->ieee->lock, flags);
5359 list_for_each_entry(network, &priv->ieee->network_list, list) {
5360 if (network != priv->assoc_network)
5361 ipw_find_adhoc_network(priv, &match, network,
5362 1);
5363 }
5364 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5365
5366 if (match.network == priv->assoc_network) {
5367 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5368 "merge to.\n");
5369 return;
5370 }
5371
5372 down(&priv->sem);
5373 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5374 IPW_DEBUG_MERGE("remove network %s\n",
5375 escape_essid(priv->essid,
5376 priv->essid_len));
5377 ipw_remove_current_network(priv);
5378 }
5379
5380 ipw_disassociate(priv);
5381 priv->assoc_network = match.network;
5382 up(&priv->sem);
5383 return;
5384 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005385}
5386
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005387static int ipw_best_network(struct ipw_priv *priv,
5388 struct ipw_network_match *match,
5389 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005390{
5391 struct ipw_supported_rates rates;
5392
5393 /* Verify that this network's capability is compatible with the
5394 * current mode (AdHoc or Infrastructure) */
5395 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005396 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005397 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5398 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5399 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005400 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005401 escape_essid(network->ssid, network->ssid_len),
5402 MAC_ARG(network->bssid));
5403 return 0;
5404 }
5405
5406 /* If we do not have an ESSID for this AP, we can not associate with
5407 * it */
5408 if (network->flags & NETWORK_EMPTY_ESSID) {
5409 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5410 "because of hidden ESSID.\n",
5411 escape_essid(network->ssid, network->ssid_len),
5412 MAC_ARG(network->bssid));
5413 return 0;
5414 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005415
James Ketrenos43f66a62005-03-25 12:31:53 -06005416 if (unlikely(roaming)) {
5417 /* If we are roaming, then ensure check if this is a valid
5418 * network to try and roam to */
5419 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005420 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005421 network->ssid_len)) {
5422 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5423 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005424 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005425 network->ssid_len),
5426 MAC_ARG(network->bssid));
5427 return 0;
5428 }
5429 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005430 /* If an ESSID has been configured then compare the broadcast
5431 * ESSID to ours */
5432 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005433 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005434 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005435 min(network->ssid_len, priv->essid_len)))) {
5436 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005437 strncpy(escaped,
5438 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005439 sizeof(escaped));
5440 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005441 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005442 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005443 escape_essid(priv->essid,
5444 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005445 return 0;
5446 }
5447 }
5448
5449 /* If the old network rate is better than this one, don't bother
5450 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005451 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005452 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005453 strncpy(escaped,
5454 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005455 sizeof(escaped));
5456 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5457 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5458 escaped, MAC_ARG(network->bssid),
5459 escape_essid(match->network->ssid,
5460 match->network->ssid_len),
5461 MAC_ARG(match->network->bssid));
5462 return 0;
5463 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005464
James Ketrenos43f66a62005-03-25 12:31:53 -06005465 /* If this network has already had an association attempt within the
5466 * last 3 seconds, do not try and associate again... */
5467 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005468 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005469 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
James Ketrenosafbf30a2005-08-25 00:05:33 -05005470 "because of storming (%lus since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005471 "assoc attempt).\n",
5472 escape_essid(network->ssid, network->ssid_len),
5473 MAC_ARG(network->bssid),
5474 (jiffies - network->last_associate) / HZ);
5475 return 0;
5476 }
5477
5478 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005479 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005480 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005481 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5482 "because of age: %lums.\n",
5483 escape_essid(network->ssid, network->ssid_len),
5484 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005485 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06005486 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005487 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005488
Jeff Garzikbf794512005-07-31 13:07:26 -04005489 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005490 (network->channel != priv->channel)) {
5491 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5492 "because of channel mismatch: %d != %d.\n",
5493 escape_essid(network->ssid, network->ssid_len),
5494 MAC_ARG(network->bssid),
5495 network->channel, priv->channel);
5496 return 0;
5497 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005498
James Ketrenos43f66a62005-03-25 12:31:53 -06005499 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005500 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005501 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5502 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5503 "because of privacy mismatch: %s != %s.\n",
5504 escape_essid(network->ssid, network->ssid_len),
5505 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005506 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005507 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005508 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005509 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005510 return 0;
5511 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005512
Hong Liucdd1fa12005-08-31 18:14:27 +08005513 if (!priv->ieee->wpa_enabled && (network->wpa_ie_len > 0 ||
5514 network->rsn_ie_len > 0)) {
5515 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5516 "because of WPA capability mismatch.\n",
5517 escape_essid(network->ssid, network->ssid_len),
5518 MAC_ARG(network->bssid));
5519 return 0;
5520 }
5521
Jeff Garzikbf794512005-07-31 13:07:26 -04005522 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005523 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5524 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5525 "because of BSSID mismatch: " MAC_FMT ".\n",
5526 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005527 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005528 return 0;
5529 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005530
James Ketrenos43f66a62005-03-25 12:31:53 -06005531 /* Filter out any incompatible freq / mode combinations */
5532 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5533 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5534 "because of invalid frequency/mode "
5535 "combination.\n",
5536 escape_essid(network->ssid, network->ssid_len),
5537 MAC_ARG(network->bssid));
5538 return 0;
5539 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005540
Liu Hong1fe0adb2005-08-19 09:33:10 -05005541 /* Filter out invalid channel in current GEO */
5542 if (!ipw_is_valid_channel(priv->ieee, network->channel)) {
5543 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5544 "because of invalid channel in current GEO\n",
5545 escape_essid(network->ssid, network->ssid_len),
5546 MAC_ARG(network->bssid));
5547 return 0;
5548 }
5549
James Ketrenosea2b26e2005-08-24 21:25:16 -05005550 /* Ensure that the rates supported by the driver are compatible with
5551 * this AP, including verification of basic rates (mandatory) */
5552 if (!ipw_compatible_rates(priv, network, &rates)) {
5553 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5554 "because configured rate mask excludes "
5555 "AP mandatory rate.\n",
5556 escape_essid(network->ssid, network->ssid_len),
5557 MAC_ARG(network->bssid));
5558 return 0;
5559 }
5560
James Ketrenos43f66a62005-03-25 12:31:53 -06005561 if (rates.num_rates == 0) {
5562 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5563 "because of no compatible rates.\n",
5564 escape_essid(network->ssid, network->ssid_len),
5565 MAC_ARG(network->bssid));
5566 return 0;
5567 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005568
James Ketrenos43f66a62005-03-25 12:31:53 -06005569 /* TODO: Perform any further minimal comparititive tests. We do not
5570 * want to put too much policy logic here; intelligent scan selection
5571 * should occur within a generic IEEE 802.11 user space tool. */
5572
5573 /* Set up 'new' AP to this network */
5574 ipw_copy_rates(&match->rates, &rates);
5575 match->network = network;
5576
5577 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5578 escape_essid(network->ssid, network->ssid_len),
5579 MAC_ARG(network->bssid));
5580
5581 return 1;
5582}
5583
Jeff Garzikbf794512005-07-31 13:07:26 -04005584static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005585 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005586{
Liu Hong1fe0adb2005-08-19 09:33:10 -05005587 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005588 int i;
5589
James Ketrenos43f66a62005-03-25 12:31:53 -06005590 /*
5591 * For the purposes of scanning, we can set our wireless mode
5592 * to trigger scans across combinations of bands, but when it
5593 * comes to creating a new ad-hoc network, we have tell the FW
5594 * exactly which band to use.
5595 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005596 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005597 * chossen band. Attempting to create a new ad-hoc network
5598 * with an invalid channel for wireless mode will trigger a
5599 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005600 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005601 */
Liu Hong1fe0adb2005-08-19 09:33:10 -05005602 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005603 case IEEE80211_52GHZ_BAND:
5604 network->mode = IEEE_A;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005605 i = ipw_channel_to_index(priv->ieee, priv->channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005606 if (i == -1)
5607 BUG();
5608 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5609 IPW_WARNING("Overriding invalid channel\n");
5610 priv->channel = geo->a[0].channel;
5611 }
5612 break;
5613
5614 case IEEE80211_24GHZ_BAND:
5615 if (priv->ieee->mode & IEEE_G)
5616 network->mode = IEEE_G;
5617 else
5618 network->mode = IEEE_B;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005619 i = ipw_channel_to_index(priv->ieee, priv->channel);
5620 if (i == -1)
5621 BUG();
5622 if (geo->bg[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5623 IPW_WARNING("Overriding invalid channel\n");
5624 priv->channel = geo->bg[0].channel;
5625 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005626 break;
5627
5628 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005629 IPW_WARNING("Overriding invalid channel\n");
5630 if (priv->ieee->mode & IEEE_A) {
5631 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005632 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005633 } else if (priv->ieee->mode & IEEE_G) {
5634 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005635 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005636 } else {
5637 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005638 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005639 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005640 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005641 }
5642
5643 network->channel = priv->channel;
5644 priv->config |= CFG_ADHOC_PERSIST;
5645 ipw_create_bssid(priv, network->bssid);
5646 network->ssid_len = priv->essid_len;
5647 memcpy(network->ssid, priv->essid, priv->essid_len);
5648 memset(&network->stats, 0, sizeof(network->stats));
5649 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005650 if (!(priv->config & CFG_PREAMBLE_LONG))
5651 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005652 if (priv->capability & CAP_PRIVACY_ON)
5653 network->capability |= WLAN_CAPABILITY_PRIVACY;
5654 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005655 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005656 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005657 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005658 &priv->rates.supported_rates[network->rates_len],
5659 network->rates_ex_len);
5660 network->last_scanned = 0;
5661 network->flags = 0;
5662 network->last_associate = 0;
5663 network->time_stamp[0] = 0;
5664 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005665 network->beacon_interval = 100; /* Default */
5666 network->listen_interval = 10; /* Default */
5667 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005668 network->wpa_ie_len = 0;
5669 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005670}
5671
James Ketrenosb095c382005-08-24 22:04:42 -05005672static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5673{
5674 struct ipw_tgi_tx_key *key;
5675 struct host_cmd cmd = {
5676 .cmd = IPW_CMD_TGI_TX_KEY,
5677 .len = sizeof(*key)
5678 };
5679
5680 if (!(priv->ieee->sec.flags & (1 << index)))
5681 return;
5682
5683 key = (struct ipw_tgi_tx_key *)&cmd.param;
5684 key->key_id = index;
5685 memcpy(key->key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5686 key->security_type = type;
5687 key->station_index = 0; /* always 0 for BSS */
5688 key->flags = 0;
5689 /* 0 for new key; previous value of counter (after fatal error) */
5690 key->tx_counter[0] = 0;
5691 key->tx_counter[1] = 0;
5692
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005693 ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05005694}
5695
5696static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005697{
5698 struct ipw_wep_key *key;
5699 int i;
5700 struct host_cmd cmd = {
5701 .cmd = IPW_CMD_WEP_KEY,
5702 .len = sizeof(*key)
5703 };
5704
5705 key = (struct ipw_wep_key *)&cmd.param;
5706 key->cmd_id = DINO_CMD_WEP_KEY;
5707 key->seq_num = 0;
5708
James Ketrenosb095c382005-08-24 22:04:42 -05005709 /* Note: AES keys cannot be set for multiple times.
5710 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005711 for (i = 0; i < 4; i++) {
James Ketrenosb095c382005-08-24 22:04:42 -05005712 key->key_index = i | type;
5713 if (!(priv->ieee->sec.flags & (1 << i))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005714 key->key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005715 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005716 }
5717
James Ketrenosb095c382005-08-24 22:04:42 -05005718 key->key_size = priv->ieee->sec.key_sizes[i];
5719 memcpy(key->key, priv->ieee->sec.keys[i], key->key_size);
5720
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005721 ipw_send_cmd(priv, &cmd);
Jeff Garzikbf794512005-07-31 13:07:26 -04005722 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005723}
5724
Zhu Yi1fbfea52005-08-05 17:22:56 +08005725static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5726{
5727 if (priv->ieee->host_encrypt)
5728 return;
5729
5730 switch (level) {
5731 case SEC_LEVEL_3:
5732 priv->sys_config.disable_unicast_decryption = 0;
5733 priv->ieee->host_decrypt = 0;
5734 break;
5735 case SEC_LEVEL_2:
5736 priv->sys_config.disable_unicast_decryption = 1;
5737 priv->ieee->host_decrypt = 1;
5738 break;
5739 case SEC_LEVEL_1:
5740 priv->sys_config.disable_unicast_decryption = 0;
5741 priv->ieee->host_decrypt = 0;
5742 break;
5743 case SEC_LEVEL_0:
5744 priv->sys_config.disable_unicast_decryption = 1;
5745 break;
5746 default:
5747 break;
5748 }
5749}
5750
5751static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5752{
5753 if (priv->ieee->host_encrypt)
5754 return;
5755
5756 switch (level) {
5757 case SEC_LEVEL_3:
5758 priv->sys_config.disable_multicast_decryption = 0;
5759 break;
5760 case SEC_LEVEL_2:
5761 priv->sys_config.disable_multicast_decryption = 1;
5762 break;
5763 case SEC_LEVEL_1:
5764 priv->sys_config.disable_multicast_decryption = 0;
5765 break;
5766 case SEC_LEVEL_0:
5767 priv->sys_config.disable_multicast_decryption = 1;
5768 break;
5769 default:
5770 break;
5771 }
5772}
5773
James Ketrenosb095c382005-08-24 22:04:42 -05005774static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5775{
5776 switch (priv->ieee->sec.level) {
5777 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005778 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5779 ipw_send_tgi_tx_key(priv,
5780 DCT_FLAG_EXT_SECURITY_CCM,
5781 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005782
Hong Liu567deaf2005-08-31 18:07:22 +08005783 if (!priv->ieee->host_mc_decrypt)
5784 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005785 break;
5786 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005787 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5788 ipw_send_tgi_tx_key(priv,
5789 DCT_FLAG_EXT_SECURITY_TKIP,
5790 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005791 break;
5792 case SEC_LEVEL_1:
5793 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05005794 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
5795 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05005796 break;
5797 case SEC_LEVEL_0:
5798 default:
5799 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005800 }
5801}
5802
5803static void ipw_adhoc_check(void *data)
5804{
5805 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005806
James Ketrenosafbf30a2005-08-25 00:05:33 -05005807 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005808 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005809 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5810 IPW_DL_STATE | IPW_DL_ASSOC,
5811 "Missed beacon: %d - disassociate\n",
5812 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005813 ipw_remove_current_network(priv);
5814 ipw_disassociate(priv);
5815 return;
5816 }
5817
Jeff Garzikbf794512005-07-31 13:07:26 -04005818 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005819 priv->assoc_request.beacon_interval);
5820}
5821
James Ketrenosc848d0a2005-08-24 21:56:24 -05005822static void ipw_bg_adhoc_check(void *data)
5823{
5824 struct ipw_priv *priv = data;
5825 down(&priv->sem);
5826 ipw_adhoc_check(data);
5827 up(&priv->sem);
5828}
5829
Brice Goglin0f52bf92005-12-01 01:41:46 -08005830#ifdef CONFIG_IPW2200_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -06005831static void ipw_debug_config(struct ipw_priv *priv)
5832{
5833 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5834 "[CFG 0x%08X]\n", priv->config);
5835 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005836 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005837 else
5838 IPW_DEBUG_INFO("Channel unlocked.\n");
5839 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005840 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005841 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005842 else
5843 IPW_DEBUG_INFO("ESSID unlocked.\n");
5844 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005845 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5846 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005847 else
5848 IPW_DEBUG_INFO("BSSID unlocked.\n");
5849 if (priv->capability & CAP_PRIVACY_ON)
5850 IPW_DEBUG_INFO("PRIVACY on\n");
5851 else
5852 IPW_DEBUG_INFO("PRIVACY off\n");
5853 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5854}
5855#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005856#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005857#endif
5858
Arjan van de Ven858119e2006-01-14 13:20:43 -08005859static void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005860{
5861 /* TODO: Verify that this works... */
5862 struct ipw_fixed_rate fr = {
5863 .tx_rates = priv->rates_mask
5864 };
5865 u32 reg;
5866 u16 mask = 0;
5867
Jeff Garzikbf794512005-07-31 13:07:26 -04005868 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005869 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005870
James Ketrenos43f66a62005-03-25 12:31:53 -06005871 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005872 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005873 /* IEEE_A */
5874 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5875 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005876 IPW_DEBUG_WX
5877 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005878 fr.tx_rates = 0;
5879 break;
5880 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005881
James Ketrenos43f66a62005-03-25 12:31:53 -06005882 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5883 break;
5884
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005885 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005886 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005887 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005888 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5889 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005890 IPW_DEBUG_WX
5891 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005892 fr.tx_rates = 0;
5893 }
5894 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005895 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005896
5897 /* IEEE_G */
5898 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5899 IEEE80211_OFDM_RATES_MASK)) {
5900 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005901 IPW_DEBUG_WX
5902 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005903 fr.tx_rates = 0;
5904 break;
5905 }
5906
5907 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5908 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5909 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5910 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005911
James Ketrenos43f66a62005-03-25 12:31:53 -06005912 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5913 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5914 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5915 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005916
James Ketrenos43f66a62005-03-25 12:31:53 -06005917 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5918 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5919 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5920 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005921
James Ketrenos43f66a62005-03-25 12:31:53 -06005922 fr.tx_rates |= mask;
5923 break;
5924 }
5925
5926 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005927 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005928}
5929
James Ketrenosea2b26e2005-08-24 21:25:16 -05005930static void ipw_abort_scan(struct ipw_priv *priv)
5931{
5932 int err;
5933
5934 if (priv->status & STATUS_SCAN_ABORTING) {
5935 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5936 return;
5937 }
5938 priv->status |= STATUS_SCAN_ABORTING;
5939
5940 err = ipw_send_scan_abort(priv);
5941 if (err)
5942 IPW_DEBUG_HC("Request to abort scan failed.\n");
5943}
5944
James Ketrenosafbf30a2005-08-25 00:05:33 -05005945static void ipw_add_scan_channels(struct ipw_priv *priv,
5946 struct ipw_scan_request_ext *scan,
5947 int scan_type)
5948{
5949 int channel_index = 0;
5950 const struct ieee80211_geo *geo;
5951 int i;
5952
Liu Hong1fe0adb2005-08-19 09:33:10 -05005953 geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005954
5955 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5956 int start = channel_index;
5957 for (i = 0; i < geo->a_channels; i++) {
5958 if ((priv->status & STATUS_ASSOCIATED) &&
5959 geo->a[i].channel == priv->channel)
5960 continue;
5961 channel_index++;
5962 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005963 ipw_set_scan_type(scan, channel_index,
5964 geo->a[i].
5965 flags & IEEE80211_CH_PASSIVE_ONLY ?
5966 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
5967 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005968 }
5969
5970 if (start != channel_index) {
5971 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5972 (channel_index - start);
5973 channel_index++;
5974 }
5975 }
5976
5977 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5978 int start = channel_index;
5979 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005980 int index;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005981 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5982 /* nop out the list */
5983 [0] = 0
5984 };
5985
5986 u8 channel;
5987 while (channel_index < IPW_SCAN_CHANNELS) {
5988 channel =
5989 priv->speed_scan[priv->speed_scan_pos];
5990 if (channel == 0) {
5991 priv->speed_scan_pos = 0;
5992 channel = priv->speed_scan[0];
5993 }
5994 if ((priv->status & STATUS_ASSOCIATED) &&
5995 channel == priv->channel) {
5996 priv->speed_scan_pos++;
5997 continue;
5998 }
5999
6000 /* If this channel has already been
6001 * added in scan, break from loop
6002 * and this will be the first channel
6003 * in the next scan.
6004 */
6005 if (channels[channel - 1] != 0)
6006 break;
6007
6008 channels[channel - 1] = 1;
6009 priv->speed_scan_pos++;
6010 channel_index++;
6011 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006012 index =
6013 ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006014 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006015 geo->bg[index].
6016 flags &
6017 IEEE80211_CH_PASSIVE_ONLY ?
6018 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6019 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006020 }
6021 } else {
6022 for (i = 0; i < geo->bg_channels; i++) {
6023 if ((priv->status & STATUS_ASSOCIATED) &&
6024 geo->bg[i].channel == priv->channel)
6025 continue;
6026 channel_index++;
6027 scan->channels_list[channel_index] =
6028 geo->bg[i].channel;
6029 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006030 geo->bg[i].
6031 flags &
6032 IEEE80211_CH_PASSIVE_ONLY ?
6033 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6034 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006035 }
6036 }
6037
6038 if (start != channel_index) {
6039 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6040 (channel_index - start);
6041 }
6042 }
6043}
6044
James Ketrenosea2b26e2005-08-24 21:25:16 -05006045static int ipw_request_scan(struct ipw_priv *priv)
6046{
6047 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006048 int err = 0, scan_type;
6049
6050 if (!(priv->status & STATUS_INIT) ||
6051 (priv->status & STATUS_EXIT_PENDING))
6052 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006053
James Ketrenosb095c382005-08-24 22:04:42 -05006054 down(&priv->sem);
6055
James Ketrenosea2b26e2005-08-24 21:25:16 -05006056 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05006057 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05006058 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006059 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006060 }
6061
James Ketrenosafbf30a2005-08-25 00:05:33 -05006062 if (!(priv->status & STATUS_SCAN_FORCED) &&
6063 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006064 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6065 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006066 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006067 }
6068
6069 if (priv->status & STATUS_RF_KILL_MASK) {
6070 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6071 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006072 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006073 }
6074
6075 memset(&scan, 0, sizeof(scan));
6076
James Ketrenosb095c382005-08-24 22:04:42 -05006077 if (priv->config & CFG_SPEED_SCAN)
6078 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6079 cpu_to_le16(30);
6080 else
6081 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6082 cpu_to_le16(20);
6083
James Ketrenosa613bff2005-08-24 21:43:11 -05006084 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
6085 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05006086 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006087
James Ketrenosa613bff2005-08-24 21:43:11 -05006088 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006089
James Ketrenosb095c382005-08-24 22:04:42 -05006090#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006091 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006092 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006093 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006094
Liu Hong1fe0adb2005-08-19 09:33:10 -05006095 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006096 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006097 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006098 channel = priv->channel;
6099 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006100
James Ketrenosb095c382005-08-24 22:04:42 -05006101 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006102 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006103 channel = priv->channel;
6104 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006105
James Ketrenosb095c382005-08-24 22:04:42 -05006106 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006107 band = (u8) (IPW_B_MODE << 6) | 1;
6108 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006109 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006110 }
6111
James Ketrenosb095c382005-08-24 22:04:42 -05006112 scan.channels_list[0] = band;
6113 scan.channels_list[1] = channel;
6114 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006115
James Ketrenosb095c382005-08-24 22:04:42 -05006116 /* NOTE: The card will sit on this channel for this time
6117 * period. Scan aborts are timing sensitive and frequently
6118 * result in firmware restarts. As such, it is best to
6119 * set a small dwell_time here and just keep re-issuing
6120 * scans. Otherwise fast channel hopping will not actually
6121 * hop channels.
6122 *
6123 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006124 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6125 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006126 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006127#endif /* CONFIG_IPW2200_MONITOR */
6128 /* If we are roaming, then make this a directed scan for the
6129 * current network. Otherwise, ensure that every other scan
6130 * is a fast channel hop scan */
6131 if ((priv->status & STATUS_ROAMING)
6132 || (!(priv->status & STATUS_ASSOCIATED)
6133 && (priv->config & CFG_STATIC_ESSID)
6134 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006135 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6136 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006137 IPW_DEBUG_HC("Attempt to send SSID command "
6138 "failed.\n");
6139 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006140 }
6141
6142 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006143 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006144 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006145
James Ketrenosafbf30a2005-08-25 00:05:33 -05006146 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006147#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006148 }
6149#endif
6150
6151 err = ipw_send_scan_request_ext(priv, &scan);
6152 if (err) {
6153 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006154 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006155 }
6156
6157 priv->status |= STATUS_SCANNING;
6158 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006159 queue_delayed_work(priv->workqueue, &priv->scan_check,
6160 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05006161 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05006162 up(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05006163 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006164}
6165
6166static void ipw_bg_abort_scan(void *data)
6167{
6168 struct ipw_priv *priv = data;
6169 down(&priv->sem);
6170 ipw_abort_scan(data);
6171 up(&priv->sem);
6172}
6173
James Ketrenosea2b26e2005-08-24 21:25:16 -05006174static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6175{
James Ketrenosb095c382005-08-24 22:04:42 -05006176 /* This is called when wpa_supplicant loads and closes the driver
6177 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006178 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006179 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006180}
6181
James Ketrenosea2b26e2005-08-24 21:25:16 -05006182static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6183{
6184 struct ieee80211_device *ieee = priv->ieee;
6185 struct ieee80211_security sec = {
6186 .flags = SEC_AUTH_MODE,
6187 };
6188 int ret = 0;
6189
James Ketrenosafbf30a2005-08-25 00:05:33 -05006190 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006191 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6192 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006193 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006194 sec.auth_mode = WLAN_AUTH_OPEN;
6195 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006196 } else
6197 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006198
6199 if (ieee->set_security)
6200 ieee->set_security(ieee->dev, &sec);
6201 else
6202 ret = -EOPNOTSUPP;
6203
6204 return ret;
6205}
6206
James Ketrenosafbf30a2005-08-25 00:05:33 -05006207void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie, int wpa_ie_len)
6208{
6209 /* make sure WPA is enabled */
6210 ipw_wpa_enable(priv, 1);
6211
6212 ipw_disassociate(priv);
6213}
6214
6215static int ipw_set_rsn_capa(struct ipw_priv *priv,
6216 char *capabilities, int length)
6217{
6218 struct host_cmd cmd = {
6219 .cmd = IPW_CMD_RSN_CAPABILITIES,
6220 .len = length,
6221 };
6222
6223 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6224
6225 memcpy(cmd.param, capabilities, length);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05006226 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006227}
6228
James Ketrenosafbf30a2005-08-25 00:05:33 -05006229/*
6230 * WE-18 support
6231 */
6232
6233/* SIOCSIWGENIE */
6234static int ipw_wx_set_genie(struct net_device *dev,
6235 struct iw_request_info *info,
6236 union iwreq_data *wrqu, char *extra)
6237{
6238 struct ipw_priv *priv = ieee80211_priv(dev);
6239 struct ieee80211_device *ieee = priv->ieee;
6240 u8 *buf;
6241 int err = 0;
6242
6243 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6244 (wrqu->data.length && extra == NULL))
6245 return -EINVAL;
6246
6247 //down(&priv->sem);
6248
6249 //if (!ieee->wpa_enabled) {
6250 // err = -EOPNOTSUPP;
6251 // goto out;
6252 //}
6253
6254 if (wrqu->data.length) {
6255 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6256 if (buf == NULL) {
6257 err = -ENOMEM;
6258 goto out;
6259 }
6260
6261 memcpy(buf, extra, wrqu->data.length);
6262 kfree(ieee->wpa_ie);
6263 ieee->wpa_ie = buf;
6264 ieee->wpa_ie_len = wrqu->data.length;
6265 } else {
6266 kfree(ieee->wpa_ie);
6267 ieee->wpa_ie = NULL;
6268 ieee->wpa_ie_len = 0;
6269 }
6270
6271 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6272 out:
6273 //up(&priv->sem);
6274 return err;
6275}
6276
6277/* SIOCGIWGENIE */
6278static int ipw_wx_get_genie(struct net_device *dev,
6279 struct iw_request_info *info,
6280 union iwreq_data *wrqu, char *extra)
6281{
6282 struct ipw_priv *priv = ieee80211_priv(dev);
6283 struct ieee80211_device *ieee = priv->ieee;
6284 int err = 0;
6285
6286 //down(&priv->sem);
6287
6288 //if (!ieee->wpa_enabled) {
6289 // err = -EOPNOTSUPP;
6290 // goto out;
6291 //}
6292
6293 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6294 wrqu->data.length = 0;
6295 goto out;
6296 }
6297
6298 if (wrqu->data.length < ieee->wpa_ie_len) {
6299 err = -E2BIG;
6300 goto out;
6301 }
6302
6303 wrqu->data.length = ieee->wpa_ie_len;
6304 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6305
6306 out:
6307 //up(&priv->sem);
6308 return err;
6309}
6310
Zhu Yi1fbfea52005-08-05 17:22:56 +08006311static int wext_cipher2level(int cipher)
6312{
6313 switch (cipher) {
6314 case IW_AUTH_CIPHER_NONE:
6315 return SEC_LEVEL_0;
6316 case IW_AUTH_CIPHER_WEP40:
6317 case IW_AUTH_CIPHER_WEP104:
6318 return SEC_LEVEL_1;
6319 case IW_AUTH_CIPHER_TKIP:
6320 return SEC_LEVEL_2;
6321 case IW_AUTH_CIPHER_CCMP:
6322 return SEC_LEVEL_3;
6323 default:
6324 return -1;
6325 }
6326}
6327
James Ketrenosafbf30a2005-08-25 00:05:33 -05006328/* SIOCSIWAUTH */
6329static int ipw_wx_set_auth(struct net_device *dev,
6330 struct iw_request_info *info,
6331 union iwreq_data *wrqu, char *extra)
6332{
6333 struct ipw_priv *priv = ieee80211_priv(dev);
6334 struct ieee80211_device *ieee = priv->ieee;
6335 struct iw_param *param = &wrqu->param;
6336 struct ieee80211_crypt_data *crypt;
6337 unsigned long flags;
6338 int ret = 0;
6339
6340 switch (param->flags & IW_AUTH_INDEX) {
6341 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006342 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006343 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006344 ipw_set_hw_decrypt_unicast(priv,
6345 wext_cipher2level(param->value));
6346 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006347 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006348 ipw_set_hw_decrypt_multicast(priv,
6349 wext_cipher2level(param->value));
6350 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006351 case IW_AUTH_KEY_MGMT:
6352 /*
6353 * ipw2200 does not use these parameters
6354 */
6355 break;
6356
6357 case IW_AUTH_TKIP_COUNTERMEASURES:
6358 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006359 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006360 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006361
6362 flags = crypt->ops->get_flags(crypt->priv);
6363
6364 if (param->value)
6365 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6366 else
6367 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6368
6369 crypt->ops->set_flags(flags, crypt->priv);
6370
6371 break;
6372
6373 case IW_AUTH_DROP_UNENCRYPTED:{
6374 /* HACK:
6375 *
6376 * wpa_supplicant calls set_wpa_enabled when the driver
6377 * is loaded and unloaded, regardless of if WPA is being
6378 * used. No other calls are made which can be used to
6379 * determine if encryption will be used or not prior to
6380 * association being expected. If encryption is not being
6381 * used, drop_unencrypted is set to false, else true -- we
6382 * can use this to determine if the CAP_PRIVACY_ON bit should
6383 * be set.
6384 */
6385 struct ieee80211_security sec = {
6386 .flags = SEC_ENABLED,
6387 .enabled = param->value,
6388 };
6389 priv->ieee->drop_unencrypted = param->value;
6390 /* We only change SEC_LEVEL for open mode. Others
6391 * are set by ipw_wpa_set_encryption.
6392 */
6393 if (!param->value) {
6394 sec.flags |= SEC_LEVEL;
6395 sec.level = SEC_LEVEL_0;
6396 } else {
6397 sec.flags |= SEC_LEVEL;
6398 sec.level = SEC_LEVEL_1;
6399 }
6400 if (priv->ieee->set_security)
6401 priv->ieee->set_security(priv->ieee->dev, &sec);
6402 break;
6403 }
6404
6405 case IW_AUTH_80211_AUTH_ALG:
6406 ret = ipw_wpa_set_auth_algs(priv, param->value);
6407 break;
6408
6409 case IW_AUTH_WPA_ENABLED:
6410 ret = ipw_wpa_enable(priv, param->value);
6411 break;
6412
6413 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6414 ieee->ieee802_1x = param->value;
6415 break;
6416
6417 //case IW_AUTH_ROAMING_CONTROL:
6418 case IW_AUTH_PRIVACY_INVOKED:
6419 ieee->privacy_invoked = param->value;
6420 break;
6421
6422 default:
6423 return -EOPNOTSUPP;
6424 }
6425 return ret;
6426}
6427
6428/* SIOCGIWAUTH */
6429static int ipw_wx_get_auth(struct net_device *dev,
6430 struct iw_request_info *info,
6431 union iwreq_data *wrqu, char *extra)
6432{
6433 struct ipw_priv *priv = ieee80211_priv(dev);
6434 struct ieee80211_device *ieee = priv->ieee;
6435 struct ieee80211_crypt_data *crypt;
6436 struct iw_param *param = &wrqu->param;
6437 int ret = 0;
6438
6439 switch (param->flags & IW_AUTH_INDEX) {
6440 case IW_AUTH_WPA_VERSION:
6441 case IW_AUTH_CIPHER_PAIRWISE:
6442 case IW_AUTH_CIPHER_GROUP:
6443 case IW_AUTH_KEY_MGMT:
6444 /*
6445 * wpa_supplicant will control these internally
6446 */
6447 ret = -EOPNOTSUPP;
6448 break;
6449
6450 case IW_AUTH_TKIP_COUNTERMEASURES:
6451 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006452 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006453 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006454
6455 param->value = (crypt->ops->get_flags(crypt->priv) &
6456 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6457
6458 break;
6459
6460 case IW_AUTH_DROP_UNENCRYPTED:
6461 param->value = ieee->drop_unencrypted;
6462 break;
6463
6464 case IW_AUTH_80211_AUTH_ALG:
6465 param->value = ieee->sec.auth_mode;
6466 break;
6467
6468 case IW_AUTH_WPA_ENABLED:
6469 param->value = ieee->wpa_enabled;
6470 break;
6471
6472 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6473 param->value = ieee->ieee802_1x;
6474 break;
6475
6476 case IW_AUTH_ROAMING_CONTROL:
6477 case IW_AUTH_PRIVACY_INVOKED:
6478 param->value = ieee->privacy_invoked;
6479 break;
6480
6481 default:
6482 return -EOPNOTSUPP;
6483 }
6484 return 0;
6485}
6486
6487/* SIOCSIWENCODEEXT */
6488static int ipw_wx_set_encodeext(struct net_device *dev,
6489 struct iw_request_info *info,
6490 union iwreq_data *wrqu, char *extra)
6491{
6492 struct ipw_priv *priv = ieee80211_priv(dev);
6493 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6494
6495 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006496 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006497 /* IPW HW can't build TKIP MIC,
6498 host decryption still needed */
6499 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6500 priv->ieee->host_mc_decrypt = 1;
6501 else {
6502 priv->ieee->host_encrypt = 0;
6503 priv->ieee->host_encrypt_msdu = 1;
6504 priv->ieee->host_decrypt = 1;
6505 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006506 } else {
6507 priv->ieee->host_encrypt = 0;
6508 priv->ieee->host_encrypt_msdu = 0;
6509 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006510 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006511 }
6512 }
6513
6514 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6515}
6516
6517/* SIOCGIWENCODEEXT */
6518static int ipw_wx_get_encodeext(struct net_device *dev,
6519 struct iw_request_info *info,
6520 union iwreq_data *wrqu, char *extra)
6521{
6522 struct ipw_priv *priv = ieee80211_priv(dev);
6523 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
6524}
6525
6526/* SIOCSIWMLME */
6527static int ipw_wx_set_mlme(struct net_device *dev,
6528 struct iw_request_info *info,
6529 union iwreq_data *wrqu, char *extra)
6530{
6531 struct ipw_priv *priv = ieee80211_priv(dev);
6532 struct iw_mlme *mlme = (struct iw_mlme *)extra;
6533 u16 reason;
6534
6535 reason = cpu_to_le16(mlme->reason_code);
6536
6537 switch (mlme->cmd) {
6538 case IW_MLME_DEAUTH:
6539 // silently ignore
6540 break;
6541
6542 case IW_MLME_DISASSOC:
6543 ipw_disassociate(priv);
6544 break;
6545
6546 default:
6547 return -EOPNOTSUPP;
6548 }
6549 return 0;
6550}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006551
James Ketrenosb095c382005-08-24 22:04:42 -05006552#ifdef CONFIG_IPW_QOS
6553
6554/* QoS */
6555/*
6556* get the modulation type of the current network or
6557* the card current mode
6558*/
6559u8 ipw_qos_current_mode(struct ipw_priv * priv)
6560{
6561 u8 mode = 0;
6562
6563 if (priv->status & STATUS_ASSOCIATED) {
6564 unsigned long flags;
6565
6566 spin_lock_irqsave(&priv->ieee->lock, flags);
6567 mode = priv->assoc_network->mode;
6568 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6569 } else {
6570 mode = priv->ieee->mode;
6571 }
6572 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
6573 return mode;
6574}
6575
6576/*
6577* Handle management frame beacon and probe response
6578*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006579static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6580 int active_network,
6581 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006582{
6583 u32 size = sizeof(struct ieee80211_qos_parameters);
6584
James Ketrenosafbf30a2005-08-25 00:05:33 -05006585 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006586 network->qos_data.active = network->qos_data.supported;
6587
6588 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006589 if (active_network &&
6590 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006591 network->qos_data.active = network->qos_data.supported;
6592
6593 if ((network->qos_data.active == 1) && (active_network == 1) &&
6594 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6595 (network->qos_data.old_param_count !=
6596 network->qos_data.param_count)) {
6597 network->qos_data.old_param_count =
6598 network->qos_data.param_count;
6599 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006600 IPW_DEBUG_QOS("QoS parameters change call "
6601 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006602 }
6603 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006604 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6605 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006606 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006607 else
6608 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006609 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006610
James Ketrenosb095c382005-08-24 22:04:42 -05006611 if ((network->qos_data.active == 1) && (active_network == 1)) {
6612 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
6613 schedule_work(&priv->qos_activate);
6614 }
6615
6616 network->qos_data.active = 0;
6617 network->qos_data.supported = 0;
6618 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006619 if ((priv->status & STATUS_ASSOCIATED) &&
6620 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
6621 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
6622 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
6623 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05006624 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006625 priv->assoc_network->ssid_len) &&
6626 !memcmp(network->ssid,
6627 priv->assoc_network->ssid,
6628 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006629 queue_work(priv->workqueue,
6630 &priv->merge_networks);
6631 }
James Ketrenosb095c382005-08-24 22:04:42 -05006632 }
6633
6634 return 0;
6635}
6636
6637/*
6638* This function set up the firmware to support QoS. It sends
6639* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6640*/
6641static int ipw_qos_activate(struct ipw_priv *priv,
6642 struct ieee80211_qos_data *qos_network_data)
6643{
6644 int err;
6645 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
6646 struct ieee80211_qos_parameters *active_one = NULL;
6647 u32 size = sizeof(struct ieee80211_qos_parameters);
6648 u32 burst_duration;
6649 int i;
6650 u8 type;
6651
6652 type = ipw_qos_current_mode(priv);
6653
6654 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6655 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6656 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6657 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6658
6659 if (qos_network_data == NULL) {
6660 if (type == IEEE_B) {
6661 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
6662 active_one = &def_parameters_CCK;
6663 } else
6664 active_one = &def_parameters_OFDM;
6665
James Ketrenosafbf30a2005-08-25 00:05:33 -05006666 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006667 burst_duration = ipw_qos_get_burst_duration(priv);
6668 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006669 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
6670 (u16) burst_duration;
6671 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05006672 if (type == IEEE_B) {
6673 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
6674 type);
6675 if (priv->qos_data.qos_enable == 0)
6676 active_one = &def_parameters_CCK;
6677 else
6678 active_one = priv->qos_data.def_qos_parm_CCK;
6679 } else {
6680 if (priv->qos_data.qos_enable == 0)
6681 active_one = &def_parameters_OFDM;
6682 else
6683 active_one = priv->qos_data.def_qos_parm_OFDM;
6684 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006685 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006686 } else {
6687 unsigned long flags;
6688 int active;
6689
6690 spin_lock_irqsave(&priv->ieee->lock, flags);
6691 active_one = &(qos_network_data->parameters);
6692 qos_network_data->old_param_count =
6693 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006694 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006695 active = qos_network_data->supported;
6696 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6697
6698 if (active == 0) {
6699 burst_duration = ipw_qos_get_burst_duration(priv);
6700 for (i = 0; i < QOS_QUEUE_NUM; i++)
6701 qos_parameters[QOS_PARAM_SET_ACTIVE].
6702 tx_op_limit[i] = (u16) burst_duration;
6703 }
6704 }
6705
6706 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05006707 err = ipw_send_qos_params_command(priv,
6708 (struct ieee80211_qos_parameters *)
6709 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05006710 if (err)
6711 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
6712
6713 return err;
6714}
6715
6716/*
6717* send IPW_CMD_WME_INFO to the firmware
6718*/
6719static int ipw_qos_set_info_element(struct ipw_priv *priv)
6720{
6721 int ret = 0;
6722 struct ieee80211_qos_information_element qos_info;
6723
6724 if (priv == NULL)
6725 return -1;
6726
6727 qos_info.elementID = QOS_ELEMENT_ID;
6728 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
6729
6730 qos_info.version = QOS_VERSION_1;
6731 qos_info.ac_info = 0;
6732
6733 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
6734 qos_info.qui_type = QOS_OUI_TYPE;
6735 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
6736
6737 ret = ipw_send_qos_info_command(priv, &qos_info);
6738 if (ret != 0) {
6739 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
6740 }
6741 return ret;
6742}
6743
6744/*
6745* Set the QoS parameter with the association request structure
6746*/
6747static int ipw_qos_association(struct ipw_priv *priv,
6748 struct ieee80211_network *network)
6749{
6750 int err = 0;
6751 struct ieee80211_qos_data *qos_data = NULL;
6752 struct ieee80211_qos_data ibss_data = {
6753 .supported = 1,
6754 .active = 1,
6755 };
6756
6757 switch (priv->ieee->iw_mode) {
6758 case IW_MODE_ADHOC:
6759 if (!(network->capability & WLAN_CAPABILITY_IBSS))
6760 BUG();
6761
6762 qos_data = &ibss_data;
6763 break;
6764
6765 case IW_MODE_INFRA:
6766 qos_data = &network->qos_data;
6767 break;
6768
6769 default:
6770 BUG();
6771 break;
6772 }
6773
6774 err = ipw_qos_activate(priv, qos_data);
6775 if (err) {
6776 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
6777 return err;
6778 }
6779
6780 if (priv->qos_data.qos_enable && qos_data->supported) {
6781 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
6782 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
6783 return ipw_qos_set_info_element(priv);
6784 }
6785
6786 return 0;
6787}
6788
6789/*
6790* handling the beaconing responces. if we get different QoS setting
6791* of the network from the the associated setting adjust the QoS
6792* setting
6793*/
6794static int ipw_qos_association_resp(struct ipw_priv *priv,
6795 struct ieee80211_network *network)
6796{
6797 int ret = 0;
6798 unsigned long flags;
6799 u32 size = sizeof(struct ieee80211_qos_parameters);
6800 int set_qos_param = 0;
6801
James Ketrenosafbf30a2005-08-25 00:05:33 -05006802 if ((priv == NULL) || (network == NULL) ||
6803 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05006804 return ret;
6805
6806 if (!(priv->status & STATUS_ASSOCIATED))
6807 return ret;
6808
James Ketrenosafbf30a2005-08-25 00:05:33 -05006809 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05006810 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05006811
6812 spin_lock_irqsave(&priv->ieee->lock, flags);
6813 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006814 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05006815 sizeof(struct ieee80211_qos_data));
6816 priv->assoc_network->qos_data.active = 1;
6817 if ((network->qos_data.old_param_count !=
6818 network->qos_data.param_count)) {
6819 set_qos_param = 1;
6820 network->qos_data.old_param_count =
6821 network->qos_data.param_count;
6822 }
6823
6824 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006825 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
6826 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006827 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006828 else
6829 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006830 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006831 priv->assoc_network->qos_data.active = 0;
6832 priv->assoc_network->qos_data.supported = 0;
6833 set_qos_param = 1;
6834 }
6835
6836 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6837
6838 if (set_qos_param == 1)
6839 schedule_work(&priv->qos_activate);
6840
6841 return ret;
6842}
6843
6844static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
6845{
6846 u32 ret = 0;
6847
6848 if ((priv == NULL))
6849 return 0;
6850
James Ketrenosafbf30a2005-08-25 00:05:33 -05006851 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05006852 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006853 else
James Ketrenosb095c382005-08-24 22:04:42 -05006854 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006855
James Ketrenosb095c382005-08-24 22:04:42 -05006856 return ret;
6857}
6858
6859/*
6860* Initialize the setting of QoS global
6861*/
6862static void ipw_qos_init(struct ipw_priv *priv, int enable,
6863 int burst_enable, u32 burst_duration_CCK,
6864 u32 burst_duration_OFDM)
6865{
6866 priv->qos_data.qos_enable = enable;
6867
6868 if (priv->qos_data.qos_enable) {
6869 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
6870 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
6871 IPW_DEBUG_QOS("QoS is enabled\n");
6872 } else {
6873 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
6874 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
6875 IPW_DEBUG_QOS("QoS is not enabled\n");
6876 }
6877
6878 priv->qos_data.burst_enable = burst_enable;
6879
6880 if (burst_enable) {
6881 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
6882 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
6883 } else {
6884 priv->qos_data.burst_duration_CCK = 0;
6885 priv->qos_data.burst_duration_OFDM = 0;
6886 }
6887}
6888
6889/*
6890* map the packet priority to the right TX Queue
6891*/
6892static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
6893{
6894 if (priority > 7 || !priv->qos_data.qos_enable)
6895 priority = 0;
6896
6897 return from_priority_to_tx_queue[priority] - 1;
6898}
6899
6900/*
6901* add QoS parameter to the TX command
6902*/
6903static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
6904 u16 priority,
6905 struct tfd_data *tfd, u8 unicast)
6906{
6907 int ret = 0;
6908 int tx_queue_id = 0;
6909 struct ieee80211_qos_data *qos_data = NULL;
6910 int active, supported;
6911 unsigned long flags;
6912
6913 if (!(priv->status & STATUS_ASSOCIATED))
6914 return 0;
6915
6916 qos_data = &priv->assoc_network->qos_data;
6917
6918 spin_lock_irqsave(&priv->ieee->lock, flags);
6919
6920 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
6921 if (unicast == 0)
6922 qos_data->active = 0;
6923 else
6924 qos_data->active = qos_data->supported;
6925 }
6926
6927 active = qos_data->active;
6928 supported = qos_data->supported;
6929
6930 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6931
James Ketrenosafbf30a2005-08-25 00:05:33 -05006932 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
6933 "unicast %d\n",
6934 priv->qos_data.qos_enable, active, supported, unicast);
James Ketrenosb095c382005-08-24 22:04:42 -05006935 if (active && priv->qos_data.qos_enable) {
6936 ret = from_priority_to_tx_queue[priority];
6937 tx_queue_id = ret - 1;
6938 IPW_DEBUG_QOS("QoS packet priority is %d \n", priority);
6939 if (priority <= 7) {
6940 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
6941 tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
6942 tfd->tfd.tfd_26.mchdr.frame_ctl |=
6943 IEEE80211_STYPE_QOS_DATA;
6944
6945 if (priv->qos_data.qos_no_ack_mask &
6946 (1UL << tx_queue_id)) {
6947 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
6948 tfd->tfd.tfd_26.mchdr.qos_ctrl |=
6949 CTRL_QOS_NO_ACK;
6950 }
6951 }
6952 }
6953
6954 return ret;
6955}
6956
6957/*
6958* background support to run QoS activate functionality
6959*/
6960static void ipw_bg_qos_activate(void *data)
6961{
6962 struct ipw_priv *priv = data;
6963
6964 if (priv == NULL)
6965 return;
6966
6967 down(&priv->sem);
6968
6969 if (priv->status & STATUS_ASSOCIATED)
6970 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
6971
6972 up(&priv->sem);
6973}
6974
James Ketrenos3b9990c2005-08-19 13:18:55 -05006975static int ipw_handle_probe_response(struct net_device *dev,
6976 struct ieee80211_probe_response *resp,
6977 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006978{
6979 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05006980 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
6981 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05006982
James Ketrenos3b9990c2005-08-19 13:18:55 -05006983 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05006984
James Ketrenos3b9990c2005-08-19 13:18:55 -05006985 return 0;
6986}
James Ketrenosb095c382005-08-24 22:04:42 -05006987
James Ketrenos3b9990c2005-08-19 13:18:55 -05006988static int ipw_handle_beacon(struct net_device *dev,
6989 struct ieee80211_beacon *resp,
6990 struct ieee80211_network *network)
6991{
6992 struct ipw_priv *priv = ieee80211_priv(dev);
6993 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
6994 (network == priv->assoc_network));
6995
6996 ipw_qos_handle_probe_response(priv, active_network, network);
6997
6998 return 0;
6999}
7000
7001static int ipw_handle_assoc_response(struct net_device *dev,
7002 struct ieee80211_assoc_response *resp,
7003 struct ieee80211_network *network)
7004{
7005 struct ipw_priv *priv = ieee80211_priv(dev);
7006 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007007 return 0;
7008}
7009
7010static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
7011 *qos_param)
7012{
7013 struct host_cmd cmd = {
7014 .cmd = IPW_CMD_QOS_PARAMETERS,
7015 .len = (sizeof(struct ieee80211_qos_parameters) * 3)
7016 };
7017
James Ketrenosafbf30a2005-08-25 00:05:33 -05007018 memcpy(cmd.param, qos_param, sizeof(*qos_param) * 3);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007019 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007020}
7021
7022static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
7023 *qos_param)
7024{
7025 struct host_cmd cmd = {
7026 .cmd = IPW_CMD_WME_INFO,
7027 .len = sizeof(*qos_param)
7028 };
7029
James Ketrenosafbf30a2005-08-25 00:05:33 -05007030 memcpy(cmd.param, qos_param, sizeof(*qos_param));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007031 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007032}
7033
7034#endif /* CONFIG_IPW_QOS */
7035
James Ketrenos43f66a62005-03-25 12:31:53 -06007036static int ipw_associate_network(struct ipw_priv *priv,
7037 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007038 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007039{
7040 int err;
7041
7042 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007043 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007044
7045 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007046 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007047 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007048 memcpy(priv->essid, network->ssid, priv->essid_len);
7049 }
7050
7051 network->last_associate = jiffies;
7052
7053 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7054 priv->assoc_request.channel = network->channel;
7055 if ((priv->capability & CAP_PRIVACY_ON) &&
7056 (priv->capability & CAP_SHARED_KEY)) {
7057 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007058 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7059
7060 if ((priv->capability & CAP_PRIVACY_ON) &&
7061 (priv->ieee->sec.level == SEC_LEVEL_1) &&
7062 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
7063 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenos43f66a62005-03-25 12:31:53 -06007064 } else {
7065 priv->assoc_request.auth_type = AUTH_OPEN;
7066 priv->assoc_request.auth_key = 0;
7067 }
7068
James Ketrenosa613bff2005-08-24 21:43:11 -05007069 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007070 priv->assoc_request.policy_support = 0x02; /* RSN active */
7071 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7072 priv->ieee->wpa_ie_len);
7073 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007074
Jeff Garzikbf794512005-07-31 13:07:26 -04007075 /*
7076 * It is valid for our ieee device to support multiple modes, but
7077 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007078 * just one mode.
7079 */
7080 if (network->mode & priv->ieee->mode & IEEE_A)
7081 priv->assoc_request.ieee_mode = IPW_A_MODE;
7082 else if (network->mode & priv->ieee->mode & IEEE_G)
7083 priv->assoc_request.ieee_mode = IPW_G_MODE;
7084 else if (network->mode & priv->ieee->mode & IEEE_B)
7085 priv->assoc_request.ieee_mode = IPW_B_MODE;
7086
James Ketrenosea2b26e2005-08-24 21:25:16 -05007087 priv->assoc_request.capability = network->capability;
7088 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7089 && !(priv->config & CFG_PREAMBLE_LONG)) {
7090 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7091 } else {
7092 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7093
7094 /* Clear the short preamble if we won't be supporting it */
7095 priv->assoc_request.capability &=
7096 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7097 }
7098
James Ketrenosafbf30a2005-08-25 00:05:33 -05007099 /* Clear capability bits that aren't used in Ad Hoc */
7100 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7101 priv->assoc_request.capability &=
7102 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7103
James Ketrenos43f66a62005-03-25 12:31:53 -06007104 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007105 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007106 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007107 escape_essid(priv->essid, priv->essid_len),
7108 network->channel,
7109 ipw_modes[priv->assoc_request.ieee_mode],
7110 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007111 (priv->assoc_request.preamble_length ==
7112 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7113 network->capability &
7114 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007115 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007116 priv->capability & CAP_PRIVACY_ON ?
7117 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007118 "(open)") : "",
7119 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007120 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007121 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007122 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007123
7124 priv->assoc_request.beacon_interval = network->beacon_interval;
7125 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007126 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007127 priv->assoc_request.assoc_type = HC_IBSS_START;
7128 priv->assoc_request.assoc_tsf_msw = 0;
7129 priv->assoc_request.assoc_tsf_lsw = 0;
7130 } else {
7131 if (unlikely(roaming))
7132 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7133 else
7134 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7135 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7136 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7137 }
7138
James Ketrenosafbf30a2005-08-25 00:05:33 -05007139 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007140
7141 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7142 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7143 priv->assoc_request.atim_window = network->atim_window;
7144 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007145 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007146 priv->assoc_request.atim_window = 0;
7147 }
7148
James Ketrenos43f66a62005-03-25 12:31:53 -06007149 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007150
James Ketrenos43f66a62005-03-25 12:31:53 -06007151 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7152 if (err) {
7153 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7154 return err;
7155 }
7156
7157 rates->ieee_mode = priv->assoc_request.ieee_mode;
7158 rates->purpose = IPW_RATE_CONNECT;
7159 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007160
James Ketrenos43f66a62005-03-25 12:31:53 -06007161 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7162 priv->sys_config.dot11g_auto_detection = 1;
7163 else
7164 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007165
7166 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7167 priv->sys_config.answer_broadcast_ssid_probe = 1;
7168 else
7169 priv->sys_config.answer_broadcast_ssid_probe = 0;
7170
James Ketrenos43f66a62005-03-25 12:31:53 -06007171 err = ipw_send_system_config(priv, &priv->sys_config);
7172 if (err) {
7173 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7174 return err;
7175 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007176
James Ketrenos43f66a62005-03-25 12:31:53 -06007177 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007178 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007179 if (err) {
7180 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7181 return err;
7182 }
7183
7184 /*
7185 * If preemption is enabled, it is possible for the association
7186 * to complete before we return from ipw_send_associate. Therefore
7187 * we have to be sure and update our priviate data first.
7188 */
7189 priv->channel = network->channel;
7190 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007191 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007192 priv->status &= ~STATUS_SECURITY_UPDATED;
7193
7194 priv->assoc_network = network;
7195
James Ketrenosb095c382005-08-24 22:04:42 -05007196#ifdef CONFIG_IPW_QOS
7197 ipw_qos_association(priv, network);
7198#endif
7199
James Ketrenos43f66a62005-03-25 12:31:53 -06007200 err = ipw_send_associate(priv, &priv->assoc_request);
7201 if (err) {
7202 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7203 return err;
7204 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007205
7206 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007207 escape_essid(priv->essid, priv->essid_len),
7208 MAC_ARG(priv->bssid));
7209
7210 return 0;
7211}
7212
7213static void ipw_roam(void *data)
7214{
7215 struct ipw_priv *priv = data;
7216 struct ieee80211_network *network = NULL;
7217 struct ipw_network_match match = {
7218 .network = priv->assoc_network
7219 };
7220
7221 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007222 *
7223 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007224 * setting the status ROAM bit and requesting a scan.
7225 * 2. When the scan completes, it schedules the ROAM work
7226 * 3. The ROAM work looks at all of the known networks for one that
7227 * is a better network than the currently associated. If none
7228 * found, the ROAM process is over (ROAM bit cleared)
7229 * 4. If a better network is found, a disassociation request is
7230 * sent.
7231 * 5. When the disassociation completes, the roam work is again
7232 * scheduled. The second time through, the driver is no longer
7233 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007234 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007235 * 6. At this point ,the roaming process is complete and the ROAM
7236 * status bit is cleared.
7237 */
7238
7239 /* If we are no longer associated, and the roaming bit is no longer
7240 * set, then we are not actively roaming, so just return */
7241 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7242 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007243
James Ketrenos43f66a62005-03-25 12:31:53 -06007244 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007245 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007246 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007247 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007248 u8 rssi = priv->assoc_network->stats.rssi;
7249 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007250 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007251 list_for_each_entry(network, &priv->ieee->network_list, list) {
7252 if (network != priv->assoc_network)
7253 ipw_best_network(priv, &match, network, 1);
7254 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007255 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007256 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007257
James Ketrenos43f66a62005-03-25 12:31:53 -06007258 if (match.network == priv->assoc_network) {
7259 IPW_DEBUG_ASSOC("No better APs in this network to "
7260 "roam to.\n");
7261 priv->status &= ~STATUS_ROAMING;
7262 ipw_debug_config(priv);
7263 return;
7264 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007265
James Ketrenos43f66a62005-03-25 12:31:53 -06007266 ipw_send_disassociate(priv, 1);
7267 priv->assoc_network = match.network;
7268
7269 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007270 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007271
7272 /* Second pass through ROAM process -- request association */
7273 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7274 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7275 priv->status &= ~STATUS_ROAMING;
7276}
7277
James Ketrenosc848d0a2005-08-24 21:56:24 -05007278static void ipw_bg_roam(void *data)
7279{
7280 struct ipw_priv *priv = data;
7281 down(&priv->sem);
7282 ipw_roam(data);
7283 up(&priv->sem);
7284}
7285
7286static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007287{
7288 struct ipw_priv *priv = data;
7289
7290 struct ieee80211_network *network = NULL;
7291 struct ipw_network_match match = {
7292 .network = NULL
7293 };
7294 struct ipw_supported_rates *rates;
7295 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007296 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007297
James Ketrenosb095c382005-08-24 22:04:42 -05007298 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7299 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7300 return 0;
7301 }
7302
James Ketrenosc848d0a2005-08-24 21:56:24 -05007303 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007304 IPW_DEBUG_ASSOC("Not attempting association (already in "
7305 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007306 return 0;
7307 }
7308
Hong Liue6324722005-09-14 21:04:15 -05007309 if (priv->status & STATUS_DISASSOCIATING) {
7310 IPW_DEBUG_ASSOC("Not attempting association (in "
7311 "disassociating)\n ");
7312 queue_work(priv->workqueue, &priv->associate);
7313 return 0;
7314 }
7315
James Ketrenosc848d0a2005-08-24 21:56:24 -05007316 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007317 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7318 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007319 return 0;
7320 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007321
7322 if (!(priv->config & CFG_ASSOCIATE) &&
7323 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007324 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007325 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007326 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007327 }
7328
James Ketrenosa613bff2005-08-24 21:43:11 -05007329 /* Protect our use of the network_list */
7330 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007331 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007332 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007333
7334 network = match.network;
7335 rates = &match.rates;
7336
7337 if (network == NULL &&
7338 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7339 priv->config & CFG_ADHOC_CREATE &&
7340 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007341 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007342 !list_empty(&priv->ieee->network_free_list)) {
7343 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007344 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007345 ipw_adhoc_create(priv, network);
7346 rates = &priv->rates;
7347 list_del(element);
7348 list_add_tail(&network->list, &priv->ieee->network_list);
7349 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007350 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007351
James Ketrenos43f66a62005-03-25 12:31:53 -06007352 /* If we reached the end of the list, then we don't have any valid
7353 * matching APs */
7354 if (!network) {
7355 ipw_debug_config(priv);
7356
James Ketrenosb095c382005-08-24 22:04:42 -05007357 if (!(priv->status & STATUS_SCANNING)) {
7358 if (!(priv->config & CFG_SPEED_SCAN))
7359 queue_delayed_work(priv->workqueue,
7360 &priv->request_scan,
7361 SCAN_INTERVAL);
7362 else
7363 queue_work(priv->workqueue,
7364 &priv->request_scan);
7365 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007366
James Ketrenosc848d0a2005-08-24 21:56:24 -05007367 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007368 }
7369
7370 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007371
7372 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007373}
Jeff Garzikbf794512005-07-31 13:07:26 -04007374
James Ketrenosc848d0a2005-08-24 21:56:24 -05007375static void ipw_bg_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007376{
James Ketrenosc848d0a2005-08-24 21:56:24 -05007377 struct ipw_priv *priv = data;
7378 down(&priv->sem);
7379 ipw_associate(data);
7380 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06007381}
7382
James Ketrenosb095c382005-08-24 22:04:42 -05007383static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7384 struct sk_buff *skb)
7385{
7386 struct ieee80211_hdr *hdr;
7387 u16 fc;
7388
7389 hdr = (struct ieee80211_hdr *)skb->data;
7390 fc = le16_to_cpu(hdr->frame_ctl);
7391 if (!(fc & IEEE80211_FCTL_PROTECTED))
7392 return;
7393
7394 fc &= ~IEEE80211_FCTL_PROTECTED;
7395 hdr->frame_ctl = cpu_to_le16(fc);
7396 switch (priv->ieee->sec.level) {
7397 case SEC_LEVEL_3:
7398 /* Remove CCMP HDR */
7399 memmove(skb->data + IEEE80211_3ADDR_LEN,
7400 skb->data + IEEE80211_3ADDR_LEN + 8,
7401 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007402 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007403 break;
7404 case SEC_LEVEL_2:
7405 break;
7406 case SEC_LEVEL_1:
7407 /* Remove IV */
7408 memmove(skb->data + IEEE80211_3ADDR_LEN,
7409 skb->data + IEEE80211_3ADDR_LEN + 4,
7410 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007411 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007412 break;
7413 case SEC_LEVEL_0:
7414 break;
7415 default:
7416 printk(KERN_ERR "Unknow security level %d\n",
7417 priv->ieee->sec.level);
7418 break;
7419 }
7420}
7421
7422static void ipw_handle_data_packet(struct ipw_priv *priv,
7423 struct ipw_rx_mem_buffer *rxb,
7424 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007425{
Hong Liu567deaf2005-08-31 18:07:22 +08007426 struct ieee80211_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007427 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7428
7429 /* We received data from the HW, so stop the watchdog */
7430 priv->net_dev->trans_start = jiffies;
7431
Jeff Garzikbf794512005-07-31 13:07:26 -04007432 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007433 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007434 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007435 skb_tailroom(rxb->skb))) {
7436 priv->ieee->stats.rx_errors++;
7437 priv->wstats.discard.misc++;
7438 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7439 return;
7440 } else if (unlikely(!netif_running(priv->net_dev))) {
7441 priv->ieee->stats.rx_dropped++;
7442 priv->wstats.discard.misc++;
7443 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7444 return;
7445 }
7446
7447 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007448 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007449
7450 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007451 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007452
7453 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7454
James Ketrenosb095c382005-08-24 22:04:42 -05007455 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
Hong Liu567deaf2005-08-31 18:07:22 +08007456 hdr = (struct ieee80211_hdr_4addr *)rxb->skb->data;
7457 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Stephen Hemminger3c190652006-01-03 15:27:38 -08007458 (is_multicast_ether_addr(hdr->addr1) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007459 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007460 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7461
Jeff Garzikbf794512005-07-31 13:07:26 -04007462 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007463 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007464 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007465 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007466 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007467 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007468}
7469
Mike Kershaw24a47db2005-08-26 00:41:54 -05007470#ifdef CONFIG_IEEE80211_RADIOTAP
7471static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7472 struct ipw_rx_mem_buffer *rxb,
7473 struct ieee80211_rx_stats *stats)
7474{
7475 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7476 struct ipw_rx_frame *frame = &pkt->u.frame;
7477
7478 /* initial pull of some data */
7479 u16 received_channel = frame->received_channel;
7480 u8 antennaAndPhy = frame->antennaAndPhy;
7481 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7482 u16 pktrate = frame->rate;
7483
7484 /* Magic struct that slots into the radiotap header -- no reason
7485 * to build this manually element by element, we can write it much
7486 * more efficiently than we can parse it. ORDER MATTERS HERE */
7487 struct ipw_rt_hdr {
7488 struct ieee80211_radiotap_header rt_hdr;
7489 u8 rt_flags; /* radiotap packet flags */
7490 u8 rt_rate; /* rate in 500kb/s */
7491 u16 rt_channel; /* channel in mhz */
7492 u16 rt_chbitmask; /* channel bitfield */
7493 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
7494 u8 rt_antenna; /* antenna number */
7495 } *ipw_rt;
7496
7497 short len = le16_to_cpu(pkt->u.frame.length);
7498
7499 /* We received data from the HW, so stop the watchdog */
7500 priv->net_dev->trans_start = jiffies;
7501
7502 /* We only process data packets if the
7503 * interface is open */
7504 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7505 skb_tailroom(rxb->skb))) {
7506 priv->ieee->stats.rx_errors++;
7507 priv->wstats.discard.misc++;
7508 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7509 return;
7510 } else if (unlikely(!netif_running(priv->net_dev))) {
7511 priv->ieee->stats.rx_dropped++;
7512 priv->wstats.discard.misc++;
7513 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7514 return;
7515 }
7516
7517 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7518 * that now */
7519 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7520 /* FIXME: Should alloc bigger skb instead */
7521 priv->ieee->stats.rx_dropped++;
7522 priv->wstats.discard.misc++;
7523 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7524 return;
7525 }
7526
7527 /* copy the frame itself */
7528 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7529 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7530
7531 /* Zero the radiotap static buffer ... We only need to zero the bytes NOT
7532 * part of our real header, saves a little time.
7533 *
7534 * No longer necessary since we fill in all our data. Purge before merging
7535 * patch officially.
7536 * memset(rxb->skb->data + sizeof(struct ipw_rt_hdr), 0,
7537 * IEEE80211_RADIOTAP_HDRLEN - sizeof(struct ipw_rt_hdr));
7538 */
7539
7540 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7541
7542 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7543 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
7544 ipw_rt->rt_hdr.it_len = sizeof(struct ipw_rt_hdr); /* total header+data */
7545
7546 /* Big bitfield of all the fields we provide in radiotap */
7547 ipw_rt->rt_hdr.it_present =
7548 ((1 << IEEE80211_RADIOTAP_FLAGS) |
7549 (1 << IEEE80211_RADIOTAP_RATE) |
7550 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7551 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
7552 (1 << IEEE80211_RADIOTAP_ANTENNA));
7553
7554 /* Zero the flags, we'll add to them as we go */
7555 ipw_rt->rt_flags = 0;
7556
7557 /* Convert signal to DBM */
7558 ipw_rt->rt_dbmsignal = antsignal;
7559
7560 /* Convert the channel data and set the flags */
7561 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7562 if (received_channel > 14) { /* 802.11a */
7563 ipw_rt->rt_chbitmask =
7564 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7565 } else if (antennaAndPhy & 32) { /* 802.11b */
7566 ipw_rt->rt_chbitmask =
7567 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7568 } else { /* 802.11g */
7569 ipw_rt->rt_chbitmask =
7570 (IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
7571 }
7572
7573 /* set the rate in multiples of 500k/s */
7574 switch (pktrate) {
7575 case IPW_TX_RATE_1MB:
7576 ipw_rt->rt_rate = 2;
7577 break;
7578 case IPW_TX_RATE_2MB:
7579 ipw_rt->rt_rate = 4;
7580 break;
7581 case IPW_TX_RATE_5MB:
7582 ipw_rt->rt_rate = 10;
7583 break;
7584 case IPW_TX_RATE_6MB:
7585 ipw_rt->rt_rate = 12;
7586 break;
7587 case IPW_TX_RATE_9MB:
7588 ipw_rt->rt_rate = 18;
7589 break;
7590 case IPW_TX_RATE_11MB:
7591 ipw_rt->rt_rate = 22;
7592 break;
7593 case IPW_TX_RATE_12MB:
7594 ipw_rt->rt_rate = 24;
7595 break;
7596 case IPW_TX_RATE_18MB:
7597 ipw_rt->rt_rate = 36;
7598 break;
7599 case IPW_TX_RATE_24MB:
7600 ipw_rt->rt_rate = 48;
7601 break;
7602 case IPW_TX_RATE_36MB:
7603 ipw_rt->rt_rate = 72;
7604 break;
7605 case IPW_TX_RATE_48MB:
7606 ipw_rt->rt_rate = 96;
7607 break;
7608 case IPW_TX_RATE_54MB:
7609 ipw_rt->rt_rate = 108;
7610 break;
7611 default:
7612 ipw_rt->rt_rate = 0;
7613 break;
7614 }
7615
7616 /* antenna number */
7617 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7618
7619 /* set the preamble flag if we have it */
7620 if ((antennaAndPhy & 64))
7621 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7622
7623 /* Set the size of the skb to the size of the frame */
7624 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007625
7626 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7627
7628 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
7629 priv->ieee->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007630 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007631 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007632 /* no LED during capture */
7633 }
7634}
7635#endif
7636
Arjan van de Ven858119e2006-01-14 13:20:43 -08007637static int is_network_packet(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007638 struct ieee80211_hdr_4addr *header)
7639{
7640 /* Filter incoming packets to determine if they are targetted toward
7641 * this network, discarding packets coming from ourselves */
7642 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05007643 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007644 /* packets from our adapter are dropped (echo) */
7645 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
7646 return 0;
7647
Peter Jones90700fd2005-08-26 16:51:06 -05007648 /* {broad,multi}cast packets to our BSSID go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08007649 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05007650 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007651
7652 /* packets to our adapter go through */
7653 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7654 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007655
Peter Jones90700fd2005-08-26 16:51:06 -05007656 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007657 /* packets from our adapter are dropped (echo) */
7658 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
7659 return 0;
7660
Peter Jones90700fd2005-08-26 16:51:06 -05007661 /* {broad,multi}cast packets to our BSS go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08007662 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05007663 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
7664
7665 /* packets to our adapter go through */
7666 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7667 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007668 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007669
James Ketrenosea2b26e2005-08-24 21:25:16 -05007670 return 1;
7671}
7672
James Ketrenosafbf30a2005-08-25 00:05:33 -05007673#define IPW_PACKET_RETRY_TIME HZ
7674
Arjan van de Ven858119e2006-01-14 13:20:43 -08007675static int is_duplicate_packet(struct ipw_priv *priv,
James Ketrenosafbf30a2005-08-25 00:05:33 -05007676 struct ieee80211_hdr_4addr *header)
7677{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007678 u16 sc = le16_to_cpu(header->seq_ctl);
7679 u16 seq = WLAN_GET_SEQ_SEQ(sc);
7680 u16 frag = WLAN_GET_SEQ_FRAG(sc);
7681 u16 *last_seq, *last_frag;
7682 unsigned long *last_time;
7683
7684 switch (priv->ieee->iw_mode) {
7685 case IW_MODE_ADHOC:
7686 {
7687 struct list_head *p;
7688 struct ipw_ibss_seq *entry = NULL;
7689 u8 *mac = header->addr2;
7690 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
7691
7692 __list_for_each(p, &priv->ibss_mac_hash[index]) {
7693 entry =
7694 list_entry(p, struct ipw_ibss_seq, list);
7695 if (!memcmp(entry->mac, mac, ETH_ALEN))
7696 break;
7697 }
7698 if (p == &priv->ibss_mac_hash[index]) {
7699 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
7700 if (!entry) {
7701 IPW_ERROR
7702 ("Cannot malloc new mac entry\n");
7703 return 0;
7704 }
7705 memcpy(entry->mac, mac, ETH_ALEN);
7706 entry->seq_num = seq;
7707 entry->frag_num = frag;
7708 entry->packet_time = jiffies;
7709 list_add(&entry->list,
7710 &priv->ibss_mac_hash[index]);
7711 return 0;
7712 }
7713 last_seq = &entry->seq_num;
7714 last_frag = &entry->frag_num;
7715 last_time = &entry->packet_time;
7716 break;
7717 }
7718 case IW_MODE_INFRA:
7719 last_seq = &priv->last_seq_num;
7720 last_frag = &priv->last_frag_num;
7721 last_time = &priv->last_packet_time;
7722 break;
7723 default:
7724 return 0;
7725 }
7726 if ((*last_seq == seq) &&
7727 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
7728 if (*last_frag == frag)
7729 goto drop;
7730 if (*last_frag + 1 != frag)
7731 /* out-of-order fragment */
7732 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007733 } else
7734 *last_seq = seq;
7735
Zhu Yif57ce7c2005-07-13 12:22:15 -05007736 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007737 *last_time = jiffies;
7738 return 0;
7739
7740 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08007741 /* Comment this line now since we observed the card receives
7742 * duplicate packets but the FCTL_RETRY bit is not set in the
7743 * IBSS mode with fragmentation enabled.
7744 BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05007745 return 1;
7746}
7747
James Ketrenosb095c382005-08-24 22:04:42 -05007748static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
7749 struct ipw_rx_mem_buffer *rxb,
7750 struct ieee80211_rx_stats *stats)
7751{
7752 struct sk_buff *skb = rxb->skb;
7753 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
7754 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
7755 (skb->data + IPW_RX_FRAME_SIZE);
7756
7757 ieee80211_rx_mgt(priv->ieee, header, stats);
7758
7759 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
7760 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7761 IEEE80211_STYPE_PROBE_RESP) ||
7762 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7763 IEEE80211_STYPE_BEACON))) {
7764 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
7765 ipw_add_station(priv, header->addr2);
7766 }
7767
7768 if (priv->config & CFG_NET_STATS) {
7769 IPW_DEBUG_HC("sending stat packet\n");
7770
7771 /* Set the size of the skb to the size of the full
7772 * ipw header and 802.11 frame */
7773 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
7774 IPW_RX_FRAME_SIZE);
7775
7776 /* Advance past the ipw packet header to the 802.11 frame */
7777 skb_pull(skb, IPW_RX_FRAME_SIZE);
7778
7779 /* Push the ieee80211_rx_stats before the 802.11 frame */
7780 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
7781
7782 skb->dev = priv->ieee->dev;
7783
7784 /* Point raw at the ieee80211_stats */
7785 skb->mac.raw = skb->data;
7786
7787 skb->pkt_type = PACKET_OTHERHOST;
7788 skb->protocol = __constant_htons(ETH_P_80211_STATS);
7789 memset(skb->cb, 0, sizeof(rxb->skb->cb));
7790 netif_rx(skb);
7791 rxb->skb = NULL;
7792 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007793}
7794
James Ketrenos43f66a62005-03-25 12:31:53 -06007795/*
7796 * Main entry function for recieving a packet with 80211 headers. This
7797 * should be called when ever the FW has notified us that there is a new
7798 * skb in the recieve queue.
7799 */
7800static void ipw_rx(struct ipw_priv *priv)
7801{
7802 struct ipw_rx_mem_buffer *rxb;
7803 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05007804 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06007805 u32 r, w, i;
7806 u8 network_packet;
7807
James Ketrenosb095c382005-08-24 22:04:42 -05007808 r = ipw_read32(priv, IPW_RX_READ_INDEX);
7809 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06007810 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
7811
7812 while (i != r) {
7813 rxb = priv->rxq->queue[i];
Brice Goglin0f52bf92005-12-01 01:41:46 -08007814#ifdef CONFIG_IPW2200_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -06007815 if (unlikely(rxb == NULL)) {
7816 printk(KERN_CRIT "Queue not allocated!\n");
7817 break;
7818 }
7819#endif
7820 priv->rxq->queue[i] = NULL;
7821
7822 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007823 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06007824 PCI_DMA_FROMDEVICE);
7825
7826 pkt = (struct ipw_rx_packet *)rxb->skb->data;
7827 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
7828 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007829 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06007830
7831 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007832 case RX_FRAME_TYPE: /* 802.11 frame */ {
7833 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05007834 .rssi =
7835 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007836 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05007837 .signal =
7838 le16_to_cpu(pkt->u.frame.signal),
7839 .noise =
7840 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007841 .rate = pkt->u.frame.rate,
7842 .mac_time = jiffies,
7843 .received_channel =
7844 pkt->u.frame.received_channel,
7845 .freq =
7846 (pkt->u.frame.
7847 control & (1 << 0)) ?
7848 IEEE80211_24GHZ_BAND :
7849 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05007850 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007851 };
James Ketrenos43f66a62005-03-25 12:31:53 -06007852
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007853 if (stats.rssi != 0)
7854 stats.mask |= IEEE80211_STATMASK_RSSI;
7855 if (stats.signal != 0)
7856 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007857 if (stats.noise != 0)
7858 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007859 if (stats.rate != 0)
7860 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06007861
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007862 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007863
James Ketrenosb095c382005-08-24 22:04:42 -05007864#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007865 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05007866#ifdef CONFIG_IEEE80211_RADIOTAP
7867 ipw_handle_data_packet_monitor(priv,
7868 rxb,
7869 &stats);
7870#else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007871 ipw_handle_data_packet(priv, rxb,
7872 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007873#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007874 break;
7875 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007876#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04007877
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007878 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05007879 (struct ieee80211_hdr_4addr *)(rxb->skb->
7880 data +
7881 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007882 /* TODO: Check Ad-Hoc dest/source and make sure
7883 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04007884 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06007885 * frame control of the packet and disregard
7886 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06007887
James Ketrenosea2b26e2005-08-24 21:25:16 -05007888 network_packet =
7889 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007890 if (network_packet && priv->assoc_network) {
7891 priv->assoc_network->stats.rssi =
7892 stats.rssi;
7893 average_add(&priv->average_rssi,
7894 stats.rssi);
7895 priv->last_rx_rssi = stats.rssi;
7896 }
7897
7898 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05007899 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007900
James Ketrenosa613bff2005-08-24 21:43:11 -05007901 if (le16_to_cpu(pkt->u.frame.length) <
7902 frame_hdr_len(header)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007903 IPW_DEBUG_DROP
7904 ("Received packet is too small. "
7905 "Dropping.\n");
7906 priv->ieee->stats.rx_errors++;
7907 priv->wstats.discard.misc++;
7908 break;
7909 }
7910
James Ketrenosa613bff2005-08-24 21:43:11 -05007911 switch (WLAN_FC_GET_TYPE
7912 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05007913
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007914 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05007915 ipw_handle_mgmt_packet(priv, rxb,
7916 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007917 break;
7918
7919 case IEEE80211_FTYPE_CTL:
7920 break;
7921
7922 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05007923 if (unlikely(!network_packet ||
7924 is_duplicate_packet(priv,
7925 header)))
7926 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007927 IPW_DEBUG_DROP("Dropping: "
7928 MAC_FMT ", "
7929 MAC_FMT ", "
7930 MAC_FMT "\n",
7931 MAC_ARG(header->
7932 addr1),
7933 MAC_ARG(header->
7934 addr2),
7935 MAC_ARG(header->
7936 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05007937 break;
7938 }
7939
7940 ipw_handle_data_packet(priv, rxb,
7941 &stats);
7942
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007943 break;
7944 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007945 break;
7946 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007947
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007948 case RX_HOST_NOTIFICATION_TYPE:{
7949 IPW_DEBUG_RX
7950 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007951 pkt->u.notification.subtype,
7952 pkt->u.notification.flags,
7953 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007954 ipw_rx_notification(priv, &pkt->u.notification);
7955 break;
7956 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007957
7958 default:
7959 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
7960 pkt->header.message_type);
7961 break;
7962 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007963
7964 /* For now we just don't re-use anything. We can tweak this
7965 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06007966 * fail to Rx correctly */
7967 if (rxb->skb != NULL) {
7968 dev_kfree_skb_any(rxb->skb);
7969 rxb->skb = NULL;
7970 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007971
James Ketrenos43f66a62005-03-25 12:31:53 -06007972 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007973 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007974 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04007975
James Ketrenos43f66a62005-03-25 12:31:53 -06007976 i = (i + 1) % RX_QUEUE_SIZE;
7977 }
7978
7979 /* Backtrack one entry */
7980 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
7981
7982 ipw_rx_queue_restock(priv);
7983}
7984
James Ketrenosafbf30a2005-08-25 00:05:33 -05007985#define DEFAULT_RTS_THRESHOLD 2304U
7986#define MIN_RTS_THRESHOLD 1U
7987#define MAX_RTS_THRESHOLD 2304U
7988#define DEFAULT_BEACON_INTERVAL 100U
7989#define DEFAULT_SHORT_RETRY_LIMIT 7U
7990#define DEFAULT_LONG_RETRY_LIMIT 4U
7991
7992static int ipw_sw_reset(struct ipw_priv *priv, int init)
James Ketrenos43f66a62005-03-25 12:31:53 -06007993{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007994 int band, modulation;
7995 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06007996
James Ketrenosafbf30a2005-08-25 00:05:33 -05007997 /* Initialize module parameter values here */
7998 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007999
James Ketrenosafbf30a2005-08-25 00:05:33 -05008000 /* We default to disabling the LED code as right now it causes
8001 * too many systems to lock up... */
8002 if (!led)
8003 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06008004
James Ketrenosafbf30a2005-08-25 00:05:33 -05008005 if (associate)
8006 priv->config |= CFG_ASSOCIATE;
8007 else
8008 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04008009
James Ketrenosafbf30a2005-08-25 00:05:33 -05008010 if (auto_create)
8011 priv->config |= CFG_ADHOC_CREATE;
8012 else
8013 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8014
Zhu Yi17ed0812006-01-24 16:36:31 +08008015 priv->config &= ~CFG_STATIC_ESSID;
8016 priv->essid_len = 0;
8017 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
8018
James Ketrenosafbf30a2005-08-25 00:05:33 -05008019 if (disable) {
8020 priv->status |= STATUS_RF_KILL_SW;
8021 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06008022 }
8023
James Ketrenosafbf30a2005-08-25 00:05:33 -05008024 if (channel != 0) {
8025 priv->config |= CFG_STATIC_CHANNEL;
8026 priv->channel = channel;
8027 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
8028 /* TODO: Validate that provided channel is in range */
8029 }
8030#ifdef CONFIG_IPW_QOS
8031 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8032 burst_duration_CCK, burst_duration_OFDM);
8033#endif /* CONFIG_IPW_QOS */
8034
8035 switch (mode) {
8036 case 1:
8037 priv->ieee->iw_mode = IW_MODE_ADHOC;
8038 priv->net_dev->type = ARPHRD_ETHER;
8039
8040 break;
8041#ifdef CONFIG_IPW2200_MONITOR
8042 case 2:
8043 priv->ieee->iw_mode = IW_MODE_MONITOR;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008044#ifdef CONFIG_IEEE80211_RADIOTAP
8045 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8046#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008047 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008048#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008049 break;
8050#endif
8051 default:
8052 case 0:
8053 priv->net_dev->type = ARPHRD_ETHER;
8054 priv->ieee->iw_mode = IW_MODE_INFRA;
8055 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008056 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008057
James Ketrenosafbf30a2005-08-25 00:05:33 -05008058 if (hwcrypto) {
8059 priv->ieee->host_encrypt = 0;
8060 priv->ieee->host_encrypt_msdu = 0;
8061 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008062 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008063 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008064 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008065
Zhu Yie402c932005-08-05 17:20:40 +08008066 /* IPW2200/2915 is abled to do hardware fragmentation. */
8067 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008068
James Ketrenosafbf30a2005-08-25 00:05:33 -05008069 if ((priv->pci_dev->device == 0x4223) ||
8070 (priv->pci_dev->device == 0x4224)) {
8071 if (init)
8072 printk(KERN_INFO DRV_NAME
8073 ": Detected Intel PRO/Wireless 2915ABG Network "
8074 "Connection\n");
8075 priv->ieee->abg_true = 1;
8076 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8077 modulation = IEEE80211_OFDM_MODULATION |
8078 IEEE80211_CCK_MODULATION;
8079 priv->adapter = IPW_2915ABG;
8080 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008081 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008082 if (init)
8083 printk(KERN_INFO DRV_NAME
8084 ": Detected Intel PRO/Wireless 2200BG Network "
8085 "Connection\n");
8086
8087 priv->ieee->abg_true = 0;
8088 band = IEEE80211_24GHZ_BAND;
8089 modulation = IEEE80211_OFDM_MODULATION |
8090 IEEE80211_CCK_MODULATION;
8091 priv->adapter = IPW_2200BG;
8092 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008093 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008094
James Ketrenosafbf30a2005-08-25 00:05:33 -05008095 priv->ieee->freq_band = band;
8096 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008097
James Ketrenosafbf30a2005-08-25 00:05:33 -05008098 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008099
James Ketrenosafbf30a2005-08-25 00:05:33 -05008100 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8101 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008102
James Ketrenosafbf30a2005-08-25 00:05:33 -05008103 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8104 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8105 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008106
James Ketrenosafbf30a2005-08-25 00:05:33 -05008107 /* If power management is turned on, default to AC mode */
8108 priv->power_mode = IPW_POWER_AC;
8109 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008110
Zhu Yi0ece35b2005-08-05 17:26:51 +08008111 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008112}
8113
8114/*
8115 * This file defines the Wireless Extension handlers. It does not
8116 * define any methods of hardware manipulation and relies on the
8117 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008118 *
8119 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008120 * function used to poll the hardware vs. making unecessary calls.
8121 *
8122 */
8123
Jeff Garzikbf794512005-07-31 13:07:26 -04008124static int ipw_wx_get_name(struct net_device *dev,
8125 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008126 union iwreq_data *wrqu, char *extra)
8127{
8128 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008129 down(&priv->sem);
8130 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008131 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008132 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008133 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008134 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008135 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8136 ipw_modes[priv->assoc_request.ieee_mode]);
8137 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008138 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008139 return 0;
8140}
8141
8142static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8143{
8144 if (channel == 0) {
8145 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8146 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008147 IPW_DEBUG_ASSOC("Attempting to associate with new "
8148 "parameters.\n");
8149 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008150 return 0;
8151 }
8152
8153 priv->config |= CFG_STATIC_CHANNEL;
8154
8155 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008156 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8157 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008158 return 0;
8159 }
8160
8161 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8162 priv->channel = channel;
8163
James Ketrenosb095c382005-08-24 22:04:42 -05008164#ifdef CONFIG_IPW2200_MONITOR
8165 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008166 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008167 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008168 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008169 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008170 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008171 }
8172
8173 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8174 udelay(10);
8175
8176 if (priv->status & STATUS_SCANNING)
8177 IPW_DEBUG_SCAN("Still scanning...\n");
8178 else
8179 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8180 1000 - i);
8181
8182 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008183 }
James Ketrenosb095c382005-08-24 22:04:42 -05008184#endif /* CONFIG_IPW2200_MONITOR */
8185
James Ketrenosc848d0a2005-08-24 21:56:24 -05008186 /* Network configuration changed -- force [re]association */
8187 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8188 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008189 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008190
8191 return 0;
8192}
8193
Jeff Garzikbf794512005-07-31 13:07:26 -04008194static int ipw_wx_set_freq(struct net_device *dev,
8195 struct iw_request_info *info,
8196 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008197{
8198 struct ipw_priv *priv = ieee80211_priv(dev);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008199 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008200 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008201 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008202 u8 channel, flags;
8203 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008204
James Ketrenosb095c382005-08-24 22:04:42 -05008205 if (fwrq->m == 0) {
8206 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
8207 down(&priv->sem);
8208 ret = ipw_set_channel(priv, 0);
8209 up(&priv->sem);
8210 return ret;
8211 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008212 /* if setting by freq convert to channel */
8213 if (fwrq->e == 1) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05008214 channel = ipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008215 if (channel == 0)
8216 return -EINVAL;
8217 } else
8218 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008219
Liu Hong1fe0adb2005-08-19 09:33:10 -05008220 if (!(band = ipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008221 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008222
Liu Hong1fe0adb2005-08-19 09:33:10 -05008223 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
8224 i = ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008225 if (i == -1)
8226 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008227
8228 flags = (band == IEEE80211_24GHZ_BAND) ?
8229 geo->bg[i].flags : geo->a[i].flags;
8230 if (flags & IEEE80211_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008231 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8232 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008233 }
8234 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008235
James Ketrenos43f66a62005-03-25 12:31:53 -06008236 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008237 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008238 ret = ipw_set_channel(priv, channel);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008239 up(&priv->sem);
8240 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008241}
8242
Jeff Garzikbf794512005-07-31 13:07:26 -04008243static int ipw_wx_get_freq(struct net_device *dev,
8244 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008245 union iwreq_data *wrqu, char *extra)
8246{
8247 struct ipw_priv *priv = ieee80211_priv(dev);
8248
8249 wrqu->freq.e = 0;
8250
8251 /* If we are associated, trying to associate, or have a statically
8252 * configured CHANNEL then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008253 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008254 if (priv->config & CFG_STATIC_CHANNEL ||
8255 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8256 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008257 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008258 wrqu->freq.m = 0;
8259
James Ketrenosc848d0a2005-08-24 21:56:24 -05008260 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008261 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8262 return 0;
8263}
8264
Jeff Garzikbf794512005-07-31 13:07:26 -04008265static int ipw_wx_set_mode(struct net_device *dev,
8266 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008267 union iwreq_data *wrqu, char *extra)
8268{
8269 struct ipw_priv *priv = ieee80211_priv(dev);
8270 int err = 0;
8271
8272 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8273
James Ketrenos43f66a62005-03-25 12:31:53 -06008274 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008275#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008276 case IW_MODE_MONITOR:
8277#endif
8278 case IW_MODE_ADHOC:
8279 case IW_MODE_INFRA:
8280 break;
8281 case IW_MODE_AUTO:
8282 wrqu->mode = IW_MODE_INFRA;
8283 break;
8284 default:
8285 return -EINVAL;
8286 }
James Ketrenosb095c382005-08-24 22:04:42 -05008287 if (wrqu->mode == priv->ieee->iw_mode)
8288 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008289
James Ketrenosb095c382005-08-24 22:04:42 -05008290 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008291
8292 ipw_sw_reset(priv, 0);
8293
James Ketrenosb095c382005-08-24 22:04:42 -05008294#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008295 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008296 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008297
8298 if (wrqu->mode == IW_MODE_MONITOR)
Mike Kershaw24a47db2005-08-26 00:41:54 -05008299#ifdef CONFIG_IEEE80211_RADIOTAP
8300 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8301#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008302 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008303#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008304#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008305
Jeff Garzikbf794512005-07-31 13:07:26 -04008306 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008307 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008308 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008309
8310 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008311
James Ketrenosc848d0a2005-08-24 21:56:24 -05008312 queue_work(priv->workqueue, &priv->adapter_restart);
8313 up(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008314 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008315}
8316
Jeff Garzikbf794512005-07-31 13:07:26 -04008317static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008318 struct iw_request_info *info,
8319 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008320{
8321 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008322 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008323 wrqu->mode = priv->ieee->iw_mode;
8324 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008325 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008326 return 0;
8327}
8328
James Ketrenos43f66a62005-03-25 12:31:53 -06008329/* Values are in microsecond */
8330static const s32 timeout_duration[] = {
8331 350000,
8332 250000,
8333 75000,
8334 37000,
8335 25000,
8336};
8337
8338static const s32 period_duration[] = {
8339 400000,
8340 700000,
8341 1000000,
8342 1000000,
8343 1000000
8344};
8345
Jeff Garzikbf794512005-07-31 13:07:26 -04008346static int ipw_wx_get_range(struct net_device *dev,
8347 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008348 union iwreq_data *wrqu, char *extra)
8349{
8350 struct ipw_priv *priv = ieee80211_priv(dev);
8351 struct iw_range *range = (struct iw_range *)extra;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008352 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008353 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008354
8355 wrqu->data.length = sizeof(*range);
8356 memset(range, 0, sizeof(*range));
8357
8358 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008359 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008360
8361 range->max_qual.qual = 100;
8362 /* TODO: Find real max RSSI and stick here */
8363 range->max_qual.level = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008364 range->max_qual.noise = priv->ieee->worst_rssi + 0x100;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008365 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008366
8367 range->avg_qual.qual = 70;
8368 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008369 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008370 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008371 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008372 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008373 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008374
Jeff Garzikbf794512005-07-31 13:07:26 -04008375 for (i = 0; i < range->num_bitrates; i++)
8376 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008377 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008378
James Ketrenos43f66a62005-03-25 12:31:53 -06008379 range->max_rts = DEFAULT_RTS_THRESHOLD;
8380 range->min_frag = MIN_FRAG_THRESHOLD;
8381 range->max_frag = MAX_FRAG_THRESHOLD;
8382
8383 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008384 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008385 range->num_encoding_sizes = 2;
8386 range->max_encoding_tokens = WEP_KEYS;
8387
8388 /* Set the Wireless Extension versions */
8389 range->we_version_compiled = WIRELESS_EXT;
8390 range->we_version_source = 16;
8391
James Ketrenosb095c382005-08-24 22:04:42 -05008392 i = 0;
8393 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
8394 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES;
8395 i++, j++) {
8396 range->freq[i].i = geo->bg[j].channel;
8397 range->freq[i].m = geo->bg[j].freq * 100000;
8398 range->freq[i].e = 1;
8399 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008400 }
James Ketrenosb095c382005-08-24 22:04:42 -05008401
8402 if (priv->ieee->mode & IEEE_A) {
8403 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES;
8404 i++, j++) {
8405 range->freq[i].i = geo->a[j].channel;
8406 range->freq[i].m = geo->a[j].freq * 100000;
8407 range->freq[i].e = 1;
8408 }
8409 }
8410
8411 range->num_channels = i;
8412 range->num_frequency = i;
8413
James Ketrenosc848d0a2005-08-24 21:56:24 -05008414 up(&priv->sem);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008415
8416 /* Event capability (kernel + driver) */
8417 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
8418 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
8419 IW_EVENT_CAPA_MASK(SIOCGIWAP));
8420 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008421
8422 IPW_DEBUG_WX("GET Range\n");
8423 return 0;
8424}
8425
Jeff Garzikbf794512005-07-31 13:07:26 -04008426static int ipw_wx_set_wap(struct net_device *dev,
8427 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008428 union iwreq_data *wrqu, char *extra)
8429{
8430 struct ipw_priv *priv = ieee80211_priv(dev);
8431
8432 static const unsigned char any[] = {
8433 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8434 };
8435 static const unsigned char off[] = {
8436 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8437 };
8438
Jeff Garzikbf794512005-07-31 13:07:26 -04008439 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008440 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008441 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008442 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8443 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8444 /* we disable mandatory BSSID association */
8445 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8446 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008447 IPW_DEBUG_ASSOC("Attempting to associate with new "
8448 "parameters.\n");
8449 ipw_associate(priv);
8450 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008451 return 0;
8452 }
8453
8454 priv->config |= CFG_STATIC_BSSID;
8455 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8456 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008457 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008458 return 0;
8459 }
8460
8461 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8462 MAC_ARG(wrqu->ap_addr.sa_data));
8463
8464 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8465
James Ketrenosc848d0a2005-08-24 21:56:24 -05008466 /* Network configuration changed -- force [re]association */
8467 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8468 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008469 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008470
James Ketrenosc848d0a2005-08-24 21:56:24 -05008471 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008472 return 0;
8473}
8474
Jeff Garzikbf794512005-07-31 13:07:26 -04008475static int ipw_wx_get_wap(struct net_device *dev,
8476 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008477 union iwreq_data *wrqu, char *extra)
8478{
8479 struct ipw_priv *priv = ieee80211_priv(dev);
8480 /* If we are associated, trying to associate, or have a statically
8481 * configured BSSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008482 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04008483 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008484 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8485 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008486 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008487 } else
8488 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8489
8490 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8491 MAC_ARG(wrqu->ap_addr.sa_data));
James Ketrenosc848d0a2005-08-24 21:56:24 -05008492 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008493 return 0;
8494}
8495
Jeff Garzikbf794512005-07-31 13:07:26 -04008496static int ipw_wx_set_essid(struct net_device *dev,
8497 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008498 union iwreq_data *wrqu, char *extra)
8499{
8500 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008501 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008502 int length = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008503 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008504 if (wrqu->essid.flags && wrqu->essid.length) {
8505 length = wrqu->essid.length - 1;
8506 essid = extra;
8507 }
8508 if (length == 0) {
8509 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008510 if ((priv->config & CFG_STATIC_ESSID) &&
8511 !(priv->status & (STATUS_ASSOCIATED |
James Ketrenos43f66a62005-03-25 12:31:53 -06008512 STATUS_ASSOCIATING))) {
8513 IPW_DEBUG_ASSOC("Attempting to associate with new "
8514 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008515 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008516 ipw_associate(priv);
8517 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008518 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008519 return 0;
8520 }
8521
8522 length = min(length, IW_ESSID_MAX_SIZE);
8523
8524 priv->config |= CFG_STATIC_ESSID;
8525
8526 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
8527 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008528 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008529 return 0;
8530 }
8531
8532 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
8533 length);
8534
8535 priv->essid_len = length;
8536 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04008537
James Ketrenosc848d0a2005-08-24 21:56:24 -05008538 /* Network configuration changed -- force [re]association */
8539 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
8540 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008541 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008542
James Ketrenosc848d0a2005-08-24 21:56:24 -05008543 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008544 return 0;
8545}
8546
Jeff Garzikbf794512005-07-31 13:07:26 -04008547static int ipw_wx_get_essid(struct net_device *dev,
8548 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008549 union iwreq_data *wrqu, char *extra)
8550{
8551 struct ipw_priv *priv = ieee80211_priv(dev);
8552
8553 /* If we are associated, trying to associate, or have a statically
8554 * configured ESSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008555 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008556 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04008557 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8558 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008559 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04008560 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06008561 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008562 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008563 } else {
8564 IPW_DEBUG_WX("Getting essid: ANY\n");
8565 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008566 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008567 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008568 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008569 return 0;
8570}
8571
Jeff Garzikbf794512005-07-31 13:07:26 -04008572static int ipw_wx_set_nick(struct net_device *dev,
8573 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008574 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008575{
James Ketrenos43f66a62005-03-25 12:31:53 -06008576 struct ipw_priv *priv = ieee80211_priv(dev);
8577
8578 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
8579 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
8580 return -E2BIG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008581 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008582 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06008583 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008584 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06008585 IPW_DEBUG_TRACE("<<\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008586 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008587 return 0;
8588
8589}
8590
Jeff Garzikbf794512005-07-31 13:07:26 -04008591static int ipw_wx_get_nick(struct net_device *dev,
8592 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008593 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008594{
James Ketrenos43f66a62005-03-25 12:31:53 -06008595 struct ipw_priv *priv = ieee80211_priv(dev);
8596 IPW_DEBUG_WX("Getting nick\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008597 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008598 wrqu->data.length = strlen(priv->nick) + 1;
8599 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008600 wrqu->data.flags = 1; /* active */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008601 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008602 return 0;
8603}
8604
James Ketrenos43f66a62005-03-25 12:31:53 -06008605static int ipw_wx_set_rate(struct net_device *dev,
8606 struct iw_request_info *info,
8607 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008608{
James Ketrenosea2b26e2005-08-24 21:25:16 -05008609 /* TODO: We should use semaphores or locks for access to priv */
8610 struct ipw_priv *priv = ieee80211_priv(dev);
8611 u32 target_rate = wrqu->bitrate.value;
8612 u32 fixed, mask;
8613
8614 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
8615 /* value = X, fixed = 1 means only rate X */
8616 /* value = X, fixed = 0 means all rates lower equal X */
8617
8618 if (target_rate == -1) {
8619 fixed = 0;
8620 mask = IEEE80211_DEFAULT_RATES_MASK;
8621 /* Now we should reassociate */
8622 goto apply;
8623 }
8624
8625 mask = 0;
8626 fixed = wrqu->bitrate.fixed;
8627
8628 if (target_rate == 1000000 || !fixed)
8629 mask |= IEEE80211_CCK_RATE_1MB_MASK;
8630 if (target_rate == 1000000)
8631 goto apply;
8632
8633 if (target_rate == 2000000 || !fixed)
8634 mask |= IEEE80211_CCK_RATE_2MB_MASK;
8635 if (target_rate == 2000000)
8636 goto apply;
8637
8638 if (target_rate == 5500000 || !fixed)
8639 mask |= IEEE80211_CCK_RATE_5MB_MASK;
8640 if (target_rate == 5500000)
8641 goto apply;
8642
8643 if (target_rate == 6000000 || !fixed)
8644 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
8645 if (target_rate == 6000000)
8646 goto apply;
8647
8648 if (target_rate == 9000000 || !fixed)
8649 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
8650 if (target_rate == 9000000)
8651 goto apply;
8652
8653 if (target_rate == 11000000 || !fixed)
8654 mask |= IEEE80211_CCK_RATE_11MB_MASK;
8655 if (target_rate == 11000000)
8656 goto apply;
8657
8658 if (target_rate == 12000000 || !fixed)
8659 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
8660 if (target_rate == 12000000)
8661 goto apply;
8662
8663 if (target_rate == 18000000 || !fixed)
8664 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
8665 if (target_rate == 18000000)
8666 goto apply;
8667
8668 if (target_rate == 24000000 || !fixed)
8669 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
8670 if (target_rate == 24000000)
8671 goto apply;
8672
8673 if (target_rate == 36000000 || !fixed)
8674 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
8675 if (target_rate == 36000000)
8676 goto apply;
8677
8678 if (target_rate == 48000000 || !fixed)
8679 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
8680 if (target_rate == 48000000)
8681 goto apply;
8682
8683 if (target_rate == 54000000 || !fixed)
8684 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
8685 if (target_rate == 54000000)
8686 goto apply;
8687
8688 IPW_DEBUG_WX("invalid rate specified, returning error\n");
8689 return -EINVAL;
8690
8691 apply:
8692 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
8693 mask, fixed ? "fixed" : "sub-rates");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008694 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008695 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05008696 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05008697 ipw_set_fixed_rate(priv, priv->ieee->mode);
8698 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05008699 priv->config |= CFG_FIXED_RATE;
8700
James Ketrenosc848d0a2005-08-24 21:56:24 -05008701 if (priv->rates_mask == mask) {
8702 IPW_DEBUG_WX("Mask set to current mask.\n");
8703 up(&priv->sem);
8704 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05008705 }
8706
James Ketrenosc848d0a2005-08-24 21:56:24 -05008707 priv->rates_mask = mask;
8708
8709 /* Network configuration changed -- force [re]association */
8710 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
8711 if (!ipw_disassociate(priv))
8712 ipw_associate(priv);
8713
8714 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008715 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008716}
8717
Jeff Garzikbf794512005-07-31 13:07:26 -04008718static int ipw_wx_get_rate(struct net_device *dev,
8719 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008720 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008721{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008722 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008723 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008724 wrqu->bitrate.value = priv->last_rate;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008725 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008726 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
8727 return 0;
8728}
8729
Jeff Garzikbf794512005-07-31 13:07:26 -04008730static int ipw_wx_set_rts(struct net_device *dev,
8731 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008732 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008733{
James Ketrenos43f66a62005-03-25 12:31:53 -06008734 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008735 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008736 if (wrqu->rts.disabled)
8737 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8738 else {
8739 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05008740 wrqu->rts.value > MAX_RTS_THRESHOLD) {
8741 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008742 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008743 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008744 priv->rts_threshold = wrqu->rts.value;
8745 }
8746
8747 ipw_send_rts_threshold(priv, priv->rts_threshold);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008748 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008749 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
8750 return 0;
8751}
8752
Jeff Garzikbf794512005-07-31 13:07:26 -04008753static int ipw_wx_get_rts(struct net_device *dev,
8754 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008755 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008756{
James Ketrenos43f66a62005-03-25 12:31:53 -06008757 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008758 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008759 wrqu->rts.value = priv->rts_threshold;
8760 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008761 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008762 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008763 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
8764 return 0;
8765}
8766
Jeff Garzikbf794512005-07-31 13:07:26 -04008767static int ipw_wx_set_txpow(struct net_device *dev,
8768 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008769 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008770{
James Ketrenos43f66a62005-03-25 12:31:53 -06008771 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008772 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008773
James Ketrenosc848d0a2005-08-24 21:56:24 -05008774 down(&priv->sem);
8775 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008776 err = -EINPROGRESS;
8777 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008778 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008779
James Ketrenosb095c382005-08-24 22:04:42 -05008780 if (!wrqu->power.fixed)
8781 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008782
James Ketrenosc848d0a2005-08-24 21:56:24 -05008783 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008784 err = -EINVAL;
8785 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008786 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008787
James Ketrenosb095c382005-08-24 22:04:42 -05008788 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05008789 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008790 err = -EINVAL;
8791 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008792 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008793
8794 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008795 err = ipw_set_tx_power(priv);
8796 out:
James Ketrenosc848d0a2005-08-24 21:56:24 -05008797 up(&priv->sem);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08008798 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008799}
8800
Jeff Garzikbf794512005-07-31 13:07:26 -04008801static int ipw_wx_get_txpow(struct net_device *dev,
8802 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008803 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008804{
James Ketrenos43f66a62005-03-25 12:31:53 -06008805 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008806 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008807 wrqu->power.value = priv->tx_power;
8808 wrqu->power.fixed = 1;
8809 wrqu->power.flags = IW_TXPOW_DBM;
8810 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008811 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008812
Jeff Garzikbf794512005-07-31 13:07:26 -04008813 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08008814 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06008815
8816 return 0;
8817}
8818
Jeff Garzikbf794512005-07-31 13:07:26 -04008819static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008820 struct iw_request_info *info,
8821 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008822{
8823 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008824 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008825 if (wrqu->frag.disabled)
8826 priv->ieee->fts = DEFAULT_FTS;
8827 else {
8828 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05008829 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
8830 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008831 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05008832 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008833
James Ketrenos43f66a62005-03-25 12:31:53 -06008834 priv->ieee->fts = wrqu->frag.value & ~0x1;
8835 }
8836
8837 ipw_send_frag_threshold(priv, wrqu->frag.value);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008838 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008839 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
8840 return 0;
8841}
8842
Jeff Garzikbf794512005-07-31 13:07:26 -04008843static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008844 struct iw_request_info *info,
8845 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008846{
8847 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008848 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008849 wrqu->frag.value = priv->ieee->fts;
8850 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008851 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008852 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008853 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
8854
8855 return 0;
8856}
8857
Jeff Garzikbf794512005-07-31 13:07:26 -04008858static int ipw_wx_set_retry(struct net_device *dev,
8859 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008860 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008861{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008862 struct ipw_priv *priv = ieee80211_priv(dev);
8863
8864 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
8865 return -EINVAL;
8866
8867 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
8868 return 0;
8869
8870 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
8871 return -EINVAL;
8872
8873 down(&priv->sem);
8874 if (wrqu->retry.flags & IW_RETRY_MIN)
8875 priv->short_retry_limit = (u8) wrqu->retry.value;
8876 else if (wrqu->retry.flags & IW_RETRY_MAX)
8877 priv->long_retry_limit = (u8) wrqu->retry.value;
8878 else {
8879 priv->short_retry_limit = (u8) wrqu->retry.value;
8880 priv->long_retry_limit = (u8) wrqu->retry.value;
8881 }
8882
8883 ipw_send_retry_limit(priv, priv->short_retry_limit,
8884 priv->long_retry_limit);
8885 up(&priv->sem);
8886 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
8887 priv->short_retry_limit, priv->long_retry_limit);
8888 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008889}
8890
Jeff Garzikbf794512005-07-31 13:07:26 -04008891static int ipw_wx_get_retry(struct net_device *dev,
8892 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008893 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008894{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008895 struct ipw_priv *priv = ieee80211_priv(dev);
8896
8897 down(&priv->sem);
8898 wrqu->retry.disabled = 0;
8899
8900 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
8901 up(&priv->sem);
8902 return -EINVAL;
8903 }
8904
8905 if (wrqu->retry.flags & IW_RETRY_MAX) {
8906 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
8907 wrqu->retry.value = priv->long_retry_limit;
8908 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
8909 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
8910 wrqu->retry.value = priv->short_retry_limit;
8911 } else {
8912 wrqu->retry.flags = IW_RETRY_LIMIT;
8913 wrqu->retry.value = priv->short_retry_limit;
8914 }
8915 up(&priv->sem);
8916
8917 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
8918
8919 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008920}
8921
James Ketrenosafbf30a2005-08-25 00:05:33 -05008922static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
8923 int essid_len)
8924{
8925 struct ipw_scan_request_ext scan;
8926 int err = 0, scan_type;
8927
Pekka Enbergefb34422005-11-16 21:55:05 +02008928 if (!(priv->status & STATUS_INIT) ||
8929 (priv->status & STATUS_EXIT_PENDING))
8930 return 0;
8931
James Ketrenosafbf30a2005-08-25 00:05:33 -05008932 down(&priv->sem);
8933
8934 if (priv->status & STATUS_RF_KILL_MASK) {
8935 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
8936 priv->status |= STATUS_SCAN_PENDING;
8937 goto done;
8938 }
8939
8940 IPW_DEBUG_HC("starting request direct scan!\n");
8941
8942 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
Olaf Kirchd834a412006-01-09 17:00:37 +01008943 /* We should not sleep here; otherwise we will block most
8944 * of the system (for instance, we hold rtnl_lock when we
8945 * get here).
8946 */
8947 err = -EAGAIN;
8948 goto done;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008949 }
8950 memset(&scan, 0, sizeof(scan));
8951
8952 if (priv->config & CFG_SPEED_SCAN)
8953 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8954 cpu_to_le16(30);
8955 else
8956 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8957 cpu_to_le16(20);
8958
8959 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
8960 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008961 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008962 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
8963
8964 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
8965
8966 err = ipw_send_ssid(priv, essid, essid_len);
8967 if (err) {
8968 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
8969 goto done;
8970 }
8971 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
8972
8973 ipw_add_scan_channels(priv, &scan, scan_type);
8974
8975 err = ipw_send_scan_request_ext(priv, &scan);
8976 if (err) {
8977 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
8978 goto done;
8979 }
8980
8981 priv->status |= STATUS_SCANNING;
8982
8983 done:
8984 up(&priv->sem);
8985 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008986}
8987
Jeff Garzikbf794512005-07-31 13:07:26 -04008988static int ipw_wx_set_scan(struct net_device *dev,
8989 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008990 union iwreq_data *wrqu, char *extra)
8991{
8992 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008993 struct iw_scan_req *req = NULL;
8994 if (wrqu->data.length
8995 && wrqu->data.length == sizeof(struct iw_scan_req)) {
8996 req = (struct iw_scan_req *)extra;
8997 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
8998 ipw_request_direct_scan(priv, req->essid,
8999 req->essid_len);
9000 return 0;
9001 }
9002 }
James Ketrenos8935f392005-10-05 15:59:08 -05009003
James Ketrenos43f66a62005-03-25 12:31:53 -06009004 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009005
9006 queue_work(priv->workqueue, &priv->request_scan);
9007
James Ketrenos43f66a62005-03-25 12:31:53 -06009008 return 0;
9009}
9010
Jeff Garzikbf794512005-07-31 13:07:26 -04009011static int ipw_wx_get_scan(struct net_device *dev,
9012 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009013 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009014{
James Ketrenos43f66a62005-03-25 12:31:53 -06009015 struct ipw_priv *priv = ieee80211_priv(dev);
9016 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9017}
9018
Jeff Garzikbf794512005-07-31 13:07:26 -04009019static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009020 struct iw_request_info *info,
9021 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009022{
9023 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009024 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009025 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009026
9027 down(&priv->sem);
9028 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009029
Hong Liucaeff812005-08-05 17:25:50 +08009030 /* In IBSS mode, we need to notify the firmware to update
9031 * the beacon info after we changed the capability. */
9032 if (cap != priv->capability &&
9033 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9034 priv->status & STATUS_ASSOCIATED)
9035 ipw_disassociate(priv);
9036
9037 up(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009038 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009039}
9040
Jeff Garzikbf794512005-07-31 13:07:26 -04009041static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009042 struct iw_request_info *info,
9043 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009044{
9045 struct ipw_priv *priv = ieee80211_priv(dev);
9046 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9047}
9048
Jeff Garzikbf794512005-07-31 13:07:26 -04009049static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009050 struct iw_request_info *info,
9051 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009052{
9053 struct ipw_priv *priv = ieee80211_priv(dev);
9054 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009055 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009056 if (wrqu->power.disabled) {
9057 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9058 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9059 if (err) {
9060 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009061 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009062 return err;
9063 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009064 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009065 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009066 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009067 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009068
9069 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009070 case IW_POWER_ON: /* If not specified */
9071 case IW_POWER_MODE: /* If set all mask */
9072 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009073 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009074 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009075 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9076 wrqu->power.flags);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009077 up(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009078 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009079 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009080
James Ketrenos43f66a62005-03-25 12:31:53 -06009081 /* If the user hasn't specified a power management mode yet, default
9082 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009083 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009084 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009085 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009086 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9087 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9088 if (err) {
9089 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009090 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009091 return err;
9092 }
9093
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009094 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009095 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009096 return 0;
9097}
9098
Jeff Garzikbf794512005-07-31 13:07:26 -04009099static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009100 struct iw_request_info *info,
9101 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009102{
9103 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009104 down(&priv->sem);
James Ketrenosa613bff2005-08-24 21:43:11 -05009105 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009106 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009107 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009108 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009109
James Ketrenosc848d0a2005-08-24 21:56:24 -05009110 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009111 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009112
James Ketrenos43f66a62005-03-25 12:31:53 -06009113 return 0;
9114}
9115
Jeff Garzikbf794512005-07-31 13:07:26 -04009116static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009117 struct iw_request_info *info,
9118 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009119{
9120 struct ipw_priv *priv = ieee80211_priv(dev);
9121 int mode = *(int *)extra;
9122 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009123 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009124 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9125 mode = IPW_POWER_AC;
9126 priv->power_mode = mode;
9127 } else {
9128 priv->power_mode = IPW_POWER_ENABLED | mode;
9129 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009130
James Ketrenos43f66a62005-03-25 12:31:53 -06009131 if (priv->power_mode != mode) {
9132 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009133
James Ketrenos43f66a62005-03-25 12:31:53 -06009134 if (err) {
9135 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009136 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009137 return err;
9138 }
9139 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009140 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009141 return 0;
9142}
9143
9144#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009145static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009146 struct iw_request_info *info,
9147 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009148{
9149 struct ipw_priv *priv = ieee80211_priv(dev);
9150 int level = IPW_POWER_LEVEL(priv->power_mode);
9151 char *p = extra;
9152
9153 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9154
9155 switch (level) {
9156 case IPW_POWER_AC:
9157 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9158 break;
9159 case IPW_POWER_BATTERY:
9160 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9161 break;
9162 default:
9163 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009164 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009165 timeout_duration[level - 1] / 1000,
9166 period_duration[level - 1] / 1000);
9167 }
9168
9169 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009170 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009171
9172 wrqu->data.length = p - extra + 1;
9173
9174 return 0;
9175}
9176
9177static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009178 struct iw_request_info *info,
9179 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009180{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009181 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009182 int mode = *(int *)extra;
9183 u8 band = 0, modulation = 0;
9184
9185 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009186 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009187 return -EINVAL;
9188 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009189 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009190 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009191 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009192 if (mode & IEEE_A) {
9193 band |= IEEE80211_52GHZ_BAND;
9194 modulation |= IEEE80211_OFDM_MODULATION;
9195 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009196 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009197 } else {
9198 if (mode & IEEE_A) {
9199 IPW_WARNING("Attempt to set 2200BG into "
9200 "802.11a mode\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009201 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009202 return -EINVAL;
9203 }
9204
James Ketrenosa33a1982005-09-14 14:28:59 -05009205 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009206 }
9207
9208 if (mode & IEEE_B) {
9209 band |= IEEE80211_24GHZ_BAND;
9210 modulation |= IEEE80211_CCK_MODULATION;
9211 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009212 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009213
James Ketrenos43f66a62005-03-25 12:31:53 -06009214 if (mode & IEEE_G) {
9215 band |= IEEE80211_24GHZ_BAND;
9216 modulation |= IEEE80211_OFDM_MODULATION;
9217 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009218 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009219
9220 priv->ieee->mode = mode;
9221 priv->ieee->freq_band = band;
9222 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009223 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009224
James Ketrenosc848d0a2005-08-24 21:56:24 -05009225 /* Network configuration changed -- force [re]association */
9226 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9227 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009228 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009229 ipw_associate(priv);
9230 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009231
James Ketrenosa613bff2005-08-24 21:43:11 -05009232 /* Update the band LEDs */
9233 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009234
Jeff Garzikbf794512005-07-31 13:07:26 -04009235 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009236 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009237 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
James Ketrenosc848d0a2005-08-24 21:56:24 -05009238 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009239 return 0;
9240}
9241
9242static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009243 struct iw_request_info *info,
9244 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009245{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009246 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009247 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009248 switch (priv->ieee->mode) {
9249 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009250 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9251 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009252 case IEEE_B:
9253 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9254 break;
9255 case IEEE_A | IEEE_B:
9256 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9257 break;
9258 case IEEE_G:
9259 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9260 break;
9261 case IEEE_A | IEEE_G:
9262 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9263 break;
9264 case IEEE_B | IEEE_G:
9265 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9266 break;
9267 case IEEE_A | IEEE_B | IEEE_G:
9268 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9269 break;
9270 default:
9271 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009272 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009273 }
9274
James Ketrenos43f66a62005-03-25 12:31:53 -06009275 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9276
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009277 wrqu->data.length = strlen(extra) + 1;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009278 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009279
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009280 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009281}
9282
James Ketrenosea2b26e2005-08-24 21:25:16 -05009283static int ipw_wx_set_preamble(struct net_device *dev,
9284 struct iw_request_info *info,
9285 union iwreq_data *wrqu, char *extra)
9286{
9287 struct ipw_priv *priv = ieee80211_priv(dev);
9288 int mode = *(int *)extra;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009289 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009290 /* Switching from SHORT -> LONG requires a disassociation */
9291 if (mode == 1) {
9292 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9293 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009294
9295 /* Network configuration changed -- force [re]association */
9296 IPW_DEBUG_ASSOC
9297 ("[re]association triggered due to preamble change.\n");
9298 if (!ipw_disassociate(priv))
9299 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009300 }
9301 goto done;
9302 }
9303
9304 if (mode == 0) {
9305 priv->config &= ~CFG_PREAMBLE_LONG;
9306 goto done;
9307 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009308 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009309 return -EINVAL;
9310
9311 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009312 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009313 return 0;
9314}
9315
9316static int ipw_wx_get_preamble(struct net_device *dev,
9317 struct iw_request_info *info,
9318 union iwreq_data *wrqu, char *extra)
9319{
9320 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009321 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009322 if (priv->config & CFG_PREAMBLE_LONG)
9323 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9324 else
9325 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009326 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009327 return 0;
9328}
9329
James Ketrenosb095c382005-08-24 22:04:42 -05009330#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009331static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009332 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009333 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009334{
James Ketrenos43f66a62005-03-25 12:31:53 -06009335 struct ipw_priv *priv = ieee80211_priv(dev);
9336 int *parms = (int *)extra;
9337 int enable = (parms[0] > 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009338 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009339 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009340 if (enable) {
9341 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05009342#ifdef CONFIG_IEEE80211_RADIOTAP
9343 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9344#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009345 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009346#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009347 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009348 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009349
James Ketrenos43f66a62005-03-25 12:31:53 -06009350 ipw_set_channel(priv, parms[1]);
9351 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009352 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9353 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009354 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009355 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009356 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009357 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009358 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009359 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009360 return 0;
9361}
9362
James Ketrenosb095c382005-08-24 22:04:42 -05009363#endif // CONFIG_IPW2200_MONITOR
9364
Jeff Garzikbf794512005-07-31 13:07:26 -04009365static int ipw_wx_reset(struct net_device *dev,
9366 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009367 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009368{
James Ketrenos43f66a62005-03-25 12:31:53 -06009369 struct ipw_priv *priv = ieee80211_priv(dev);
9370 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009371 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009372 return 0;
9373}
James Ketrenosb095c382005-08-24 22:04:42 -05009374
James Ketrenosb095c382005-08-24 22:04:42 -05009375static int ipw_wx_sw_reset(struct net_device *dev,
9376 struct iw_request_info *info,
9377 union iwreq_data *wrqu, char *extra)
9378{
9379 struct ipw_priv *priv = ieee80211_priv(dev);
9380 union iwreq_data wrqu_sec = {
9381 .encoding = {
9382 .flags = IW_ENCODE_DISABLED,
9383 },
9384 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009385 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009386
9387 IPW_DEBUG_WX("SW_RESET\n");
9388
9389 down(&priv->sem);
9390
James Ketrenosafbf30a2005-08-25 00:05:33 -05009391 ret = ipw_sw_reset(priv, 0);
9392 if (!ret) {
9393 free_firmware();
9394 ipw_adapter_restart(priv);
9395 }
James Ketrenosb095c382005-08-24 22:04:42 -05009396
9397 /* The SW reset bit might have been toggled on by the 'disable'
9398 * module parameter, so take appropriate action */
9399 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9400
9401 up(&priv->sem);
9402 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
9403 down(&priv->sem);
9404
9405 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9406 /* Configuration likely changed -- force [re]association */
9407 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9408 "reset.\n");
9409 if (!ipw_disassociate(priv))
9410 ipw_associate(priv);
9411 }
9412
9413 up(&priv->sem);
9414
9415 return 0;
9416}
James Ketrenos43f66a62005-03-25 12:31:53 -06009417
9418/* Rebase the WE IOCTLs to zero for the handler array */
9419#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009420static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009421 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9422 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9423 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9424 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9425 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
9426 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9427 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9428 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9429 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9430 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9431 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9432 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9433 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9434 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9435 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9436 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9437 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9438 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9439 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9440 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9441 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9442 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9443 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9444 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9445 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9446 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9447 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9448 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009449 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9450 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9451 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9452 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009453 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9454 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9455 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9456 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9457 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9458 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9459 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
James Ketrenos43f66a62005-03-25 12:31:53 -06009460};
9461
James Ketrenosb095c382005-08-24 22:04:42 -05009462enum {
9463 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9464 IPW_PRIV_GET_POWER,
9465 IPW_PRIV_SET_MODE,
9466 IPW_PRIV_GET_MODE,
9467 IPW_PRIV_SET_PREAMBLE,
9468 IPW_PRIV_GET_PREAMBLE,
9469 IPW_PRIV_RESET,
9470 IPW_PRIV_SW_RESET,
9471#ifdef CONFIG_IPW2200_MONITOR
9472 IPW_PRIV_SET_MONITOR,
9473#endif
9474};
James Ketrenos43f66a62005-03-25 12:31:53 -06009475
Jeff Garzikbf794512005-07-31 13:07:26 -04009476static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009477 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009478 .cmd = IPW_PRIV_SET_POWER,
9479 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9480 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009481 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009482 .cmd = IPW_PRIV_GET_POWER,
9483 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9484 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009485 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009486 .cmd = IPW_PRIV_SET_MODE,
9487 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9488 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009489 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009490 .cmd = IPW_PRIV_GET_MODE,
9491 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9492 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009493 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009494 .cmd = IPW_PRIV_SET_PREAMBLE,
9495 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9496 .name = "set_preamble"},
9497 {
9498 .cmd = IPW_PRIV_GET_PREAMBLE,
9499 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9500 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009501 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009502 IPW_PRIV_RESET,
9503 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009504 {
9505 IPW_PRIV_SW_RESET,
9506 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9507#ifdef CONFIG_IPW2200_MONITOR
9508 {
9509 IPW_PRIV_SET_MONITOR,
9510 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9511#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009512};
9513
9514static iw_handler ipw_priv_handler[] = {
9515 ipw_wx_set_powermode,
9516 ipw_wx_get_powermode,
9517 ipw_wx_set_wireless_mode,
9518 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009519 ipw_wx_set_preamble,
9520 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009521 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -05009522 ipw_wx_sw_reset,
9523#ifdef CONFIG_IPW2200_MONITOR
9524 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -06009525#endif
9526};
9527
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009528static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009529 .standard = ipw_wx_handlers,
9530 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
9531 .num_private = ARRAY_SIZE(ipw_priv_handler),
9532 .num_private_args = ARRAY_SIZE(ipw_priv_args),
9533 .private = ipw_priv_handler,
9534 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00009535 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06009536};
9537
James Ketrenos43f66a62005-03-25 12:31:53 -06009538/*
9539 * Get wireless statistics.
9540 * Called by /proc/net/wireless
9541 * Also called by SIOCGIWSTATS
9542 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009543static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -06009544{
9545 struct ipw_priv *priv = ieee80211_priv(dev);
9546 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009547
James Ketrenos43f66a62005-03-25 12:31:53 -06009548 wstats = &priv->wstats;
9549
James Ketrenosea2b26e2005-08-24 21:25:16 -05009550 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -05009551 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -06009552 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
9553 * and associated; if not associcated, the values are all meaningless
9554 * anyway, so set them all to NULL and INVALID */
9555 if (!(priv->status & STATUS_ASSOCIATED)) {
9556 wstats->miss.beacon = 0;
9557 wstats->discard.retries = 0;
9558 wstats->qual.qual = 0;
9559 wstats->qual.level = 0;
9560 wstats->qual.noise = 0;
9561 wstats->qual.updated = 7;
9562 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009563 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -06009564 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009565 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009566
9567 wstats->qual.qual = priv->quality;
9568 wstats->qual.level = average_value(&priv->average_rssi);
9569 wstats->qual.noise = average_value(&priv->average_noise);
9570 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009571 IW_QUAL_NOISE_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -06009572
9573 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
9574 wstats->discard.retries = priv->last_tx_failures;
9575 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -04009576
James Ketrenos43f66a62005-03-25 12:31:53 -06009577/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
9578 goto fail_get_ordinal;
9579 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -04009580
James Ketrenos43f66a62005-03-25 12:31:53 -06009581 return wstats;
9582}
9583
James Ketrenos43f66a62005-03-25 12:31:53 -06009584/* net device stuff */
9585
Arjan van de Ven858119e2006-01-14 13:20:43 -08009586static void init_sys_config(struct ipw_sys_config *sys_config)
James Ketrenos43f66a62005-03-25 12:31:53 -06009587{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009588 memset(sys_config, 0, sizeof(struct ipw_sys_config));
9589 sys_config->bt_coexistence = 1; /* We may need to look into prvStaBtConfig */
James Ketrenos43f66a62005-03-25 12:31:53 -06009590 sys_config->answer_broadcast_ssid_probe = 0;
9591 sys_config->accept_all_data_frames = 0;
9592 sys_config->accept_non_directed_frames = 1;
9593 sys_config->exclude_unicast_unencrypted = 0;
9594 sys_config->disable_unicast_decryption = 1;
9595 sys_config->exclude_multicast_unencrypted = 0;
9596 sys_config->disable_multicast_decryption = 1;
9597 sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009598 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -06009599 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009600 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009601 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009602 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
James Ketrenos43f66a62005-03-25 12:31:53 -06009603}
9604
9605static int ipw_net_open(struct net_device *dev)
9606{
9607 struct ipw_priv *priv = ieee80211_priv(dev);
9608 IPW_DEBUG_INFO("dev->open\n");
9609 /* we should be verifying the device is ready to be opened */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009610 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009611 if (!(priv->status & STATUS_RF_KILL_MASK) &&
9612 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009613 netif_start_queue(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009614 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009615 return 0;
9616}
9617
9618static int ipw_net_stop(struct net_device *dev)
9619{
9620 IPW_DEBUG_INFO("dev->close\n");
9621 netif_stop_queue(dev);
9622 return 0;
9623}
9624
9625/*
9626todo:
9627
9628modify to send one tfd per fragment instead of using chunking. otherwise
9629we need to heavily modify the ieee80211_skb_to_txb.
9630*/
9631
Arjan van de Ven858119e2006-01-14 13:20:43 -08009632static int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
James Ketrenos227d2dc2005-07-28 16:25:55 -05009633 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009634{
James Ketrenos0dacca12005-09-21 12:23:41 -05009635 struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009636 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -06009637 int i = 0;
9638 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -05009639#ifdef CONFIG_IPW_QOS
9640 int tx_id = ipw_get_tx_queue_number(priv, pri);
9641 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9642#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009643 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -05009644#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009645 struct clx2_queue *q = &txq->q;
9646 u8 id, hdr_len, unicast;
9647 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009648 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -06009649
James Ketrenos227d2dc2005-07-28 16:25:55 -05009650 /* If there isn't room in the queue, we return busy and let the
9651 * network stack requeue the packet for us */
9652 if (ipw_queue_space(q) < q->high_mark)
9653 return NETDEV_TX_BUSY;
James Ketrenos43f66a62005-03-25 12:31:53 -06009654
9655 switch (priv->ieee->iw_mode) {
9656 case IW_MODE_ADHOC:
9657 hdr_len = IEEE80211_3ADDR_LEN;
Stephen Hemminger3c190652006-01-03 15:27:38 -08009658 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -06009659 id = ipw_find_station(priv, hdr->addr1);
9660 if (id == IPW_INVALID_STATION) {
9661 id = ipw_add_station(priv, hdr->addr1);
9662 if (id == IPW_INVALID_STATION) {
9663 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -04009664 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009665 MAC_ARG(hdr->addr1));
9666 goto drop;
9667 }
9668 }
9669 break;
9670
9671 case IW_MODE_INFRA:
9672 default:
Stephen Hemminger3c190652006-01-03 15:27:38 -08009673 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -06009674 hdr_len = IEEE80211_3ADDR_LEN;
9675 id = 0;
9676 break;
9677 }
9678
9679 tfd = &txq->bd[q->first_empty];
9680 txq->txb[q->first_empty] = txb;
9681 memset(tfd, 0, sizeof(*tfd));
9682 tfd->u.data.station_number = id;
9683
9684 tfd->control_flags.message_type = TX_FRAME_TYPE;
9685 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
9686
9687 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -05009688 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009689 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -04009690
James Ketrenos43f66a62005-03-25 12:31:53 -06009691 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -05009692 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009693 else
James Ketrenosb095c382005-08-24 22:04:42 -05009694 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -06009695
James Ketrenosea2b26e2005-08-24 21:25:16 -05009696 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
9697 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009698
James Ketrenosc848d0a2005-08-24 21:56:24 -05009699 fc = le16_to_cpu(hdr->frame_ctl);
9700 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -06009701
9702 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
9703
James Ketrenosb095c382005-08-24 22:04:42 -05009704 if (likely(unicast))
9705 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9706
9707 if (txb->encrypted && !priv->ieee->host_encrypt) {
9708 switch (priv->ieee->sec.level) {
9709 case SEC_LEVEL_3:
9710 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9711 IEEE80211_FCTL_PROTECTED;
9712 /* XXX: ACK flag must be set for CCMP even if it
9713 * is a multicast/broadcast packet, because CCMP
9714 * group communication encrypted by GTK is
9715 * actually done by the AP. */
9716 if (!unicast)
9717 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9718
9719 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9720 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
9721 tfd->u.data.key_index = 0;
9722 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
9723 break;
9724 case SEC_LEVEL_2:
9725 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9726 IEEE80211_FCTL_PROTECTED;
9727 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9728 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
9729 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
9730 break;
9731 case SEC_LEVEL_1:
9732 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9733 IEEE80211_FCTL_PROTECTED;
9734 tfd->u.data.key_index = priv->ieee->tx_keyidx;
9735 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
9736 40)
9737 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
9738 else
9739 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
9740 break;
9741 case SEC_LEVEL_0:
9742 break;
9743 default:
9744 printk(KERN_ERR "Unknow security level %d\n",
9745 priv->ieee->sec.level);
9746 break;
9747 }
9748 } else
9749 /* No hardware encryption */
9750 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
9751
9752#ifdef CONFIG_IPW_QOS
9753 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast);
9754#endif /* CONFIG_IPW_QOS */
9755
James Ketrenos43f66a62005-03-25 12:31:53 -06009756 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -05009757 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
9758 txb->nr_frags));
9759 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
9760 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
9761 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
9762 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
9763 i, le32_to_cpu(tfd->u.data.num_chunks),
9764 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009765 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009766 i, tfd->u.data.num_chunks,
9767 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009768 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -06009769 txb->fragments[i]->len - hdr_len);
9770
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009771 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009772 cpu_to_le32(pci_map_single
9773 (priv->pci_dev,
9774 txb->fragments[i]->data + hdr_len,
9775 txb->fragments[i]->len - hdr_len,
9776 PCI_DMA_TODEVICE));
9777 tfd->u.data.chunk_len[i] =
9778 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009779 }
9780
9781 if (i != txb->nr_frags) {
9782 struct sk_buff *skb;
9783 u16 remaining_bytes = 0;
9784 int j;
9785
9786 for (j = i; j < txb->nr_frags; j++)
9787 remaining_bytes += txb->fragments[j]->len - hdr_len;
9788
9789 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
9790 remaining_bytes);
9791 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
9792 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -05009793 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -06009794 for (j = i; j < txb->nr_frags; j++) {
9795 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009796
James Ketrenos43f66a62005-03-25 12:31:53 -06009797 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009798 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009799 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009800 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009801 }
9802 dev_kfree_skb_any(txb->fragments[i]);
9803 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009804 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009805 cpu_to_le32(pci_map_single
9806 (priv->pci_dev, skb->data,
9807 tfd->u.data.chunk_len[i],
9808 PCI_DMA_TODEVICE));
9809
9810 tfd->u.data.num_chunks =
9811 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
9812 1);
Jeff Garzikbf794512005-07-31 13:07:26 -04009813 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009814 }
9815
9816 /* kick DMA */
9817 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
9818 ipw_write32(priv, q->reg_w, q->first_empty);
9819
James Ketrenos227d2dc2005-07-28 16:25:55 -05009820 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009821
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009822 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -06009823 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
9824 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -05009825 return NETDEV_TX_OK;
9826}
9827
9828static int ipw_net_is_queue_full(struct net_device *dev, int pri)
9829{
9830 struct ipw_priv *priv = ieee80211_priv(dev);
9831#ifdef CONFIG_IPW_QOS
9832 int tx_id = ipw_get_tx_queue_number(priv, pri);
9833 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9834#else
9835 struct clx2_tx_queue *txq = &priv->txq[0];
9836#endif /* CONFIG_IPW_QOS */
9837
9838 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
9839 return 1;
9840
9841 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009842}
9843
9844static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -05009845 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009846{
9847 struct ipw_priv *priv = ieee80211_priv(dev);
9848 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -05009849 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009850
9851 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009852 spin_lock_irqsave(&priv->lock, flags);
9853
9854 if (!(priv->status & STATUS_ASSOCIATED)) {
9855 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
9856 priv->ieee->stats.tx_carrier_errors++;
9857 netif_stop_queue(dev);
9858 goto fail_unlock;
9859 }
9860
James Ketrenos227d2dc2005-07-28 16:25:55 -05009861 ret = ipw_tx_skb(priv, txb, pri);
9862 if (ret == NETDEV_TX_OK)
9863 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009864 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06009865
James Ketrenos227d2dc2005-07-28 16:25:55 -05009866 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009867
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009868 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -06009869 spin_unlock_irqrestore(&priv->lock, flags);
9870 return 1;
9871}
9872
9873static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
9874{
9875 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -04009876
James Ketrenos43f66a62005-03-25 12:31:53 -06009877 priv->ieee->stats.tx_packets = priv->tx_packets;
9878 priv->ieee->stats.rx_packets = priv->rx_packets;
9879 return &priv->ieee->stats;
9880}
9881
9882static void ipw_net_set_multicast_list(struct net_device *dev)
9883{
9884
9885}
9886
9887static int ipw_net_set_mac_address(struct net_device *dev, void *p)
9888{
9889 struct ipw_priv *priv = ieee80211_priv(dev);
9890 struct sockaddr *addr = p;
9891 if (!is_valid_ether_addr(addr->sa_data))
9892 return -EADDRNOTAVAIL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009893 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009894 priv->config |= CFG_CUSTOM_MAC;
9895 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
9896 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
9897 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -05009898 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009899 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009900 return 0;
9901}
9902
Jeff Garzikbf794512005-07-31 13:07:26 -04009903static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -06009904 struct ethtool_drvinfo *info)
9905{
9906 struct ipw_priv *p = ieee80211_priv(dev);
9907 char vers[64];
9908 char date[32];
9909 u32 len;
9910
9911 strcpy(info->driver, DRV_NAME);
9912 strcpy(info->version, DRV_VERSION);
9913
9914 len = sizeof(vers);
9915 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
9916 len = sizeof(date);
9917 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
9918
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009919 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009920 vers, date);
9921 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -05009922 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009923}
9924
9925static u32 ipw_ethtool_get_link(struct net_device *dev)
9926{
9927 struct ipw_priv *priv = ieee80211_priv(dev);
9928 return (priv->status & STATUS_ASSOCIATED) != 0;
9929}
9930
9931static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
9932{
James Ketrenosb095c382005-08-24 22:04:42 -05009933 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009934}
9935
9936static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009937 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009938{
9939 struct ipw_priv *p = ieee80211_priv(dev);
9940
James Ketrenosb095c382005-08-24 22:04:42 -05009941 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009942 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009943 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009944 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009945 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009946 return 0;
9947}
9948
9949static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009950 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009951{
9952 struct ipw_priv *p = ieee80211_priv(dev);
9953 int i;
9954
James Ketrenosb095c382005-08-24 22:04:42 -05009955 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009956 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009957 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009958 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009959 for (i = IPW_EEPROM_DATA;
James Ketrenosb095c382005-08-24 22:04:42 -05009960 i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06009961 ipw_write8(p, i, p->eeprom[i]);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009962 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009963 return 0;
9964}
9965
9966static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009967 .get_link = ipw_ethtool_get_link,
9968 .get_drvinfo = ipw_ethtool_get_drvinfo,
9969 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
9970 .get_eeprom = ipw_ethtool_get_eeprom,
9971 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -06009972};
9973
9974static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
9975{
9976 struct ipw_priv *priv = data;
9977 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -04009978
James Ketrenos43f66a62005-03-25 12:31:53 -06009979 if (!priv)
9980 return IRQ_NONE;
9981
9982 spin_lock(&priv->lock);
9983
9984 if (!(priv->status & STATUS_INT_ENABLED)) {
9985 /* Shared IRQ */
9986 goto none;
9987 }
9988
James Ketrenosb095c382005-08-24 22:04:42 -05009989 inta = ipw_read32(priv, IPW_INTA_RW);
9990 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -04009991
James Ketrenos43f66a62005-03-25 12:31:53 -06009992 if (inta == 0xFFFFFFFF) {
9993 /* Hardware disappeared */
9994 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
9995 goto none;
9996 }
9997
James Ketrenosb095c382005-08-24 22:04:42 -05009998 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009999 /* Shared interrupt */
10000 goto none;
10001 }
10002
10003 /* tell the device to stop sending interrupts */
10004 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010005
James Ketrenos43f66a62005-03-25 12:31:53 -060010006 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010007 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10008 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010009
James Ketrenos43f66a62005-03-25 12:31:53 -060010010 /* Cache INTA value for our tasklet */
10011 priv->isr_inta = inta;
10012
10013 tasklet_schedule(&priv->irq_tasklet);
10014
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010015 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010016
10017 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010018 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010019 spin_unlock(&priv->lock);
10020 return IRQ_NONE;
10021}
10022
10023static void ipw_rf_kill(void *adapter)
10024{
10025 struct ipw_priv *priv = adapter;
10026 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010027
James Ketrenos43f66a62005-03-25 12:31:53 -060010028 spin_lock_irqsave(&priv->lock, flags);
10029
10030 if (rf_kill_active(priv)) {
10031 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10032 if (priv->workqueue)
10033 queue_delayed_work(priv->workqueue,
10034 &priv->rf_kill, 2 * HZ);
10035 goto exit_unlock;
10036 }
10037
10038 /* RF Kill is now disabled, so bring the device back up */
10039
10040 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10041 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10042 "device\n");
10043
10044 /* we can not do an adapter restart while inside an irq lock */
10045 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010046 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010047 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10048 "enabled\n");
10049
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010050 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010051 spin_unlock_irqrestore(&priv->lock, flags);
10052}
10053
James Ketrenosc848d0a2005-08-24 21:56:24 -050010054static void ipw_bg_rf_kill(void *data)
10055{
10056 struct ipw_priv *priv = data;
10057 down(&priv->sem);
10058 ipw_rf_kill(data);
10059 up(&priv->sem);
10060}
10061
James Ketrenosa613bff2005-08-24 21:43:11 -050010062void ipw_link_up(struct ipw_priv *priv)
10063{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010064 priv->last_seq_num = -1;
10065 priv->last_frag_num = -1;
10066 priv->last_packet_time = 0;
10067
James Ketrenosa613bff2005-08-24 21:43:11 -050010068 netif_carrier_on(priv->net_dev);
10069 if (netif_queue_stopped(priv->net_dev)) {
10070 IPW_DEBUG_NOTIF("waking queue\n");
10071 netif_wake_queue(priv->net_dev);
10072 } else {
10073 IPW_DEBUG_NOTIF("starting queue\n");
10074 netif_start_queue(priv->net_dev);
10075 }
10076
James Ketrenosc848d0a2005-08-24 21:56:24 -050010077 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010078 ipw_reset_stats(priv);
10079 /* Ensure the rate is updated immediately */
10080 priv->last_rate = ipw_get_current_rate(priv);
10081 ipw_gather_stats(priv);
10082 ipw_led_link_up(priv);
10083 notify_wx_assoc_event(priv);
10084
10085 if (priv->config & CFG_BACKGROUND_SCAN)
10086 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10087}
10088
James Ketrenosc848d0a2005-08-24 21:56:24 -050010089static void ipw_bg_link_up(void *data)
10090{
10091 struct ipw_priv *priv = data;
10092 down(&priv->sem);
10093 ipw_link_up(data);
10094 up(&priv->sem);
10095}
10096
James Ketrenosa613bff2005-08-24 21:43:11 -050010097void ipw_link_down(struct ipw_priv *priv)
10098{
10099 ipw_led_link_down(priv);
10100 netif_carrier_off(priv->net_dev);
10101 netif_stop_queue(priv->net_dev);
10102 notify_wx_assoc_event(priv);
10103
10104 /* Cancel any queued work ... */
10105 cancel_delayed_work(&priv->request_scan);
10106 cancel_delayed_work(&priv->adhoc_check);
10107 cancel_delayed_work(&priv->gather_stats);
10108
10109 ipw_reset_stats(priv);
10110
James Ketrenosafbf30a2005-08-25 00:05:33 -050010111 if (!(priv->status & STATUS_EXIT_PENDING)) {
10112 /* Queue up another scan... */
10113 queue_work(priv->workqueue, &priv->request_scan);
10114 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010115}
10116
James Ketrenosc848d0a2005-08-24 21:56:24 -050010117static void ipw_bg_link_down(void *data)
10118{
10119 struct ipw_priv *priv = data;
10120 down(&priv->sem);
10121 ipw_link_down(data);
10122 up(&priv->sem);
10123}
10124
James Ketrenos43f66a62005-03-25 12:31:53 -060010125static int ipw_setup_deferred_work(struct ipw_priv *priv)
10126{
10127 int ret = 0;
10128
James Ketrenos43f66a62005-03-25 12:31:53 -060010129 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010130 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010131 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010132
James Ketrenosc848d0a2005-08-24 21:56:24 -050010133 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10134 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10135 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010136 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010137 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10138 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10139 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10140 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10141 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010142 INIT_WORK(&priv->request_scan,
James Ketrenos43f66a62005-03-25 12:31:53 -060010143 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010144 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010145 (void (*)(void *))ipw_bg_gather_stats, priv);
10146 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10147 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10148 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10149 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10150 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10151 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010152 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010153 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010154 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010155 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10156 priv);
10157 INIT_WORK(&priv->merge_networks,
10158 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010159
James Ketrenosb095c382005-08-24 22:04:42 -050010160#ifdef CONFIG_IPW_QOS
10161 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10162 priv);
10163#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010164
10165 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10166 ipw_irq_tasklet, (unsigned long)priv);
10167
10168 return ret;
10169}
10170
James Ketrenos43f66a62005-03-25 12:31:53 -060010171static void shim__set_security(struct net_device *dev,
10172 struct ieee80211_security *sec)
10173{
10174 struct ipw_priv *priv = ieee80211_priv(dev);
10175 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010176 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010177 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010178 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010179 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010180 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010181 priv->ieee->sec.flags &= ~(1 << i);
10182 else {
10183 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010184 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010185 priv->ieee->sec.flags |= (1 << i);
10186 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010187 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010188 } else if (sec->level != SEC_LEVEL_1)
10189 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010190 }
10191
James Ketrenosb095c382005-08-24 22:04:42 -050010192 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010193 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010194 priv->ieee->sec.active_key = sec->active_key;
10195 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010196 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010197 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010198 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010199 } else
10200 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010201
10202 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010203 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10204 priv->ieee->sec.auth_mode = sec->auth_mode;
10205 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010206 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10207 priv->capability |= CAP_SHARED_KEY;
10208 else
10209 priv->capability &= ~CAP_SHARED_KEY;
10210 priv->status |= STATUS_SECURITY_UPDATED;
10211 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010212
James Ketrenosb095c382005-08-24 22:04:42 -050010213 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10214 priv->ieee->sec.flags |= SEC_ENABLED;
10215 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010216 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010217 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010218 priv->capability |= CAP_PRIVACY_ON;
10219 else
10220 priv->capability &= ~CAP_PRIVACY_ON;
10221 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010222
James Ketrenosafbf30a2005-08-25 00:05:33 -050010223 if (sec->flags & SEC_ENCRYPT)
10224 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010225
James Ketrenosb095c382005-08-24 22:04:42 -050010226 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10227 priv->ieee->sec.level = sec->level;
10228 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010229 priv->status |= STATUS_SECURITY_UPDATED;
10230 }
10231
Zhu Yi1fbfea52005-08-05 17:22:56 +080010232 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10233 ipw_set_hwcrypto_keys(priv);
10234
Jeff Garzikbf794512005-07-31 13:07:26 -040010235 /* To match current functionality of ipw2100 (which works well w/
10236 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010237 * privacy capability changes ... */
10238#if 0
10239 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010240 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010241 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010242 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010243 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010244 IPW_DEBUG_ASSOC("Disassociating due to capability "
10245 "change.\n");
10246 ipw_disassociate(priv);
10247 }
10248#endif
10249}
10250
Jeff Garzikbf794512005-07-31 13:07:26 -040010251static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010252 struct ipw_supported_rates *rates)
10253{
10254 /* TODO: Mask out rates based on priv->rates_mask */
10255
10256 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010257 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010258 switch (priv->ieee->freq_band) {
10259 case IEEE80211_52GHZ_BAND:
10260 rates->ieee_mode = IPW_A_MODE;
10261 rates->purpose = IPW_RATE_CAPABILITIES;
10262 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10263 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10264 break;
10265
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010266 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010267 rates->ieee_mode = IPW_G_MODE;
10268 rates->purpose = IPW_RATE_CAPABILITIES;
10269 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10270 IEEE80211_CCK_DEFAULT_RATES_MASK);
10271 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10272 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10273 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10274 }
10275 break;
10276 }
10277
10278 return 0;
10279}
10280
Jeff Garzikbf794512005-07-31 13:07:26 -040010281static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010282{
James Ketrenos43f66a62005-03-25 12:31:53 -060010283 /* This is only called from ipw_up, which resets/reloads the firmware
10284 so, we don't need to first disable the card before we configure
10285 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010286 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010287 goto error;
10288
10289 /* initialize adapter address */
10290 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10291 goto error;
10292
10293 /* set basic system config settings */
10294 init_sys_config(&priv->sys_config);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010295 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10296 priv->sys_config.answer_broadcast_ssid_probe = 1;
10297 else
10298 priv->sys_config.answer_broadcast_ssid_probe = 0;
10299
James Ketrenos43f66a62005-03-25 12:31:53 -060010300 if (ipw_send_system_config(priv, &priv->sys_config))
10301 goto error;
10302
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010303 init_supported_rates(priv, &priv->rates);
10304 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010305 goto error;
10306
10307 /* Set request-to-send threshold */
10308 if (priv->rts_threshold) {
10309 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10310 goto error;
10311 }
James Ketrenosb095c382005-08-24 22:04:42 -050010312#ifdef CONFIG_IPW_QOS
10313 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10314 ipw_qos_activate(priv, NULL);
10315#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010316
10317 if (ipw_set_random_seed(priv))
10318 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010319
James Ketrenos43f66a62005-03-25 12:31:53 -060010320 /* final state transition to the RUN state */
10321 if (ipw_send_host_complete(priv))
10322 goto error;
10323
James Ketrenose6666192005-08-12 09:17:04 -050010324 priv->status |= STATUS_INIT;
10325
10326 ipw_led_init(priv);
10327 ipw_led_radio_on(priv);
10328 priv->notif_missed_beacons = 0;
10329
10330 /* Set hardware WEP key if it is configured. */
10331 if ((priv->capability & CAP_PRIVACY_ON) &&
10332 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10333 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10334 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010335
10336 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010337
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010338 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010339 return -EIO;
10340}
10341
James Ketrenos4f36f802005-08-03 20:36:56 -050010342/*
10343 * NOTE:
10344 *
10345 * These tables have been tested in conjunction with the
10346 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10347 *
10348 * Altering this values, using it on other hardware, or in geographies
10349 * not intended for resale of the above mentioned Intel adapters has
10350 * not been tested.
10351 *
10352 */
10353static const struct ieee80211_geo ipw_geos[] = {
10354 { /* Restricted */
10355 "---",
10356 .bg_channels = 11,
10357 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10358 {2427, 4}, {2432, 5}, {2437, 6},
10359 {2442, 7}, {2447, 8}, {2452, 9},
10360 {2457, 10}, {2462, 11}},
10361 },
10362
10363 { /* Custom US/Canada */
10364 "ZZF",
10365 .bg_channels = 11,
10366 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10367 {2427, 4}, {2432, 5}, {2437, 6},
10368 {2442, 7}, {2447, 8}, {2452, 9},
10369 {2457, 10}, {2462, 11}},
10370 .a_channels = 8,
10371 .a = {{5180, 36},
10372 {5200, 40},
10373 {5220, 44},
10374 {5240, 48},
10375 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10376 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10377 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10378 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10379 },
10380
10381 { /* Rest of World */
10382 "ZZD",
10383 .bg_channels = 13,
10384 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10385 {2427, 4}, {2432, 5}, {2437, 6},
10386 {2442, 7}, {2447, 8}, {2452, 9},
10387 {2457, 10}, {2462, 11}, {2467, 12},
10388 {2472, 13}},
10389 },
10390
10391 { /* Custom USA & Europe & High */
10392 "ZZA",
10393 .bg_channels = 11,
10394 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10395 {2427, 4}, {2432, 5}, {2437, 6},
10396 {2442, 7}, {2447, 8}, {2452, 9},
10397 {2457, 10}, {2462, 11}},
10398 .a_channels = 13,
10399 .a = {{5180, 36},
10400 {5200, 40},
10401 {5220, 44},
10402 {5240, 48},
10403 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10404 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10405 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10406 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10407 {5745, 149},
10408 {5765, 153},
10409 {5785, 157},
10410 {5805, 161},
10411 {5825, 165}},
10412 },
10413
10414 { /* Custom NA & Europe */
10415 "ZZB",
10416 .bg_channels = 11,
10417 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10418 {2427, 4}, {2432, 5}, {2437, 6},
10419 {2442, 7}, {2447, 8}, {2452, 9},
10420 {2457, 10}, {2462, 11}},
10421 .a_channels = 13,
10422 .a = {{5180, 36},
10423 {5200, 40},
10424 {5220, 44},
10425 {5240, 48},
10426 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10427 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10428 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10429 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10430 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10431 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10432 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10433 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10434 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10435 },
10436
10437 { /* Custom Japan */
10438 "ZZC",
10439 .bg_channels = 11,
10440 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10441 {2427, 4}, {2432, 5}, {2437, 6},
10442 {2442, 7}, {2447, 8}, {2452, 9},
10443 {2457, 10}, {2462, 11}},
10444 .a_channels = 4,
10445 .a = {{5170, 34}, {5190, 38},
10446 {5210, 42}, {5230, 46}},
10447 },
10448
10449 { /* Custom */
10450 "ZZM",
10451 .bg_channels = 11,
10452 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10453 {2427, 4}, {2432, 5}, {2437, 6},
10454 {2442, 7}, {2447, 8}, {2452, 9},
10455 {2457, 10}, {2462, 11}},
10456 },
10457
10458 { /* Europe */
10459 "ZZE",
10460 .bg_channels = 13,
10461 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10462 {2427, 4}, {2432, 5}, {2437, 6},
10463 {2442, 7}, {2447, 8}, {2452, 9},
10464 {2457, 10}, {2462, 11}, {2467, 12},
10465 {2472, 13}},
10466 .a_channels = 19,
10467 .a = {{5180, 36},
10468 {5200, 40},
10469 {5220, 44},
10470 {5240, 48},
10471 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10472 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10473 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10474 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10475 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10476 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10477 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10478 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10479 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10480 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10481 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10482 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10483 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10484 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10485 {5700, 140, IEEE80211_CH_PASSIVE_ONLY}},
10486 },
10487
10488 { /* Custom Japan */
10489 "ZZJ",
10490 .bg_channels = 14,
10491 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10492 {2427, 4}, {2432, 5}, {2437, 6},
10493 {2442, 7}, {2447, 8}, {2452, 9},
10494 {2457, 10}, {2462, 11}, {2467, 12},
10495 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY}},
10496 .a_channels = 4,
10497 .a = {{5170, 34}, {5190, 38},
10498 {5210, 42}, {5230, 46}},
10499 },
10500
James Ketrenos03520572005-10-19 16:12:31 -050010501 { /* Rest of World */
10502 "ZZR",
10503 .bg_channels = 14,
10504 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10505 {2427, 4}, {2432, 5}, {2437, 6},
10506 {2442, 7}, {2447, 8}, {2452, 9},
10507 {2457, 10}, {2462, 11}, {2467, 12},
10508 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY |
10509 IEEE80211_CH_PASSIVE_ONLY}},
10510 },
10511
James Ketrenos4f36f802005-08-03 20:36:56 -050010512 { /* High Band */
10513 "ZZH",
10514 .bg_channels = 13,
10515 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10516 {2427, 4}, {2432, 5}, {2437, 6},
10517 {2442, 7}, {2447, 8}, {2452, 9},
10518 {2457, 10}, {2462, 11},
10519 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10520 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10521 .a_channels = 4,
10522 .a = {{5745, 149}, {5765, 153},
10523 {5785, 157}, {5805, 161}},
10524 },
10525
10526 { /* Custom Europe */
10527 "ZZG",
10528 .bg_channels = 13,
10529 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10530 {2427, 4}, {2432, 5}, {2437, 6},
10531 {2442, 7}, {2447, 8}, {2452, 9},
10532 {2457, 10}, {2462, 11},
10533 {2467, 12}, {2472, 13}},
10534 .a_channels = 4,
10535 .a = {{5180, 36}, {5200, 40},
10536 {5220, 44}, {5240, 48}},
10537 },
10538
10539 { /* Europe */
10540 "ZZK",
10541 .bg_channels = 13,
10542 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10543 {2427, 4}, {2432, 5}, {2437, 6},
10544 {2442, 7}, {2447, 8}, {2452, 9},
10545 {2457, 10}, {2462, 11},
10546 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10547 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10548 .a_channels = 24,
10549 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10550 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10551 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10552 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10553 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10554 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10555 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10556 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10557 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10558 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10559 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10560 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10561 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10562 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10563 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10564 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10565 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10566 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10567 {5700, 140, IEEE80211_CH_PASSIVE_ONLY},
10568 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10569 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10570 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10571 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10572 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10573 },
10574
10575 { /* Europe */
10576 "ZZL",
10577 .bg_channels = 11,
10578 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10579 {2427, 4}, {2432, 5}, {2437, 6},
10580 {2442, 7}, {2447, 8}, {2452, 9},
10581 {2457, 10}, {2462, 11}},
10582 .a_channels = 13,
10583 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10584 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10585 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10586 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10587 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10588 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10589 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10590 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10591 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10592 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10593 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10594 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10595 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10596 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010597};
10598
Liu Hong1fe0adb2005-08-19 09:33:10 -050010599/* GEO code borrowed from ieee80211_geo.c */
10600static int ipw_is_valid_channel(struct ieee80211_device *ieee, u8 channel)
10601{
10602 int i;
10603
10604 /* Driver needs to initialize the geography map before using
10605 * these helper functions */
10606 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10607
10608 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10609 for (i = 0; i < ieee->geo.bg_channels; i++)
10610 /* NOTE: If G mode is currently supported but
10611 * this is a B only channel, we don't see it
10612 * as valid. */
10613 if ((ieee->geo.bg[i].channel == channel) &&
10614 (!(ieee->mode & IEEE_G) ||
10615 !(ieee->geo.bg[i].flags & IEEE80211_CH_B_ONLY)))
10616 return IEEE80211_24GHZ_BAND;
10617
10618 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10619 for (i = 0; i < ieee->geo.a_channels; i++)
10620 if (ieee->geo.a[i].channel == channel)
10621 return IEEE80211_52GHZ_BAND;
10622
10623 return 0;
10624}
10625
10626static int ipw_channel_to_index(struct ieee80211_device *ieee, u8 channel)
10627{
10628 int i;
10629
10630 /* Driver needs to initialize the geography map before using
10631 * these helper functions */
10632 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10633
10634 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10635 for (i = 0; i < ieee->geo.bg_channels; i++)
10636 if (ieee->geo.bg[i].channel == channel)
10637 return i;
10638
10639 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10640 for (i = 0; i < ieee->geo.a_channels; i++)
10641 if (ieee->geo.a[i].channel == channel)
10642 return i;
10643
10644 return -1;
10645}
10646
10647static u8 ipw_freq_to_channel(struct ieee80211_device *ieee, u32 freq)
10648{
10649 int i;
10650
10651 /* Driver needs to initialize the geography map before using
10652 * these helper functions */
10653 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10654
10655 freq /= 100000;
10656
10657 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10658 for (i = 0; i < ieee->geo.bg_channels; i++)
10659 if (ieee->geo.bg[i].freq == freq)
10660 return ieee->geo.bg[i].channel;
10661
10662 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10663 for (i = 0; i < ieee->geo.a_channels; i++)
10664 if (ieee->geo.a[i].freq == freq)
10665 return ieee->geo.a[i].channel;
10666
10667 return 0;
10668}
10669
10670static int ipw_set_geo(struct ieee80211_device *ieee,
10671 const struct ieee80211_geo *geo)
10672{
10673 memcpy(ieee->geo.name, geo->name, 3);
10674 ieee->geo.name[3] = '\0';
10675 ieee->geo.bg_channels = geo->bg_channels;
10676 ieee->geo.a_channels = geo->a_channels;
10677 memcpy(ieee->geo.bg, geo->bg, geo->bg_channels *
10678 sizeof(struct ieee80211_channel));
10679 memcpy(ieee->geo.a, geo->a, ieee->geo.a_channels *
10680 sizeof(struct ieee80211_channel));
10681 return 0;
10682}
10683
10684static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *ieee)
10685{
10686 return &ieee->geo;
10687}
10688
James Ketrenos43f66a62005-03-25 12:31:53 -060010689#define MAX_HW_RESTARTS 5
10690static int ipw_up(struct ipw_priv *priv)
10691{
James Ketrenos4f36f802005-08-03 20:36:56 -050010692 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060010693
10694 if (priv->status & STATUS_EXIT_PENDING)
10695 return -EIO;
10696
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010697 if (cmdlog && !priv->cmdlog) {
10698 priv->cmdlog = kmalloc(sizeof(*priv->cmdlog) * cmdlog,
10699 GFP_KERNEL);
10700 if (priv->cmdlog == NULL) {
10701 IPW_ERROR("Error allocating %d command log entries.\n",
10702 cmdlog);
10703 } else {
10704 memset(priv->cmdlog, 0, sizeof(*priv->cmdlog) * cmdlog);
10705 priv->cmdlog_len = cmdlog;
10706 }
10707 }
10708
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010709 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040010710 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060010711 * Also start the clocks. */
10712 rc = ipw_load(priv);
10713 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050010714 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010715 return rc;
10716 }
10717
10718 ipw_init_ordinals(priv);
10719 if (!(priv->config & CFG_CUSTOM_MAC))
10720 eeprom_parse_mac(priv, priv->mac_addr);
10721 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
10722
James Ketrenos4f36f802005-08-03 20:36:56 -050010723 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
10724 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
10725 ipw_geos[j].name, 3))
10726 break;
10727 }
James Ketrenos03520572005-10-19 16:12:31 -050010728 if (j == ARRAY_SIZE(ipw_geos)) {
10729 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
10730 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
10731 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
10732 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
James Ketrenos4f36f802005-08-03 20:36:56 -050010733 j = 0;
James Ketrenos03520572005-10-19 16:12:31 -050010734 }
Liu Hong1fe0adb2005-08-19 09:33:10 -050010735 if (ipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050010736 IPW_WARNING("Could not set geography.");
James Ketrenos43f66a62005-03-25 12:31:53 -060010737 return 0;
James Ketrenos4f36f802005-08-03 20:36:56 -050010738 }
10739
10740 IPW_DEBUG_INFO("Geography %03d [%s] detected.\n",
10741 j, priv->ieee->geo.name);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010742
James Ketrenosb095c382005-08-24 22:04:42 -050010743 if (priv->status & STATUS_RF_KILL_SW) {
10744 IPW_WARNING("Radio disabled by module parameter.\n");
10745 return 0;
10746 } else if (rf_kill_active(priv)) {
10747 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
10748 "Kill switch must be turned off for "
10749 "wireless networking to work.\n");
10750 queue_delayed_work(priv->workqueue, &priv->rf_kill,
10751 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010752 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010753 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010754
10755 rc = ipw_config(priv);
10756 if (!rc) {
10757 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010758
James Ketrenose6666192005-08-12 09:17:04 -050010759 /* If configure to try and auto-associate, kick
10760 * off a scan. */
10761 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010762
James Ketrenos43f66a62005-03-25 12:31:53 -060010763 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010764 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010765
James Ketrenosc848d0a2005-08-24 21:56:24 -050010766 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010767 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
10768 i, MAX_HW_RESTARTS);
10769
10770 /* We had an error bringing up the hardware, so take it
10771 * all the way back down so we can try again */
10772 ipw_down(priv);
10773 }
10774
Jeff Garzikbf794512005-07-31 13:07:26 -040010775 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060010776 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010777 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010778
James Ketrenos43f66a62005-03-25 12:31:53 -060010779 return -EIO;
10780}
10781
James Ketrenosc848d0a2005-08-24 21:56:24 -050010782static void ipw_bg_up(void *data)
10783{
10784 struct ipw_priv *priv = data;
10785 down(&priv->sem);
10786 ipw_up(data);
10787 up(&priv->sem);
10788}
10789
James Ketrenosb095c382005-08-24 22:04:42 -050010790static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010791{
James Ketrenosb095c382005-08-24 22:04:42 -050010792 int i;
10793
10794 if (priv->status & STATUS_SCANNING) {
10795 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
10796 ipw_abort_scan(priv);
10797 }
10798
10799 if (priv->status & STATUS_ASSOCIATED) {
10800 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
10801 ipw_disassociate(priv);
10802 }
10803
10804 ipw_led_shutdown(priv);
10805
10806 /* Wait up to 1s for status to change to not scanning and not
10807 * associated (disassociation can take a while for a ful 802.11
10808 * exchange */
10809 for (i = 1000; i && (priv->status &
10810 (STATUS_DISASSOCIATING |
10811 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
10812 udelay(10);
10813
10814 if (priv->status & (STATUS_DISASSOCIATING |
10815 STATUS_ASSOCIATED | STATUS_SCANNING))
10816 IPW_DEBUG_INFO("Still associated or scanning...\n");
10817 else
10818 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
10819
James Ketrenosc848d0a2005-08-24 21:56:24 -050010820 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060010821 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050010822
10823 priv->status &= ~STATUS_INIT;
10824}
10825
James Ketrenos43f66a62005-03-25 12:31:53 -060010826static void ipw_down(struct ipw_priv *priv)
10827{
James Ketrenosb095c382005-08-24 22:04:42 -050010828 int exit_pending = priv->status & STATUS_EXIT_PENDING;
10829
10830 priv->status |= STATUS_EXIT_PENDING;
10831
10832 if (ipw_is_init(priv))
10833 ipw_deinit(priv);
10834
10835 /* Wipe out the EXIT_PENDING status bit if we are not actually
10836 * exiting the module */
10837 if (!exit_pending)
10838 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010839
10840 /* tell the device to stop sending interrupts */
10841 ipw_disable_interrupts(priv);
10842
10843 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050010844 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010845 netif_carrier_off(priv->net_dev);
10846 netif_stop_queue(priv->net_dev);
10847
10848 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050010849
10850 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010851}
10852
James Ketrenosc848d0a2005-08-24 21:56:24 -050010853static void ipw_bg_down(void *data)
10854{
10855 struct ipw_priv *priv = data;
10856 down(&priv->sem);
10857 ipw_down(data);
10858 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010859}
10860
10861/* Called by register_netdev() */
10862static int ipw_net_init(struct net_device *dev)
10863{
10864 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010865 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010866
James Ketrenosc848d0a2005-08-24 21:56:24 -050010867 if (ipw_up(priv)) {
10868 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010869 return -EIO;
James Ketrenos43f66a62005-03-25 12:31:53 -060010870 }
10871
James Ketrenosc848d0a2005-08-24 21:56:24 -050010872 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010873 return 0;
10874}
10875
10876/* PCI driver stuff */
10877static struct pci_device_id card_ids[] = {
10878 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
10879 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
10880 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
10881 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
10882 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
10883 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
10884 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
10885 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
10886 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
10887 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
10888 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
10889 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
10890 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
10891 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
10892 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
10893 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
10894 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
10895 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010896 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050010897 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010898 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
10899 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040010900
James Ketrenos43f66a62005-03-25 12:31:53 -060010901 /* required last entry */
10902 {0,}
10903};
10904
10905MODULE_DEVICE_TABLE(pci, card_ids);
10906
10907static struct attribute *ipw_sysfs_entries[] = {
10908 &dev_attr_rf_kill.attr,
10909 &dev_attr_direct_dword.attr,
10910 &dev_attr_indirect_byte.attr,
10911 &dev_attr_indirect_dword.attr,
10912 &dev_attr_mem_gpio_reg.attr,
10913 &dev_attr_command_event_reg.attr,
10914 &dev_attr_nic_type.attr,
10915 &dev_attr_status.attr,
10916 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050010917 &dev_attr_error.attr,
10918 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010919 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060010920 &dev_attr_eeprom_delay.attr,
10921 &dev_attr_ucode_version.attr,
10922 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050010923 &dev_attr_scan_age.attr,
10924 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050010925 &dev_attr_speed_scan.attr,
10926 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060010927 NULL
10928};
10929
10930static struct attribute_group ipw_attribute_group = {
10931 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010932 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060010933};
10934
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010935static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060010936{
10937 int err = 0;
10938 struct net_device *net_dev;
10939 void __iomem *base;
10940 u32 length, val;
10941 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010942 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060010943
10944 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
10945 if (net_dev == NULL) {
10946 err = -ENOMEM;
10947 goto out;
10948 }
10949
10950 priv = ieee80211_priv(net_dev);
10951 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010952
James Ketrenos43f66a62005-03-25 12:31:53 -060010953 priv->net_dev = net_dev;
10954 priv->pci_dev = pdev;
Brice Goglin0f52bf92005-12-01 01:41:46 -080010955#ifdef CONFIG_IPW2200_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -060010956 ipw_debug_level = debug;
10957#endif
10958 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010959 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
10960 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060010961
James Ketrenosc848d0a2005-08-24 21:56:24 -050010962 init_MUTEX(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010963 if (pci_enable_device(pdev)) {
10964 err = -ENODEV;
10965 goto out_free_ieee80211;
10966 }
10967
10968 pci_set_master(pdev);
10969
Tobias Klauser0e08b442005-06-20 14:28:41 -070010970 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040010971 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070010972 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010973 if (err) {
10974 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
10975 goto out_pci_disable_device;
10976 }
10977
10978 pci_set_drvdata(pdev, priv);
10979
10980 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040010981 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060010982 goto out_pci_disable_device;
10983
Jeff Garzikbf794512005-07-31 13:07:26 -040010984 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060010985 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040010986 pci_read_config_dword(pdev, 0x40, &val);
10987 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060010988 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040010989
James Ketrenos43f66a62005-03-25 12:31:53 -060010990 length = pci_resource_len(pdev, 0);
10991 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040010992
James Ketrenos43f66a62005-03-25 12:31:53 -060010993 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
10994 if (!base) {
10995 err = -ENODEV;
10996 goto out_pci_release_regions;
10997 }
10998
10999 priv->hw_base = base;
11000 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11001 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11002
11003 err = ipw_setup_deferred_work(priv);
11004 if (err) {
11005 IPW_ERROR("Unable to setup deferred work\n");
11006 goto out_iounmap;
11007 }
11008
James Ketrenosb095c382005-08-24 22:04:42 -050011009 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011010
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011011 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011012 if (err) {
11013 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11014 goto out_destroy_workqueue;
11015 }
11016
11017 SET_MODULE_OWNER(net_dev);
11018 SET_NETDEV_DEV(net_dev, &pdev->dev);
11019
James Ketrenosc848d0a2005-08-24 21:56:24 -050011020 down(&priv->sem);
11021
James Ketrenos43f66a62005-03-25 12:31:53 -060011022 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11023 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011024 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011025
James Ketrenosb095c382005-08-24 22:04:42 -050011026#ifdef CONFIG_IPW_QOS
James Ketrenos3b9990c2005-08-19 13:18:55 -050011027 priv->ieee->handle_probe_response = ipw_handle_beacon;
11028 priv->ieee->handle_beacon = ipw_handle_probe_response;
11029 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
James Ketrenosb095c382005-08-24 22:04:42 -050011030#endif /* CONFIG_IPW_QOS */
11031
James Ketrenosc848d0a2005-08-24 21:56:24 -050011032 priv->ieee->perfect_rssi = -20;
11033 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060011034
11035 net_dev->open = ipw_net_open;
11036 net_dev->stop = ipw_net_stop;
11037 net_dev->init = ipw_net_init;
11038 net_dev->get_stats = ipw_net_get_stats;
11039 net_dev->set_multicast_list = ipw_net_set_multicast_list;
11040 net_dev->set_mac_address = ipw_net_set_mac_address;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011041 priv->wireless_data.spy_data = &priv->ieee->spy_data;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011042 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011043 net_dev->wireless_handlers = &ipw_wx_handler_def;
11044 net_dev->ethtool_ops = &ipw_ethtool_ops;
11045 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011046 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011047 net_dev->mem_start = pci_resource_start(pdev, 0);
11048 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11049
11050 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11051 if (err) {
11052 IPW_ERROR("failed to create sysfs device attributes\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -050011053 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011054 goto out_release_irq;
11055 }
11056
James Ketrenosc848d0a2005-08-24 21:56:24 -050011057 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011058 err = register_netdev(net_dev);
11059 if (err) {
11060 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011061 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011062 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011063 return 0;
11064
James Ketrenosa613bff2005-08-24 21:43:11 -050011065 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011066 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011067 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011068 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011069 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011070 destroy_workqueue(priv->workqueue);
11071 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011072 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011073 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011074 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011075 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011076 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011077 pci_disable_device(pdev);
11078 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011079 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060011080 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011081 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011082 return err;
11083}
11084
11085static void ipw_pci_remove(struct pci_dev *pdev)
11086{
11087 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011088 struct list_head *p, *q;
11089 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011090
James Ketrenos43f66a62005-03-25 12:31:53 -060011091 if (!priv)
11092 return;
11093
James Ketrenosb095c382005-08-24 22:04:42 -050011094 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011095
James Ketrenosafbf30a2005-08-25 00:05:33 -050011096 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011097 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011098 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11099
James Ketrenosb095c382005-08-24 22:04:42 -050011100 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011101
11102 unregister_netdev(priv->net_dev);
11103
11104 if (priv->rxq) {
11105 ipw_rx_queue_free(priv, priv->rxq);
11106 priv->rxq = NULL;
11107 }
11108 ipw_tx_queue_free(priv);
11109
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011110 if (priv->cmdlog) {
11111 kfree(priv->cmdlog);
11112 priv->cmdlog = NULL;
11113 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011114 /* ipw_down will ensure that there is no more pending work
11115 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011116 cancel_delayed_work(&priv->adhoc_check);
11117 cancel_delayed_work(&priv->gather_stats);
11118 cancel_delayed_work(&priv->request_scan);
11119 cancel_delayed_work(&priv->rf_kill);
11120 cancel_delayed_work(&priv->scan_check);
11121 destroy_workqueue(priv->workqueue);
11122 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011123
James Ketrenosafbf30a2005-08-25 00:05:33 -050011124 /* Free MAC hash list for ADHOC */
11125 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11126 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050011127 list_del(p);
Zhu Yi489f4452006-01-24 16:37:41 +080011128 kfree(list_entry(p, struct ipw_ibss_seq, list));
James Ketrenosafbf30a2005-08-25 00:05:33 -050011129 }
11130 }
11131
James Ketrenosb39860c2005-08-12 09:36:32 -050011132 if (priv->error) {
11133 ipw_free_error_log(priv->error);
11134 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011135 }
11136
11137 free_irq(pdev->irq, priv);
11138 iounmap(priv->hw_base);
11139 pci_release_regions(pdev);
11140 pci_disable_device(pdev);
11141 pci_set_drvdata(pdev, NULL);
11142 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011143 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011144}
11145
James Ketrenos43f66a62005-03-25 12:31:53 -060011146#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011147static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011148{
11149 struct ipw_priv *priv = pci_get_drvdata(pdev);
11150 struct net_device *dev = priv->net_dev;
11151
11152 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11153
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011154 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011155 ipw_down(priv);
11156
11157 /* Remove the PRESENT state of the device */
11158 netif_device_detach(dev);
11159
James Ketrenos43f66a62005-03-25 12:31:53 -060011160 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011161 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011162 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011163
James Ketrenos43f66a62005-03-25 12:31:53 -060011164 return 0;
11165}
11166
11167static int ipw_pci_resume(struct pci_dev *pdev)
11168{
11169 struct ipw_priv *priv = pci_get_drvdata(pdev);
11170 struct net_device *dev = priv->net_dev;
11171 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011172
James Ketrenos43f66a62005-03-25 12:31:53 -060011173 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11174
James Ketrenosea2b26e2005-08-24 21:25:16 -050011175 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011176 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011177 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011178
James Ketrenos43f66a62005-03-25 12:31:53 -060011179 /*
11180 * Suspend/Resume resets the PCI configuration space, so we have to
11181 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11182 * from interfering with C3 CPU state. pci_restore_state won't help
11183 * here since it only restores the first 64 bytes pci config header.
11184 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011185 pci_read_config_dword(pdev, 0x40, &val);
11186 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011187 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11188
11189 /* Set the device back into the PRESENT state; this will also wake
11190 * the queue of needed */
11191 netif_device_attach(dev);
11192
11193 /* Bring the device back up */
11194 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011195
James Ketrenos43f66a62005-03-25 12:31:53 -060011196 return 0;
11197}
11198#endif
11199
11200/* driver initialization stuff */
11201static struct pci_driver ipw_driver = {
11202 .name = DRV_NAME,
11203 .id_table = card_ids,
11204 .probe = ipw_pci_probe,
11205 .remove = __devexit_p(ipw_pci_remove),
11206#ifdef CONFIG_PM
11207 .suspend = ipw_pci_suspend,
11208 .resume = ipw_pci_resume,
11209#endif
11210};
11211
11212static int __init ipw_init(void)
11213{
11214 int ret;
11215
11216 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11217 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11218
11219 ret = pci_module_init(&ipw_driver);
11220 if (ret) {
11221 IPW_ERROR("Unable to initialize PCI module\n");
11222 return ret;
11223 }
11224
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011225 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011226 if (ret) {
11227 IPW_ERROR("Unable to create driver sysfs file\n");
11228 pci_unregister_driver(&ipw_driver);
11229 return ret;
11230 }
11231
11232 return ret;
11233}
11234
11235static void __exit ipw_exit(void)
11236{
11237 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11238 pci_unregister_driver(&ipw_driver);
11239}
11240
11241module_param(disable, int, 0444);
11242MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11243
11244module_param(associate, int, 0444);
11245MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
11246
11247module_param(auto_create, int, 0444);
11248MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11249
James Ketrenosa613bff2005-08-24 21:43:11 -050011250module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011251MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011252
James Ketrenos43f66a62005-03-25 12:31:53 -060011253module_param(debug, int, 0444);
11254MODULE_PARM_DESC(debug, "debug output mask");
11255
11256module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011257MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011258
James Ketrenosb095c382005-08-24 22:04:42 -050011259#ifdef CONFIG_IPW_QOS
11260module_param(qos_enable, int, 0444);
11261MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060011262
James Ketrenosb095c382005-08-24 22:04:42 -050011263module_param(qos_burst_enable, int, 0444);
11264MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11265
11266module_param(qos_no_ack_mask, int, 0444);
11267MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11268
11269module_param(burst_duration_CCK, int, 0444);
11270MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11271
11272module_param(burst_duration_OFDM, int, 0444);
11273MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
11274#endif /* CONFIG_IPW_QOS */
11275
11276#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060011277module_param(mode, int, 0444);
11278MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
11279#else
11280module_param(mode, int, 0444);
11281MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
11282#endif
11283
James Ketrenosb095c382005-08-24 22:04:42 -050011284module_param(hwcrypto, int, 0444);
11285MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)");
11286
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011287module_param(cmdlog, int, 0444);
11288MODULE_PARM_DESC(cmdlog,
11289 "allocate a ring buffer for logging firmware commands");
11290
James Ketrenos43f66a62005-03-25 12:31:53 -060011291module_exit(ipw_exit);
11292module_init(ipw_init);