blob: 53a6bb2dbd4c687d1edd4813aff46333e32d733e [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"
34
James Ketrenosafbf30a2005-08-25 00:05:33 -050035#define IPW2200_VERSION "1.0.5"
James Ketrenos43f66a62005-03-25 12:31:53 -060036#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
James Ketrenos2b184d52005-08-03 20:33:14 -050037#define DRV_COPYRIGHT "Copyright(c) 2003-2005 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060038#define DRV_VERSION IPW2200_VERSION
39
James Ketrenosb095c382005-08-24 22:04:42 -050040#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
41
James Ketrenos43f66a62005-03-25 12:31:53 -060042MODULE_DESCRIPTION(DRV_DESCRIPTION);
43MODULE_VERSION(DRV_VERSION);
44MODULE_AUTHOR(DRV_COPYRIGHT);
45MODULE_LICENSE("GPL");
46
James Ketrenosf6c5cb72005-08-25 00:39:09 -050047static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060048static int debug = 0;
49static int channel = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060050static int mode = 0;
51
52static u32 ipw_debug_level;
53static int associate = 1;
54static int auto_create = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -050055static int led = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060056static int disable = 0;
James Ketrenosb095c382005-08-24 22:04:42 -050057static int hwcrypto = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -060058static const char ipw_modes[] = {
59 'a', 'b', 'g', '?'
60};
61
James Ketrenosb095c382005-08-24 22:04:42 -050062#ifdef CONFIG_IPW_QOS
63static int qos_enable = 0;
64static int qos_burst_enable = 0;
65static int qos_no_ack_mask = 0;
66static int burst_duration_CCK = 0;
67static int burst_duration_OFDM = 0;
68
69static struct ieee80211_qos_parameters def_qos_parameters_OFDM = {
70 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
71 QOS_TX3_CW_MIN_OFDM},
72 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
73 QOS_TX3_CW_MAX_OFDM},
74 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
75 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
76 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
77 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
78};
79
80static struct ieee80211_qos_parameters def_qos_parameters_CCK = {
81 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
82 QOS_TX3_CW_MIN_CCK},
83 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
84 QOS_TX3_CW_MAX_CCK},
85 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
86 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
87 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
88 QOS_TX3_TXOP_LIMIT_CCK}
89};
90
91static struct ieee80211_qos_parameters def_parameters_OFDM = {
92 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
93 DEF_TX3_CW_MIN_OFDM},
94 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
95 DEF_TX3_CW_MAX_OFDM},
96 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
97 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
98 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
99 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
100};
101
102static struct ieee80211_qos_parameters def_parameters_CCK = {
103 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
104 DEF_TX3_CW_MIN_CCK},
105 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
106 DEF_TX3_CW_MAX_CCK},
107 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
108 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
109 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
110 DEF_TX3_TXOP_LIMIT_CCK}
111};
112
113static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
114
115static int from_priority_to_tx_queue[] = {
116 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
117 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
118};
119
120static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
121
122static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
123 *qos_param);
124static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
125 *qos_param);
126#endif /* CONFIG_IPW_QOS */
127
128static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600129static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400130static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600131 struct clx2_tx_queue *txq, int qindex);
132static int ipw_queue_reset(struct ipw_priv *priv);
133
134static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
135 int len, int sync);
136
137static void ipw_tx_queue_free(struct ipw_priv *);
138
139static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
140static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
141static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600142static int ipw_up(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500143static void ipw_bg_up(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600144static void ipw_down(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500145static void ipw_bg_down(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600146static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400147static int init_supported_rates(struct ipw_priv *priv,
148 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500149static void ipw_set_hwcrypto_keys(struct ipw_priv *);
150static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600151
Liu Hong1fe0adb2005-08-19 09:33:10 -0500152static int ipw_is_valid_channel(struct ieee80211_device *, u8);
153static int ipw_channel_to_index(struct ieee80211_device *, u8);
154static u8 ipw_freq_to_channel(struct ieee80211_device *, u32);
155static int ipw_set_geo(struct ieee80211_device *, const struct ieee80211_geo *);
156static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *);
157
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500158static int snprint_line(char *buf, size_t count,
159 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600160{
161 int out, i, j, l;
162 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400163
James Ketrenos43f66a62005-03-25 12:31:53 -0600164 out = snprintf(buf, count, "%08X", ofs);
165
166 for (l = 0, i = 0; i < 2; i++) {
167 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400168 for (j = 0; j < 8 && l < len; j++, l++)
169 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600170 data[(i * 8 + j)]);
171 for (; j < 8; j++)
172 out += snprintf(buf + out, count - out, " ");
173 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400174
James Ketrenos43f66a62005-03-25 12:31:53 -0600175 out += snprintf(buf + out, count - out, " ");
176 for (l = 0, i = 0; i < 2; i++) {
177 out += snprintf(buf + out, count - out, " ");
178 for (j = 0; j < 8 && l < len; j++, l++) {
179 c = data[(i * 8 + j)];
180 if (!isascii(c) || !isprint(c))
181 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400182
James Ketrenos43f66a62005-03-25 12:31:53 -0600183 out += snprintf(buf + out, count - out, "%c", c);
184 }
185
186 for (; j < 8; j++)
187 out += snprintf(buf + out, count - out, " ");
188 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400189
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500190 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600191}
192
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400193static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600194{
195 char line[81];
196 u32 ofs = 0;
197 if (!(ipw_debug_level & level))
198 return;
199
200 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500201 snprint_line(line, sizeof(line), &data[ofs],
202 min(len, 16U), ofs);
203 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600204 ofs += 16;
205 len -= min(len, 16U);
206 }
207}
208
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500209static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
210{
211 size_t out = size;
212 u32 ofs = 0;
213 int total = 0;
214
215 while (size && len) {
216 out = snprint_line(output, size, &data[ofs],
217 min_t(size_t, len, 16U), ofs);
218
219 ofs += 16;
220 output += out;
221 size -= out;
222 len -= min_t(size_t, len, 16U);
223 total += out;
224 }
225 return total;
226}
227
James Ketrenos43f66a62005-03-25 12:31:53 -0600228static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
229#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
230
231static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
232#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
233
234static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
235static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
236{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400237 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
238 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600239 _ipw_write_reg8(a, b, c);
240}
241
242static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
243static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
244{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400245 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
246 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600247 _ipw_write_reg16(a, b, c);
248}
249
250static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
251static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
252{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400253 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
254 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600255 _ipw_write_reg32(a, b, c);
256}
257
258#define _ipw_write8(ipw, ofs, val) writeb((val), (ipw)->hw_base + (ofs))
259#define ipw_write8(ipw, ofs, val) \
260 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
261 _ipw_write8(ipw, ofs, val)
262
263#define _ipw_write16(ipw, ofs, val) writew((val), (ipw)->hw_base + (ofs))
264#define ipw_write16(ipw, ofs, val) \
265 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
266 _ipw_write16(ipw, ofs, val)
267
268#define _ipw_write32(ipw, ofs, val) writel((val), (ipw)->hw_base + (ofs))
269#define ipw_write32(ipw, ofs, val) \
270 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
271 _ipw_write32(ipw, ofs, val)
272
273#define _ipw_read8(ipw, ofs) readb((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400274static inline u8 __ipw_read8(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
275{
276 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600277 return _ipw_read8(ipw, ofs);
278}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400279
James Ketrenos43f66a62005-03-25 12:31:53 -0600280#define ipw_read8(ipw, ofs) __ipw_read8(__FILE__, __LINE__, ipw, ofs)
281
282#define _ipw_read16(ipw, ofs) readw((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400283static inline u16 __ipw_read16(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
284{
285 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600286 return _ipw_read16(ipw, ofs);
287}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400288
James Ketrenos43f66a62005-03-25 12:31:53 -0600289#define ipw_read16(ipw, ofs) __ipw_read16(__FILE__, __LINE__, ipw, ofs)
290
291#define _ipw_read32(ipw, ofs) readl((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400292static inline u32 __ipw_read32(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
293{
294 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600295 return _ipw_read32(ipw, ofs);
296}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400297
James Ketrenos43f66a62005-03-25 12:31:53 -0600298#define ipw_read32(ipw, ofs) __ipw_read32(__FILE__, __LINE__, ipw, ofs)
299
300static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500301static inline void __ipw_read_indirect(const char *f, int l,
302 struct ipw_priv *a, u32 b, u8 * c, int d)
303{
304 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %d bytes\n", f, l, (u32) (b),
305 d);
306 _ipw_read_indirect(a, b, c, d);
307}
308
309#define ipw_read_indirect(a, b, c, d) __ipw_read_indirect(__FILE__, __LINE__, a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600310
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400311static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
312 int num);
James Ketrenos43f66a62005-03-25 12:31:53 -0600313#define ipw_write_indirect(a, b, c, d) \
314 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %d bytes\n", __FILE__, __LINE__, (u32)(b), d); \
James Ketrenosafbf30a2005-08-25 00:05:33 -0500315 _ipw_write_indirect(a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600316
317/* indirect write s */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400318static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600319{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400320 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500321 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
322 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600323}
324
James Ketrenos43f66a62005-03-25 12:31:53 -0600325static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
326{
327 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500328 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
329 _ipw_write8(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600330}
331
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400332static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600333{
334 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500335 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
336 _ipw_write16(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600337}
338
339/* indirect read s */
340
341static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
342{
343 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500344 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -0600345 IPW_DEBUG_IO(" reg = 0x%8X : \n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500346 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400347 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600348}
349
350static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
351{
352 u32 value;
353
354 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
355
James Ketrenosb095c382005-08-24 22:04:42 -0500356 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
357 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
James Ketrenos43f66a62005-03-25 12:31:53 -0600358 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x \n", reg, value);
359 return value;
360}
361
362/* iterative/auto-increment 32 bit reads and writes */
363static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
364 int num)
365{
James Ketrenosb095c382005-08-24 22:04:42 -0500366 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600367 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600368 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400369
James Ketrenos43f66a62005-03-25 12:31:53 -0600370 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
371
James Ketrenosea2b26e2005-08-24 21:25:16 -0500372 if (num <= 0) {
373 return;
374 }
375
James Ketrenos43f66a62005-03-25 12:31:53 -0600376 /* Read the first nibble byte by byte */
377 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500378 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500379 /* Start reading at aligned_addr + dif_len */
380 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500381 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600382 aligned_addr += 4;
383 }
384
James Ketrenosb095c382005-08-24 22:04:42 -0500385 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500386 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500387 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400388
James Ketrenos43f66a62005-03-25 12:31:53 -0600389 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500390 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500391 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500392 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500393 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500394 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600395}
396
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400397static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600398 int num)
399{
James Ketrenosb095c382005-08-24 22:04:42 -0500400 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600401 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600402 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400403
James Ketrenos43f66a62005-03-25 12:31:53 -0600404 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400405
James Ketrenosea2b26e2005-08-24 21:25:16 -0500406 if (num <= 0) {
407 return;
408 }
409
James Ketrenos43f66a62005-03-25 12:31:53 -0600410 /* Write the first nibble byte by byte */
411 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500412 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500413 /* Start reading at aligned_addr + dif_len */
414 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500415 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600416 aligned_addr += 4;
417 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400418
James Ketrenosb095c382005-08-24 22:04:42 -0500419 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500420 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500421 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400422
James Ketrenos43f66a62005-03-25 12:31:53 -0600423 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500424 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500425 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500426 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500427 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500428 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600429}
430
Jeff Garzikbf794512005-07-31 13:07:26 -0400431static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600432 int num)
433{
434 memcpy_toio((priv->hw_base + addr), buf, num);
435}
436
437static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
438{
439 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
440}
441
442static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
443{
444 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
445}
446
447static inline void ipw_enable_interrupts(struct ipw_priv *priv)
448{
449 if (priv->status & STATUS_INT_ENABLED)
450 return;
451 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500452 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600453}
454
455static inline void ipw_disable_interrupts(struct ipw_priv *priv)
456{
457 if (!(priv->status & STATUS_INT_ENABLED))
458 return;
459 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500460 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600461}
462
James Ketrenosb39860c2005-08-12 09:36:32 -0500463#ifdef CONFIG_IPW_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -0600464static char *ipw_error_desc(u32 val)
465{
466 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400467 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600468 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400469 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600470 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400471 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600472 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400473 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600474 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400475 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500476 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400477 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500478 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400479 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500480 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400481 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500482 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400483 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500484 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400485 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500486 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400487 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500488 return "DMA_STATUS";
489 case IPW_FW_ERROR_DINO_ERROR:
490 return "DINO_ERROR";
491 case IPW_FW_ERROR_EEPROM_ERROR:
492 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400493 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500494 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400495 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500496 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400497 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500498 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600499 }
500}
501
James Ketrenosb39860c2005-08-12 09:36:32 -0500502static void ipw_dump_error_log(struct ipw_priv *priv,
503 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600504{
James Ketrenosb39860c2005-08-12 09:36:32 -0500505 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600506
James Ketrenosb39860c2005-08-12 09:36:32 -0500507 if (!error) {
508 IPW_ERROR("Error allocating and capturing error log. "
509 "Nothing to dump.\n");
510 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600511 }
512
James Ketrenosb39860c2005-08-12 09:36:32 -0500513 IPW_ERROR("Start IPW Error Log Dump:\n");
514 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
515 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600516
James Ketrenosb39860c2005-08-12 09:36:32 -0500517 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400518 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500519 ipw_error_desc(error->elem[i].desc),
520 error->elem[i].time,
521 error->elem[i].blink1,
522 error->elem[i].blink2,
523 error->elem[i].link1,
524 error->elem[i].link2, error->elem[i].data);
525 for (i = 0; i < error->log_len; i++)
526 IPW_ERROR("%i\t0x%08x\t%i\n",
527 error->log[i].time,
528 error->log[i].event, error->log[i].data);
James Ketrenos43f66a62005-03-25 12:31:53 -0600529}
James Ketrenos43f66a62005-03-25 12:31:53 -0600530#endif
James Ketrenos43f66a62005-03-25 12:31:53 -0600531
James Ketrenosc848d0a2005-08-24 21:56:24 -0500532static inline int ipw_is_init(struct ipw_priv *priv)
533{
534 return (priv->status & STATUS_INIT) ? 1 : 0;
535}
536
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400537static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600538{
539 u32 addr, field_info, field_len, field_count, total_len;
540
541 IPW_DEBUG_ORD("ordinal = %i\n", ord);
542
543 if (!priv || !val || !len) {
544 IPW_DEBUG_ORD("Invalid argument\n");
545 return -EINVAL;
546 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400547
James Ketrenos43f66a62005-03-25 12:31:53 -0600548 /* verify device ordinal tables have been initialized */
549 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
550 IPW_DEBUG_ORD("Access ordinals before initialization\n");
551 return -EINVAL;
552 }
553
554 switch (IPW_ORD_TABLE_ID_MASK & ord) {
555 case IPW_ORD_TABLE_0_MASK:
556 /*
557 * TABLE 0: Direct access to a table of 32 bit values
558 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400559 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600560 * read from the table
561 */
562
563 /* remove the table id from the ordinal */
564 ord &= IPW_ORD_TABLE_VALUE_MASK;
565
566 /* boundary check */
567 if (ord > priv->table0_len) {
568 IPW_DEBUG_ORD("ordinal value (%i) longer then "
569 "max (%i)\n", ord, priv->table0_len);
570 return -EINVAL;
571 }
572
573 /* verify we have enough room to store the value */
574 if (*len < sizeof(u32)) {
575 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200576 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600577 return -EINVAL;
578 }
579
580 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400581 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600582
583 *len = sizeof(u32);
584 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400585 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600586 break;
587
588 case IPW_ORD_TABLE_1_MASK:
589 /*
590 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400591 *
592 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600593 * representing starting addr for the data (which is
594 * also a u32)
595 */
596
597 /* remove the table id from the ordinal */
598 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400599
James Ketrenos43f66a62005-03-25 12:31:53 -0600600 /* boundary check */
601 if (ord > priv->table1_len) {
602 IPW_DEBUG_ORD("ordinal value too long\n");
603 return -EINVAL;
604 }
605
606 /* verify we have enough room to store the value */
607 if (*len < sizeof(u32)) {
608 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200609 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600610 return -EINVAL;
611 }
612
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400613 *((u32 *) val) =
614 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600615 *len = sizeof(u32);
616 break;
617
618 case IPW_ORD_TABLE_2_MASK:
619 /*
620 * TABLE 2: Indirect access to a table of variable sized values
621 *
622 * This table consist of six values, each containing
623 * - dword containing the starting offset of the data
624 * - dword containing the lengh in the first 16bits
625 * and the count in the second 16bits
626 */
627
628 /* remove the table id from the ordinal */
629 ord &= IPW_ORD_TABLE_VALUE_MASK;
630
631 /* boundary check */
632 if (ord > priv->table2_len) {
633 IPW_DEBUG_ORD("ordinal value too long\n");
634 return -EINVAL;
635 }
636
637 /* get the address of statistic */
638 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400639
640 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600641 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400642 field_info =
643 ipw_read_reg32(priv,
644 priv->table2_addr + (ord << 3) +
645 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400646
James Ketrenos43f66a62005-03-25 12:31:53 -0600647 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400648 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400649
James Ketrenos43f66a62005-03-25 12:31:53 -0600650 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400651 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400652
James Ketrenos43f66a62005-03-25 12:31:53 -0600653 /* abort if not enought memory */
654 total_len = field_len * field_count;
655 if (total_len > *len) {
656 *len = total_len;
657 return -EINVAL;
658 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400659
James Ketrenos43f66a62005-03-25 12:31:53 -0600660 *len = total_len;
661 if (!total_len)
662 return 0;
663
664 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400665 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600666 addr, total_len, field_info);
667 ipw_read_indirect(priv, addr, val, total_len);
668 break;
669
670 default:
671 IPW_DEBUG_ORD("Invalid ordinal!\n");
672 return -EINVAL;
673
674 }
675
James Ketrenos43f66a62005-03-25 12:31:53 -0600676 return 0;
677}
678
679static void ipw_init_ordinals(struct ipw_priv *priv)
680{
681 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400682 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600683
684 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
685 priv->table0_addr, priv->table0_len);
686
687 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
688 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
689
690 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
691 priv->table1_addr, priv->table1_len);
692
693 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
694 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400695 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600696
697 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
698 priv->table2_addr, priv->table2_len);
699
700}
701
James Ketrenosa613bff2005-08-24 21:43:11 -0500702u32 ipw_register_toggle(u32 reg)
703{
James Ketrenosb095c382005-08-24 22:04:42 -0500704 reg &= ~IPW_START_STANDBY;
705 if (reg & IPW_GATE_ODMA)
706 reg &= ~IPW_GATE_ODMA;
707 if (reg & IPW_GATE_IDMA)
708 reg &= ~IPW_GATE_IDMA;
709 if (reg & IPW_GATE_ADMA)
710 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500711 return reg;
712}
713
714/*
715 * LED behavior:
716 * - On radio ON, turn on any LEDs that require to be on during start
717 * - On initialization, start unassociated blink
718 * - On association, disable unassociated blink
719 * - On disassociation, start unassociated blink
720 * - On radio OFF, turn off any LEDs started during radio on
721 *
722 */
723#define LD_TIME_LINK_ON 300
724#define LD_TIME_LINK_OFF 2700
725#define LD_TIME_ACT_ON 250
726
727void ipw_led_link_on(struct ipw_priv *priv)
728{
729 unsigned long flags;
730 u32 led;
731
732 /* If configured to not use LEDs, or nic_type is 1,
733 * then we don't toggle a LINK led */
734 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
735 return;
736
737 spin_lock_irqsave(&priv->lock, flags);
738
739 if (!(priv->status & STATUS_RF_KILL_MASK) &&
740 !(priv->status & STATUS_LED_LINK_ON)) {
741 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500742 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500743 led |= priv->led_association_on;
744
745 led = ipw_register_toggle(led);
746
747 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500748 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500749
750 priv->status |= STATUS_LED_LINK_ON;
751
752 /* If we aren't associated, schedule turning the LED off */
753 if (!(priv->status & STATUS_ASSOCIATED))
754 queue_delayed_work(priv->workqueue,
755 &priv->led_link_off,
756 LD_TIME_LINK_ON);
757 }
758
759 spin_unlock_irqrestore(&priv->lock, flags);
760}
761
James Ketrenosc848d0a2005-08-24 21:56:24 -0500762static void ipw_bg_led_link_on(void *data)
763{
764 struct ipw_priv *priv = data;
765 down(&priv->sem);
766 ipw_led_link_on(data);
767 up(&priv->sem);
768}
769
James Ketrenosa613bff2005-08-24 21:43:11 -0500770void ipw_led_link_off(struct ipw_priv *priv)
771{
772 unsigned long flags;
773 u32 led;
774
775 /* If configured not to use LEDs, or nic type is 1,
776 * then we don't goggle the LINK led. */
777 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
778 return;
779
780 spin_lock_irqsave(&priv->lock, flags);
781
782 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500783 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500784 led &= priv->led_association_off;
785 led = ipw_register_toggle(led);
786
787 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500788 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500789
790 IPW_DEBUG_LED("Link LED Off\n");
791
792 priv->status &= ~STATUS_LED_LINK_ON;
793
794 /* If we aren't associated and the radio is on, schedule
795 * turning the LED on (blink while unassociated) */
796 if (!(priv->status & STATUS_RF_KILL_MASK) &&
797 !(priv->status & STATUS_ASSOCIATED))
798 queue_delayed_work(priv->workqueue, &priv->led_link_on,
799 LD_TIME_LINK_OFF);
800
801 }
802
803 spin_unlock_irqrestore(&priv->lock, flags);
804}
805
James Ketrenosc848d0a2005-08-24 21:56:24 -0500806static void ipw_bg_led_link_off(void *data)
807{
808 struct ipw_priv *priv = data;
809 down(&priv->sem);
810 ipw_led_link_off(data);
811 up(&priv->sem);
812}
813
James Ketrenosb095c382005-08-24 22:04:42 -0500814static inline void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500815{
James Ketrenosa613bff2005-08-24 21:43:11 -0500816 u32 led;
817
818 if (priv->config & CFG_NO_LED)
819 return;
820
James Ketrenosb095c382005-08-24 22:04:42 -0500821 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500822 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500823
824 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500825 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500826 led |= priv->led_activity_on;
827
828 led = ipw_register_toggle(led);
829
830 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500831 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500832
833 IPW_DEBUG_LED("Activity LED On\n");
834
835 priv->status |= STATUS_LED_ACT_ON;
836
James Ketrenosc848d0a2005-08-24 21:56:24 -0500837 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500838 queue_delayed_work(priv->workqueue, &priv->led_act_off,
839 LD_TIME_ACT_ON);
840 } else {
841 /* Reschedule LED off for full time period */
842 cancel_delayed_work(&priv->led_act_off);
843 queue_delayed_work(priv->workqueue, &priv->led_act_off,
844 LD_TIME_ACT_ON);
845 }
James Ketrenosb095c382005-08-24 22:04:42 -0500846}
James Ketrenosa613bff2005-08-24 21:43:11 -0500847
James Ketrenosb095c382005-08-24 22:04:42 -0500848void ipw_led_activity_on(struct ipw_priv *priv)
849{
850 unsigned long flags;
851 spin_lock_irqsave(&priv->lock, flags);
852 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500853 spin_unlock_irqrestore(&priv->lock, flags);
854}
855
856void ipw_led_activity_off(struct ipw_priv *priv)
857{
858 unsigned long flags;
859 u32 led;
860
861 if (priv->config & CFG_NO_LED)
862 return;
863
864 spin_lock_irqsave(&priv->lock, flags);
865
866 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500867 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500868 led &= priv->led_activity_off;
869
870 led = ipw_register_toggle(led);
871
872 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500873 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500874
875 IPW_DEBUG_LED("Activity LED Off\n");
876
877 priv->status &= ~STATUS_LED_ACT_ON;
878 }
879
880 spin_unlock_irqrestore(&priv->lock, flags);
881}
882
James Ketrenosc848d0a2005-08-24 21:56:24 -0500883static void ipw_bg_led_activity_off(void *data)
884{
885 struct ipw_priv *priv = data;
886 down(&priv->sem);
887 ipw_led_activity_off(data);
888 up(&priv->sem);
889}
890
James Ketrenosa613bff2005-08-24 21:43:11 -0500891void ipw_led_band_on(struct ipw_priv *priv)
892{
893 unsigned long flags;
894 u32 led;
895
896 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -0500897 if (priv->config & CFG_NO_LED ||
898 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -0500899 return;
900
901 spin_lock_irqsave(&priv->lock, flags);
902
James Ketrenosb095c382005-08-24 22:04:42 -0500903 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500904 if (priv->assoc_network->mode == IEEE_A) {
905 led |= priv->led_ofdm_on;
906 led &= priv->led_association_off;
907 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
908 } else if (priv->assoc_network->mode == IEEE_G) {
909 led |= priv->led_ofdm_on;
910 led |= priv->led_association_on;
911 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
912 } else {
913 led &= priv->led_ofdm_off;
914 led |= priv->led_association_on;
915 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
916 }
917
918 led = ipw_register_toggle(led);
919
920 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500921 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500922
923 spin_unlock_irqrestore(&priv->lock, flags);
924}
925
926void ipw_led_band_off(struct ipw_priv *priv)
927{
928 unsigned long flags;
929 u32 led;
930
931 /* Only nic type 1 supports mode LEDs */
932 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
933 return;
934
935 spin_lock_irqsave(&priv->lock, flags);
936
James Ketrenosb095c382005-08-24 22:04:42 -0500937 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500938 led &= priv->led_ofdm_off;
939 led &= priv->led_association_off;
940
941 led = ipw_register_toggle(led);
942
943 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500944 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500945
946 spin_unlock_irqrestore(&priv->lock, flags);
947}
948
949void ipw_led_radio_on(struct ipw_priv *priv)
950{
951 ipw_led_link_on(priv);
952}
953
954void ipw_led_radio_off(struct ipw_priv *priv)
955{
956 ipw_led_activity_off(priv);
957 ipw_led_link_off(priv);
958}
959
960void ipw_led_link_up(struct ipw_priv *priv)
961{
962 /* Set the Link Led on for all nic types */
963 ipw_led_link_on(priv);
964}
965
966void ipw_led_link_down(struct ipw_priv *priv)
967{
968 ipw_led_activity_off(priv);
969 ipw_led_link_off(priv);
970
971 if (priv->status & STATUS_RF_KILL_MASK)
972 ipw_led_radio_off(priv);
973}
974
975void ipw_led_init(struct ipw_priv *priv)
976{
977 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
978
979 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500980 priv->led_activity_on = IPW_ACTIVITY_LED;
981 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500982
James Ketrenosb095c382005-08-24 22:04:42 -0500983 priv->led_association_on = IPW_ASSOCIATED_LED;
984 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500985
986 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500987 priv->led_ofdm_on = IPW_OFDM_LED;
988 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500989
990 switch (priv->nic_type) {
991 case EEPROM_NIC_TYPE_1:
992 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -0500993 priv->led_activity_on = IPW_ASSOCIATED_LED;
994 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
995 priv->led_association_on = IPW_ACTIVITY_LED;
996 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500997
998 if (!(priv->config & CFG_NO_LED))
999 ipw_led_band_on(priv);
1000
1001 /* And we don't blink link LEDs for this nic, so
1002 * just return here */
1003 return;
1004
1005 case EEPROM_NIC_TYPE_3:
1006 case EEPROM_NIC_TYPE_2:
1007 case EEPROM_NIC_TYPE_4:
1008 case EEPROM_NIC_TYPE_0:
1009 break;
1010
1011 default:
1012 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1013 priv->nic_type);
1014 priv->nic_type = EEPROM_NIC_TYPE_0;
1015 break;
1016 }
1017
1018 if (!(priv->config & CFG_NO_LED)) {
1019 if (priv->status & STATUS_ASSOCIATED)
1020 ipw_led_link_on(priv);
1021 else
1022 ipw_led_link_off(priv);
1023 }
1024}
1025
1026void ipw_led_shutdown(struct ipw_priv *priv)
1027{
James Ketrenosa613bff2005-08-24 21:43:11 -05001028 ipw_led_activity_off(priv);
1029 ipw_led_link_off(priv);
1030 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001031 cancel_delayed_work(&priv->led_link_on);
1032 cancel_delayed_work(&priv->led_link_off);
1033 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001034}
1035
James Ketrenos43f66a62005-03-25 12:31:53 -06001036/*
1037 * The following adds a new attribute to the sysfs representation
1038 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1039 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001040 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001041 * See the level definitions in ipw for details.
1042 */
1043static ssize_t show_debug_level(struct device_driver *d, char *buf)
1044{
1045 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1046}
James Ketrenosa613bff2005-08-24 21:43:11 -05001047
1048static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1049 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001050{
1051 char *p = (char *)buf;
1052 u32 val;
1053
1054 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1055 p++;
1056 if (p[0] == 'x' || p[0] == 'X')
1057 p++;
1058 val = simple_strtoul(p, &p, 16);
1059 } else
1060 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001061 if (p == buf)
1062 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001063 ": %s is not in hex or decimal form.\n", buf);
1064 else
1065 ipw_debug_level = val;
1066
1067 return strnlen(buf, count);
1068}
1069
Jeff Garzikbf794512005-07-31 13:07:26 -04001070static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001071 show_debug_level, store_debug_level);
1072
James Ketrenosb39860c2005-08-12 09:36:32 -05001073static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1074{
1075 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1076}
1077
1078static void ipw_capture_event_log(struct ipw_priv *priv,
1079 u32 log_len, struct ipw_event *log)
1080{
1081 u32 base;
1082
1083 if (log_len) {
1084 base = ipw_read32(priv, IPW_EVENT_LOG);
1085 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1086 (u8 *) log, sizeof(*log) * log_len);
1087 }
1088}
1089
1090static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1091{
1092 struct ipw_fw_error *error;
1093 u32 log_len = ipw_get_event_log_len(priv);
1094 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1095 u32 elem_len = ipw_read_reg32(priv, base);
1096
1097 error = kmalloc(sizeof(*error) +
1098 sizeof(*error->elem) * elem_len +
1099 sizeof(*error->log) * log_len, GFP_ATOMIC);
1100 if (!error) {
1101 IPW_ERROR("Memory allocation for firmware error log "
1102 "failed.\n");
1103 return NULL;
1104 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001105 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001106 error->status = priv->status;
1107 error->config = priv->config;
1108 error->elem_len = elem_len;
1109 error->log_len = log_len;
1110 error->elem = (struct ipw_error_elem *)error->payload;
1111 error->log = (struct ipw_event *)(error->elem +
1112 (sizeof(*error->elem) * elem_len));
1113
1114 ipw_capture_event_log(priv, log_len, error->log);
1115
1116 if (elem_len)
1117 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1118 sizeof(*error->elem) * elem_len);
1119
1120 return error;
1121}
1122
1123static void ipw_free_error_log(struct ipw_fw_error *error)
1124{
1125 if (error)
1126 kfree(error);
1127}
1128
1129static ssize_t show_event_log(struct device *d,
1130 struct device_attribute *attr, char *buf)
1131{
1132 struct ipw_priv *priv = dev_get_drvdata(d);
1133 u32 log_len = ipw_get_event_log_len(priv);
1134 struct ipw_event log[log_len];
1135 u32 len = 0, i;
1136
1137 ipw_capture_event_log(priv, log_len, log);
1138
1139 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1140 for (i = 0; i < log_len; i++)
1141 len += snprintf(buf + len, PAGE_SIZE - len,
1142 "\n%08X%08X%08X",
1143 log[i].time, log[i].event, log[i].data);
1144 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1145 return len;
1146}
1147
1148static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1149
1150static ssize_t show_error(struct device *d,
1151 struct device_attribute *attr, char *buf)
1152{
1153 struct ipw_priv *priv = dev_get_drvdata(d);
1154 u32 len = 0, i;
1155 if (!priv->error)
1156 return 0;
1157 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001158 "%08lX%08X%08X%08X",
1159 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001160 priv->error->status,
1161 priv->error->config, priv->error->elem_len);
1162 for (i = 0; i < priv->error->elem_len; i++)
1163 len += snprintf(buf + len, PAGE_SIZE - len,
1164 "\n%08X%08X%08X%08X%08X%08X%08X",
1165 priv->error->elem[i].time,
1166 priv->error->elem[i].desc,
1167 priv->error->elem[i].blink1,
1168 priv->error->elem[i].blink2,
1169 priv->error->elem[i].link1,
1170 priv->error->elem[i].link2,
1171 priv->error->elem[i].data);
1172
1173 len += snprintf(buf + len, PAGE_SIZE - len,
1174 "\n%08X", priv->error->log_len);
1175 for (i = 0; i < priv->error->log_len; i++)
1176 len += snprintf(buf + len, PAGE_SIZE - len,
1177 "\n%08X%08X%08X",
1178 priv->error->log[i].time,
1179 priv->error->log[i].event,
1180 priv->error->log[i].data);
1181 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1182 return len;
1183}
1184
1185static ssize_t clear_error(struct device *d,
1186 struct device_attribute *attr,
1187 const char *buf, size_t count)
1188{
1189 struct ipw_priv *priv = dev_get_drvdata(d);
1190 if (priv->error) {
1191 ipw_free_error_log(priv->error);
1192 priv->error = NULL;
1193 }
1194 return count;
1195}
1196
1197static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1198
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001199static ssize_t show_cmd_log(struct device *d,
1200 struct device_attribute *attr, char *buf)
1201{
1202 struct ipw_priv *priv = dev_get_drvdata(d);
1203 u32 len = 0, i;
1204 if (!priv->cmdlog)
1205 return 0;
1206 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1207 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1208 i = (i + 1) % priv->cmdlog_len) {
1209 len +=
1210 snprintf(buf + len, PAGE_SIZE - len,
1211 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1212 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1213 priv->cmdlog[i].cmd.len);
1214 len +=
1215 snprintk_buf(buf + len, PAGE_SIZE - len,
1216 (u8 *) priv->cmdlog[i].cmd.param,
1217 priv->cmdlog[i].cmd.len);
1218 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1219 }
1220 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1221 return len;
1222}
1223
1224static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1225
James Ketrenosa613bff2005-08-24 21:43:11 -05001226static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1227 char *buf)
1228{
1229 struct ipw_priv *priv = dev_get_drvdata(d);
1230 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1231}
1232
1233static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1234 const char *buf, size_t count)
1235{
1236 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001237#ifdef CONFIG_IPW_DEBUG
James Ketrenosa613bff2005-08-24 21:43:11 -05001238 struct net_device *dev = priv->net_dev;
James Ketrenosc848d0a2005-08-24 21:56:24 -05001239#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05001240 char buffer[] = "00000000";
1241 unsigned long len =
1242 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1243 unsigned long val;
1244 char *p = buffer;
1245
1246 IPW_DEBUG_INFO("enter\n");
1247
1248 strncpy(buffer, buf, len);
1249 buffer[len] = 0;
1250
1251 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1252 p++;
1253 if (p[0] == 'x' || p[0] == 'X')
1254 p++;
1255 val = simple_strtoul(p, &p, 16);
1256 } else
1257 val = simple_strtoul(p, &p, 10);
1258 if (p == buffer) {
1259 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1260 } else {
1261 priv->ieee->scan_age = val;
1262 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1263 }
1264
1265 IPW_DEBUG_INFO("exit\n");
1266 return len;
1267}
1268
1269static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1270
1271static ssize_t show_led(struct device *d, struct device_attribute *attr,
1272 char *buf)
1273{
1274 struct ipw_priv *priv = dev_get_drvdata(d);
1275 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1276}
1277
1278static ssize_t store_led(struct device *d, struct device_attribute *attr,
1279 const char *buf, size_t count)
1280{
1281 struct ipw_priv *priv = dev_get_drvdata(d);
1282
1283 IPW_DEBUG_INFO("enter\n");
1284
1285 if (count == 0)
1286 return 0;
1287
1288 if (*buf == 0) {
1289 IPW_DEBUG_LED("Disabling LED control.\n");
1290 priv->config |= CFG_NO_LED;
1291 ipw_led_shutdown(priv);
1292 } else {
1293 IPW_DEBUG_LED("Enabling LED control.\n");
1294 priv->config &= ~CFG_NO_LED;
1295 ipw_led_init(priv);
1296 }
1297
1298 IPW_DEBUG_INFO("exit\n");
1299 return count;
1300}
1301
1302static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1303
Andrew Mortonad3fee52005-06-20 14:30:36 -07001304static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001305 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001306{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001307 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001308 return sprintf(buf, "0x%08x\n", (int)p->status);
1309}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001310
James Ketrenos43f66a62005-03-25 12:31:53 -06001311static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1312
Andrew Mortonad3fee52005-06-20 14:30:36 -07001313static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1314 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001315{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001316 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001317 return sprintf(buf, "0x%08x\n", (int)p->config);
1318}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001319
James Ketrenos43f66a62005-03-25 12:31:53 -06001320static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1321
Andrew Mortonad3fee52005-06-20 14:30:36 -07001322static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001323 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001324{
James Ketrenosa613bff2005-08-24 21:43:11 -05001325 struct ipw_priv *priv = d->driver_data;
1326 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001327}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001328
James Ketrenos43f66a62005-03-25 12:31:53 -06001329static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1330
Andrew Mortonad3fee52005-06-20 14:30:36 -07001331static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001332 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001333{
1334 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001335 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001336
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001337 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001338 return 0;
1339
1340 return sprintf(buf, "0x%08x\n", tmp);
1341}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001342
1343static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001344
Andrew Mortonad3fee52005-06-20 14:30:36 -07001345static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1346 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001347{
1348 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001349 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001350
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001351 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001352 return 0;
1353
1354 return sprintf(buf, "0x%08x\n", tmp);
1355}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001356
1357static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001358
1359/*
1360 * Add a device attribute to view/control the delay between eeprom
1361 * operations.
1362 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001363static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001364 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001365{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001366 int n = ((struct ipw_priv *)d->driver_data)->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001367 return sprintf(buf, "%i\n", n);
1368}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001369static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001370 struct device_attribute *attr,
1371 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001372{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001373 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001374 sscanf(buf, "%i", &p->eeprom_delay);
1375 return strnlen(buf, count);
1376}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001377
1378static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1379 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001380
Andrew Mortonad3fee52005-06-20 14:30:36 -07001381static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001382 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001383{
1384 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001385 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001386
James Ketrenosb095c382005-08-24 22:04:42 -05001387 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001388 return sprintf(buf, "0x%08x\n", reg);
1389}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001390static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001391 struct device_attribute *attr,
1392 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001393{
1394 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001395 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001396
1397 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001398 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001399 return strnlen(buf, count);
1400}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001401
1402static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1403 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001404
Andrew Mortonad3fee52005-06-20 14:30:36 -07001405static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001406 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001407{
1408 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001409 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001410
1411 reg = ipw_read_reg32(p, 0x301100);
1412 return sprintf(buf, "0x%08x\n", reg);
1413}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001414static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001415 struct device_attribute *attr,
1416 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001417{
1418 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001419 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001420
1421 sscanf(buf, "%x", &reg);
1422 ipw_write_reg32(p, 0x301100, reg);
1423 return strnlen(buf, count);
1424}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001425
1426static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1427 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001428
Andrew Mortonad3fee52005-06-20 14:30:36 -07001429static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001430 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001431{
1432 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001433 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001434
Jeff Garzikbf794512005-07-31 13:07:26 -04001435 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001436 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001437 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001438 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001439
James Ketrenos43f66a62005-03-25 12:31:53 -06001440 return sprintf(buf, "0x%08x\n", reg);
1441}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001442static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001443 struct device_attribute *attr,
1444 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001445{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001446 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001447
1448 sscanf(buf, "%x", &priv->indirect_dword);
1449 priv->status |= STATUS_INDIRECT_DWORD;
1450 return strnlen(buf, count);
1451}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001452
1453static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1454 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001455
Andrew Mortonad3fee52005-06-20 14:30:36 -07001456static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001457 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001458{
1459 u8 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001460 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001461
Jeff Garzikbf794512005-07-31 13:07:26 -04001462 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001463 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001464 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001465 reg = 0;
1466
1467 return sprintf(buf, "0x%02x\n", reg);
1468}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001469static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001470 struct device_attribute *attr,
1471 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001472{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001473 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001474
1475 sscanf(buf, "%x", &priv->indirect_byte);
1476 priv->status |= STATUS_INDIRECT_BYTE;
1477 return strnlen(buf, count);
1478}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001479
1480static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001481 show_indirect_byte, store_indirect_byte);
1482
Andrew Mortonad3fee52005-06-20 14:30:36 -07001483static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001484 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001485{
1486 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001487 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001488
Jeff Garzikbf794512005-07-31 13:07:26 -04001489 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001490 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001491 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001492 reg = 0;
1493
1494 return sprintf(buf, "0x%08x\n", reg);
1495}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001496static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001497 struct device_attribute *attr,
1498 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001499{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001500 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001501
1502 sscanf(buf, "%x", &priv->direct_dword);
1503 priv->status |= STATUS_DIRECT_DWORD;
1504 return strnlen(buf, count);
1505}
James Ketrenos43f66a62005-03-25 12:31:53 -06001506
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001507static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1508 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001509
1510static inline int rf_kill_active(struct ipw_priv *priv)
1511{
1512 if (0 == (ipw_read32(priv, 0x30) & 0x10000))
1513 priv->status |= STATUS_RF_KILL_HW;
1514 else
1515 priv->status &= ~STATUS_RF_KILL_HW;
1516
1517 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1518}
1519
Andrew Mortonad3fee52005-06-20 14:30:36 -07001520static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001521 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001522{
1523 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001524 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001525 2 - HW based RF kill active
1526 3 - Both HW and SW baed RF kill active */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001527 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001528 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001529 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001530 return sprintf(buf, "%i\n", val);
1531}
1532
1533static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1534{
Jeff Garzikbf794512005-07-31 13:07:26 -04001535 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001536 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001537 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001538
1539 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1540 disable_radio ? "OFF" : "ON");
1541
1542 if (disable_radio) {
1543 priv->status |= STATUS_RF_KILL_SW;
1544
James Ketrenosa613bff2005-08-24 21:43:11 -05001545 if (priv->workqueue)
James Ketrenos43f66a62005-03-25 12:31:53 -06001546 cancel_delayed_work(&priv->request_scan);
James Ketrenos43f66a62005-03-25 12:31:53 -06001547 queue_work(priv->workqueue, &priv->down);
1548 } else {
1549 priv->status &= ~STATUS_RF_KILL_SW;
1550 if (rf_kill_active(priv)) {
1551 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1552 "disabled by HW switch\n");
1553 /* Make sure the RF_KILL check timer is running */
1554 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001555 queue_delayed_work(priv->workqueue, &priv->rf_kill,
James Ketrenos43f66a62005-03-25 12:31:53 -06001556 2 * HZ);
Jeff Garzikbf794512005-07-31 13:07:26 -04001557 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001558 queue_work(priv->workqueue, &priv->up);
1559 }
1560
1561 return 1;
1562}
1563
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001564static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1565 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001566{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001567 struct ipw_priv *priv = d->driver_data;
Jeff Garzikbf794512005-07-31 13:07:26 -04001568
James Ketrenos43f66a62005-03-25 12:31:53 -06001569 ipw_radio_kill_sw(priv, buf[0] == '1');
1570
1571 return count;
1572}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001573
1574static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001575
James Ketrenosb095c382005-08-24 22:04:42 -05001576static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1577 char *buf)
1578{
1579 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1580 int pos = 0, len = 0;
1581 if (priv->config & CFG_SPEED_SCAN) {
1582 while (priv->speed_scan[pos] != 0)
1583 len += sprintf(&buf[len], "%d ",
1584 priv->speed_scan[pos++]);
1585 return len + sprintf(&buf[len], "\n");
1586 }
1587
1588 return sprintf(buf, "0\n");
1589}
1590
1591static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1592 const char *buf, size_t count)
1593{
1594 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1595 int channel, pos = 0;
1596 const char *p = buf;
1597
1598 /* list of space separated channels to scan, optionally ending with 0 */
1599 while ((channel = simple_strtol(p, NULL, 0))) {
1600 if (pos == MAX_SPEED_SCAN - 1) {
1601 priv->speed_scan[pos] = 0;
1602 break;
1603 }
1604
Liu Hong1fe0adb2005-08-19 09:33:10 -05001605 if (ipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001606 priv->speed_scan[pos++] = channel;
1607 else
1608 IPW_WARNING("Skipping invalid channel request: %d\n",
1609 channel);
1610 p = strchr(p, ' ');
1611 if (!p)
1612 break;
1613 while (*p == ' ' || *p == '\t')
1614 p++;
1615 }
1616
1617 if (pos == 0)
1618 priv->config &= ~CFG_SPEED_SCAN;
1619 else {
1620 priv->speed_scan_pos = 0;
1621 priv->config |= CFG_SPEED_SCAN;
1622 }
1623
1624 return count;
1625}
1626
1627static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1628 store_speed_scan);
1629
1630static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1631 char *buf)
1632{
1633 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1634 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1635}
1636
1637static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1638 const char *buf, size_t count)
1639{
1640 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1641 if (buf[0] == '1')
1642 priv->config |= CFG_NET_STATS;
1643 else
1644 priv->config &= ~CFG_NET_STATS;
1645
1646 return count;
1647}
1648
James Ketrenosafbf30a2005-08-25 00:05:33 -05001649static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1650 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001651
James Ketrenosea2b26e2005-08-24 21:25:16 -05001652static void notify_wx_assoc_event(struct ipw_priv *priv)
1653{
1654 union iwreq_data wrqu;
1655 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1656 if (priv->status & STATUS_ASSOCIATED)
1657 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1658 else
1659 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1660 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1661}
1662
James Ketrenos43f66a62005-03-25 12:31:53 -06001663static void ipw_irq_tasklet(struct ipw_priv *priv)
1664{
1665 u32 inta, inta_mask, handled = 0;
1666 unsigned long flags;
1667 int rc = 0;
1668
1669 spin_lock_irqsave(&priv->lock, flags);
1670
James Ketrenosb095c382005-08-24 22:04:42 -05001671 inta = ipw_read32(priv, IPW_INTA_RW);
1672 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1673 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001674
1675 /* Add any cached INTA values that need to be handled */
1676 inta |= priv->isr_inta;
1677
1678 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001679 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001680 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001681 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001682 }
1683
James Ketrenosb095c382005-08-24 22:04:42 -05001684 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001685 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001686 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001687 priv->status &= ~STATUS_HCMD_ACTIVE;
1688 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001689 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001690 }
1691
James Ketrenosb095c382005-08-24 22:04:42 -05001692 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001693 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001694 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05001695 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06001696 }
1697
James Ketrenosb095c382005-08-24 22:04:42 -05001698 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001699 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001700 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05001701 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06001702 }
1703
James Ketrenosb095c382005-08-24 22:04:42 -05001704 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001705 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001706 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05001707 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06001708 }
1709
James Ketrenosb095c382005-08-24 22:04:42 -05001710 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001711 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001712 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05001713 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06001714 }
1715
James Ketrenosb095c382005-08-24 22:04:42 -05001716 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001717 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001718 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001719 }
1720
James Ketrenosb095c382005-08-24 22:04:42 -05001721 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001722 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001723 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06001724 }
1725
James Ketrenosb095c382005-08-24 22:04:42 -05001726 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001727 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001728 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001729 }
1730
James Ketrenosb095c382005-08-24 22:04:42 -05001731 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001732 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001733 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001734 }
1735
James Ketrenosb095c382005-08-24 22:04:42 -05001736 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001737 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001738 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001739 }
1740
James Ketrenosb095c382005-08-24 22:04:42 -05001741 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001742 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
1743 priv->status |= STATUS_RF_KILL_HW;
1744 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001745 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06001746 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05001747 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001748 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05001749 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001750 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001751
James Ketrenosb095c382005-08-24 22:04:42 -05001752 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001753 IPW_ERROR("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05001754 if (priv->error) {
1755 IPW_ERROR("Sysfs 'error' log already exists.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06001756#ifdef CONFIG_IPW_DEBUG
James Ketrenosb39860c2005-08-12 09:36:32 -05001757 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
1758 struct ipw_fw_error *error =
1759 ipw_alloc_error_log(priv);
1760 ipw_dump_error_log(priv, error);
1761 if (error)
1762 ipw_free_error_log(error);
1763 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001764#endif
James Ketrenosb39860c2005-08-12 09:36:32 -05001765 } else {
1766 priv->error = ipw_alloc_error_log(priv);
1767 if (priv->error)
1768 IPW_ERROR("Sysfs 'error' log captured.\n");
1769 else
1770 IPW_ERROR("Error allocating sysfs 'error' "
1771 "log.\n");
1772#ifdef CONFIG_IPW_DEBUG
1773 if (ipw_debug_level & IPW_DL_FW_ERRORS)
1774 ipw_dump_error_log(priv, priv->error);
1775#endif
1776 }
1777
James Ketrenosb095c382005-08-24 22:04:42 -05001778 /* XXX: If hardware encryption is for WPA/WPA2,
1779 * we have to notify the supplicant. */
1780 if (priv->ieee->sec.encrypt) {
1781 priv->status &= ~STATUS_ASSOCIATED;
1782 notify_wx_assoc_event(priv);
1783 }
1784
1785 /* Keep the restart process from trying to send host
1786 * commands by clearing the INIT status bit */
1787 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001788
1789 /* Cancel currently queued command. */
1790 priv->status &= ~STATUS_HCMD_ACTIVE;
1791 wake_up_interruptible(&priv->wait_command_queue);
1792
James Ketrenos43f66a62005-03-25 12:31:53 -06001793 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05001794 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001795 }
1796
James Ketrenosb095c382005-08-24 22:04:42 -05001797 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001798 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001799 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001800 }
1801
1802 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001803 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06001804 }
1805
1806 /* enable all interrupts */
1807 ipw_enable_interrupts(priv);
1808
1809 spin_unlock_irqrestore(&priv->lock, flags);
1810}
Jeff Garzikbf794512005-07-31 13:07:26 -04001811
James Ketrenos43f66a62005-03-25 12:31:53 -06001812#ifdef CONFIG_IPW_DEBUG
1813#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 Ketrenosea2b26e2005-08-24 21:25:16 -05001871#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06001872
1873#define HOST_COMPLETE_TIMEOUT HZ
1874static int ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
1875{
1876 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001877 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06001878
James Ketrenosa613bff2005-08-24 21:43:11 -05001879 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001880 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001881 IPW_ERROR("Failed to send %s: Already sending a command.\n",
1882 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001883 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001884 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06001885 }
1886
1887 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001888
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001889 if (priv->cmdlog) {
1890 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
1891 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
1892 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
1893 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
1894 cmd->len);
1895 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
1896 }
1897
James Ketrenosb095c382005-08-24 22:04:42 -05001898 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1899 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1900 priv->status);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001901 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001902
1903 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, &cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001904 if (rc) {
1905 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001906 IPW_ERROR("Failed to send %s: Reason %d\n",
1907 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05001908 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001909 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001910 }
1911 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001912
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001913 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1914 !(priv->
1915 status & STATUS_HCMD_ACTIVE),
1916 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001917 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001918 spin_lock_irqsave(&priv->lock, flags);
1919 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001920 IPW_ERROR("Failed to send %s: Command timed out.\n",
1921 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001922 priv->status &= ~STATUS_HCMD_ACTIVE;
1923 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001924 rc = -EIO;
1925 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001926 }
1927 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05001928 } else
1929 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001930
James Ketrenosb095c382005-08-24 22:04:42 -05001931 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001932 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
1933 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001934 rc = -EIO;
1935 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06001936 }
1937
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001938 exit:
1939 if (priv->cmdlog) {
1940 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
1941 priv->cmdlog_pos %= priv->cmdlog_len;
1942 }
1943 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06001944}
1945
1946static int ipw_send_host_complete(struct ipw_priv *priv)
1947{
1948 struct host_cmd cmd = {
1949 .cmd = IPW_CMD_HOST_COMPLETE,
1950 .len = 0
1951 };
1952
1953 if (!priv) {
1954 IPW_ERROR("Invalid args\n");
1955 return -1;
1956 }
1957
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001958 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001959}
1960
Jeff Garzikbf794512005-07-31 13:07:26 -04001961static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06001962 struct ipw_sys_config *config)
1963{
1964 struct host_cmd cmd = {
1965 .cmd = IPW_CMD_SYSTEM_CONFIG,
1966 .len = sizeof(*config)
1967 };
1968
1969 if (!priv || !config) {
1970 IPW_ERROR("Invalid args\n");
1971 return -1;
1972 }
1973
James Ketrenosafbf30a2005-08-25 00:05:33 -05001974 memcpy(cmd.param, config, sizeof(*config));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001975 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001976}
1977
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001978static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06001979{
1980 struct host_cmd cmd = {
1981 .cmd = IPW_CMD_SSID,
1982 .len = min(len, IW_ESSID_MAX_SIZE)
1983 };
1984
1985 if (!priv || !ssid) {
1986 IPW_ERROR("Invalid args\n");
1987 return -1;
1988 }
1989
James Ketrenosafbf30a2005-08-25 00:05:33 -05001990 memcpy(cmd.param, ssid, cmd.len);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001991 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001992}
1993
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001994static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06001995{
1996 struct host_cmd cmd = {
1997 .cmd = IPW_CMD_ADAPTER_ADDRESS,
1998 .len = ETH_ALEN
1999 };
2000
2001 if (!priv || !mac) {
2002 IPW_ERROR("Invalid args\n");
2003 return -1;
2004 }
2005
2006 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
2007 priv->net_dev->name, MAC_ARG(mac));
2008
James Ketrenosafbf30a2005-08-25 00:05:33 -05002009 memcpy(cmd.param, mac, ETH_ALEN);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002010 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002011}
2012
James Ketrenosa613bff2005-08-24 21:43:11 -05002013/*
2014 * NOTE: This must be executed from our workqueue as it results in udelay
2015 * being called which may corrupt the keyboard if executed on default
2016 * workqueue
2017 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002018static void ipw_adapter_restart(void *adapter)
2019{
2020 struct ipw_priv *priv = adapter;
2021
2022 if (priv->status & STATUS_RF_KILL_MASK)
2023 return;
2024
2025 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002026
2027 if (priv->assoc_network &&
2028 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2029 ipw_remove_current_network(priv);
2030
James Ketrenos43f66a62005-03-25 12:31:53 -06002031 if (ipw_up(priv)) {
2032 IPW_ERROR("Failed to up device\n");
2033 return;
2034 }
2035}
2036
James Ketrenosc848d0a2005-08-24 21:56:24 -05002037static void ipw_bg_adapter_restart(void *data)
2038{
2039 struct ipw_priv *priv = data;
2040 down(&priv->sem);
2041 ipw_adapter_restart(data);
2042 up(&priv->sem);
2043}
2044
James Ketrenos43f66a62005-03-25 12:31:53 -06002045#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2046
2047static void ipw_scan_check(void *data)
2048{
2049 struct ipw_priv *priv = data;
2050 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2051 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Jeff Garzikbf794512005-07-31 13:07:26 -04002052 "adapter (%dms).\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002053 IPW_SCAN_CHECK_WATCHDOG / 100);
James Ketrenosa613bff2005-08-24 21:43:11 -05002054 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002055 }
2056}
2057
James Ketrenosc848d0a2005-08-24 21:56:24 -05002058static void ipw_bg_scan_check(void *data)
2059{
2060 struct ipw_priv *priv = data;
2061 down(&priv->sem);
2062 ipw_scan_check(data);
2063 up(&priv->sem);
2064}
2065
James Ketrenos43f66a62005-03-25 12:31:53 -06002066static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2067 struct ipw_scan_request_ext *request)
2068{
2069 struct host_cmd cmd = {
2070 .cmd = IPW_CMD_SCAN_REQUEST_EXT,
2071 .len = sizeof(*request)
2072 };
2073
James Ketrenosafbf30a2005-08-25 00:05:33 -05002074 memcpy(cmd.param, request, sizeof(*request));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002075 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002076}
2077
2078static int ipw_send_scan_abort(struct ipw_priv *priv)
2079{
2080 struct host_cmd cmd = {
2081 .cmd = IPW_CMD_SCAN_ABORT,
2082 .len = 0
2083 };
2084
2085 if (!priv) {
2086 IPW_ERROR("Invalid args\n");
2087 return -1;
2088 }
2089
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002090 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002091}
2092
2093static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2094{
2095 struct host_cmd cmd = {
2096 .cmd = IPW_CMD_SENSITIVITY_CALIB,
2097 .len = sizeof(struct ipw_sensitivity_calib)
2098 };
2099 struct ipw_sensitivity_calib *calib = (struct ipw_sensitivity_calib *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002100 &cmd.param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002101 calib->beacon_rssi_raw = sens;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002102 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002103}
2104
2105static int ipw_send_associate(struct ipw_priv *priv,
2106 struct ipw_associate *associate)
2107{
2108 struct host_cmd cmd = {
2109 .cmd = IPW_CMD_ASSOCIATE,
2110 .len = sizeof(*associate)
2111 };
2112
James Ketrenosa613bff2005-08-24 21:43:11 -05002113 struct ipw_associate tmp_associate;
2114 memcpy(&tmp_associate, associate, sizeof(*associate));
2115 tmp_associate.policy_support =
2116 cpu_to_le16(tmp_associate.policy_support);
2117 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
2118 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
2119 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
2120 tmp_associate.listen_interval =
2121 cpu_to_le16(tmp_associate.listen_interval);
2122 tmp_associate.beacon_interval =
2123 cpu_to_le16(tmp_associate.beacon_interval);
2124 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
2125
James Ketrenos43f66a62005-03-25 12:31:53 -06002126 if (!priv || !associate) {
2127 IPW_ERROR("Invalid args\n");
2128 return -1;
2129 }
2130
James Ketrenosafbf30a2005-08-25 00:05:33 -05002131 memcpy(cmd.param, &tmp_associate, sizeof(*associate));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002132 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002133}
2134
2135static int ipw_send_supported_rates(struct ipw_priv *priv,
2136 struct ipw_supported_rates *rates)
2137{
2138 struct host_cmd cmd = {
2139 .cmd = IPW_CMD_SUPPORTED_RATES,
2140 .len = sizeof(*rates)
2141 };
2142
2143 if (!priv || !rates) {
2144 IPW_ERROR("Invalid args\n");
2145 return -1;
2146 }
2147
James Ketrenosafbf30a2005-08-25 00:05:33 -05002148 memcpy(cmd.param, rates, sizeof(*rates));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002149 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002150}
2151
2152static int ipw_set_random_seed(struct ipw_priv *priv)
2153{
2154 struct host_cmd cmd = {
2155 .cmd = IPW_CMD_SEED_NUMBER,
2156 .len = sizeof(u32)
2157 };
2158
2159 if (!priv) {
2160 IPW_ERROR("Invalid args\n");
2161 return -1;
2162 }
2163
2164 get_random_bytes(&cmd.param, sizeof(u32));
2165
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002166 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002167}
2168
James Ketrenos43f66a62005-03-25 12:31:53 -06002169static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2170{
2171 struct host_cmd cmd = {
2172 .cmd = IPW_CMD_CARD_DISABLE,
2173 .len = sizeof(u32)
2174 };
2175
2176 if (!priv) {
2177 IPW_ERROR("Invalid args\n");
2178 return -1;
2179 }
2180
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002181 *((u32 *) & cmd.param) = phy_off;
James Ketrenos43f66a62005-03-25 12:31:53 -06002182
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002183 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002184}
James Ketrenos43f66a62005-03-25 12:31:53 -06002185
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002186static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002187{
2188 struct host_cmd cmd = {
2189 .cmd = IPW_CMD_TX_POWER,
2190 .len = sizeof(*power)
2191 };
2192
2193 if (!priv || !power) {
2194 IPW_ERROR("Invalid args\n");
2195 return -1;
2196 }
2197
James Ketrenosafbf30a2005-08-25 00:05:33 -05002198 memcpy(cmd.param, power, sizeof(*power));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002199 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002200}
2201
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002202static int ipw_set_tx_power(struct ipw_priv *priv)
2203{
Liu Hong1fe0adb2005-08-19 09:33:10 -05002204 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002205 struct ipw_tx_power tx_power;
2206 s8 max_power;
2207 int i;
2208
2209 memset(&tx_power, 0, sizeof(tx_power));
2210
2211 /* configure device for 'G' band */
2212 tx_power.ieee_mode = IPW_G_MODE;
2213 tx_power.num_channels = geo->bg_channels;
2214 for (i = 0; i < geo->bg_channels; i++) {
2215 max_power = geo->bg[i].max_power;
2216 tx_power.channels_tx_power[i].channel_number =
2217 geo->bg[i].channel;
2218 tx_power.channels_tx_power[i].tx_power = max_power ?
2219 min(max_power, priv->tx_power) : priv->tx_power;
2220 }
2221 if (ipw_send_tx_power(priv, &tx_power))
2222 return -EIO;
2223
2224 /* configure device to also handle 'B' band */
2225 tx_power.ieee_mode = IPW_B_MODE;
2226 if (ipw_send_tx_power(priv, &tx_power))
2227 return -EIO;
2228
2229 /* configure device to also handle 'A' band */
2230 if (priv->ieee->abg_true) {
2231 tx_power.ieee_mode = IPW_A_MODE;
2232 tx_power.num_channels = geo->a_channels;
2233 for (i = 0; i < tx_power.num_channels; i++) {
2234 max_power = geo->a[i].max_power;
2235 tx_power.channels_tx_power[i].channel_number =
2236 geo->a[i].channel;
2237 tx_power.channels_tx_power[i].tx_power = max_power ?
2238 min(max_power, priv->tx_power) : priv->tx_power;
2239 }
2240 if (ipw_send_tx_power(priv, &tx_power))
2241 return -EIO;
2242 }
2243 return 0;
2244}
2245
James Ketrenos43f66a62005-03-25 12:31:53 -06002246static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2247{
2248 struct ipw_rts_threshold rts_threshold = {
2249 .rts_threshold = rts,
2250 };
2251 struct host_cmd cmd = {
2252 .cmd = IPW_CMD_RTS_THRESHOLD,
2253 .len = sizeof(rts_threshold)
2254 };
2255
2256 if (!priv) {
2257 IPW_ERROR("Invalid args\n");
2258 return -1;
2259 }
2260
James Ketrenosafbf30a2005-08-25 00:05:33 -05002261 memcpy(cmd.param, &rts_threshold, sizeof(rts_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002262 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002263}
2264
2265static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2266{
2267 struct ipw_frag_threshold frag_threshold = {
2268 .frag_threshold = frag,
2269 };
2270 struct host_cmd cmd = {
2271 .cmd = IPW_CMD_FRAG_THRESHOLD,
2272 .len = sizeof(frag_threshold)
2273 };
2274
2275 if (!priv) {
2276 IPW_ERROR("Invalid args\n");
2277 return -1;
2278 }
2279
James Ketrenosafbf30a2005-08-25 00:05:33 -05002280 memcpy(cmd.param, &frag_threshold, sizeof(frag_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002281 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002282}
2283
2284static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2285{
2286 struct host_cmd cmd = {
2287 .cmd = IPW_CMD_POWER_MODE,
2288 .len = sizeof(u32)
2289 };
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002290 u32 *param = (u32 *) (&cmd.param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002291
2292 if (!priv) {
2293 IPW_ERROR("Invalid args\n");
2294 return -1;
2295 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002296
James Ketrenos43f66a62005-03-25 12:31:53 -06002297 /* If on battery, set to 3, if AC set to CAM, else user
2298 * level */
2299 switch (mode) {
2300 case IPW_POWER_BATTERY:
2301 *param = IPW_POWER_INDEX_3;
2302 break;
2303 case IPW_POWER_AC:
2304 *param = IPW_POWER_MODE_CAM;
2305 break;
2306 default:
2307 *param = mode;
2308 break;
2309 }
2310
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002311 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002312}
2313
James Ketrenosafbf30a2005-08-25 00:05:33 -05002314static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2315{
2316 struct ipw_retry_limit retry_limit = {
2317 .short_retry_limit = slimit,
2318 .long_retry_limit = llimit
2319 };
2320 struct host_cmd cmd = {
2321 .cmd = IPW_CMD_RETRY_LIMIT,
2322 .len = sizeof(retry_limit)
2323 };
2324
2325 if (!priv) {
2326 IPW_ERROR("Invalid args\n");
2327 return -1;
2328 }
2329
2330 memcpy(cmd.param, &retry_limit, sizeof(retry_limit));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002331 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05002332}
2333
James Ketrenos43f66a62005-03-25 12:31:53 -06002334/*
2335 * The IPW device contains a Microwire compatible EEPROM that stores
2336 * various data like the MAC address. Usually the firmware has exclusive
2337 * access to the eeprom, but during device initialization (before the
2338 * device driver has sent the HostComplete command to the firmware) the
2339 * device driver has read access to the EEPROM by way of indirect addressing
2340 * through a couple of memory mapped registers.
2341 *
2342 * The following is a simplified implementation for pulling data out of the
2343 * the eeprom, along with some helper functions to find information in
2344 * the per device private data's copy of the eeprom.
2345 *
2346 * NOTE: To better understand how these functions work (i.e what is a chip
2347 * select and why do have to keep driving the eeprom clock?), read
2348 * just about any data sheet for a Microwire compatible EEPROM.
2349 */
2350
2351/* write a 32 bit value into the indirect accessor register */
2352static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2353{
2354 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002355
James Ketrenos43f66a62005-03-25 12:31:53 -06002356 /* the eeprom requires some time to complete the operation */
2357 udelay(p->eeprom_delay);
2358
2359 return;
2360}
2361
2362/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002363static inline void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002364{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002365 eeprom_write_reg(priv, 0);
2366 eeprom_write_reg(priv, EEPROM_BIT_CS);
2367 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2368 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002369}
2370
2371/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002372static inline void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002373{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002374 eeprom_write_reg(priv, EEPROM_BIT_CS);
2375 eeprom_write_reg(priv, 0);
2376 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002377}
2378
2379/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002380static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002381{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002382 int d = (bit ? EEPROM_BIT_DI : 0);
2383 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2384 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002385}
2386
2387/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002388static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002389{
2390 int i;
2391
2392 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002393 eeprom_write_bit(priv, 1);
2394 eeprom_write_bit(priv, op & 2);
2395 eeprom_write_bit(priv, op & 1);
2396 for (i = 7; i >= 0; i--) {
2397 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002398 }
2399}
2400
2401/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002402static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002403{
2404 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002405 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002406
James Ketrenos43f66a62005-03-25 12:31:53 -06002407 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002408 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002409
2410 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002411 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002412
2413 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002414 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002415 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002416 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2417 eeprom_write_reg(priv, EEPROM_BIT_CS);
2418 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2419 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002420 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002421
James Ketrenos43f66a62005-03-25 12:31:53 -06002422 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002423 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002424 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002425
James Ketrenos43f66a62005-03-25 12:31:53 -06002426 return r;
2427}
2428
2429/* helper function for pulling the mac address out of the private */
2430/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002431static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002432{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002433 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002434}
2435
2436/*
2437 * Either the device driver (i.e. the host) or the firmware can
2438 * load eeprom data into the designated region in SRAM. If neither
2439 * happens then the FW will shutdown with a fatal error.
2440 *
2441 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2442 * bit needs region of shared SRAM needs to be non-zero.
2443 */
2444static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2445{
2446 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002447 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002448
James Ketrenos43f66a62005-03-25 12:31:53 -06002449 IPW_DEBUG_TRACE(">>\n");
2450
2451 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002452 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002453 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002454
Jeff Garzikbf794512005-07-31 13:07:26 -04002455 /*
2456 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002457 copy. Otherwise let the firmware know to perform the operation
2458 on it's own
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002459 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002460 if ((priv->eeprom + EEPROM_VERSION) != 0) {
2461 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2462
2463 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002464 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002465 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002466
2467 /* Do not load eeprom data on fatal error or suspend */
2468 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2469 } else {
2470 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2471
2472 /* Load eeprom data on fatal error or suspend */
2473 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2474 }
2475
2476 IPW_DEBUG_TRACE("<<\n");
2477}
2478
James Ketrenos43f66a62005-03-25 12:31:53 -06002479static inline void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
2480{
2481 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002482 if (!count)
2483 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002484 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002485 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002486 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002487}
2488
2489static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2490{
James Ketrenosb095c382005-08-24 22:04:42 -05002491 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002492 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002493 sizeof(struct command_block));
2494}
2495
2496static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002497{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002498
2499 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002500
James Ketrenos43f66a62005-03-25 12:31:53 -06002501 /* Start the dma */
2502 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002503
James Ketrenos43f66a62005-03-25 12:31:53 -06002504 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002505 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002506
2507 IPW_DEBUG_FW("<< : \n");
2508 return 0;
2509}
2510
2511static void ipw_fw_dma_abort(struct ipw_priv *priv)
2512{
2513 u32 control = 0;
2514
2515 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002516
2517 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002518 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002519 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002520 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002521
James Ketrenos43f66a62005-03-25 12:31:53 -06002522 IPW_DEBUG_FW("<< \n");
2523}
2524
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002525static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2526 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002527{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002528 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002529 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002530 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002531 IPW_DEBUG_FW(">> :\n");
2532
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002533 ipw_write_indirect(priv, address, (u8 *) cb,
2534 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002535
2536 IPW_DEBUG_FW("<< :\n");
2537 return 0;
2538
2539}
2540
2541static int ipw_fw_dma_kick(struct ipw_priv *priv)
2542{
2543 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002544 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002545
2546 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002547
James Ketrenos43f66a62005-03-25 12:31:53 -06002548 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002549 ipw_fw_dma_write_command_block(priv, index,
2550 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002551
2552 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002553 ipw_clear_bit(priv, IPW_RESET_REG,
2554 IPW_RESET_REG_MASTER_DISABLED |
2555 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002556
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002557 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002558 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002559 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002560
2561 IPW_DEBUG_FW("<< :\n");
2562 return 0;
2563}
2564
2565static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2566{
2567 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002568 u32 register_value = 0;
2569 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002570
2571 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002572 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002573 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002574
2575 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002576 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2577 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002578
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002579 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002580 cb_fields_address = address;
2581 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002582 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002583
2584 cb_fields_address += sizeof(u32);
2585 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002586 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002587
2588 cb_fields_address += sizeof(u32);
2589 register_value = ipw_read_reg32(priv, cb_fields_address);
2590 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2591 register_value);
2592
2593 cb_fields_address += sizeof(u32);
2594 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002595 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002596
2597 IPW_DEBUG_FW(">> :\n");
2598}
2599
2600static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2601{
2602 u32 current_cb_address = 0;
2603 u32 current_cb_index = 0;
2604
2605 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002606 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002607
James Ketrenosb095c382005-08-24 22:04:42 -05002608 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002609 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002610
James Ketrenos43f66a62005-03-25 12:31:53 -06002611 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002612 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002613
2614 IPW_DEBUG_FW(">> :\n");
2615 return current_cb_index;
2616
2617}
2618
2619static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2620 u32 src_address,
2621 u32 dest_address,
2622 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002623 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002624{
2625
Jeff Garzikbf794512005-07-31 13:07:26 -04002626 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002627 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2628 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002629 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002630 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002631
2632 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2633 src_address, dest_address, length);
2634
2635 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2636 return -1;
2637
2638 last_cb_element = priv->sram_desc.last_cb_index;
2639 cb = &priv->sram_desc.cb_list[last_cb_element];
2640 priv->sram_desc.last_cb_index++;
2641
2642 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002643 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002644 control |= CB_INT_ENABLED;
2645
2646 if (is_last)
2647 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002648
James Ketrenos43f66a62005-03-25 12:31:53 -06002649 control |= length;
2650
2651 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002652 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002653
2654 /* Copy the Source and Destination addresses */
2655 cb->dest_addr = dest_address;
2656 cb->source_addr = src_address;
2657
2658 /* Copy the Control Word last */
2659 cb->control = control;
2660
2661 return 0;
2662}
2663
2664static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002665 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002666{
2667 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002668 u32 src_offset = 0;
2669 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002670 int status = 0;
2671 IPW_DEBUG_FW(">> \n");
2672 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2673 src_phys, dest_address, length);
2674 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002675 status = ipw_fw_dma_add_command_block(priv,
2676 src_phys + src_offset,
2677 dest_address +
2678 dest_offset,
2679 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002680 if (status) {
2681 IPW_DEBUG_FW_INFO(": Failed\n");
2682 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002683 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002684 IPW_DEBUG_FW_INFO(": Added new cb\n");
2685
2686 src_offset += CB_MAX_LENGTH;
2687 dest_offset += CB_MAX_LENGTH;
2688 bytes_left -= CB_MAX_LENGTH;
2689 }
2690
2691 /* add the buffer tail */
2692 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002693 status =
2694 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2695 dest_address + dest_offset,
2696 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002697 if (status) {
2698 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2699 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002700 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002701 IPW_DEBUG_FW_INFO
2702 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002703 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002704
James Ketrenos43f66a62005-03-25 12:31:53 -06002705 IPW_DEBUG_FW("<< \n");
2706 return 0;
2707}
2708
2709static int ipw_fw_dma_wait(struct ipw_priv *priv)
2710{
2711 u32 current_index = 0;
2712 u32 watchdog = 0;
2713
2714 IPW_DEBUG_FW(">> : \n");
2715
2716 current_index = ipw_fw_dma_command_block_index(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002717 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%8X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002718 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002719
2720 while (current_index < priv->sram_desc.last_cb_index) {
2721 udelay(50);
2722 current_index = ipw_fw_dma_command_block_index(priv);
2723
2724 watchdog++;
2725
2726 if (watchdog > 400) {
2727 IPW_DEBUG_FW_INFO("Timeout\n");
2728 ipw_fw_dma_dump_command_block(priv);
2729 ipw_fw_dma_abort(priv);
2730 return -1;
2731 }
2732 }
2733
2734 ipw_fw_dma_abort(priv);
2735
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002736 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002737 ipw_set_bit(priv, IPW_RESET_REG,
2738 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002739
2740 IPW_DEBUG_FW("<< dmaWaitSync \n");
2741 return 0;
2742}
2743
Jeff Garzikbf794512005-07-31 13:07:26 -04002744static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002745{
2746 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002747 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002748 unsigned long flags;
2749
2750 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002751 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2752 network = list_entry(element, struct ieee80211_network, list);
2753 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2754 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002755 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002756 &priv->ieee->network_free_list);
2757 }
2758 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002759 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002760}
2761
2762/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002763 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002764 * Reads debug register from domain0.
2765 * If card is present, pre-defined value should
2766 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002767 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002768 * @param priv
2769 * @return 1 if card is present, 0 otherwise
2770 */
2771static inline int ipw_alive(struct ipw_priv *priv)
2772{
2773 return ipw_read32(priv, 0x90) == 0xd55555d5;
2774}
2775
2776static inline int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
2777 int timeout)
2778{
2779 int i = 0;
2780
2781 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002782 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002783 return i;
2784 mdelay(10);
2785 i += 10;
2786 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002787
James Ketrenos43f66a62005-03-25 12:31:53 -06002788 return -ETIME;
2789}
2790
Jeff Garzikbf794512005-07-31 13:07:26 -04002791/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002792 * the ipw hardware. It assumes the buffer has all the bits for the
2793 * image and the caller is handling the memory allocation and clean up.
2794 */
2795
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002796static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002797{
2798 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002799
James Ketrenos43f66a62005-03-25 12:31:53 -06002800 IPW_DEBUG_TRACE(">> \n");
2801 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002802 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002803
James Ketrenosb095c382005-08-24 22:04:42 -05002804 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2805 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002806 if (rc < 0) {
2807 IPW_ERROR("stop master failed in 10ms\n");
2808 return -1;
2809 }
2810
2811 IPW_DEBUG_INFO("stop master %dms\n", rc);
2812
2813 return rc;
2814}
2815
2816static void ipw_arc_release(struct ipw_priv *priv)
2817{
2818 IPW_DEBUG_TRACE(">> \n");
2819 mdelay(5);
2820
James Ketrenosb095c382005-08-24 22:04:42 -05002821 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002822
2823 /* no one knows timing, for safety add some delay */
2824 mdelay(5);
2825}
2826
2827struct fw_header {
2828 u32 version;
2829 u32 mode;
2830};
2831
2832struct fw_chunk {
2833 u32 address;
2834 u32 length;
2835};
2836
2837#define IPW_FW_MAJOR_VERSION 2
James Ketrenosb095c382005-08-24 22:04:42 -05002838#define IPW_FW_MINOR_VERSION 3
James Ketrenos43f66a62005-03-25 12:31:53 -06002839
2840#define IPW_FW_MINOR(x) ((x & 0xff) >> 8)
2841#define IPW_FW_MAJOR(x) (x & 0xff)
2842
James Ketrenosafbf30a2005-08-25 00:05:33 -05002843#define IPW_FW_VERSION ((IPW_FW_MINOR_VERSION << 8) | IPW_FW_MAJOR_VERSION)
James Ketrenos43f66a62005-03-25 12:31:53 -06002844
2845#define IPW_FW_PREFIX "ipw-" __stringify(IPW_FW_MAJOR_VERSION) \
2846"." __stringify(IPW_FW_MINOR_VERSION) "-"
2847
2848#if IPW_FW_MAJOR_VERSION >= 2 && IPW_FW_MINOR_VERSION > 0
2849#define IPW_FW_NAME(x) IPW_FW_PREFIX "" x ".fw"
2850#else
2851#define IPW_FW_NAME(x) "ipw2200_" x ".fw"
2852#endif
2853
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002854static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002855{
2856 int rc = 0, i, addr;
2857 u8 cr = 0;
2858 u16 *image;
2859
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002860 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002861
James Ketrenos43f66a62005-03-25 12:31:53 -06002862 IPW_DEBUG_TRACE(">> \n");
2863
2864 rc = ipw_stop_master(priv);
2865
2866 if (rc < 0)
2867 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002868
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002869// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002870
James Ketrenosb095c382005-08-24 22:04:42 -05002871 for (addr = IPW_SHARED_LOWER_BOUND;
2872 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002873 ipw_write32(priv, addr, 0);
2874 }
2875
2876 /* no ucode (yet) */
2877 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2878 /* destroy DMA queues */
2879 /* reset sequence */
2880
James Ketrenosb095c382005-08-24 22:04:42 -05002881 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002882 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002883 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002884 mdelay(1);
2885
2886 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002887 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002888 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002889
James Ketrenosb095c382005-08-24 22:04:42 -05002890 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002891 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002892
James Ketrenos43f66a62005-03-25 12:31:53 -06002893 /* enable ucode store */
2894 ipw_write_reg8(priv, DINO_CONTROL_REG, 0x0);
2895 ipw_write_reg8(priv, DINO_CONTROL_REG, DINO_ENABLE_CS);
2896 mdelay(1);
2897
2898 /* write ucode */
2899 /**
2900 * @bug
2901 * Do NOT set indirect address register once and then
2902 * store data to indirect data register in the loop.
2903 * It seems very reasonable, but in this case DINO do not
2904 * accept ucode. It is essential to set address each time.
2905 */
2906 /* load new ipw uCode */
2907 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002908 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002909 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002910
James Ketrenos43f66a62005-03-25 12:31:53 -06002911 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002912 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2913 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002914
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002915 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002916
2917 /* wait for alive response */
2918 for (i = 0; i < 100; i++) {
2919 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002920 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002921 if (cr & DINO_RXFIFO_DATA)
2922 break;
2923 mdelay(1);
2924 }
2925
2926 if (cr & DINO_RXFIFO_DATA) {
2927 /* alive_command_responce size is NOT multiple of 4 */
2928 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002929
2930 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002931 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002932 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002933 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002934 memcpy(&priv->dino_alive, response_buffer,
2935 sizeof(priv->dino_alive));
2936 if (priv->dino_alive.alive_command == 1
2937 && priv->dino_alive.ucode_valid == 1) {
2938 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002939 IPW_DEBUG_INFO
2940 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2941 "of %02d/%02d/%02d %02d:%02d\n",
2942 priv->dino_alive.software_revision,
2943 priv->dino_alive.software_revision,
2944 priv->dino_alive.device_identifier,
2945 priv->dino_alive.device_identifier,
2946 priv->dino_alive.time_stamp[0],
2947 priv->dino_alive.time_stamp[1],
2948 priv->dino_alive.time_stamp[2],
2949 priv->dino_alive.time_stamp[3],
2950 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002951 } else {
2952 IPW_DEBUG_INFO("Microcode is not alive\n");
2953 rc = -EINVAL;
2954 }
2955 } else {
2956 IPW_DEBUG_INFO("No alive response from DINO\n");
2957 rc = -ETIME;
2958 }
2959
2960 /* disable DINO, otherwise for some reason
2961 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002962 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002963
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002964// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002965
2966 return rc;
2967}
2968
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002969static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002970{
2971 int rc = -1;
2972 int offset = 0;
2973 struct fw_chunk *chunk;
2974 dma_addr_t shared_phys;
2975 u8 *shared_virt;
2976
2977 IPW_DEBUG_TRACE("<< : \n");
2978 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2979
2980 if (!shared_virt)
2981 return -ENOMEM;
2982
2983 memmove(shared_virt, data, len);
2984
2985 /* Start the Dma */
2986 rc = ipw_fw_dma_enable(priv);
2987
2988 if (priv->sram_desc.last_cb_index > 0) {
2989 /* the DMA is already ready this would be a bug. */
2990 BUG();
2991 goto out;
2992 }
2993
2994 do {
2995 chunk = (struct fw_chunk *)(data + offset);
2996 offset += sizeof(struct fw_chunk);
2997 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04002998 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06002999 * offeset*/
3000 /* Dma loading */
3001 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05003002 le32_to_cpu(chunk->address),
3003 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06003004 if (rc) {
3005 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3006 goto out;
3007 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003008
James Ketrenosa613bff2005-08-24 21:43:11 -05003009 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06003010 } while (offset < len);
3011
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003012 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06003013 rc = ipw_fw_dma_kick(priv);
3014 if (rc) {
3015 IPW_ERROR("dmaKick Failed\n");
3016 goto out;
3017 }
3018
3019 rc = ipw_fw_dma_wait(priv);
3020 if (rc) {
3021 IPW_ERROR("dmaWaitSync Failed\n");
3022 goto out;
3023 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003024 out:
3025 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06003026 return rc;
3027}
3028
3029/* stop nic */
3030static int ipw_stop_nic(struct ipw_priv *priv)
3031{
3032 int rc = 0;
3033
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003034 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003035 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003036
James Ketrenosb095c382005-08-24 22:04:42 -05003037 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3038 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003039 if (rc < 0) {
3040 IPW_ERROR("wait for reg master disabled failed\n");
3041 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003042 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003043
James Ketrenosb095c382005-08-24 22:04:42 -05003044 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003045
James Ketrenos43f66a62005-03-25 12:31:53 -06003046 return rc;
3047}
3048
3049static void ipw_start_nic(struct ipw_priv *priv)
3050{
3051 IPW_DEBUG_TRACE(">>\n");
3052
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003053 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003054 ipw_clear_bit(priv, IPW_RESET_REG,
3055 IPW_RESET_REG_MASTER_DISABLED |
3056 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003057 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003058
James Ketrenos43f66a62005-03-25 12:31:53 -06003059 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003060 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3061 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003062
3063 IPW_DEBUG_TRACE("<<\n");
3064}
Jeff Garzikbf794512005-07-31 13:07:26 -04003065
James Ketrenos43f66a62005-03-25 12:31:53 -06003066static int ipw_init_nic(struct ipw_priv *priv)
3067{
3068 int rc;
3069
3070 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003071 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003072 /*prvHwInitNic */
3073 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003074 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003075
3076 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003077 ipw_write32(priv, IPW_READ_INT_REGISTER,
3078 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003079
3080 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003081 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3082 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003083 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003084 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3085
3086 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003087 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003088
3089 udelay(10);
3090
3091 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003092 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003093
3094 IPW_DEBUG_TRACE(">>\n");
3095 return 0;
3096}
3097
Jeff Garzikbf794512005-07-31 13:07:26 -04003098/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003099 * Probe is an ok place to call this from.
3100 */
3101static int ipw_reset_nic(struct ipw_priv *priv)
3102{
3103 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003104 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003105
3106 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003107
James Ketrenos43f66a62005-03-25 12:31:53 -06003108 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003109
James Ketrenosa613bff2005-08-24 21:43:11 -05003110 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003111 /* Clear the 'host command active' bit... */
3112 priv->status &= ~STATUS_HCMD_ACTIVE;
3113 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003114 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3115 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003116 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003117
3118 IPW_DEBUG_TRACE("<<\n");
3119 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003120}
James Ketrenos43f66a62005-03-25 12:31:53 -06003121
Jeff Garzikbf794512005-07-31 13:07:26 -04003122static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003123 const struct firmware **fw, const char *name)
3124{
3125 struct fw_header *header;
3126 int rc;
3127
3128 /* ask firmware_class module to get the boot firmware off disk */
3129 rc = request_firmware(fw, name, &priv->pci_dev->dev);
3130 if (rc < 0) {
3131 IPW_ERROR("%s load failed: Reason %d\n", name, rc);
3132 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003133 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003134
3135 header = (struct fw_header *)(*fw)->data;
James Ketrenosa613bff2005-08-24 21:43:11 -05003136 if (IPW_FW_MAJOR(le32_to_cpu(header->version)) != IPW_FW_MAJOR_VERSION) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003137 IPW_ERROR("'%s' firmware version not compatible (%d != %d)\n",
3138 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003139 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3140 IPW_FW_MAJOR_VERSION);
James Ketrenos43f66a62005-03-25 12:31:53 -06003141 return -EINVAL;
3142 }
3143
Jiri Bencaaa4d302005-06-07 14:58:41 +02003144 IPW_DEBUG_INFO("Loading firmware '%s' file v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003145 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003146 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3147 IPW_FW_MINOR(le32_to_cpu(header->version)),
James Ketrenos43f66a62005-03-25 12:31:53 -06003148 (*fw)->size - sizeof(struct fw_header));
3149 return 0;
3150}
3151
James Ketrenosb095c382005-08-24 22:04:42 -05003152#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003153
3154static inline void ipw_rx_queue_reset(struct ipw_priv *priv,
3155 struct ipw_rx_queue *rxq)
3156{
3157 unsigned long flags;
3158 int i;
3159
3160 spin_lock_irqsave(&rxq->lock, flags);
3161
3162 INIT_LIST_HEAD(&rxq->rx_free);
3163 INIT_LIST_HEAD(&rxq->rx_used);
3164
3165 /* Fill the rx_used queue with _all_ of the Rx buffers */
3166 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3167 /* In the reset function, these buffers may have been allocated
3168 * to an SKB, so we need to unmap and free potential storage */
3169 if (rxq->pool[i].skb != NULL) {
3170 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003171 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003172 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003173 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003174 }
3175 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3176 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003177
James Ketrenos43f66a62005-03-25 12:31:53 -06003178 /* Set us so that we have processed and used all buffers, but have
3179 * not restocked the Rx queue with fresh buffers */
3180 rxq->read = rxq->write = 0;
3181 rxq->processed = RX_QUEUE_SIZE - 1;
3182 rxq->free_count = 0;
3183 spin_unlock_irqrestore(&rxq->lock, flags);
3184}
3185
3186#ifdef CONFIG_PM
3187static int fw_loaded = 0;
3188static const struct firmware *bootfw = NULL;
3189static const struct firmware *firmware = NULL;
3190static const struct firmware *ucode = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003191
3192static void free_firmware(void)
3193{
3194 if (fw_loaded) {
3195 release_firmware(bootfw);
3196 release_firmware(ucode);
3197 release_firmware(firmware);
3198 bootfw = ucode = firmware = NULL;
3199 fw_loaded = 0;
3200 }
3201}
3202#else
3203#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003204#endif
3205
3206static int ipw_load(struct ipw_priv *priv)
3207{
3208#ifndef CONFIG_PM
3209 const struct firmware *bootfw = NULL;
3210 const struct firmware *firmware = NULL;
3211 const struct firmware *ucode = NULL;
3212#endif
3213 int rc = 0, retries = 3;
3214
3215#ifdef CONFIG_PM
3216 if (!fw_loaded) {
3217#endif
3218 rc = ipw_get_fw(priv, &bootfw, IPW_FW_NAME("boot"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003219 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003220 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003221
James Ketrenos43f66a62005-03-25 12:31:53 -06003222 switch (priv->ieee->iw_mode) {
3223 case IW_MODE_ADHOC:
Jeff Garzikbf794512005-07-31 13:07:26 -04003224 rc = ipw_get_fw(priv, &ucode,
James Ketrenos43f66a62005-03-25 12:31:53 -06003225 IPW_FW_NAME("ibss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003226 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003227 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003228
James Ketrenos43f66a62005-03-25 12:31:53 -06003229 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("ibss"));
3230 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003231
James Ketrenosb095c382005-08-24 22:04:42 -05003232#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06003233 case IW_MODE_MONITOR:
Jeff Garzikbf794512005-07-31 13:07:26 -04003234 rc = ipw_get_fw(priv, &ucode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003235 IPW_FW_NAME("sniffer_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003236 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003237 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003238
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003239 rc = ipw_get_fw(priv, &firmware,
3240 IPW_FW_NAME("sniffer"));
James Ketrenos43f66a62005-03-25 12:31:53 -06003241 break;
3242#endif
3243 case IW_MODE_INFRA:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003244 rc = ipw_get_fw(priv, &ucode, IPW_FW_NAME("bss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003245 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003246 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003247
James Ketrenos43f66a62005-03-25 12:31:53 -06003248 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("bss"));
3249 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003250
James Ketrenos43f66a62005-03-25 12:31:53 -06003251 default:
3252 rc = -EINVAL;
3253 }
3254
Jeff Garzikbf794512005-07-31 13:07:26 -04003255 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003256 goto error;
3257
3258#ifdef CONFIG_PM
3259 fw_loaded = 1;
3260 }
3261#endif
3262
3263 if (!priv->rxq)
3264 priv->rxq = ipw_rx_queue_alloc(priv);
3265 else
3266 ipw_rx_queue_reset(priv, priv->rxq);
3267 if (!priv->rxq) {
3268 IPW_ERROR("Unable to initialize Rx queue\n");
3269 goto error;
3270 }
3271
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003272 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003273 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003274 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003275 priv->status &= ~STATUS_INT_ENABLED;
3276
3277 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003278 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003279
James Ketrenos43f66a62005-03-25 12:31:53 -06003280 ipw_stop_nic(priv);
3281
3282 rc = ipw_reset_nic(priv);
3283 if (rc) {
3284 IPW_ERROR("Unable to reset NIC\n");
3285 goto error;
3286 }
3287
James Ketrenosb095c382005-08-24 22:04:42 -05003288 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3289 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003290
3291 /* DMA the initial boot firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003292 rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003293 bootfw->size - sizeof(struct fw_header));
3294 if (rc < 0) {
3295 IPW_ERROR("Unable to load boot firmware\n");
3296 goto error;
3297 }
3298
3299 /* kick start the device */
3300 ipw_start_nic(priv);
3301
3302 /* wait for the device to finish it's initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003303 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3304 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003305 if (rc < 0) {
3306 IPW_ERROR("device failed to boot initial fw image\n");
3307 goto error;
3308 }
3309 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3310
Jeff Garzikbf794512005-07-31 13:07:26 -04003311 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003312 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003313
3314 /* DMA the ucode into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003315 rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003316 ucode->size - sizeof(struct fw_header));
3317 if (rc < 0) {
3318 IPW_ERROR("Unable to load ucode\n");
3319 goto error;
3320 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003321
James Ketrenos43f66a62005-03-25 12:31:53 -06003322 /* stop nic */
3323 ipw_stop_nic(priv);
3324
3325 /* DMA bss firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003326 rc = ipw_load_firmware(priv, firmware->data +
3327 sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003328 firmware->size - sizeof(struct fw_header));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003329 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003330 IPW_ERROR("Unable to load firmware\n");
3331 goto error;
3332 }
3333
3334 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3335
3336 rc = ipw_queue_reset(priv);
3337 if (rc) {
3338 IPW_ERROR("Unable to initialize queues\n");
3339 goto error;
3340 }
3341
3342 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003343 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003344 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003345 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003346
James Ketrenos43f66a62005-03-25 12:31:53 -06003347 /* kick start the device */
3348 ipw_start_nic(priv);
3349
James Ketrenosb095c382005-08-24 22:04:42 -05003350 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003351 if (retries > 0) {
3352 IPW_WARNING("Parity error. Retrying init.\n");
3353 retries--;
3354 goto retry;
3355 }
3356
3357 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3358 rc = -EIO;
3359 goto error;
3360 }
3361
3362 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003363 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3364 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003365 if (rc < 0) {
3366 IPW_ERROR("device failed to start after 500ms\n");
3367 goto error;
3368 }
3369 IPW_DEBUG_INFO("device response after %dms\n", rc);
3370
3371 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003372 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003373
3374 /* read eeprom data and initialize the eeprom region of sram */
3375 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003376 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003377
3378 /* enable interrupts */
3379 ipw_enable_interrupts(priv);
3380
3381 /* Ensure our queue has valid packets */
3382 ipw_rx_queue_replenish(priv);
3383
James Ketrenosb095c382005-08-24 22:04:42 -05003384 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003385
3386 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003387 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003388
3389#ifndef CONFIG_PM
3390 release_firmware(bootfw);
3391 release_firmware(ucode);
3392 release_firmware(firmware);
3393#endif
3394 return 0;
3395
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003396 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003397 if (priv->rxq) {
3398 ipw_rx_queue_free(priv, priv->rxq);
3399 priv->rxq = NULL;
3400 }
3401 ipw_tx_queue_free(priv);
3402 if (bootfw)
3403 release_firmware(bootfw);
3404 if (ucode)
3405 release_firmware(ucode);
3406 if (firmware)
3407 release_firmware(firmware);
3408#ifdef CONFIG_PM
3409 fw_loaded = 0;
3410 bootfw = ucode = firmware = NULL;
3411#endif
3412
3413 return rc;
3414}
3415
Jeff Garzikbf794512005-07-31 13:07:26 -04003416/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003417 * DMA services
3418 *
3419 * Theory of operation
3420 *
3421 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3422 * 2 empty entries always kept in the buffer to protect from overflow.
3423 *
3424 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003425 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3426 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003427 * Tx queue resumed.
3428 *
3429 * The IPW operates with six queues, one receive queue in the device's
3430 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003431 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003432 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003433 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003434 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003435 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003436 * we only utilize the first data transmit queue (queue1).
3437 */
3438
3439/**
3440 * Driver allocates buffers of this size for Rx
3441 */
3442
3443static inline int ipw_queue_space(const struct clx2_queue *q)
3444{
3445 int s = q->last_used - q->first_empty;
3446 if (s <= 0)
3447 s += q->n_bd;
3448 s -= 2; /* keep some reserve to not confuse empty and full situations */
3449 if (s < 0)
3450 s = 0;
3451 return s;
3452}
3453
3454static inline int ipw_queue_inc_wrap(int index, int n_bd)
3455{
3456 return (++index == n_bd) ? 0 : index;
3457}
3458
3459/**
3460 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003461 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003462 * @param q queue to init
3463 * @param count Number of BD's to allocate. Should be power of 2
3464 * @param read_register Address for 'read' register
3465 * (not offset within BAR, full address)
3466 * @param write_register Address for 'write' register
3467 * (not offset within BAR, full address)
3468 * @param base_register Address for 'base' register
3469 * (not offset within BAR, full address)
3470 * @param size Address for 'size' register
3471 * (not offset within BAR, full address)
3472 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003473static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003474 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003475{
3476 q->n_bd = count;
3477
3478 q->low_mark = q->n_bd / 4;
3479 if (q->low_mark < 4)
3480 q->low_mark = 4;
3481
3482 q->high_mark = q->n_bd / 8;
3483 if (q->high_mark < 2)
3484 q->high_mark = 2;
3485
3486 q->first_empty = q->last_used = 0;
3487 q->reg_r = read;
3488 q->reg_w = write;
3489
3490 ipw_write32(priv, base, q->dma_addr);
3491 ipw_write32(priv, size, count);
3492 ipw_write32(priv, read, 0);
3493 ipw_write32(priv, write, 0);
3494
3495 _ipw_read32(priv, 0x90);
3496}
3497
Jeff Garzikbf794512005-07-31 13:07:26 -04003498static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003499 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003500 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003501{
3502 struct pci_dev *dev = priv->pci_dev;
3503
3504 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3505 if (!q->txb) {
3506 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3507 return -ENOMEM;
3508 }
3509
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003510 q->bd =
3511 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003512 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003513 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003514 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003515 kfree(q->txb);
3516 q->txb = NULL;
3517 return -ENOMEM;
3518 }
3519
3520 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3521 return 0;
3522}
3523
3524/**
3525 * Free one TFD, those at index [txq->q.last_used].
3526 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003527 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003528 * @param dev
3529 * @param txq
3530 */
3531static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3532 struct clx2_tx_queue *txq)
3533{
3534 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3535 struct pci_dev *dev = priv->pci_dev;
3536 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003537
James Ketrenos43f66a62005-03-25 12:31:53 -06003538 /* classify bd */
3539 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3540 /* nothing to cleanup after for host commands */
3541 return;
3542
3543 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003544 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3545 IPW_ERROR("Too many chunks: %i\n",
3546 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003547 /** @todo issue fatal error, it is quite serious situation */
3548 return;
3549 }
3550
3551 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003552 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3553 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3554 le16_to_cpu(bd->u.data.chunk_len[i]),
3555 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003556 if (txq->txb[txq->q.last_used]) {
3557 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3558 txq->txb[txq->q.last_used] = NULL;
3559 }
3560 }
3561}
3562
3563/**
3564 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003565 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003566 * Empty queue by removing and destroying all BD's.
3567 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003568 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003569 * @param dev
3570 * @param q
3571 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003572static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003573{
3574 struct clx2_queue *q = &txq->q;
3575 struct pci_dev *dev = priv->pci_dev;
3576
Jeff Garzikbf794512005-07-31 13:07:26 -04003577 if (q->n_bd == 0)
3578 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003579
3580 /* first, empty all BD's */
3581 for (; q->first_empty != q->last_used;
3582 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3583 ipw_queue_tx_free_tfd(priv, txq);
3584 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003585
James Ketrenos43f66a62005-03-25 12:31:53 -06003586 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003587 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003588 q->dma_addr);
3589 kfree(txq->txb);
3590
3591 /* 0 fill whole structure */
3592 memset(txq, 0, sizeof(*txq));
3593}
3594
James Ketrenos43f66a62005-03-25 12:31:53 -06003595/**
3596 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003597 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003598 * @param priv
3599 */
3600static void ipw_tx_queue_free(struct ipw_priv *priv)
3601{
3602 /* Tx CMD queue */
3603 ipw_queue_tx_free(priv, &priv->txq_cmd);
3604
3605 /* Tx queues */
3606 ipw_queue_tx_free(priv, &priv->txq[0]);
3607 ipw_queue_tx_free(priv, &priv->txq[1]);
3608 ipw_queue_tx_free(priv, &priv->txq[2]);
3609 ipw_queue_tx_free(priv, &priv->txq[3]);
3610}
3611
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003612static inline void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003613{
3614 /* First 3 bytes are manufacturer */
3615 bssid[0] = priv->mac_addr[0];
3616 bssid[1] = priv->mac_addr[1];
3617 bssid[2] = priv->mac_addr[2];
3618
3619 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003620 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003621
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003622 bssid[0] &= 0xfe; /* clear multicast bit */
3623 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003624}
3625
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003626static inline u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003627{
3628 struct ipw_station_entry entry;
3629 int i;
3630
3631 for (i = 0; i < priv->num_stations; i++) {
3632 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3633 /* Another node is active in network */
3634 priv->missed_adhoc_beacons = 0;
3635 if (!(priv->config & CFG_STATIC_CHANNEL))
3636 /* when other nodes drop out, we drop out */
3637 priv->config &= ~CFG_ADHOC_PERSIST;
3638
3639 return i;
3640 }
3641 }
3642
3643 if (i == MAX_STATIONS)
3644 return IPW_INVALID_STATION;
3645
3646 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3647
3648 entry.reserved = 0;
3649 entry.support_mode = 0;
3650 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3651 memcpy(priv->stations[i], bssid, ETH_ALEN);
3652 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003653 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003654 priv->num_stations++;
3655
3656 return i;
3657}
3658
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003659static inline u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003660{
3661 int i;
3662
Jeff Garzikbf794512005-07-31 13:07:26 -04003663 for (i = 0; i < priv->num_stations; i++)
3664 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003665 return i;
3666
3667 return IPW_INVALID_STATION;
3668}
3669
3670static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3671{
3672 int err;
3673
3674 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))) {
3675 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3676 return;
3677 }
3678
3679 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3680 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003681 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003682 priv->assoc_request.channel);
3683
3684 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3685 priv->status |= STATUS_DISASSOCIATING;
3686
3687 if (quiet)
3688 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3689 else
3690 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
3691 err = ipw_send_associate(priv, &priv->assoc_request);
3692 if (err) {
3693 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3694 "failed.\n");
3695 return;
3696 }
3697
3698}
3699
James Ketrenosc848d0a2005-08-24 21:56:24 -05003700static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003701{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003702 struct ipw_priv *priv = data;
3703 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3704 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003705 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003706 return 1;
3707}
3708
3709static void ipw_bg_disassociate(void *data)
3710{
3711 struct ipw_priv *priv = data;
3712 down(&priv->sem);
3713 ipw_disassociate(data);
3714 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06003715}
3716
Zhu Yid8bad6d2005-07-13 12:25:38 -05003717static void ipw_system_config(void *data)
3718{
3719 struct ipw_priv *priv = data;
3720 ipw_send_system_config(priv, &priv->sys_config);
3721}
3722
James Ketrenos43f66a62005-03-25 12:31:53 -06003723struct ipw_status_code {
3724 u16 status;
3725 const char *reason;
3726};
3727
3728static const struct ipw_status_code ipw_status_codes[] = {
3729 {0x00, "Successful"},
3730 {0x01, "Unspecified failure"},
3731 {0x0A, "Cannot support all requested capabilities in the "
3732 "Capability information field"},
3733 {0x0B, "Reassociation denied due to inability to confirm that "
3734 "association exists"},
3735 {0x0C, "Association denied due to reason outside the scope of this "
3736 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003737 {0x0D,
3738 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003739 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003740 {0x0E,
3741 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003742 "transaction sequence number out of expected sequence"},
3743 {0x0F, "Authentication rejected because of challenge failure"},
3744 {0x10, "Authentication rejected due to timeout waiting for next "
3745 "frame in sequence"},
3746 {0x11, "Association denied because AP is unable to handle additional "
3747 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003748 {0x12,
3749 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003750 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003751 {0x13,
3752 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003753 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003754 {0x14,
3755 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003756 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003757 {0x15,
3758 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003759 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003760 {0x19,
3761 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003762 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003763 {0x1A,
3764 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003765 "DSSS-OFDM operation"},
3766 {0x28, "Invalid Information Element"},
3767 {0x29, "Group Cipher is not valid"},
3768 {0x2A, "Pairwise Cipher is not valid"},
3769 {0x2B, "AKMP is not valid"},
3770 {0x2C, "Unsupported RSN IE version"},
3771 {0x2D, "Invalid RSN IE Capabilities"},
3772 {0x2E, "Cipher suite is rejected per security policy"},
3773};
3774
3775#ifdef CONFIG_IPW_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003776static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003777{
3778 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003779 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003780 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003781 return ipw_status_codes[i].reason;
3782 return "Unknown status value.";
3783}
3784#endif
3785
3786static void inline average_init(struct average *avg)
3787{
3788 memset(avg, 0, sizeof(*avg));
3789}
3790
3791static void inline average_add(struct average *avg, s16 val)
3792{
3793 avg->sum -= avg->entries[avg->pos];
3794 avg->sum += val;
3795 avg->entries[avg->pos++] = val;
3796 if (unlikely(avg->pos == AVG_ENTRIES)) {
3797 avg->init = 1;
3798 avg->pos = 0;
3799 }
3800}
3801
3802static s16 inline average_value(struct average *avg)
3803{
3804 if (!unlikely(avg->init)) {
3805 if (avg->pos)
3806 return avg->sum / avg->pos;
3807 return 0;
3808 }
3809
3810 return avg->sum / AVG_ENTRIES;
3811}
3812
3813static void ipw_reset_stats(struct ipw_priv *priv)
3814{
3815 u32 len = sizeof(u32);
3816
3817 priv->quality = 0;
3818
3819 average_init(&priv->average_missed_beacons);
3820 average_init(&priv->average_rssi);
3821 average_init(&priv->average_noise);
3822
3823 priv->last_rate = 0;
3824 priv->last_missed_beacons = 0;
3825 priv->last_rx_packets = 0;
3826 priv->last_tx_packets = 0;
3827 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003828
James Ketrenos43f66a62005-03-25 12:31:53 -06003829 /* Firmware managed, reset only when NIC is restarted, so we have to
3830 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003831 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003832 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003833 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003834 &priv->last_tx_failures, &len);
3835
3836 /* Driver managed, reset with each association */
3837 priv->missed_adhoc_beacons = 0;
3838 priv->missed_beacons = 0;
3839 priv->tx_packets = 0;
3840 priv->rx_packets = 0;
3841
3842}
3843
James Ketrenos43f66a62005-03-25 12:31:53 -06003844static inline u32 ipw_get_max_rate(struct ipw_priv *priv)
3845{
3846 u32 i = 0x80000000;
3847 u32 mask = priv->rates_mask;
3848 /* If currently associated in B mode, restrict the maximum
3849 * rate match to B rates */
3850 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3851 mask &= IEEE80211_CCK_RATES_MASK;
3852
3853 /* TODO: Verify that the rate is supported by the current rates
3854 * list. */
3855
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003856 while (i && !(mask & i))
3857 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003858 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003859 case IEEE80211_CCK_RATE_1MB_MASK:
3860 return 1000000;
3861 case IEEE80211_CCK_RATE_2MB_MASK:
3862 return 2000000;
3863 case IEEE80211_CCK_RATE_5MB_MASK:
3864 return 5500000;
3865 case IEEE80211_OFDM_RATE_6MB_MASK:
3866 return 6000000;
3867 case IEEE80211_OFDM_RATE_9MB_MASK:
3868 return 9000000;
3869 case IEEE80211_CCK_RATE_11MB_MASK:
3870 return 11000000;
3871 case IEEE80211_OFDM_RATE_12MB_MASK:
3872 return 12000000;
3873 case IEEE80211_OFDM_RATE_18MB_MASK:
3874 return 18000000;
3875 case IEEE80211_OFDM_RATE_24MB_MASK:
3876 return 24000000;
3877 case IEEE80211_OFDM_RATE_36MB_MASK:
3878 return 36000000;
3879 case IEEE80211_OFDM_RATE_48MB_MASK:
3880 return 48000000;
3881 case IEEE80211_OFDM_RATE_54MB_MASK:
3882 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003883 }
3884
Jeff Garzikbf794512005-07-31 13:07:26 -04003885 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003886 return 11000000;
3887 else
3888 return 54000000;
3889}
3890
3891static u32 ipw_get_current_rate(struct ipw_priv *priv)
3892{
3893 u32 rate, len = sizeof(rate);
3894 int err;
3895
Jeff Garzikbf794512005-07-31 13:07:26 -04003896 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003897 return 0;
3898
3899 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003900 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003901 &len);
3902 if (err) {
3903 IPW_DEBUG_INFO("failed querying ordinals.\n");
3904 return 0;
3905 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003906 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003907 return ipw_get_max_rate(priv);
3908
3909 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003910 case IPW_TX_RATE_1MB:
3911 return 1000000;
3912 case IPW_TX_RATE_2MB:
3913 return 2000000;
3914 case IPW_TX_RATE_5MB:
3915 return 5500000;
3916 case IPW_TX_RATE_6MB:
3917 return 6000000;
3918 case IPW_TX_RATE_9MB:
3919 return 9000000;
3920 case IPW_TX_RATE_11MB:
3921 return 11000000;
3922 case IPW_TX_RATE_12MB:
3923 return 12000000;
3924 case IPW_TX_RATE_18MB:
3925 return 18000000;
3926 case IPW_TX_RATE_24MB:
3927 return 24000000;
3928 case IPW_TX_RATE_36MB:
3929 return 36000000;
3930 case IPW_TX_RATE_48MB:
3931 return 48000000;
3932 case IPW_TX_RATE_54MB:
3933 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003934 }
3935
3936 return 0;
3937}
3938
James Ketrenos43f66a62005-03-25 12:31:53 -06003939#define IPW_STATS_INTERVAL (2 * HZ)
3940static void ipw_gather_stats(struct ipw_priv *priv)
3941{
3942 u32 rx_err, rx_err_delta, rx_packets_delta;
3943 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3944 u32 missed_beacons_percent, missed_beacons_delta;
3945 u32 quality = 0;
3946 u32 len = sizeof(u32);
3947 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003948 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003949 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003950 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003951
3952 if (!(priv->status & STATUS_ASSOCIATED)) {
3953 priv->quality = 0;
3954 return;
3955 }
3956
3957 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003958 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003959 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003960 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003961 priv->last_missed_beacons = priv->missed_beacons;
3962 if (priv->assoc_request.beacon_interval) {
3963 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003964 (HZ * priv->assoc_request.beacon_interval) /
3965 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003966 } else {
3967 missed_beacons_percent = 0;
3968 }
3969 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3970
3971 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3972 rx_err_delta = rx_err - priv->last_rx_err;
3973 priv->last_rx_err = rx_err;
3974
3975 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3976 tx_failures_delta = tx_failures - priv->last_tx_failures;
3977 priv->last_tx_failures = tx_failures;
3978
3979 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3980 priv->last_rx_packets = priv->rx_packets;
3981
3982 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
3983 priv->last_tx_packets = priv->tx_packets;
3984
3985 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04003986 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003987 * Missed beacon: 100% = 0, 0% = 70% missed
3988 * Rate: 60% = 1Mbs, 100% = Max
3989 * Rx and Tx errors represent a straight % of total Rx/Tx
3990 * RSSI: 100% = > -50, 0% = < -80
3991 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04003992 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003993 * The lowest computed quality is used.
3994 *
3995 */
3996#define BEACON_THRESHOLD 5
3997 beacon_quality = 100 - missed_beacons_percent;
3998 if (beacon_quality < BEACON_THRESHOLD)
3999 beacon_quality = 0;
4000 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004001 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004002 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004003 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004004 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004005
James Ketrenos43f66a62005-03-25 12:31:53 -06004006 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004007 max_rate = ipw_get_max_rate(priv);
4008 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004009 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4010 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004011
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004012 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004013 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004014 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004015 else
4016 rx_quality = 100;
4017 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4018 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004019
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004020 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004021 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004022 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004023 else
4024 tx_quality = 100;
4025 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4026 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004027
James Ketrenos43f66a62005-03-25 12:31:53 -06004028 rssi = average_value(&priv->average_rssi);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004029 signal_quality =
4030 (100 *
4031 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4032 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4033 (priv->ieee->perfect_rssi - rssi) *
4034 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4035 62 * (priv->ieee->perfect_rssi - rssi))) /
4036 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4037 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4038 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004039 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004040 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004041 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004042
James Ketrenos43f66a62005-03-25 12:31:53 -06004043 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
4044 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004045
4046 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06004047 min(rate_quality,
4048 min(tx_quality, min(rx_quality, signal_quality))));
4049 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004050 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4051 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004052 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004053 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4054 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004055 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004056 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4057 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004058 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004059 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4060 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004061 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004062 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4063 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004064
4065 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004066
4067 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004068 IPW_STATS_INTERVAL);
4069}
4070
James Ketrenosc848d0a2005-08-24 21:56:24 -05004071static void ipw_bg_gather_stats(void *data)
4072{
4073 struct ipw_priv *priv = data;
4074 down(&priv->sem);
4075 ipw_gather_stats(data);
4076 up(&priv->sem);
4077}
4078
James Ketrenosea2b26e2005-08-24 21:25:16 -05004079static inline void ipw_handle_missed_beacon(struct ipw_priv *priv,
4080 int missed_count)
4081{
4082 priv->notif_missed_beacons = missed_count;
4083
James Ketrenosafbf30a2005-08-25 00:05:33 -05004084 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004085 priv->status & STATUS_ASSOCIATED) {
4086 /* If associated and we've hit the missed
4087 * beacon threshold, disassociate, turn
4088 * off roaming, and abort any active scans */
4089 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004090 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004091 "Missed beacon: %d - disassociate\n", missed_count);
4092 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004093 if (priv->status & STATUS_SCANNING) {
4094 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4095 IPW_DL_STATE,
4096 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004097 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004098 }
4099
James Ketrenosea2b26e2005-08-24 21:25:16 -05004100 queue_work(priv->workqueue, &priv->disassociate);
4101 return;
4102 }
4103
4104 if (priv->status & STATUS_ROAMING) {
4105 /* If we are currently roaming, then just
4106 * print a debug statement... */
4107 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4108 "Missed beacon: %d - roam in progress\n",
4109 missed_count);
4110 return;
4111 }
4112
4113 if (missed_count > priv->roaming_threshold) {
4114 /* If we are not already roaming, set the ROAM
4115 * bit in the status and kick off a scan */
4116 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4117 "Missed beacon: %d - initiate "
4118 "roaming\n", missed_count);
4119 if (!(priv->status & STATUS_ROAMING)) {
4120 priv->status |= STATUS_ROAMING;
4121 if (!(priv->status & STATUS_SCANNING))
4122 queue_work(priv->workqueue,
4123 &priv->request_scan);
4124 }
4125 return;
4126 }
4127
4128 if (priv->status & STATUS_SCANNING) {
4129 /* Stop scan to keep fw from getting
4130 * stuck (only if we aren't roaming --
4131 * otherwise we'll never scan more than 2 or 3
4132 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004133 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4134 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004135 queue_work(priv->workqueue, &priv->abort_scan);
4136 }
4137
4138 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
4139
4140}
4141
James Ketrenos43f66a62005-03-25 12:31:53 -06004142/**
4143 * Handle host notification packet.
4144 * Called from interrupt routine
4145 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004146static inline void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004147 struct ipw_rx_notification *notif)
4148{
James Ketrenosa613bff2005-08-24 21:43:11 -05004149 notif->size = le16_to_cpu(notif->size);
4150
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004151 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004152
James Ketrenos43f66a62005-03-25 12:31:53 -06004153 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004154 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4155 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004156
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004157 switch (assoc->state) {
4158 case CMAS_ASSOCIATED:{
4159 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4160 IPW_DL_ASSOC,
4161 "associated: '%s' " MAC_FMT
4162 " \n",
4163 escape_essid(priv->essid,
4164 priv->essid_len),
4165 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004166
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004167 switch (priv->ieee->iw_mode) {
4168 case IW_MODE_INFRA:
4169 memcpy(priv->ieee->bssid,
4170 priv->bssid, ETH_ALEN);
4171 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004172
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004173 case IW_MODE_ADHOC:
4174 memcpy(priv->ieee->bssid,
4175 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004176
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004177 /* clear out the station table */
4178 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004179
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004180 IPW_DEBUG_ASSOC
4181 ("queueing adhoc check\n");
4182 queue_delayed_work(priv->
4183 workqueue,
4184 &priv->
4185 adhoc_check,
4186 priv->
4187 assoc_request.
4188 beacon_interval);
4189 break;
4190 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004191
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004192 priv->status &= ~STATUS_ASSOCIATING;
4193 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004194 queue_work(priv->workqueue,
4195 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004196
James Ketrenosb095c382005-08-24 22:04:42 -05004197#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004198#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4199 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4200 if ((priv->status & STATUS_AUTH) &&
4201 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4202 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004203 if ((sizeof
4204 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004205 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004206 <= notif->size)
4207 && (notif->size <= 2314)) {
4208 struct
4209 ieee80211_rx_stats
4210 stats = {
4211 .len =
4212 notif->
4213 size - 1,
4214 };
4215
4216 IPW_DEBUG_QOS
4217 ("QoS Associate "
4218 "size %d\n",
4219 notif->size);
4220 ieee80211_rx_mgt(priv->
4221 ieee,
4222 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004223 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004224 *)
4225 &notif->u.raw, &stats);
4226 }
4227 }
4228#endif
4229
James Ketrenosa613bff2005-08-24 21:43:11 -05004230 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004231
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004232 break;
4233 }
4234
4235 case CMAS_AUTHENTICATED:{
4236 if (priv->
4237 status & (STATUS_ASSOCIATED |
4238 STATUS_AUTH)) {
4239#ifdef CONFIG_IPW_DEBUG
4240 struct notif_authenticate *auth
4241 = &notif->u.auth;
4242 IPW_DEBUG(IPW_DL_NOTIF |
4243 IPW_DL_STATE |
4244 IPW_DL_ASSOC,
4245 "deauthenticated: '%s' "
4246 MAC_FMT
4247 ": (0x%04X) - %s \n",
4248 escape_essid(priv->
4249 essid,
4250 priv->
4251 essid_len),
4252 MAC_ARG(priv->bssid),
4253 ntohs(auth->status),
4254 ipw_get_status_code
4255 (ntohs
4256 (auth->status)));
4257#endif
4258
4259 priv->status &=
4260 ~(STATUS_ASSOCIATING |
4261 STATUS_AUTH |
4262 STATUS_ASSOCIATED);
4263
James Ketrenosa613bff2005-08-24 21:43:11 -05004264 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004265 break;
4266 }
4267
4268 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4269 IPW_DL_ASSOC,
4270 "authenticated: '%s' " MAC_FMT
4271 "\n",
4272 escape_essid(priv->essid,
4273 priv->essid_len),
4274 MAC_ARG(priv->bssid));
4275 break;
4276 }
4277
4278 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004279 if (priv->status & STATUS_AUTH) {
4280 struct
4281 ieee80211_assoc_response
4282 *resp;
4283 resp =
4284 (struct
4285 ieee80211_assoc_response
4286 *)&notif->u.raw;
4287 IPW_DEBUG(IPW_DL_NOTIF |
4288 IPW_DL_STATE |
4289 IPW_DL_ASSOC,
4290 "association failed (0x%04X): %s\n",
4291 ntohs(resp->status),
4292 ipw_get_status_code
4293 (ntohs
4294 (resp->status)));
4295 }
4296
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004297 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4298 IPW_DL_ASSOC,
4299 "disassociated: '%s' " MAC_FMT
4300 " \n",
4301 escape_essid(priv->essid,
4302 priv->essid_len),
4303 MAC_ARG(priv->bssid));
4304
4305 priv->status &=
4306 ~(STATUS_DISASSOCIATING |
4307 STATUS_ASSOCIATING |
4308 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004309 if (priv->assoc_network
4310 && (priv->assoc_network->
4311 capability &
4312 WLAN_CAPABILITY_IBSS))
4313 ipw_remove_current_network
4314 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004315
James Ketrenosa613bff2005-08-24 21:43:11 -05004316 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004317
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004318 break;
4319 }
4320
James Ketrenosb095c382005-08-24 22:04:42 -05004321 case CMAS_RX_ASSOC_RESP:
4322 break;
4323
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004324 default:
4325 IPW_ERROR("assoc: unknown (%d)\n",
4326 assoc->state);
4327 break;
4328 }
4329
James Ketrenos43f66a62005-03-25 12:31:53 -06004330 break;
4331 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004332
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004333 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4334 struct notif_authenticate *auth = &notif->u.auth;
4335 switch (auth->state) {
4336 case CMAS_AUTHENTICATED:
4337 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4338 "authenticated: '%s' " MAC_FMT " \n",
4339 escape_essid(priv->essid,
4340 priv->essid_len),
4341 MAC_ARG(priv->bssid));
4342 priv->status |= STATUS_AUTH;
4343 break;
4344
4345 case CMAS_INIT:
4346 if (priv->status & STATUS_AUTH) {
4347 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4348 IPW_DL_ASSOC,
4349 "authentication failed (0x%04X): %s\n",
4350 ntohs(auth->status),
4351 ipw_get_status_code(ntohs
4352 (auth->
4353 status)));
4354 }
4355 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4356 IPW_DL_ASSOC,
4357 "deauthenticated: '%s' " MAC_FMT "\n",
4358 escape_essid(priv->essid,
4359 priv->essid_len),
4360 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004361
4362 priv->status &= ~(STATUS_ASSOCIATING |
4363 STATUS_AUTH |
4364 STATUS_ASSOCIATED);
4365
James Ketrenosa613bff2005-08-24 21:43:11 -05004366 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004367 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004368
4369 case CMAS_TX_AUTH_SEQ_1:
4370 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4371 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4372 break;
4373 case CMAS_RX_AUTH_SEQ_2:
4374 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4375 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4376 break;
4377 case CMAS_AUTH_SEQ_1_PASS:
4378 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4379 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4380 break;
4381 case CMAS_AUTH_SEQ_1_FAIL:
4382 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4383 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4384 break;
4385 case CMAS_TX_AUTH_SEQ_3:
4386 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4387 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4388 break;
4389 case CMAS_RX_AUTH_SEQ_4:
4390 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4391 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4392 break;
4393 case CMAS_AUTH_SEQ_2_PASS:
4394 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4395 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4396 break;
4397 case CMAS_AUTH_SEQ_2_FAIL:
4398 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4399 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4400 break;
4401 case CMAS_TX_ASSOC:
4402 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4403 IPW_DL_ASSOC, "TX_ASSOC\n");
4404 break;
4405 case CMAS_RX_ASSOC_RESP:
4406 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4407 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004408
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004409 break;
4410 case CMAS_ASSOCIATED:
4411 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4412 IPW_DL_ASSOC, "ASSOCIATED\n");
4413 break;
4414 default:
4415 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4416 auth->state);
4417 break;
4418 }
4419 break;
4420 }
4421
4422 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4423 struct notif_channel_result *x =
4424 &notif->u.channel_result;
4425
4426 if (notif->size == sizeof(*x)) {
4427 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4428 x->channel_num);
4429 } else {
4430 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4431 "(should be %zd)\n",
4432 notif->size, sizeof(*x));
4433 }
4434 break;
4435 }
4436
4437 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4438 struct notif_scan_complete *x = &notif->u.scan_complete;
4439 if (notif->size == sizeof(*x)) {
4440 IPW_DEBUG_SCAN
4441 ("Scan completed: type %d, %d channels, "
4442 "%d status\n", x->scan_type,
4443 x->num_channels, x->status);
4444 } else {
4445 IPW_ERROR("Scan completed of wrong size %d "
4446 "(should be %zd)\n",
4447 notif->size, sizeof(*x));
4448 }
4449
4450 priv->status &=
4451 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4452
4453 cancel_delayed_work(&priv->scan_check);
4454
James Ketrenosb095c382005-08-24 22:04:42 -05004455 if (priv->status & STATUS_EXIT_PENDING)
4456 break;
4457
4458 priv->ieee->scans++;
4459
4460#ifdef CONFIG_IPW2200_MONITOR
4461 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004462 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004463 queue_work(priv->workqueue,
4464 &priv->request_scan);
4465 break;
4466 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004467 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004468#endif /* CONFIG_IPW2200_MONITOR */
4469
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004470 if (!(priv->status & (STATUS_ASSOCIATED |
4471 STATUS_ASSOCIATING |
4472 STATUS_ROAMING |
4473 STATUS_DISASSOCIATING)))
4474 queue_work(priv->workqueue, &priv->associate);
4475 else if (priv->status & STATUS_ROAMING) {
4476 /* If a scan completed and we are in roam mode, then
4477 * the scan that completed was the one requested as a
4478 * result of entering roam... so, schedule the
4479 * roam work */
4480 queue_work(priv->workqueue, &priv->roam);
4481 } else if (priv->status & STATUS_SCAN_PENDING)
4482 queue_work(priv->workqueue,
4483 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004484 else if (priv->config & CFG_BACKGROUND_SCAN
4485 && priv->status & STATUS_ASSOCIATED)
4486 queue_delayed_work(priv->workqueue,
4487 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004488 break;
4489 }
4490
4491 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4492 struct notif_frag_length *x = &notif->u.frag_len;
4493
James Ketrenosa613bff2005-08-24 21:43:11 -05004494 if (notif->size == sizeof(*x))
4495 IPW_ERROR("Frag length: %d\n",
4496 le16_to_cpu(x->frag_length));
4497 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004498 IPW_ERROR("Frag length of wrong size %d "
4499 "(should be %zd)\n",
4500 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004501 break;
4502 }
4503
4504 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4505 struct notif_link_deterioration *x =
4506 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004507
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004508 if (notif->size == sizeof(*x)) {
4509 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4510 "link deterioration: '%s' " MAC_FMT
4511 " \n", escape_essid(priv->essid,
4512 priv->essid_len),
4513 MAC_ARG(priv->bssid));
4514 memcpy(&priv->last_link_deterioration, x,
4515 sizeof(*x));
4516 } else {
4517 IPW_ERROR("Link Deterioration of wrong size %d "
4518 "(should be %zd)\n",
4519 notif->size, sizeof(*x));
4520 }
4521 break;
4522 }
4523
4524 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4525 IPW_ERROR("Dino config\n");
4526 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004527 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004528 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004529
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004530 break;
4531 }
4532
4533 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4534 struct notif_beacon_state *x = &notif->u.beacon_state;
4535 if (notif->size != sizeof(*x)) {
4536 IPW_ERROR
4537 ("Beacon state of wrong size %d (should "
4538 "be %zd)\n", notif->size, sizeof(*x));
4539 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004540 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004541
James Ketrenosa613bff2005-08-24 21:43:11 -05004542 if (le32_to_cpu(x->state) ==
4543 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4544 ipw_handle_missed_beacon(priv,
4545 le32_to_cpu(x->
4546 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004547
James Ketrenos43f66a62005-03-25 12:31:53 -06004548 break;
4549 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004550
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004551 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4552 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4553 if (notif->size == sizeof(*x)) {
4554 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4555 "0x%02x station %d\n",
4556 x->key_state, x->security_type,
4557 x->station_index);
4558 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004559 }
4560
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004561 IPW_ERROR
4562 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4563 notif->size, sizeof(*x));
4564 break;
4565 }
4566
4567 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4568 struct notif_calibration *x = &notif->u.calibration;
4569
4570 if (notif->size == sizeof(*x)) {
4571 memcpy(&priv->calib, x, sizeof(*x));
4572 IPW_DEBUG_INFO("TODO: Calibration\n");
4573 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004574 }
4575
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004576 IPW_ERROR
4577 ("Calibration of wrong size %d (should be %zd)\n",
4578 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004579 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004580 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004581
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004582 case HOST_NOTIFICATION_NOISE_STATS:{
4583 if (notif->size == sizeof(u32)) {
4584 priv->last_noise =
James Ketrenosa613bff2005-08-24 21:43:11 -05004585 (u8) (le32_to_cpu(notif->u.noise.value) &
4586 0xff);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004587 average_add(&priv->average_noise,
4588 priv->last_noise);
4589 break;
4590 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004591
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004592 IPW_ERROR
4593 ("Noise stat is wrong size %d (should be %zd)\n",
4594 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004595 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004596 }
4597
James Ketrenos43f66a62005-03-25 12:31:53 -06004598 default:
4599 IPW_ERROR("Unknown notification: "
4600 "subtype=%d,flags=0x%2x,size=%d\n",
4601 notif->subtype, notif->flags, notif->size);
4602 }
4603}
4604
4605/**
4606 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004607 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004608 * @param priv
4609 * @return error code
4610 */
4611static int ipw_queue_reset(struct ipw_priv *priv)
4612{
4613 int rc = 0;
4614 /** @todo customize queue sizes */
4615 int nTx = 64, nTxCmd = 8;
4616 ipw_tx_queue_free(priv);
4617 /* Tx CMD queue */
4618 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004619 IPW_TX_CMD_QUEUE_READ_INDEX,
4620 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4621 IPW_TX_CMD_QUEUE_BD_BASE,
4622 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004623 if (rc) {
4624 IPW_ERROR("Tx Cmd queue init failed\n");
4625 goto error;
4626 }
4627 /* Tx queue(s) */
4628 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004629 IPW_TX_QUEUE_0_READ_INDEX,
4630 IPW_TX_QUEUE_0_WRITE_INDEX,
4631 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004632 if (rc) {
4633 IPW_ERROR("Tx 0 queue init failed\n");
4634 goto error;
4635 }
4636 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004637 IPW_TX_QUEUE_1_READ_INDEX,
4638 IPW_TX_QUEUE_1_WRITE_INDEX,
4639 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004640 if (rc) {
4641 IPW_ERROR("Tx 1 queue init failed\n");
4642 goto error;
4643 }
4644 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004645 IPW_TX_QUEUE_2_READ_INDEX,
4646 IPW_TX_QUEUE_2_WRITE_INDEX,
4647 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004648 if (rc) {
4649 IPW_ERROR("Tx 2 queue init failed\n");
4650 goto error;
4651 }
4652 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004653 IPW_TX_QUEUE_3_READ_INDEX,
4654 IPW_TX_QUEUE_3_WRITE_INDEX,
4655 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004656 if (rc) {
4657 IPW_ERROR("Tx 3 queue init failed\n");
4658 goto error;
4659 }
4660 /* statistics */
4661 priv->rx_bufs_min = 0;
4662 priv->rx_pend_max = 0;
4663 return rc;
4664
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004665 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004666 ipw_tx_queue_free(priv);
4667 return rc;
4668}
4669
4670/**
4671 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004672 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004673 * When FW adwances 'R' index, all entries between old and
4674 * new 'R' index need to be reclaimed. As result, some free space
4675 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004676 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004677 * @note Need to protect against garbage in 'R' index
4678 * @param priv
4679 * @param txq
4680 * @param qindex
4681 * @return Number of used entries remains in the queue
4682 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004683static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004684 struct clx2_tx_queue *txq, int qindex)
4685{
4686 u32 hw_tail;
4687 int used;
4688 struct clx2_queue *q = &txq->q;
4689
4690 hw_tail = ipw_read32(priv, q->reg_r);
4691 if (hw_tail >= q->n_bd) {
4692 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004693 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4694 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004695 goto done;
4696 }
4697 for (; q->last_used != hw_tail;
4698 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4699 ipw_queue_tx_free_tfd(priv, txq);
4700 priv->tx_packets++;
4701 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004702 done:
James Ketrenos9ddf84f2005-08-16 17:07:11 -05004703 if ((ipw_queue_space(q) > q->low_mark) &&
4704 (qindex >= 0) &&
4705 (priv->status & STATUS_ASSOCIATED) && netif_running(priv->net_dev))
4706 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06004707 used = q->first_empty - q->last_used;
4708 if (used < 0)
4709 used += q->n_bd;
4710
4711 return used;
4712}
4713
4714static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4715 int len, int sync)
4716{
4717 struct clx2_tx_queue *txq = &priv->txq_cmd;
4718 struct clx2_queue *q = &txq->q;
4719 struct tfd_frame *tfd;
4720
4721 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4722 IPW_ERROR("No space for Tx\n");
4723 return -EBUSY;
4724 }
4725
4726 tfd = &txq->bd[q->first_empty];
4727 txq->txb[q->first_empty] = NULL;
4728
4729 memset(tfd, 0, sizeof(*tfd));
4730 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4731 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4732 priv->hcmd_seq++;
4733 tfd->u.cmd.index = hcmd;
4734 tfd->u.cmd.length = len;
4735 memcpy(tfd->u.cmd.payload, buf, len);
4736 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4737 ipw_write32(priv, q->reg_w, q->first_empty);
4738 _ipw_read32(priv, 0x90);
4739
4740 return 0;
4741}
4742
Jeff Garzikbf794512005-07-31 13:07:26 -04004743/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004744 * Rx theory of operation
4745 *
4746 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004747 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004748 * 0 to 31
4749 *
4750 * Rx Queue Indexes
4751 * The host/firmware share two index registers for managing the Rx buffers.
4752 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004753 * The READ index maps to the first position that the firmware may be writing
4754 * to -- the driver can read up to (but not including) this position and get
4755 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004756 * The READ index is managed by the firmware once the card is enabled.
4757 *
4758 * The WRITE index maps to the last position the driver has read from -- the
4759 * position preceding WRITE is the last slot the firmware can place a packet.
4760 *
4761 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004762 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004763 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004764 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004765 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4766 *
4767 * When the firmware places a packet in a buffer it will advance the READ index
4768 * and fire the RX interrupt. The driver can then query the READ index and
4769 * process as many packets as possible, moving the WRITE index forward as it
4770 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004771 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004772 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004773 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004774 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004775 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004776 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4777 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4778 * 'processed' and 'read' driver indexes as well)
4779 * + A received packet is processed and handed to the kernel network stack,
4780 * detached from the ipw->rxq. The driver 'processed' index is updated.
4781 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004782 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4783 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004784 * were enough free buffers and RX_STALLED is set it is cleared.
4785 *
4786 *
4787 * Driver sequence:
4788 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004789 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004790 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4791 * ipw_rx_queue_restock
4792 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4793 * queue, updates firmware pointers, and updates
4794 * the WRITE index. If insufficient rx_free buffers
4795 * are available, schedules ipw_rx_queue_replenish
4796 *
4797 * -- enable interrupts --
4798 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004799 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004800 * Moves the packet buffer from queue to rx_used.
4801 * Calls ipw_rx_queue_restock to refill any empty
4802 * slots.
4803 * ...
4804 *
4805 */
4806
Jeff Garzikbf794512005-07-31 13:07:26 -04004807/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004808 * If there are slots in the RX queue that need to be restocked,
4809 * and we have free pre-allocated buffers, fill the ranks as much
4810 * as we can pulling from rx_free.
4811 *
4812 * This moves the 'write' index forward to catch up with 'processed', and
4813 * also updates the memory address in the firmware to reference the new
4814 * target buffer.
4815 */
4816static void ipw_rx_queue_restock(struct ipw_priv *priv)
4817{
4818 struct ipw_rx_queue *rxq = priv->rxq;
4819 struct list_head *element;
4820 struct ipw_rx_mem_buffer *rxb;
4821 unsigned long flags;
4822 int write;
4823
4824 spin_lock_irqsave(&rxq->lock, flags);
4825 write = rxq->write;
4826 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4827 element = rxq->rx_free.next;
4828 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4829 list_del(element);
4830
James Ketrenosb095c382005-08-24 22:04:42 -05004831 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004832 rxb->dma_addr);
4833 rxq->queue[rxq->write] = rxb;
4834 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4835 rxq->free_count--;
4836 }
4837 spin_unlock_irqrestore(&rxq->lock, flags);
4838
Jeff Garzikbf794512005-07-31 13:07:26 -04004839 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004840 * refill it */
4841 if (rxq->free_count <= RX_LOW_WATERMARK)
4842 queue_work(priv->workqueue, &priv->rx_replenish);
4843
4844 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004845 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004846 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004847}
4848
4849/*
4850 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004851 * Also restock the Rx queue via ipw_rx_queue_restock.
4852 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004853 * This is called as a scheduled work item (except for during intialization)
4854 */
4855static void ipw_rx_queue_replenish(void *data)
4856{
4857 struct ipw_priv *priv = data;
4858 struct ipw_rx_queue *rxq = priv->rxq;
4859 struct list_head *element;
4860 struct ipw_rx_mem_buffer *rxb;
4861 unsigned long flags;
4862
4863 spin_lock_irqsave(&rxq->lock, flags);
4864 while (!list_empty(&rxq->rx_used)) {
4865 element = rxq->rx_used.next;
4866 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004867 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004868 if (!rxb->skb) {
4869 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4870 priv->net_dev->name);
4871 /* We don't reschedule replenish work here -- we will
4872 * call the restock method and if it still needs
4873 * more buffers it will schedule replenish */
4874 break;
4875 }
4876 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004877
James Ketrenos43f66a62005-03-25 12:31:53 -06004878 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004879 rxb->dma_addr =
4880 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004881 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004882
James Ketrenos43f66a62005-03-25 12:31:53 -06004883 list_add_tail(&rxb->list, &rxq->rx_free);
4884 rxq->free_count++;
4885 }
4886 spin_unlock_irqrestore(&rxq->lock, flags);
4887
4888 ipw_rx_queue_restock(priv);
4889}
4890
James Ketrenosc848d0a2005-08-24 21:56:24 -05004891static void ipw_bg_rx_queue_replenish(void *data)
4892{
4893 struct ipw_priv *priv = data;
4894 down(&priv->sem);
4895 ipw_rx_queue_replenish(data);
4896 up(&priv->sem);
4897}
4898
James Ketrenos43f66a62005-03-25 12:31:53 -06004899/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4900 * If an SKB has been detached, the POOL needs to have it's SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004901 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004902 * non NULL it is unmapped and freed
4903 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004904static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004905{
4906 int i;
4907
4908 if (!rxq)
4909 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004910
James Ketrenos43f66a62005-03-25 12:31:53 -06004911 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4912 if (rxq->pool[i].skb != NULL) {
4913 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004914 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004915 dev_kfree_skb(rxq->pool[i].skb);
4916 }
4917 }
4918
4919 kfree(rxq);
4920}
4921
4922static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4923{
4924 struct ipw_rx_queue *rxq;
4925 int i;
4926
4927 rxq = (struct ipw_rx_queue *)kmalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004928 if (unlikely(!rxq)) {
4929 IPW_ERROR("memory allocation failed\n");
4930 return NULL;
4931 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004932 memset(rxq, 0, sizeof(*rxq));
4933 spin_lock_init(&rxq->lock);
4934 INIT_LIST_HEAD(&rxq->rx_free);
4935 INIT_LIST_HEAD(&rxq->rx_used);
4936
4937 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004938 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004939 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4940
4941 /* Set us so that we have processed and used all buffers, but have
4942 * not restocked the Rx queue with fresh buffers */
4943 rxq->read = rxq->write = 0;
4944 rxq->processed = RX_QUEUE_SIZE - 1;
4945 rxq->free_count = 0;
4946
4947 return rxq;
4948}
4949
4950static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4951{
4952 rate &= ~IEEE80211_BASIC_RATE_MASK;
4953 if (ieee_mode == IEEE_A) {
4954 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004955 case IEEE80211_OFDM_RATE_6MB:
4956 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004957 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004958 case IEEE80211_OFDM_RATE_9MB:
4959 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004960 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004961 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004962 return priv->
4963 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004964 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004965 return priv->
4966 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004967 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004968 return priv->
4969 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004970 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004971 return priv->
4972 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004973 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004974 return priv->
4975 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004976 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004977 return priv->
4978 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004979 default:
4980 return 0;
4981 }
4982 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004983
James Ketrenos43f66a62005-03-25 12:31:53 -06004984 /* B and G mixed */
4985 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004986 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004987 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004988 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004989 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004990 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004991 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004992 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004993 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
4994 }
4995
4996 /* If we are limited to B modulations, bail at this point */
4997 if (ieee_mode == IEEE_B)
4998 return 0;
4999
5000 /* G */
5001 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005002 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005003 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005004 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005005 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005006 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005007 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005008 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005009 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005010 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005011 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005012 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005013 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005014 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005015 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005016 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005017 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
5018 }
5019
5020 return 0;
5021}
5022
Jeff Garzikbf794512005-07-31 13:07:26 -04005023static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005024 const struct ieee80211_network *network,
5025 struct ipw_supported_rates *rates)
5026{
5027 int num_rates, i;
5028
5029 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005030 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005031 rates->num_rates = 0;
5032 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005033 if (!ipw_is_rate_in_mask(priv, network->mode,
5034 network->rates[i])) {
5035
James Ketrenosea2b26e2005-08-24 21:25:16 -05005036 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005037 IPW_DEBUG_SCAN("Adding masked mandatory "
5038 "rate %02X\n",
5039 network->rates[i]);
5040 rates->supported_rates[rates->num_rates++] =
5041 network->rates[i];
5042 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005043 }
5044
James Ketrenos43f66a62005-03-25 12:31:53 -06005045 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5046 network->rates[i], priv->rates_mask);
5047 continue;
5048 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005049
James Ketrenos43f66a62005-03-25 12:31:53 -06005050 rates->supported_rates[rates->num_rates++] = network->rates[i];
5051 }
5052
James Ketrenosa613bff2005-08-24 21:43:11 -05005053 num_rates = min(network->rates_ex_len,
5054 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005055 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005056 if (!ipw_is_rate_in_mask(priv, network->mode,
5057 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005058 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005059 IPW_DEBUG_SCAN("Adding masked mandatory "
5060 "rate %02X\n",
5061 network->rates_ex[i]);
5062 rates->supported_rates[rates->num_rates++] =
5063 network->rates[i];
5064 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005065 }
5066
James Ketrenos43f66a62005-03-25 12:31:53 -06005067 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5068 network->rates_ex[i], priv->rates_mask);
5069 continue;
5070 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005071
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005072 rates->supported_rates[rates->num_rates++] =
5073 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005074 }
5075
James Ketrenosea2b26e2005-08-24 21:25:16 -05005076 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005077}
5078
5079static inline void ipw_copy_rates(struct ipw_supported_rates *dest,
5080 const struct ipw_supported_rates *src)
5081{
5082 u8 i;
5083 for (i = 0; i < src->num_rates; i++)
5084 dest->supported_rates[i] = src->supported_rates[i];
5085 dest->num_rates = src->num_rates;
5086}
5087
5088/* TODO: Look at sniffed packets in the air to determine if the basic rate
5089 * mask should ever be used -- right now all callers to add the scan rates are
5090 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5091static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005092 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005093{
Jeff Garzikbf794512005-07-31 13:07:26 -04005094 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005095 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005096
James Ketrenos43f66a62005-03-25 12:31:53 -06005097 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005098 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005099 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005100
5101 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005102 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005103 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005104
5105 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005106 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005107 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005108
5109 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005110 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005111 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005112}
5113
5114static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005115 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005116{
Jeff Garzikbf794512005-07-31 13:07:26 -04005117 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005118 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005119
5120 if (rate_mask & IEEE80211_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005121 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005122 IEEE80211_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005123
5124 if (rate_mask & IEEE80211_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005125 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005126 IEEE80211_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005127
5128 if (rate_mask & IEEE80211_OFDM_RATE_12MB_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_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005131
5132 if (rate_mask & IEEE80211_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005133 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005134 IEEE80211_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005135
5136 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005137 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005138 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005139
5140 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005141 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005142 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005143
5144 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005145 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005146 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005147
5148 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005149 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005150 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005151}
5152
5153struct ipw_network_match {
5154 struct ieee80211_network *network;
5155 struct ipw_supported_rates rates;
5156};
5157
James Ketrenosc848d0a2005-08-24 21:56:24 -05005158static int ipw_find_adhoc_network(struct ipw_priv *priv,
5159 struct ipw_network_match *match,
5160 struct ieee80211_network *network,
5161 int roaming)
5162{
5163 struct ipw_supported_rates rates;
5164
5165 /* Verify that this network's capability is compatible with the
5166 * current mode (AdHoc or Infrastructure) */
5167 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5168 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5169 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5170 "capability mismatch.\n",
5171 escape_essid(network->ssid, network->ssid_len),
5172 MAC_ARG(network->bssid));
5173 return 0;
5174 }
5175
5176 /* If we do not have an ESSID for this AP, we can not associate with
5177 * it */
5178 if (network->flags & NETWORK_EMPTY_ESSID) {
5179 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5180 "because of hidden ESSID.\n",
5181 escape_essid(network->ssid, network->ssid_len),
5182 MAC_ARG(network->bssid));
5183 return 0;
5184 }
5185
5186 if (unlikely(roaming)) {
5187 /* If we are roaming, then ensure check if this is a valid
5188 * network to try and roam to */
5189 if ((network->ssid_len != match->network->ssid_len) ||
5190 memcmp(network->ssid, match->network->ssid,
5191 network->ssid_len)) {
5192 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5193 "because of non-network ESSID.\n",
5194 escape_essid(network->ssid,
5195 network->ssid_len),
5196 MAC_ARG(network->bssid));
5197 return 0;
5198 }
5199 } else {
5200 /* If an ESSID has been configured then compare the broadcast
5201 * ESSID to ours */
5202 if ((priv->config & CFG_STATIC_ESSID) &&
5203 ((network->ssid_len != priv->essid_len) ||
5204 memcmp(network->ssid, priv->essid,
5205 min(network->ssid_len, priv->essid_len)))) {
5206 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005207
James Ketrenosc848d0a2005-08-24 21:56:24 -05005208 strncpy(escaped,
5209 escape_essid(network->ssid, network->ssid_len),
5210 sizeof(escaped));
5211 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5212 "because of ESSID mismatch: '%s'.\n",
5213 escaped, MAC_ARG(network->bssid),
5214 escape_essid(priv->essid,
5215 priv->essid_len));
5216 return 0;
5217 }
5218 }
5219
5220 /* If the old network rate is better than this one, don't bother
5221 * testing everything else. */
5222
5223 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005224 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5225 "current network.\n",
5226 escape_essid(match->network->ssid,
5227 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005228 return 0;
5229 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005230 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5231 "current network.\n",
5232 escape_essid(match->network->ssid,
5233 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005234 return 0;
5235 }
5236
5237 /* Now go through and see if the requested network is valid... */
5238 if (priv->ieee->scan_age != 0 &&
5239 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5240 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5241 "because of age: %lums.\n",
5242 escape_essid(network->ssid, network->ssid_len),
5243 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005244 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005245 return 0;
5246 }
5247
5248 if ((priv->config & CFG_STATIC_CHANNEL) &&
5249 (network->channel != priv->channel)) {
5250 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5251 "because of channel mismatch: %d != %d.\n",
5252 escape_essid(network->ssid, network->ssid_len),
5253 MAC_ARG(network->bssid),
5254 network->channel, priv->channel);
5255 return 0;
5256 }
5257
5258 /* Verify privacy compatability */
5259 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5260 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5261 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5262 "because of privacy mismatch: %s != %s.\n",
5263 escape_essid(network->ssid, network->ssid_len),
5264 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005265 priv->
5266 capability & CAP_PRIVACY_ON ? "on" : "off",
5267 network->
5268 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5269 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005270 return 0;
5271 }
5272
5273 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5274 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5275 "because of the same BSSID match: " MAC_FMT
5276 ".\n", escape_essid(network->ssid,
5277 network->ssid_len),
5278 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5279 return 0;
5280 }
5281
5282 /* Filter out any incompatible freq / mode combinations */
5283 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5284 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5285 "because of invalid frequency/mode "
5286 "combination.\n",
5287 escape_essid(network->ssid, network->ssid_len),
5288 MAC_ARG(network->bssid));
5289 return 0;
5290 }
5291
5292 /* Ensure that the rates supported by the driver are compatible with
5293 * this AP, including verification of basic rates (mandatory) */
5294 if (!ipw_compatible_rates(priv, network, &rates)) {
5295 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5296 "because configured rate mask excludes "
5297 "AP mandatory rate.\n",
5298 escape_essid(network->ssid, network->ssid_len),
5299 MAC_ARG(network->bssid));
5300 return 0;
5301 }
5302
5303 if (rates.num_rates == 0) {
5304 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5305 "because of no compatible rates.\n",
5306 escape_essid(network->ssid, network->ssid_len),
5307 MAC_ARG(network->bssid));
5308 return 0;
5309 }
5310
5311 /* TODO: Perform any further minimal comparititive tests. We do not
5312 * want to put too much policy logic here; intelligent scan selection
5313 * should occur within a generic IEEE 802.11 user space tool. */
5314
5315 /* Set up 'new' AP to this network */
5316 ipw_copy_rates(&match->rates, &rates);
5317 match->network = network;
5318 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5319 escape_essid(network->ssid, network->ssid_len),
5320 MAC_ARG(network->bssid));
5321
5322 return 1;
5323}
5324
5325static void ipw_merge_adhoc_network(void *data)
5326{
5327 struct ipw_priv *priv = data;
5328 struct ieee80211_network *network = NULL;
5329 struct ipw_network_match match = {
5330 .network = priv->assoc_network
5331 };
5332
James Ketrenosafbf30a2005-08-25 00:05:33 -05005333 if ((priv->status & STATUS_ASSOCIATED) &&
5334 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005335 /* First pass through ROAM process -- look for a better
5336 * network */
5337 unsigned long flags;
5338
5339 spin_lock_irqsave(&priv->ieee->lock, flags);
5340 list_for_each_entry(network, &priv->ieee->network_list, list) {
5341 if (network != priv->assoc_network)
5342 ipw_find_adhoc_network(priv, &match, network,
5343 1);
5344 }
5345 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5346
5347 if (match.network == priv->assoc_network) {
5348 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5349 "merge to.\n");
5350 return;
5351 }
5352
5353 down(&priv->sem);
5354 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5355 IPW_DEBUG_MERGE("remove network %s\n",
5356 escape_essid(priv->essid,
5357 priv->essid_len));
5358 ipw_remove_current_network(priv);
5359 }
5360
5361 ipw_disassociate(priv);
5362 priv->assoc_network = match.network;
5363 up(&priv->sem);
5364 return;
5365 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005366}
5367
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005368static int ipw_best_network(struct ipw_priv *priv,
5369 struct ipw_network_match *match,
5370 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005371{
5372 struct ipw_supported_rates rates;
5373
5374 /* Verify that this network's capability is compatible with the
5375 * current mode (AdHoc or Infrastructure) */
5376 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005377 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005378 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5379 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5380 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005381 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005382 escape_essid(network->ssid, network->ssid_len),
5383 MAC_ARG(network->bssid));
5384 return 0;
5385 }
5386
5387 /* If we do not have an ESSID for this AP, we can not associate with
5388 * it */
5389 if (network->flags & NETWORK_EMPTY_ESSID) {
5390 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5391 "because of hidden ESSID.\n",
5392 escape_essid(network->ssid, network->ssid_len),
5393 MAC_ARG(network->bssid));
5394 return 0;
5395 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005396
James Ketrenos43f66a62005-03-25 12:31:53 -06005397 if (unlikely(roaming)) {
5398 /* If we are roaming, then ensure check if this is a valid
5399 * network to try and roam to */
5400 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005401 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005402 network->ssid_len)) {
5403 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5404 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005405 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005406 network->ssid_len),
5407 MAC_ARG(network->bssid));
5408 return 0;
5409 }
5410 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005411 /* If an ESSID has been configured then compare the broadcast
5412 * ESSID to ours */
5413 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005414 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005415 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005416 min(network->ssid_len, priv->essid_len)))) {
5417 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005418 strncpy(escaped,
5419 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005420 sizeof(escaped));
5421 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005422 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005423 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005424 escape_essid(priv->essid,
5425 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005426 return 0;
5427 }
5428 }
5429
5430 /* If the old network rate is better than this one, don't bother
5431 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005432 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005433 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005434 strncpy(escaped,
5435 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005436 sizeof(escaped));
5437 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5438 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5439 escaped, MAC_ARG(network->bssid),
5440 escape_essid(match->network->ssid,
5441 match->network->ssid_len),
5442 MAC_ARG(match->network->bssid));
5443 return 0;
5444 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005445
James Ketrenos43f66a62005-03-25 12:31:53 -06005446 /* If this network has already had an association attempt within the
5447 * last 3 seconds, do not try and associate again... */
5448 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005449 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005450 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
James Ketrenosafbf30a2005-08-25 00:05:33 -05005451 "because of storming (%lus since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005452 "assoc attempt).\n",
5453 escape_essid(network->ssid, network->ssid_len),
5454 MAC_ARG(network->bssid),
5455 (jiffies - network->last_associate) / HZ);
5456 return 0;
5457 }
5458
5459 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005460 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005461 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005462 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5463 "because of age: %lums.\n",
5464 escape_essid(network->ssid, network->ssid_len),
5465 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005466 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06005467 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005468 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005469
Jeff Garzikbf794512005-07-31 13:07:26 -04005470 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005471 (network->channel != priv->channel)) {
5472 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5473 "because of channel mismatch: %d != %d.\n",
5474 escape_essid(network->ssid, network->ssid_len),
5475 MAC_ARG(network->bssid),
5476 network->channel, priv->channel);
5477 return 0;
5478 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005479
James Ketrenos43f66a62005-03-25 12:31:53 -06005480 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005481 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005482 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5483 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5484 "because of privacy mismatch: %s != %s.\n",
5485 escape_essid(network->ssid, network->ssid_len),
5486 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005487 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005488 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005489 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005490 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005491 return 0;
5492 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005493
5494 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005495 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5496 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5497 "because of BSSID mismatch: " MAC_FMT ".\n",
5498 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005499 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005500 return 0;
5501 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005502
James Ketrenos43f66a62005-03-25 12:31:53 -06005503 /* Filter out any incompatible freq / mode combinations */
5504 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5505 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5506 "because of invalid frequency/mode "
5507 "combination.\n",
5508 escape_essid(network->ssid, network->ssid_len),
5509 MAC_ARG(network->bssid));
5510 return 0;
5511 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005512
Liu Hong1fe0adb2005-08-19 09:33:10 -05005513 /* Filter out invalid channel in current GEO */
5514 if (!ipw_is_valid_channel(priv->ieee, network->channel)) {
5515 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5516 "because of invalid channel in current GEO\n",
5517 escape_essid(network->ssid, network->ssid_len),
5518 MAC_ARG(network->bssid));
5519 return 0;
5520 }
5521
James Ketrenosea2b26e2005-08-24 21:25:16 -05005522 /* Ensure that the rates supported by the driver are compatible with
5523 * this AP, including verification of basic rates (mandatory) */
5524 if (!ipw_compatible_rates(priv, network, &rates)) {
5525 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5526 "because configured rate mask excludes "
5527 "AP mandatory rate.\n",
5528 escape_essid(network->ssid, network->ssid_len),
5529 MAC_ARG(network->bssid));
5530 return 0;
5531 }
5532
James Ketrenos43f66a62005-03-25 12:31:53 -06005533 if (rates.num_rates == 0) {
5534 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5535 "because of no compatible rates.\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
James Ketrenos43f66a62005-03-25 12:31:53 -06005541 /* TODO: Perform any further minimal comparititive tests. We do not
5542 * want to put too much policy logic here; intelligent scan selection
5543 * should occur within a generic IEEE 802.11 user space tool. */
5544
5545 /* Set up 'new' AP to this network */
5546 ipw_copy_rates(&match->rates, &rates);
5547 match->network = network;
5548
5549 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5550 escape_essid(network->ssid, network->ssid_len),
5551 MAC_ARG(network->bssid));
5552
5553 return 1;
5554}
5555
Jeff Garzikbf794512005-07-31 13:07:26 -04005556static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005557 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005558{
Liu Hong1fe0adb2005-08-19 09:33:10 -05005559 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005560 int i;
5561
James Ketrenos43f66a62005-03-25 12:31:53 -06005562 /*
5563 * For the purposes of scanning, we can set our wireless mode
5564 * to trigger scans across combinations of bands, but when it
5565 * comes to creating a new ad-hoc network, we have tell the FW
5566 * exactly which band to use.
5567 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005568 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005569 * chossen band. Attempting to create a new ad-hoc network
5570 * with an invalid channel for wireless mode will trigger a
5571 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005572 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005573 */
Liu Hong1fe0adb2005-08-19 09:33:10 -05005574 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005575 case IEEE80211_52GHZ_BAND:
5576 network->mode = IEEE_A;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005577 i = ipw_channel_to_index(priv->ieee, priv->channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005578 if (i == -1)
5579 BUG();
5580 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5581 IPW_WARNING("Overriding invalid channel\n");
5582 priv->channel = geo->a[0].channel;
5583 }
5584 break;
5585
5586 case IEEE80211_24GHZ_BAND:
5587 if (priv->ieee->mode & IEEE_G)
5588 network->mode = IEEE_G;
5589 else
5590 network->mode = IEEE_B;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005591 i = ipw_channel_to_index(priv->ieee, priv->channel);
5592 if (i == -1)
5593 BUG();
5594 if (geo->bg[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5595 IPW_WARNING("Overriding invalid channel\n");
5596 priv->channel = geo->bg[0].channel;
5597 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005598 break;
5599
5600 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005601 IPW_WARNING("Overriding invalid channel\n");
5602 if (priv->ieee->mode & IEEE_A) {
5603 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005604 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005605 } else if (priv->ieee->mode & IEEE_G) {
5606 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005607 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005608 } else {
5609 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005610 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005611 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005612 break;
5613 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005614
5615 network->channel = priv->channel;
5616 priv->config |= CFG_ADHOC_PERSIST;
5617 ipw_create_bssid(priv, network->bssid);
5618 network->ssid_len = priv->essid_len;
5619 memcpy(network->ssid, priv->essid, priv->essid_len);
5620 memset(&network->stats, 0, sizeof(network->stats));
5621 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005622 if (!(priv->config & CFG_PREAMBLE_LONG))
5623 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005624 if (priv->capability & CAP_PRIVACY_ON)
5625 network->capability |= WLAN_CAPABILITY_PRIVACY;
5626 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005627 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005628 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005629 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005630 &priv->rates.supported_rates[network->rates_len],
5631 network->rates_ex_len);
5632 network->last_scanned = 0;
5633 network->flags = 0;
5634 network->last_associate = 0;
5635 network->time_stamp[0] = 0;
5636 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005637 network->beacon_interval = 100; /* Default */
5638 network->listen_interval = 10; /* Default */
5639 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005640 network->wpa_ie_len = 0;
5641 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005642}
5643
James Ketrenosb095c382005-08-24 22:04:42 -05005644static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5645{
5646 struct ipw_tgi_tx_key *key;
5647 struct host_cmd cmd = {
5648 .cmd = IPW_CMD_TGI_TX_KEY,
5649 .len = sizeof(*key)
5650 };
5651
5652 if (!(priv->ieee->sec.flags & (1 << index)))
5653 return;
5654
5655 key = (struct ipw_tgi_tx_key *)&cmd.param;
5656 key->key_id = index;
5657 memcpy(key->key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5658 key->security_type = type;
5659 key->station_index = 0; /* always 0 for BSS */
5660 key->flags = 0;
5661 /* 0 for new key; previous value of counter (after fatal error) */
5662 key->tx_counter[0] = 0;
5663 key->tx_counter[1] = 0;
5664
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005665 ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05005666}
5667
5668static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005669{
5670 struct ipw_wep_key *key;
5671 int i;
5672 struct host_cmd cmd = {
5673 .cmd = IPW_CMD_WEP_KEY,
5674 .len = sizeof(*key)
5675 };
5676
5677 key = (struct ipw_wep_key *)&cmd.param;
5678 key->cmd_id = DINO_CMD_WEP_KEY;
5679 key->seq_num = 0;
5680
James Ketrenosb095c382005-08-24 22:04:42 -05005681 /* Note: AES keys cannot be set for multiple times.
5682 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005683 for (i = 0; i < 4; i++) {
James Ketrenosb095c382005-08-24 22:04:42 -05005684 key->key_index = i | type;
5685 if (!(priv->ieee->sec.flags & (1 << i))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005686 key->key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005687 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005688 }
5689
James Ketrenosb095c382005-08-24 22:04:42 -05005690 key->key_size = priv->ieee->sec.key_sizes[i];
5691 memcpy(key->key, priv->ieee->sec.keys[i], key->key_size);
5692
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005693 ipw_send_cmd(priv, &cmd);
Jeff Garzikbf794512005-07-31 13:07:26 -04005694 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005695}
5696
Zhu Yi1fbfea52005-08-05 17:22:56 +08005697static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5698{
5699 if (priv->ieee->host_encrypt)
5700 return;
5701
5702 switch (level) {
5703 case SEC_LEVEL_3:
5704 priv->sys_config.disable_unicast_decryption = 0;
5705 priv->ieee->host_decrypt = 0;
5706 break;
5707 case SEC_LEVEL_2:
5708 priv->sys_config.disable_unicast_decryption = 1;
5709 priv->ieee->host_decrypt = 1;
5710 break;
5711 case SEC_LEVEL_1:
5712 priv->sys_config.disable_unicast_decryption = 0;
5713 priv->ieee->host_decrypt = 0;
5714 break;
5715 case SEC_LEVEL_0:
5716 priv->sys_config.disable_unicast_decryption = 1;
5717 break;
5718 default:
5719 break;
5720 }
5721}
5722
5723static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5724{
5725 if (priv->ieee->host_encrypt)
5726 return;
5727
5728 switch (level) {
5729 case SEC_LEVEL_3:
5730 priv->sys_config.disable_multicast_decryption = 0;
5731 break;
5732 case SEC_LEVEL_2:
5733 priv->sys_config.disable_multicast_decryption = 1;
5734 break;
5735 case SEC_LEVEL_1:
5736 priv->sys_config.disable_multicast_decryption = 0;
5737 break;
5738 case SEC_LEVEL_0:
5739 priv->sys_config.disable_multicast_decryption = 1;
5740 break;
5741 default:
5742 break;
5743 }
5744}
5745
James Ketrenosb095c382005-08-24 22:04:42 -05005746static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5747{
5748 switch (priv->ieee->sec.level) {
5749 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005750 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5751 ipw_send_tgi_tx_key(priv,
5752 DCT_FLAG_EXT_SECURITY_CCM,
5753 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005754
James Ketrenosb095c382005-08-24 22:04:42 -05005755 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005756 break;
5757 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005758 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5759 ipw_send_tgi_tx_key(priv,
5760 DCT_FLAG_EXT_SECURITY_TKIP,
5761 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005762 break;
5763 case SEC_LEVEL_1:
5764 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenosb095c382005-08-24 22:04:42 -05005765 break;
5766 case SEC_LEVEL_0:
5767 default:
5768 break;
5769 }
Zhu Yi1fbfea52005-08-05 17:22:56 +08005770
5771 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
5772 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05005773}
5774
James Ketrenos43f66a62005-03-25 12:31:53 -06005775static void ipw_adhoc_check(void *data)
5776{
5777 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005778
James Ketrenosafbf30a2005-08-25 00:05:33 -05005779 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005780 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005781 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5782 IPW_DL_STATE | IPW_DL_ASSOC,
5783 "Missed beacon: %d - disassociate\n",
5784 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005785 ipw_remove_current_network(priv);
5786 ipw_disassociate(priv);
5787 return;
5788 }
5789
Jeff Garzikbf794512005-07-31 13:07:26 -04005790 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005791 priv->assoc_request.beacon_interval);
5792}
5793
James Ketrenosc848d0a2005-08-24 21:56:24 -05005794static void ipw_bg_adhoc_check(void *data)
5795{
5796 struct ipw_priv *priv = data;
5797 down(&priv->sem);
5798 ipw_adhoc_check(data);
5799 up(&priv->sem);
5800}
5801
James Ketrenos43f66a62005-03-25 12:31:53 -06005802#ifdef CONFIG_IPW_DEBUG
5803static void ipw_debug_config(struct ipw_priv *priv)
5804{
5805 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5806 "[CFG 0x%08X]\n", priv->config);
5807 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005808 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005809 else
5810 IPW_DEBUG_INFO("Channel unlocked.\n");
5811 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005812 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005813 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005814 else
5815 IPW_DEBUG_INFO("ESSID unlocked.\n");
5816 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005817 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5818 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005819 else
5820 IPW_DEBUG_INFO("BSSID unlocked.\n");
5821 if (priv->capability & CAP_PRIVACY_ON)
5822 IPW_DEBUG_INFO("PRIVACY on\n");
5823 else
5824 IPW_DEBUG_INFO("PRIVACY off\n");
5825 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5826}
5827#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005828#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005829#endif
5830
James Ketrenosb095c382005-08-24 22:04:42 -05005831static inline void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005832{
5833 /* TODO: Verify that this works... */
5834 struct ipw_fixed_rate fr = {
5835 .tx_rates = priv->rates_mask
5836 };
5837 u32 reg;
5838 u16 mask = 0;
5839
Jeff Garzikbf794512005-07-31 13:07:26 -04005840 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005841 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005842
James Ketrenos43f66a62005-03-25 12:31:53 -06005843 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005844 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005845 /* IEEE_A */
5846 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5847 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005848 IPW_DEBUG_WX
5849 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005850 fr.tx_rates = 0;
5851 break;
5852 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005853
James Ketrenos43f66a62005-03-25 12:31:53 -06005854 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5855 break;
5856
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005857 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005858 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005859 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005860 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5861 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005862 IPW_DEBUG_WX
5863 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005864 fr.tx_rates = 0;
5865 }
5866 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005867 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005868
5869 /* IEEE_G */
5870 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5871 IEEE80211_OFDM_RATES_MASK)) {
5872 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005873 IPW_DEBUG_WX
5874 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005875 fr.tx_rates = 0;
5876 break;
5877 }
5878
5879 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5880 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5881 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5882 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005883
James Ketrenos43f66a62005-03-25 12:31:53 -06005884 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5885 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5886 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5887 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005888
James Ketrenos43f66a62005-03-25 12:31:53 -06005889 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5890 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5891 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5892 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005893
James Ketrenos43f66a62005-03-25 12:31:53 -06005894 fr.tx_rates |= mask;
5895 break;
5896 }
5897
5898 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005899 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005900}
5901
James Ketrenosea2b26e2005-08-24 21:25:16 -05005902static void ipw_abort_scan(struct ipw_priv *priv)
5903{
5904 int err;
5905
5906 if (priv->status & STATUS_SCAN_ABORTING) {
5907 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5908 return;
5909 }
5910 priv->status |= STATUS_SCAN_ABORTING;
5911
5912 err = ipw_send_scan_abort(priv);
5913 if (err)
5914 IPW_DEBUG_HC("Request to abort scan failed.\n");
5915}
5916
James Ketrenosafbf30a2005-08-25 00:05:33 -05005917static void ipw_add_scan_channels(struct ipw_priv *priv,
5918 struct ipw_scan_request_ext *scan,
5919 int scan_type)
5920{
5921 int channel_index = 0;
5922 const struct ieee80211_geo *geo;
5923 int i;
5924
Liu Hong1fe0adb2005-08-19 09:33:10 -05005925 geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005926
5927 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5928 int start = channel_index;
5929 for (i = 0; i < geo->a_channels; i++) {
5930 if ((priv->status & STATUS_ASSOCIATED) &&
5931 geo->a[i].channel == priv->channel)
5932 continue;
5933 channel_index++;
5934 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005935 ipw_set_scan_type(scan, channel_index,
5936 geo->a[i].
5937 flags & IEEE80211_CH_PASSIVE_ONLY ?
5938 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
5939 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005940 }
5941
5942 if (start != channel_index) {
5943 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5944 (channel_index - start);
5945 channel_index++;
5946 }
5947 }
5948
5949 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5950 int start = channel_index;
5951 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005952 int index;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005953 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5954 /* nop out the list */
5955 [0] = 0
5956 };
5957
5958 u8 channel;
5959 while (channel_index < IPW_SCAN_CHANNELS) {
5960 channel =
5961 priv->speed_scan[priv->speed_scan_pos];
5962 if (channel == 0) {
5963 priv->speed_scan_pos = 0;
5964 channel = priv->speed_scan[0];
5965 }
5966 if ((priv->status & STATUS_ASSOCIATED) &&
5967 channel == priv->channel) {
5968 priv->speed_scan_pos++;
5969 continue;
5970 }
5971
5972 /* If this channel has already been
5973 * added in scan, break from loop
5974 * and this will be the first channel
5975 * in the next scan.
5976 */
5977 if (channels[channel - 1] != 0)
5978 break;
5979
5980 channels[channel - 1] = 1;
5981 priv->speed_scan_pos++;
5982 channel_index++;
5983 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005984 index =
5985 ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005986 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05005987 geo->bg[index].
5988 flags &
5989 IEEE80211_CH_PASSIVE_ONLY ?
5990 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
5991 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005992 }
5993 } else {
5994 for (i = 0; i < geo->bg_channels; i++) {
5995 if ((priv->status & STATUS_ASSOCIATED) &&
5996 geo->bg[i].channel == priv->channel)
5997 continue;
5998 channel_index++;
5999 scan->channels_list[channel_index] =
6000 geo->bg[i].channel;
6001 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006002 geo->bg[i].
6003 flags &
6004 IEEE80211_CH_PASSIVE_ONLY ?
6005 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6006 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006007 }
6008 }
6009
6010 if (start != channel_index) {
6011 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6012 (channel_index - start);
6013 }
6014 }
6015}
6016
James Ketrenosea2b26e2005-08-24 21:25:16 -05006017static int ipw_request_scan(struct ipw_priv *priv)
6018{
6019 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006020 int err = 0, scan_type;
6021
6022 if (!(priv->status & STATUS_INIT) ||
6023 (priv->status & STATUS_EXIT_PENDING))
6024 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006025
James Ketrenosb095c382005-08-24 22:04:42 -05006026 down(&priv->sem);
6027
James Ketrenosea2b26e2005-08-24 21:25:16 -05006028 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05006029 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05006030 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006031 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006032 }
6033
James Ketrenosafbf30a2005-08-25 00:05:33 -05006034 if (!(priv->status & STATUS_SCAN_FORCED) &&
6035 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006036 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6037 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006038 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006039 }
6040
6041 if (priv->status & STATUS_RF_KILL_MASK) {
6042 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6043 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006044 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006045 }
6046
6047 memset(&scan, 0, sizeof(scan));
6048
James Ketrenosb095c382005-08-24 22:04:42 -05006049 if (priv->config & CFG_SPEED_SCAN)
6050 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6051 cpu_to_le16(30);
6052 else
6053 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6054 cpu_to_le16(20);
6055
James Ketrenosa613bff2005-08-24 21:43:11 -05006056 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
6057 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05006058 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006059
James Ketrenosa613bff2005-08-24 21:43:11 -05006060 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006061
James Ketrenosb095c382005-08-24 22:04:42 -05006062#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006063 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006064 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006065 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006066
Liu Hong1fe0adb2005-08-19 09:33:10 -05006067 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006068 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006069 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006070 channel = priv->channel;
6071 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006072
James Ketrenosb095c382005-08-24 22:04:42 -05006073 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006074 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006075 channel = priv->channel;
6076 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006077
James Ketrenosb095c382005-08-24 22:04:42 -05006078 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006079 band = (u8) (IPW_B_MODE << 6) | 1;
6080 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006081 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006082 }
6083
James Ketrenosb095c382005-08-24 22:04:42 -05006084 scan.channels_list[0] = band;
6085 scan.channels_list[1] = channel;
6086 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006087
James Ketrenosb095c382005-08-24 22:04:42 -05006088 /* NOTE: The card will sit on this channel for this time
6089 * period. Scan aborts are timing sensitive and frequently
6090 * result in firmware restarts. As such, it is best to
6091 * set a small dwell_time here and just keep re-issuing
6092 * scans. Otherwise fast channel hopping will not actually
6093 * hop channels.
6094 *
6095 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006096 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6097 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006098 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006099#endif /* CONFIG_IPW2200_MONITOR */
6100 /* If we are roaming, then make this a directed scan for the
6101 * current network. Otherwise, ensure that every other scan
6102 * is a fast channel hop scan */
6103 if ((priv->status & STATUS_ROAMING)
6104 || (!(priv->status & STATUS_ASSOCIATED)
6105 && (priv->config & CFG_STATIC_ESSID)
6106 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006107 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6108 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006109 IPW_DEBUG_HC("Attempt to send SSID command "
6110 "failed.\n");
6111 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006112 }
6113
6114 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006115 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006116 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006117
James Ketrenosafbf30a2005-08-25 00:05:33 -05006118 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006119#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006120 }
6121#endif
6122
6123 err = ipw_send_scan_request_ext(priv, &scan);
6124 if (err) {
6125 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006126 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006127 }
6128
6129 priv->status |= STATUS_SCANNING;
6130 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006131 queue_delayed_work(priv->workqueue, &priv->scan_check,
6132 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05006133 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05006134 up(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05006135 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006136}
6137
6138static void ipw_bg_abort_scan(void *data)
6139{
6140 struct ipw_priv *priv = data;
6141 down(&priv->sem);
6142 ipw_abort_scan(data);
6143 up(&priv->sem);
6144}
6145
James Ketrenosafbf30a2005-08-25 00:05:33 -05006146#if WIRELESS_EXT < 18
6147/* Support for wpa_supplicant before WE-18, deprecated. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006148
6149/* following definitions must match definitions in driver_ipw.c */
6150
6151#define IPW_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
6152
6153#define IPW_CMD_SET_WPA_PARAM 1
6154#define IPW_CMD_SET_WPA_IE 2
6155#define IPW_CMD_SET_ENCRYPTION 3
6156#define IPW_CMD_MLME 4
6157
6158#define IPW_PARAM_WPA_ENABLED 1
6159#define IPW_PARAM_TKIP_COUNTERMEASURES 2
6160#define IPW_PARAM_DROP_UNENCRYPTED 3
6161#define IPW_PARAM_PRIVACY_INVOKED 4
6162#define IPW_PARAM_AUTH_ALGS 5
6163#define IPW_PARAM_IEEE_802_1X 6
6164
6165#define IPW_MLME_STA_DEAUTH 1
6166#define IPW_MLME_STA_DISASSOC 2
6167
6168#define IPW_CRYPT_ERR_UNKNOWN_ALG 2
6169#define IPW_CRYPT_ERR_UNKNOWN_ADDR 3
6170#define IPW_CRYPT_ERR_CRYPT_INIT_FAILED 4
6171#define IPW_CRYPT_ERR_KEY_SET_FAILED 5
6172#define IPW_CRYPT_ERR_TX_KEY_SET_FAILED 6
6173#define IPW_CRYPT_ERR_CARD_CONF_FAILED 7
6174
6175#define IPW_CRYPT_ALG_NAME_LEN 16
6176
6177struct ipw_param {
6178 u32 cmd;
6179 u8 sta_addr[ETH_ALEN];
6180 union {
6181 struct {
6182 u8 name;
6183 u32 value;
6184 } wpa_param;
6185 struct {
6186 u32 len;
James Ketrenosb095c382005-08-24 22:04:42 -05006187 u8 reserved[32];
6188 u8 data[0];
James Ketrenosea2b26e2005-08-24 21:25:16 -05006189 } wpa_ie;
6190 struct {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006191 u32 command;
6192 u32 reason_code;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006193 } mlme;
6194 struct {
6195 u8 alg[IPW_CRYPT_ALG_NAME_LEN];
6196 u8 set_tx;
6197 u32 err;
6198 u8 idx;
6199 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
6200 u16 key_len;
6201 u8 key[0];
6202 } crypt;
6203
6204 } u;
6205};
6206
6207/* end of driver_ipw.c code */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006208#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006209
6210static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6211{
James Ketrenosb095c382005-08-24 22:04:42 -05006212 /* This is called when wpa_supplicant loads and closes the driver
6213 * interface. */
6214 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006215}
6216
James Ketrenosafbf30a2005-08-25 00:05:33 -05006217#if WIRELESS_EXT < 18
6218#define IW_AUTH_ALG_OPEN_SYSTEM 0x1
6219#define IW_AUTH_ALG_SHARED_KEY 0x2
6220#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006221
6222static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6223{
6224 struct ieee80211_device *ieee = priv->ieee;
6225 struct ieee80211_security sec = {
6226 .flags = SEC_AUTH_MODE,
6227 };
6228 int ret = 0;
6229
James Ketrenosafbf30a2005-08-25 00:05:33 -05006230 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006231 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6232 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006233 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006234 sec.auth_mode = WLAN_AUTH_OPEN;
6235 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006236 } else
6237 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006238
6239 if (ieee->set_security)
6240 ieee->set_security(ieee->dev, &sec);
6241 else
6242 ret = -EOPNOTSUPP;
6243
6244 return ret;
6245}
6246
James Ketrenosafbf30a2005-08-25 00:05:33 -05006247void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie, int wpa_ie_len)
6248{
6249 /* make sure WPA is enabled */
6250 ipw_wpa_enable(priv, 1);
6251
6252 ipw_disassociate(priv);
6253}
6254
6255static int ipw_set_rsn_capa(struct ipw_priv *priv,
6256 char *capabilities, int length)
6257{
6258 struct host_cmd cmd = {
6259 .cmd = IPW_CMD_RSN_CAPABILITIES,
6260 .len = length,
6261 };
6262
6263 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6264
6265 memcpy(cmd.param, capabilities, length);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05006266 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006267}
6268
6269#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -05006270static int ipw_wpa_set_param(struct net_device *dev, u8 name, u32 value)
6271{
6272 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosa613bff2005-08-24 21:43:11 -05006273 struct ieee80211_crypt_data *crypt;
6274 unsigned long flags;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006275 int ret = 0;
6276
6277 switch (name) {
6278 case IPW_PARAM_WPA_ENABLED:
6279 ret = ipw_wpa_enable(priv, value);
6280 break;
6281
6282 case IPW_PARAM_TKIP_COUNTERMEASURES:
James Ketrenosa613bff2005-08-24 21:43:11 -05006283 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6284 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6285 IPW_WARNING("Can't set TKIP countermeasures: "
6286 "crypt not set!\n");
6287 break;
6288 }
6289
6290 flags = crypt->ops->get_flags(crypt->priv);
6291
6292 if (value)
6293 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6294 else
6295 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6296
6297 crypt->ops->set_flags(flags, crypt->priv);
6298
James Ketrenosea2b26e2005-08-24 21:25:16 -05006299 break;
6300
James Ketrenosb095c382005-08-24 22:04:42 -05006301 case IPW_PARAM_DROP_UNENCRYPTED:{
6302 /* HACK:
6303 *
6304 * wpa_supplicant calls set_wpa_enabled when the driver
6305 * is loaded and unloaded, regardless of if WPA is being
6306 * used. No other calls are made which can be used to
6307 * determine if encryption will be used or not prior to
6308 * association being expected. If encryption is not being
6309 * used, drop_unencrypted is set to false, else true -- we
6310 * can use this to determine if the CAP_PRIVACY_ON bit should
6311 * be set.
6312 */
6313 struct ieee80211_security sec = {
6314 .flags = SEC_ENABLED,
6315 .enabled = value,
6316 };
6317 priv->ieee->drop_unencrypted = value;
6318 /* We only change SEC_LEVEL for open mode. Others
6319 * are set by ipw_wpa_set_encryption.
6320 */
6321 if (!value) {
6322 sec.flags |= SEC_LEVEL;
6323 sec.level = SEC_LEVEL_0;
6324 } else {
6325 sec.flags |= SEC_LEVEL;
6326 sec.level = SEC_LEVEL_1;
6327 }
6328 if (priv->ieee->set_security)
6329 priv->ieee->set_security(priv->ieee->dev, &sec);
6330 break;
6331 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05006332
6333 case IPW_PARAM_PRIVACY_INVOKED:
6334 priv->ieee->privacy_invoked = value;
6335 break;
6336
6337 case IPW_PARAM_AUTH_ALGS:
6338 ret = ipw_wpa_set_auth_algs(priv, value);
6339 break;
6340
6341 case IPW_PARAM_IEEE_802_1X:
6342 priv->ieee->ieee802_1x = value;
6343 break;
6344
6345 default:
6346 IPW_ERROR("%s: Unknown WPA param: %d\n", dev->name, name);
6347 ret = -EOPNOTSUPP;
6348 }
6349
6350 return ret;
6351}
6352
6353static int ipw_wpa_mlme(struct net_device *dev, int command, int reason)
6354{
6355 struct ipw_priv *priv = ieee80211_priv(dev);
6356 int ret = 0;
6357
6358 switch (command) {
6359 case IPW_MLME_STA_DEAUTH:
6360 // silently ignore
6361 break;
6362
6363 case IPW_MLME_STA_DISASSOC:
6364 ipw_disassociate(priv);
6365 break;
6366
6367 default:
6368 IPW_ERROR("%s: Unknown MLME request: %d\n", dev->name, command);
6369 ret = -EOPNOTSUPP;
6370 }
6371
6372 return ret;
6373}
6374
Zhu Yi1fbfea52005-08-05 17:22:56 +08006375static int ipw_wpa_ie_cipher2level(u8 cipher)
6376{
6377 switch (cipher) {
6378 case 4: /* CCMP */
6379 return SEC_LEVEL_3;
6380 case 2: /* TKIP */
6381 return SEC_LEVEL_2;
6382 case 5: /* WEP104 */
6383 case 1: /* WEP40 */
6384 return SEC_LEVEL_1;
6385 case 0: /* NONE */
6386 return SEC_LEVEL_0;
6387 default:
6388 return -1;
6389 }
6390}
6391
James Ketrenosea2b26e2005-08-24 21:25:16 -05006392static int ipw_wpa_set_wpa_ie(struct net_device *dev,
6393 struct ipw_param *param, int plen)
6394{
6395 struct ipw_priv *priv = ieee80211_priv(dev);
6396 struct ieee80211_device *ieee = priv->ieee;
6397 u8 *buf;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006398 u8 *ptk, *gtk;
6399 int level;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006400
James Ketrenosea2b26e2005-08-24 21:25:16 -05006401 if (param->u.wpa_ie.len > MAX_WPA_IE_LEN ||
6402 (param->u.wpa_ie.len && param->u.wpa_ie.data == NULL))
6403 return -EINVAL;
6404
6405 if (param->u.wpa_ie.len) {
6406 buf = kmalloc(param->u.wpa_ie.len, GFP_KERNEL);
6407 if (buf == NULL)
6408 return -ENOMEM;
6409
6410 memcpy(buf, param->u.wpa_ie.data, param->u.wpa_ie.len);
6411 kfree(ieee->wpa_ie);
6412 ieee->wpa_ie = buf;
6413 ieee->wpa_ie_len = param->u.wpa_ie.len;
6414 } else {
6415 kfree(ieee->wpa_ie);
6416 ieee->wpa_ie = NULL;
6417 ieee->wpa_ie_len = 0;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006418 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006419 }
6420
Zhu Yi1fbfea52005-08-05 17:22:56 +08006421 if (priv->ieee->host_encrypt)
6422 goto done;
6423
6424 /* HACK: Parse wpa_ie here to get pairwise suite, otherwise
6425 * we need to change driver_ipw.c from wpa_supplicant. This
6426 * is OK since -Dipw is deprecated. The -Dwext driver has a
6427 * clean way to handle this. */
6428 gtk = ptk = (u8 *) ieee->wpa_ie;
6429 if (ieee->wpa_ie[0] == 0x30) { /* RSN IE */
6430 gtk += 4 + 3;
6431 ptk += 4 + 4 + 2 + 3;
6432 } else { /* WPA IE */
6433 gtk += 8 + 3;
6434 ptk += 8 + 4 + 2 + 3;
6435 }
6436
6437 if (ptk - (u8 *) ieee->wpa_ie > ieee->wpa_ie_len)
6438 return -EINVAL;
6439
6440 level = ipw_wpa_ie_cipher2level(*gtk);
6441 ipw_set_hw_decrypt_multicast(priv, level);
6442
6443 level = ipw_wpa_ie_cipher2level(*ptk);
6444 ipw_set_hw_decrypt_unicast(priv, level);
6445
6446 done:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006447 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6448 return 0;
6449}
6450
6451/* implementation borrowed from hostap driver */
6452
6453static int ipw_wpa_set_encryption(struct net_device *dev,
6454 struct ipw_param *param, int param_len)
6455{
6456 int ret = 0;
6457 struct ipw_priv *priv = ieee80211_priv(dev);
6458 struct ieee80211_device *ieee = priv->ieee;
6459 struct ieee80211_crypto_ops *ops;
6460 struct ieee80211_crypt_data **crypt;
6461
6462 struct ieee80211_security sec = {
6463 .flags = 0,
6464 };
6465
6466 param->u.crypt.err = 0;
6467 param->u.crypt.alg[IPW_CRYPT_ALG_NAME_LEN - 1] = '\0';
6468
6469 if (param_len !=
6470 (int)((char *)param->u.crypt.key - (char *)param) +
6471 param->u.crypt.key_len) {
6472 IPW_DEBUG_INFO("Len mismatch %d, %d\n", param_len,
6473 param->u.crypt.key_len);
6474 return -EINVAL;
6475 }
6476 if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff &&
6477 param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff &&
6478 param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) {
6479 if (param->u.crypt.idx >= WEP_KEYS)
6480 return -EINVAL;
6481 crypt = &ieee->crypt[param->u.crypt.idx];
6482 } else {
6483 return -EINVAL;
6484 }
6485
James Ketrenosafbf30a2005-08-25 00:05:33 -05006486 sec.flags |= SEC_ENABLED | SEC_ENCRYPT;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006487 if (strcmp(param->u.crypt.alg, "none") == 0) {
6488 if (crypt) {
6489 sec.enabled = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006490 sec.encrypt = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006491 sec.level = SEC_LEVEL_0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006492 sec.flags |= SEC_LEVEL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006493 ieee80211_crypt_delayed_deinit(ieee, crypt);
6494 }
6495 goto done;
6496 }
6497 sec.enabled = 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006498 sec.encrypt = 1;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006499
James Ketrenosb095c382005-08-24 22:04:42 -05006500 /* IPW HW cannot build TKIP MIC, host decryption still needed. */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006501 if (strcmp(param->u.crypt.alg, "TKIP") == 0)
6502 ieee->host_encrypt_msdu = 1;
6503
6504 if (!(ieee->host_encrypt || ieee->host_encrypt_msdu ||
6505 ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05006506 goto skip_host_crypt;
6507
James Ketrenosea2b26e2005-08-24 21:25:16 -05006508 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6509 if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) {
6510 request_module("ieee80211_crypt_wep");
6511 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6512 } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) {
6513 request_module("ieee80211_crypt_tkip");
6514 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6515 } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) {
6516 request_module("ieee80211_crypt_ccmp");
6517 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6518 }
6519 if (ops == NULL) {
6520 IPW_DEBUG_INFO("%s: unknown crypto alg '%s'\n",
6521 dev->name, param->u.crypt.alg);
6522 param->u.crypt.err = IPW_CRYPT_ERR_UNKNOWN_ALG;
6523 ret = -EINVAL;
6524 goto done;
6525 }
6526
6527 if (*crypt == NULL || (*crypt)->ops != ops) {
6528 struct ieee80211_crypt_data *new_crypt;
6529
6530 ieee80211_crypt_delayed_deinit(ieee, crypt);
6531
6532 new_crypt = (struct ieee80211_crypt_data *)
6533 kmalloc(sizeof(*new_crypt), GFP_KERNEL);
6534 if (new_crypt == NULL) {
6535 ret = -ENOMEM;
6536 goto done;
6537 }
6538 memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data));
6539 new_crypt->ops = ops;
6540 if (new_crypt->ops && try_module_get(new_crypt->ops->owner))
6541 new_crypt->priv =
6542 new_crypt->ops->init(param->u.crypt.idx);
6543
6544 if (new_crypt->priv == NULL) {
6545 kfree(new_crypt);
6546 param->u.crypt.err = IPW_CRYPT_ERR_CRYPT_INIT_FAILED;
6547 ret = -EINVAL;
6548 goto done;
6549 }
6550
6551 *crypt = new_crypt;
6552 }
6553
6554 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
6555 (*crypt)->ops->set_key(param->u.crypt.key,
6556 param->u.crypt.key_len, param->u.crypt.seq,
6557 (*crypt)->priv) < 0) {
6558 IPW_DEBUG_INFO("%s: key setting failed\n", dev->name);
6559 param->u.crypt.err = IPW_CRYPT_ERR_KEY_SET_FAILED;
6560 ret = -EINVAL;
6561 goto done;
6562 }
6563
James Ketrenosb095c382005-08-24 22:04:42 -05006564 skip_host_crypt:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006565 if (param->u.crypt.set_tx) {
6566 ieee->tx_keyidx = param->u.crypt.idx;
6567 sec.active_key = param->u.crypt.idx;
6568 sec.flags |= SEC_ACTIVE_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05006569 } else
6570 sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006571
James Ketrenosb095c382005-08-24 22:04:42 -05006572 if (param->u.crypt.alg != NULL) {
6573 memcpy(sec.keys[param->u.crypt.idx],
6574 param->u.crypt.key, param->u.crypt.key_len);
6575 sec.key_sizes[param->u.crypt.idx] = param->u.crypt.key_len;
6576 sec.flags |= (1 << param->u.crypt.idx);
6577
6578 if (strcmp(param->u.crypt.alg, "WEP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006579 sec.flags |= SEC_LEVEL;
6580 sec.level = SEC_LEVEL_1;
James Ketrenosb095c382005-08-24 22:04:42 -05006581 } else if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006582 sec.flags |= SEC_LEVEL;
6583 sec.level = SEC_LEVEL_2;
James Ketrenosb095c382005-08-24 22:04:42 -05006584 } else if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006585 sec.flags |= SEC_LEVEL;
6586 sec.level = SEC_LEVEL_3;
6587 }
6588 }
6589 done:
6590 if (ieee->set_security)
6591 ieee->set_security(ieee->dev, &sec);
6592
6593 /* Do not reset port if card is in Managed mode since resetting will
6594 * generate new IEEE 802.11 authentication which may end up in looping
6595 * with IEEE 802.1X. If your hardware requires a reset after WEP
6596 * configuration (for example... Prism2), implement the reset_port in
6597 * the callbacks structures used to initialize the 802.11 stack. */
6598 if (ieee->reset_on_keychange &&
6599 ieee->iw_mode != IW_MODE_INFRA &&
6600 ieee->reset_port && ieee->reset_port(dev)) {
6601 IPW_DEBUG_INFO("%s: reset_port failed\n", dev->name);
6602 param->u.crypt.err = IPW_CRYPT_ERR_CARD_CONF_FAILED;
6603 return -EINVAL;
6604 }
6605
6606 return ret;
6607}
6608
6609static int ipw_wpa_supplicant(struct net_device *dev, struct iw_point *p)
6610{
6611 struct ipw_param *param;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006612 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006613 int ret = 0;
6614
6615 IPW_DEBUG_INFO("wpa_supplicant: len=%d\n", p->length);
6616
6617 if (p->length < sizeof(struct ipw_param) || !p->pointer)
6618 return -EINVAL;
6619
6620 param = (struct ipw_param *)kmalloc(p->length, GFP_KERNEL);
6621 if (param == NULL)
6622 return -ENOMEM;
6623
6624 if (copy_from_user(param, p->pointer, p->length)) {
6625 kfree(param);
6626 return -EFAULT;
6627 }
6628
James Ketrenosafbf30a2005-08-25 00:05:33 -05006629 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006630 switch (param->cmd) {
6631
6632 case IPW_CMD_SET_WPA_PARAM:
6633 ret = ipw_wpa_set_param(dev, param->u.wpa_param.name,
6634 param->u.wpa_param.value);
6635 break;
6636
6637 case IPW_CMD_SET_WPA_IE:
6638 ret = ipw_wpa_set_wpa_ie(dev, param, p->length);
6639 break;
6640
6641 case IPW_CMD_SET_ENCRYPTION:
6642 ret = ipw_wpa_set_encryption(dev, param, p->length);
6643 break;
6644
6645 case IPW_CMD_MLME:
6646 ret = ipw_wpa_mlme(dev, param->u.mlme.command,
6647 param->u.mlme.reason_code);
6648 break;
6649
6650 default:
6651 IPW_ERROR("%s: Unknown WPA supplicant request: %d\n",
6652 dev->name, param->cmd);
6653 ret = -EOPNOTSUPP;
6654 }
6655
James Ketrenosafbf30a2005-08-25 00:05:33 -05006656 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006657 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
6658 ret = -EFAULT;
6659
6660 kfree(param);
6661 return ret;
6662}
James Ketrenosafbf30a2005-08-25 00:05:33 -05006663#else
6664/*
6665 * WE-18 support
6666 */
6667
6668/* SIOCSIWGENIE */
6669static int ipw_wx_set_genie(struct net_device *dev,
6670 struct iw_request_info *info,
6671 union iwreq_data *wrqu, char *extra)
6672{
6673 struct ipw_priv *priv = ieee80211_priv(dev);
6674 struct ieee80211_device *ieee = priv->ieee;
6675 u8 *buf;
6676 int err = 0;
6677
6678 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6679 (wrqu->data.length && extra == NULL))
6680 return -EINVAL;
6681
6682 //down(&priv->sem);
6683
6684 //if (!ieee->wpa_enabled) {
6685 // err = -EOPNOTSUPP;
6686 // goto out;
6687 //}
6688
6689 if (wrqu->data.length) {
6690 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6691 if (buf == NULL) {
6692 err = -ENOMEM;
6693 goto out;
6694 }
6695
6696 memcpy(buf, extra, wrqu->data.length);
6697 kfree(ieee->wpa_ie);
6698 ieee->wpa_ie = buf;
6699 ieee->wpa_ie_len = wrqu->data.length;
6700 } else {
6701 kfree(ieee->wpa_ie);
6702 ieee->wpa_ie = NULL;
6703 ieee->wpa_ie_len = 0;
6704 }
6705
6706 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6707 out:
6708 //up(&priv->sem);
6709 return err;
6710}
6711
6712/* SIOCGIWGENIE */
6713static int ipw_wx_get_genie(struct net_device *dev,
6714 struct iw_request_info *info,
6715 union iwreq_data *wrqu, char *extra)
6716{
6717 struct ipw_priv *priv = ieee80211_priv(dev);
6718 struct ieee80211_device *ieee = priv->ieee;
6719 int err = 0;
6720
6721 //down(&priv->sem);
6722
6723 //if (!ieee->wpa_enabled) {
6724 // err = -EOPNOTSUPP;
6725 // goto out;
6726 //}
6727
6728 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6729 wrqu->data.length = 0;
6730 goto out;
6731 }
6732
6733 if (wrqu->data.length < ieee->wpa_ie_len) {
6734 err = -E2BIG;
6735 goto out;
6736 }
6737
6738 wrqu->data.length = ieee->wpa_ie_len;
6739 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6740
6741 out:
6742 //up(&priv->sem);
6743 return err;
6744}
6745
Zhu Yi1fbfea52005-08-05 17:22:56 +08006746static int wext_cipher2level(int cipher)
6747{
6748 switch (cipher) {
6749 case IW_AUTH_CIPHER_NONE:
6750 return SEC_LEVEL_0;
6751 case IW_AUTH_CIPHER_WEP40:
6752 case IW_AUTH_CIPHER_WEP104:
6753 return SEC_LEVEL_1;
6754 case IW_AUTH_CIPHER_TKIP:
6755 return SEC_LEVEL_2;
6756 case IW_AUTH_CIPHER_CCMP:
6757 return SEC_LEVEL_3;
6758 default:
6759 return -1;
6760 }
6761}
6762
James Ketrenosafbf30a2005-08-25 00:05:33 -05006763/* SIOCSIWAUTH */
6764static int ipw_wx_set_auth(struct net_device *dev,
6765 struct iw_request_info *info,
6766 union iwreq_data *wrqu, char *extra)
6767{
6768 struct ipw_priv *priv = ieee80211_priv(dev);
6769 struct ieee80211_device *ieee = priv->ieee;
6770 struct iw_param *param = &wrqu->param;
6771 struct ieee80211_crypt_data *crypt;
6772 unsigned long flags;
6773 int ret = 0;
6774
6775 switch (param->flags & IW_AUTH_INDEX) {
6776 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006777 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006778 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006779 ipw_set_hw_decrypt_unicast(priv,
6780 wext_cipher2level(param->value));
6781 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006782 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006783 ipw_set_hw_decrypt_multicast(priv,
6784 wext_cipher2level(param->value));
6785 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006786 case IW_AUTH_KEY_MGMT:
6787 /*
6788 * ipw2200 does not use these parameters
6789 */
6790 break;
6791
6792 case IW_AUTH_TKIP_COUNTERMEASURES:
6793 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6794 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6795 IPW_WARNING("Can't set TKIP countermeasures: "
6796 "crypt not set!\n");
6797 break;
6798 }
6799
6800 flags = crypt->ops->get_flags(crypt->priv);
6801
6802 if (param->value)
6803 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6804 else
6805 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6806
6807 crypt->ops->set_flags(flags, crypt->priv);
6808
6809 break;
6810
6811 case IW_AUTH_DROP_UNENCRYPTED:{
6812 /* HACK:
6813 *
6814 * wpa_supplicant calls set_wpa_enabled when the driver
6815 * is loaded and unloaded, regardless of if WPA is being
6816 * used. No other calls are made which can be used to
6817 * determine if encryption will be used or not prior to
6818 * association being expected. If encryption is not being
6819 * used, drop_unencrypted is set to false, else true -- we
6820 * can use this to determine if the CAP_PRIVACY_ON bit should
6821 * be set.
6822 */
6823 struct ieee80211_security sec = {
6824 .flags = SEC_ENABLED,
6825 .enabled = param->value,
6826 };
6827 priv->ieee->drop_unencrypted = param->value;
6828 /* We only change SEC_LEVEL for open mode. Others
6829 * are set by ipw_wpa_set_encryption.
6830 */
6831 if (!param->value) {
6832 sec.flags |= SEC_LEVEL;
6833 sec.level = SEC_LEVEL_0;
6834 } else {
6835 sec.flags |= SEC_LEVEL;
6836 sec.level = SEC_LEVEL_1;
6837 }
6838 if (priv->ieee->set_security)
6839 priv->ieee->set_security(priv->ieee->dev, &sec);
6840 break;
6841 }
6842
6843 case IW_AUTH_80211_AUTH_ALG:
6844 ret = ipw_wpa_set_auth_algs(priv, param->value);
6845 break;
6846
6847 case IW_AUTH_WPA_ENABLED:
6848 ret = ipw_wpa_enable(priv, param->value);
6849 break;
6850
6851 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6852 ieee->ieee802_1x = param->value;
6853 break;
6854
6855 //case IW_AUTH_ROAMING_CONTROL:
6856 case IW_AUTH_PRIVACY_INVOKED:
6857 ieee->privacy_invoked = param->value;
6858 break;
6859
6860 default:
6861 return -EOPNOTSUPP;
6862 }
6863 return ret;
6864}
6865
6866/* SIOCGIWAUTH */
6867static int ipw_wx_get_auth(struct net_device *dev,
6868 struct iw_request_info *info,
6869 union iwreq_data *wrqu, char *extra)
6870{
6871 struct ipw_priv *priv = ieee80211_priv(dev);
6872 struct ieee80211_device *ieee = priv->ieee;
6873 struct ieee80211_crypt_data *crypt;
6874 struct iw_param *param = &wrqu->param;
6875 int ret = 0;
6876
6877 switch (param->flags & IW_AUTH_INDEX) {
6878 case IW_AUTH_WPA_VERSION:
6879 case IW_AUTH_CIPHER_PAIRWISE:
6880 case IW_AUTH_CIPHER_GROUP:
6881 case IW_AUTH_KEY_MGMT:
6882 /*
6883 * wpa_supplicant will control these internally
6884 */
6885 ret = -EOPNOTSUPP;
6886 break;
6887
6888 case IW_AUTH_TKIP_COUNTERMEASURES:
6889 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6890 if (!crypt || !crypt->ops->get_flags) {
6891 IPW_WARNING("Can't get TKIP countermeasures: "
6892 "crypt not set!\n");
6893 break;
6894 }
6895
6896 param->value = (crypt->ops->get_flags(crypt->priv) &
6897 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6898
6899 break;
6900
6901 case IW_AUTH_DROP_UNENCRYPTED:
6902 param->value = ieee->drop_unencrypted;
6903 break;
6904
6905 case IW_AUTH_80211_AUTH_ALG:
6906 param->value = ieee->sec.auth_mode;
6907 break;
6908
6909 case IW_AUTH_WPA_ENABLED:
6910 param->value = ieee->wpa_enabled;
6911 break;
6912
6913 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6914 param->value = ieee->ieee802_1x;
6915 break;
6916
6917 case IW_AUTH_ROAMING_CONTROL:
6918 case IW_AUTH_PRIVACY_INVOKED:
6919 param->value = ieee->privacy_invoked;
6920 break;
6921
6922 default:
6923 return -EOPNOTSUPP;
6924 }
6925 return 0;
6926}
6927
6928/* SIOCSIWENCODEEXT */
6929static int ipw_wx_set_encodeext(struct net_device *dev,
6930 struct iw_request_info *info,
6931 union iwreq_data *wrqu, char *extra)
6932{
6933 struct ipw_priv *priv = ieee80211_priv(dev);
6934 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6935
6936 if (hwcrypto) {
6937 /* IPW HW can't build TKIP MIC, host decryption still needed */
6938 if (ext->alg == IW_ENCODE_ALG_TKIP) {
6939 priv->ieee->host_encrypt = 0;
6940 priv->ieee->host_encrypt_msdu = 1;
6941 priv->ieee->host_decrypt = 1;
6942 } else {
6943 priv->ieee->host_encrypt = 0;
6944 priv->ieee->host_encrypt_msdu = 0;
6945 priv->ieee->host_decrypt = 0;
6946 }
6947 }
6948
6949 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6950}
6951
6952/* SIOCGIWENCODEEXT */
6953static int ipw_wx_get_encodeext(struct net_device *dev,
6954 struct iw_request_info *info,
6955 union iwreq_data *wrqu, char *extra)
6956{
6957 struct ipw_priv *priv = ieee80211_priv(dev);
6958 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
6959}
6960
6961/* SIOCSIWMLME */
6962static int ipw_wx_set_mlme(struct net_device *dev,
6963 struct iw_request_info *info,
6964 union iwreq_data *wrqu, char *extra)
6965{
6966 struct ipw_priv *priv = ieee80211_priv(dev);
6967 struct iw_mlme *mlme = (struct iw_mlme *)extra;
6968 u16 reason;
6969
6970 reason = cpu_to_le16(mlme->reason_code);
6971
6972 switch (mlme->cmd) {
6973 case IW_MLME_DEAUTH:
6974 // silently ignore
6975 break;
6976
6977 case IW_MLME_DISASSOC:
6978 ipw_disassociate(priv);
6979 break;
6980
6981 default:
6982 return -EOPNOTSUPP;
6983 }
6984 return 0;
6985}
6986#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006987
James Ketrenosb095c382005-08-24 22:04:42 -05006988#ifdef CONFIG_IPW_QOS
6989
6990/* QoS */
6991/*
6992* get the modulation type of the current network or
6993* the card current mode
6994*/
6995u8 ipw_qos_current_mode(struct ipw_priv * priv)
6996{
6997 u8 mode = 0;
6998
6999 if (priv->status & STATUS_ASSOCIATED) {
7000 unsigned long flags;
7001
7002 spin_lock_irqsave(&priv->ieee->lock, flags);
7003 mode = priv->assoc_network->mode;
7004 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7005 } else {
7006 mode = priv->ieee->mode;
7007 }
7008 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
7009 return mode;
7010}
7011
7012/*
7013* Handle management frame beacon and probe response
7014*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05007015static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
7016 int active_network,
7017 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007018{
7019 u32 size = sizeof(struct ieee80211_qos_parameters);
7020
James Ketrenosafbf30a2005-08-25 00:05:33 -05007021 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05007022 network->qos_data.active = network->qos_data.supported;
7023
7024 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007025 if (active_network &&
7026 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05007027 network->qos_data.active = network->qos_data.supported;
7028
7029 if ((network->qos_data.active == 1) && (active_network == 1) &&
7030 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
7031 (network->qos_data.old_param_count !=
7032 network->qos_data.param_count)) {
7033 network->qos_data.old_param_count =
7034 network->qos_data.param_count;
7035 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007036 IPW_DEBUG_QOS("QoS parameters change call "
7037 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05007038 }
7039 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007040 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
7041 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007042 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007043 else
7044 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007045 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007046
James Ketrenosb095c382005-08-24 22:04:42 -05007047 if ((network->qos_data.active == 1) && (active_network == 1)) {
7048 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
7049 schedule_work(&priv->qos_activate);
7050 }
7051
7052 network->qos_data.active = 0;
7053 network->qos_data.supported = 0;
7054 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007055 if ((priv->status & STATUS_ASSOCIATED) &&
7056 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
7057 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
7058 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
7059 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05007060 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05007061 priv->assoc_network->ssid_len) &&
7062 !memcmp(network->ssid,
7063 priv->assoc_network->ssid,
7064 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05007065 queue_work(priv->workqueue,
7066 &priv->merge_networks);
7067 }
James Ketrenosb095c382005-08-24 22:04:42 -05007068 }
7069
7070 return 0;
7071}
7072
7073/*
7074* This function set up the firmware to support QoS. It sends
7075* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
7076*/
7077static int ipw_qos_activate(struct ipw_priv *priv,
7078 struct ieee80211_qos_data *qos_network_data)
7079{
7080 int err;
7081 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
7082 struct ieee80211_qos_parameters *active_one = NULL;
7083 u32 size = sizeof(struct ieee80211_qos_parameters);
7084 u32 burst_duration;
7085 int i;
7086 u8 type;
7087
7088 type = ipw_qos_current_mode(priv);
7089
7090 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
7091 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
7092 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
7093 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
7094
7095 if (qos_network_data == NULL) {
7096 if (type == IEEE_B) {
7097 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
7098 active_one = &def_parameters_CCK;
7099 } else
7100 active_one = &def_parameters_OFDM;
7101
James Ketrenosafbf30a2005-08-25 00:05:33 -05007102 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007103 burst_duration = ipw_qos_get_burst_duration(priv);
7104 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007105 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
7106 (u16) burst_duration;
7107 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05007108 if (type == IEEE_B) {
7109 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
7110 type);
7111 if (priv->qos_data.qos_enable == 0)
7112 active_one = &def_parameters_CCK;
7113 else
7114 active_one = priv->qos_data.def_qos_parm_CCK;
7115 } else {
7116 if (priv->qos_data.qos_enable == 0)
7117 active_one = &def_parameters_OFDM;
7118 else
7119 active_one = priv->qos_data.def_qos_parm_OFDM;
7120 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007121 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007122 } else {
7123 unsigned long flags;
7124 int active;
7125
7126 spin_lock_irqsave(&priv->ieee->lock, flags);
7127 active_one = &(qos_network_data->parameters);
7128 qos_network_data->old_param_count =
7129 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007130 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007131 active = qos_network_data->supported;
7132 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7133
7134 if (active == 0) {
7135 burst_duration = ipw_qos_get_burst_duration(priv);
7136 for (i = 0; i < QOS_QUEUE_NUM; i++)
7137 qos_parameters[QOS_PARAM_SET_ACTIVE].
7138 tx_op_limit[i] = (u16) burst_duration;
7139 }
7140 }
7141
7142 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05007143 err = ipw_send_qos_params_command(priv,
7144 (struct ieee80211_qos_parameters *)
7145 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05007146 if (err)
7147 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
7148
7149 return err;
7150}
7151
7152/*
7153* send IPW_CMD_WME_INFO to the firmware
7154*/
7155static int ipw_qos_set_info_element(struct ipw_priv *priv)
7156{
7157 int ret = 0;
7158 struct ieee80211_qos_information_element qos_info;
7159
7160 if (priv == NULL)
7161 return -1;
7162
7163 qos_info.elementID = QOS_ELEMENT_ID;
7164 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
7165
7166 qos_info.version = QOS_VERSION_1;
7167 qos_info.ac_info = 0;
7168
7169 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7170 qos_info.qui_type = QOS_OUI_TYPE;
7171 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7172
7173 ret = ipw_send_qos_info_command(priv, &qos_info);
7174 if (ret != 0) {
7175 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7176 }
7177 return ret;
7178}
7179
7180/*
7181* Set the QoS parameter with the association request structure
7182*/
7183static int ipw_qos_association(struct ipw_priv *priv,
7184 struct ieee80211_network *network)
7185{
7186 int err = 0;
7187 struct ieee80211_qos_data *qos_data = NULL;
7188 struct ieee80211_qos_data ibss_data = {
7189 .supported = 1,
7190 .active = 1,
7191 };
7192
7193 switch (priv->ieee->iw_mode) {
7194 case IW_MODE_ADHOC:
7195 if (!(network->capability & WLAN_CAPABILITY_IBSS))
7196 BUG();
7197
7198 qos_data = &ibss_data;
7199 break;
7200
7201 case IW_MODE_INFRA:
7202 qos_data = &network->qos_data;
7203 break;
7204
7205 default:
7206 BUG();
7207 break;
7208 }
7209
7210 err = ipw_qos_activate(priv, qos_data);
7211 if (err) {
7212 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7213 return err;
7214 }
7215
7216 if (priv->qos_data.qos_enable && qos_data->supported) {
7217 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7218 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7219 return ipw_qos_set_info_element(priv);
7220 }
7221
7222 return 0;
7223}
7224
7225/*
7226* handling the beaconing responces. if we get different QoS setting
7227* of the network from the the associated setting adjust the QoS
7228* setting
7229*/
7230static int ipw_qos_association_resp(struct ipw_priv *priv,
7231 struct ieee80211_network *network)
7232{
7233 int ret = 0;
7234 unsigned long flags;
7235 u32 size = sizeof(struct ieee80211_qos_parameters);
7236 int set_qos_param = 0;
7237
James Ketrenosafbf30a2005-08-25 00:05:33 -05007238 if ((priv == NULL) || (network == NULL) ||
7239 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007240 return ret;
7241
7242 if (!(priv->status & STATUS_ASSOCIATED))
7243 return ret;
7244
James Ketrenosafbf30a2005-08-25 00:05:33 -05007245 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007246 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007247
7248 spin_lock_irqsave(&priv->ieee->lock, flags);
7249 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007250 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05007251 sizeof(struct ieee80211_qos_data));
7252 priv->assoc_network->qos_data.active = 1;
7253 if ((network->qos_data.old_param_count !=
7254 network->qos_data.param_count)) {
7255 set_qos_param = 1;
7256 network->qos_data.old_param_count =
7257 network->qos_data.param_count;
7258 }
7259
7260 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007261 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7262 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007263 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007264 else
7265 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007266 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007267 priv->assoc_network->qos_data.active = 0;
7268 priv->assoc_network->qos_data.supported = 0;
7269 set_qos_param = 1;
7270 }
7271
7272 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7273
7274 if (set_qos_param == 1)
7275 schedule_work(&priv->qos_activate);
7276
7277 return ret;
7278}
7279
7280static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7281{
7282 u32 ret = 0;
7283
7284 if ((priv == NULL))
7285 return 0;
7286
James Ketrenosafbf30a2005-08-25 00:05:33 -05007287 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007288 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007289 else
James Ketrenosb095c382005-08-24 22:04:42 -05007290 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007291
James Ketrenosb095c382005-08-24 22:04:42 -05007292 return ret;
7293}
7294
7295/*
7296* Initialize the setting of QoS global
7297*/
7298static void ipw_qos_init(struct ipw_priv *priv, int enable,
7299 int burst_enable, u32 burst_duration_CCK,
7300 u32 burst_duration_OFDM)
7301{
7302 priv->qos_data.qos_enable = enable;
7303
7304 if (priv->qos_data.qos_enable) {
7305 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7306 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7307 IPW_DEBUG_QOS("QoS is enabled\n");
7308 } else {
7309 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7310 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7311 IPW_DEBUG_QOS("QoS is not enabled\n");
7312 }
7313
7314 priv->qos_data.burst_enable = burst_enable;
7315
7316 if (burst_enable) {
7317 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7318 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7319 } else {
7320 priv->qos_data.burst_duration_CCK = 0;
7321 priv->qos_data.burst_duration_OFDM = 0;
7322 }
7323}
7324
7325/*
7326* map the packet priority to the right TX Queue
7327*/
7328static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7329{
7330 if (priority > 7 || !priv->qos_data.qos_enable)
7331 priority = 0;
7332
7333 return from_priority_to_tx_queue[priority] - 1;
7334}
7335
7336/*
7337* add QoS parameter to the TX command
7338*/
7339static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7340 u16 priority,
7341 struct tfd_data *tfd, u8 unicast)
7342{
7343 int ret = 0;
7344 int tx_queue_id = 0;
7345 struct ieee80211_qos_data *qos_data = NULL;
7346 int active, supported;
7347 unsigned long flags;
7348
7349 if (!(priv->status & STATUS_ASSOCIATED))
7350 return 0;
7351
7352 qos_data = &priv->assoc_network->qos_data;
7353
7354 spin_lock_irqsave(&priv->ieee->lock, flags);
7355
7356 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7357 if (unicast == 0)
7358 qos_data->active = 0;
7359 else
7360 qos_data->active = qos_data->supported;
7361 }
7362
7363 active = qos_data->active;
7364 supported = qos_data->supported;
7365
7366 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7367
James Ketrenosafbf30a2005-08-25 00:05:33 -05007368 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7369 "unicast %d\n",
7370 priv->qos_data.qos_enable, active, supported, unicast);
James Ketrenosb095c382005-08-24 22:04:42 -05007371 if (active && priv->qos_data.qos_enable) {
7372 ret = from_priority_to_tx_queue[priority];
7373 tx_queue_id = ret - 1;
7374 IPW_DEBUG_QOS("QoS packet priority is %d \n", priority);
7375 if (priority <= 7) {
7376 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7377 tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
7378 tfd->tfd.tfd_26.mchdr.frame_ctl |=
7379 IEEE80211_STYPE_QOS_DATA;
7380
7381 if (priv->qos_data.qos_no_ack_mask &
7382 (1UL << tx_queue_id)) {
7383 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
7384 tfd->tfd.tfd_26.mchdr.qos_ctrl |=
7385 CTRL_QOS_NO_ACK;
7386 }
7387 }
7388 }
7389
7390 return ret;
7391}
7392
7393/*
7394* background support to run QoS activate functionality
7395*/
7396static void ipw_bg_qos_activate(void *data)
7397{
7398 struct ipw_priv *priv = data;
7399
7400 if (priv == NULL)
7401 return;
7402
7403 down(&priv->sem);
7404
7405 if (priv->status & STATUS_ASSOCIATED)
7406 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7407
7408 up(&priv->sem);
7409}
7410
James Ketrenos3b9990c2005-08-19 13:18:55 -05007411static int ipw_handle_probe_response(struct net_device *dev,
7412 struct ieee80211_probe_response *resp,
7413 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007414{
7415 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007416 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7417 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007418
James Ketrenos3b9990c2005-08-19 13:18:55 -05007419 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007420
James Ketrenos3b9990c2005-08-19 13:18:55 -05007421 return 0;
7422}
James Ketrenosb095c382005-08-24 22:04:42 -05007423
James Ketrenos3b9990c2005-08-19 13:18:55 -05007424static int ipw_handle_beacon(struct net_device *dev,
7425 struct ieee80211_beacon *resp,
7426 struct ieee80211_network *network)
7427{
7428 struct ipw_priv *priv = ieee80211_priv(dev);
7429 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7430 (network == priv->assoc_network));
7431
7432 ipw_qos_handle_probe_response(priv, active_network, network);
7433
7434 return 0;
7435}
7436
7437static int ipw_handle_assoc_response(struct net_device *dev,
7438 struct ieee80211_assoc_response *resp,
7439 struct ieee80211_network *network)
7440{
7441 struct ipw_priv *priv = ieee80211_priv(dev);
7442 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007443 return 0;
7444}
7445
7446static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
7447 *qos_param)
7448{
7449 struct host_cmd cmd = {
7450 .cmd = IPW_CMD_QOS_PARAMETERS,
7451 .len = (sizeof(struct ieee80211_qos_parameters) * 3)
7452 };
7453
James Ketrenosafbf30a2005-08-25 00:05:33 -05007454 memcpy(cmd.param, qos_param, sizeof(*qos_param) * 3);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007455 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007456}
7457
7458static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
7459 *qos_param)
7460{
7461 struct host_cmd cmd = {
7462 .cmd = IPW_CMD_WME_INFO,
7463 .len = sizeof(*qos_param)
7464 };
7465
James Ketrenosafbf30a2005-08-25 00:05:33 -05007466 memcpy(cmd.param, qos_param, sizeof(*qos_param));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007467 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007468}
7469
7470#endif /* CONFIG_IPW_QOS */
7471
James Ketrenos43f66a62005-03-25 12:31:53 -06007472static int ipw_associate_network(struct ipw_priv *priv,
7473 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007474 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007475{
7476 int err;
7477
7478 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007479 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007480
7481 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007482 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007483 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007484 memcpy(priv->essid, network->ssid, priv->essid_len);
7485 }
7486
7487 network->last_associate = jiffies;
7488
7489 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7490 priv->assoc_request.channel = network->channel;
7491 if ((priv->capability & CAP_PRIVACY_ON) &&
7492 (priv->capability & CAP_SHARED_KEY)) {
7493 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007494 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7495
7496 if ((priv->capability & CAP_PRIVACY_ON) &&
7497 (priv->ieee->sec.level == SEC_LEVEL_1) &&
7498 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
7499 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenos43f66a62005-03-25 12:31:53 -06007500 } else {
7501 priv->assoc_request.auth_type = AUTH_OPEN;
7502 priv->assoc_request.auth_key = 0;
7503 }
7504
James Ketrenosa613bff2005-08-24 21:43:11 -05007505 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007506 priv->assoc_request.policy_support = 0x02; /* RSN active */
7507 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7508 priv->ieee->wpa_ie_len);
7509 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05007510
Jeff Garzikbf794512005-07-31 13:07:26 -04007511 /*
7512 * It is valid for our ieee device to support multiple modes, but
7513 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007514 * just one mode.
7515 */
7516 if (network->mode & priv->ieee->mode & IEEE_A)
7517 priv->assoc_request.ieee_mode = IPW_A_MODE;
7518 else if (network->mode & priv->ieee->mode & IEEE_G)
7519 priv->assoc_request.ieee_mode = IPW_G_MODE;
7520 else if (network->mode & priv->ieee->mode & IEEE_B)
7521 priv->assoc_request.ieee_mode = IPW_B_MODE;
7522
James Ketrenosea2b26e2005-08-24 21:25:16 -05007523 priv->assoc_request.capability = network->capability;
7524 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7525 && !(priv->config & CFG_PREAMBLE_LONG)) {
7526 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7527 } else {
7528 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7529
7530 /* Clear the short preamble if we won't be supporting it */
7531 priv->assoc_request.capability &=
7532 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7533 }
7534
James Ketrenosafbf30a2005-08-25 00:05:33 -05007535 /* Clear capability bits that aren't used in Ad Hoc */
7536 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7537 priv->assoc_request.capability &=
7538 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7539
James Ketrenos43f66a62005-03-25 12:31:53 -06007540 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007541 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007542 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007543 escape_essid(priv->essid, priv->essid_len),
7544 network->channel,
7545 ipw_modes[priv->assoc_request.ieee_mode],
7546 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007547 (priv->assoc_request.preamble_length ==
7548 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7549 network->capability &
7550 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007551 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007552 priv->capability & CAP_PRIVACY_ON ?
7553 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007554 "(open)") : "",
7555 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007556 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007557 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007558 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007559
7560 priv->assoc_request.beacon_interval = network->beacon_interval;
7561 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007562 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007563 priv->assoc_request.assoc_type = HC_IBSS_START;
7564 priv->assoc_request.assoc_tsf_msw = 0;
7565 priv->assoc_request.assoc_tsf_lsw = 0;
7566 } else {
7567 if (unlikely(roaming))
7568 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7569 else
7570 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7571 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7572 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7573 }
7574
James Ketrenosafbf30a2005-08-25 00:05:33 -05007575 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007576
7577 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7578 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7579 priv->assoc_request.atim_window = network->atim_window;
7580 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007581 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007582 priv->assoc_request.atim_window = 0;
7583 }
7584
James Ketrenos43f66a62005-03-25 12:31:53 -06007585 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007586
James Ketrenos43f66a62005-03-25 12:31:53 -06007587 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7588 if (err) {
7589 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7590 return err;
7591 }
7592
7593 rates->ieee_mode = priv->assoc_request.ieee_mode;
7594 rates->purpose = IPW_RATE_CONNECT;
7595 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007596
James Ketrenos43f66a62005-03-25 12:31:53 -06007597 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7598 priv->sys_config.dot11g_auto_detection = 1;
7599 else
7600 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007601
7602 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7603 priv->sys_config.answer_broadcast_ssid_probe = 1;
7604 else
7605 priv->sys_config.answer_broadcast_ssid_probe = 0;
7606
James Ketrenos43f66a62005-03-25 12:31:53 -06007607 err = ipw_send_system_config(priv, &priv->sys_config);
7608 if (err) {
7609 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7610 return err;
7611 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007612
James Ketrenos43f66a62005-03-25 12:31:53 -06007613 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007614 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007615 if (err) {
7616 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7617 return err;
7618 }
7619
7620 /*
7621 * If preemption is enabled, it is possible for the association
7622 * to complete before we return from ipw_send_associate. Therefore
7623 * we have to be sure and update our priviate data first.
7624 */
7625 priv->channel = network->channel;
7626 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007627 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007628 priv->status &= ~STATUS_SECURITY_UPDATED;
7629
7630 priv->assoc_network = network;
7631
James Ketrenosb095c382005-08-24 22:04:42 -05007632#ifdef CONFIG_IPW_QOS
7633 ipw_qos_association(priv, network);
7634#endif
7635
James Ketrenos43f66a62005-03-25 12:31:53 -06007636 err = ipw_send_associate(priv, &priv->assoc_request);
7637 if (err) {
7638 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7639 return err;
7640 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007641
7642 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007643 escape_essid(priv->essid, priv->essid_len),
7644 MAC_ARG(priv->bssid));
7645
7646 return 0;
7647}
7648
7649static void ipw_roam(void *data)
7650{
7651 struct ipw_priv *priv = data;
7652 struct ieee80211_network *network = NULL;
7653 struct ipw_network_match match = {
7654 .network = priv->assoc_network
7655 };
7656
7657 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007658 *
7659 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007660 * setting the status ROAM bit and requesting a scan.
7661 * 2. When the scan completes, it schedules the ROAM work
7662 * 3. The ROAM work looks at all of the known networks for one that
7663 * is a better network than the currently associated. If none
7664 * found, the ROAM process is over (ROAM bit cleared)
7665 * 4. If a better network is found, a disassociation request is
7666 * sent.
7667 * 5. When the disassociation completes, the roam work is again
7668 * scheduled. The second time through, the driver is no longer
7669 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007670 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007671 * 6. At this point ,the roaming process is complete and the ROAM
7672 * status bit is cleared.
7673 */
7674
7675 /* If we are no longer associated, and the roaming bit is no longer
7676 * set, then we are not actively roaming, so just return */
7677 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7678 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007679
James Ketrenos43f66a62005-03-25 12:31:53 -06007680 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007681 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007682 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007683 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007684 u8 rssi = priv->assoc_network->stats.rssi;
7685 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007686 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007687 list_for_each_entry(network, &priv->ieee->network_list, list) {
7688 if (network != priv->assoc_network)
7689 ipw_best_network(priv, &match, network, 1);
7690 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007691 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007692 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007693
James Ketrenos43f66a62005-03-25 12:31:53 -06007694 if (match.network == priv->assoc_network) {
7695 IPW_DEBUG_ASSOC("No better APs in this network to "
7696 "roam to.\n");
7697 priv->status &= ~STATUS_ROAMING;
7698 ipw_debug_config(priv);
7699 return;
7700 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007701
James Ketrenos43f66a62005-03-25 12:31:53 -06007702 ipw_send_disassociate(priv, 1);
7703 priv->assoc_network = match.network;
7704
7705 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007706 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007707
7708 /* Second pass through ROAM process -- request association */
7709 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7710 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7711 priv->status &= ~STATUS_ROAMING;
7712}
7713
James Ketrenosc848d0a2005-08-24 21:56:24 -05007714static void ipw_bg_roam(void *data)
7715{
7716 struct ipw_priv *priv = data;
7717 down(&priv->sem);
7718 ipw_roam(data);
7719 up(&priv->sem);
7720}
7721
7722static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007723{
7724 struct ipw_priv *priv = data;
7725
7726 struct ieee80211_network *network = NULL;
7727 struct ipw_network_match match = {
7728 .network = NULL
7729 };
7730 struct ipw_supported_rates *rates;
7731 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007732 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007733
James Ketrenosb095c382005-08-24 22:04:42 -05007734 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7735 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7736 return 0;
7737 }
7738
James Ketrenosc848d0a2005-08-24 21:56:24 -05007739 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007740 IPW_DEBUG_ASSOC("Not attempting association (already in "
7741 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007742 return 0;
7743 }
7744
7745 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007746 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7747 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007748 return 0;
7749 }
7750
James Ketrenos43f66a62005-03-25 12:31:53 -06007751 if (!(priv->config & CFG_ASSOCIATE) &&
7752 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007753 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007754 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007755 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007756 }
7757
James Ketrenosa613bff2005-08-24 21:43:11 -05007758 /* Protect our use of the network_list */
7759 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007760 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007761 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007762
7763 network = match.network;
7764 rates = &match.rates;
7765
7766 if (network == NULL &&
7767 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7768 priv->config & CFG_ADHOC_CREATE &&
7769 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007770 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007771 !list_empty(&priv->ieee->network_free_list)) {
7772 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007773 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007774 ipw_adhoc_create(priv, network);
7775 rates = &priv->rates;
7776 list_del(element);
7777 list_add_tail(&network->list, &priv->ieee->network_list);
7778 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007779 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007780
James Ketrenos43f66a62005-03-25 12:31:53 -06007781 /* If we reached the end of the list, then we don't have any valid
7782 * matching APs */
7783 if (!network) {
7784 ipw_debug_config(priv);
7785
James Ketrenosb095c382005-08-24 22:04:42 -05007786 if (!(priv->status & STATUS_SCANNING)) {
7787 if (!(priv->config & CFG_SPEED_SCAN))
7788 queue_delayed_work(priv->workqueue,
7789 &priv->request_scan,
7790 SCAN_INTERVAL);
7791 else
7792 queue_work(priv->workqueue,
7793 &priv->request_scan);
7794 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007795
James Ketrenosc848d0a2005-08-24 21:56:24 -05007796 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007797 }
7798
7799 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007800
7801 return 1;
7802}
7803
7804static void ipw_bg_associate(void *data)
7805{
7806 struct ipw_priv *priv = data;
7807 down(&priv->sem);
7808 ipw_associate(data);
7809 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06007810}
Jeff Garzikbf794512005-07-31 13:07:26 -04007811
James Ketrenosb095c382005-08-24 22:04:42 -05007812static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7813 struct sk_buff *skb)
7814{
7815 struct ieee80211_hdr *hdr;
7816 u16 fc;
7817
7818 hdr = (struct ieee80211_hdr *)skb->data;
7819 fc = le16_to_cpu(hdr->frame_ctl);
7820 if (!(fc & IEEE80211_FCTL_PROTECTED))
7821 return;
7822
7823 fc &= ~IEEE80211_FCTL_PROTECTED;
7824 hdr->frame_ctl = cpu_to_le16(fc);
7825 switch (priv->ieee->sec.level) {
7826 case SEC_LEVEL_3:
7827 /* Remove CCMP HDR */
7828 memmove(skb->data + IEEE80211_3ADDR_LEN,
7829 skb->data + IEEE80211_3ADDR_LEN + 8,
7830 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yia2d73e62005-07-13 12:24:51 -05007831 if (fc & IEEE80211_FCTL_MOREFRAGS)
7832 skb_trim(skb, skb->len - 16); /* 2*MIC */
7833 else
7834 skb_trim(skb, skb->len - 8); /* MIC */
James Ketrenosb095c382005-08-24 22:04:42 -05007835 break;
7836 case SEC_LEVEL_2:
7837 break;
7838 case SEC_LEVEL_1:
7839 /* Remove IV */
7840 memmove(skb->data + IEEE80211_3ADDR_LEN,
7841 skb->data + IEEE80211_3ADDR_LEN + 4,
7842 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yia2d73e62005-07-13 12:24:51 -05007843 if (fc & IEEE80211_FCTL_MOREFRAGS)
7844 skb_trim(skb, skb->len - 8); /* 2*ICV */
7845 else
7846 skb_trim(skb, skb->len - 4); /* ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007847 break;
7848 case SEC_LEVEL_0:
7849 break;
7850 default:
7851 printk(KERN_ERR "Unknow security level %d\n",
7852 priv->ieee->sec.level);
7853 break;
7854 }
7855}
7856
7857static void ipw_handle_data_packet(struct ipw_priv *priv,
7858 struct ipw_rx_mem_buffer *rxb,
7859 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007860{
7861 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7862
7863 /* We received data from the HW, so stop the watchdog */
7864 priv->net_dev->trans_start = jiffies;
7865
Jeff Garzikbf794512005-07-31 13:07:26 -04007866 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007867 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007868 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007869 skb_tailroom(rxb->skb))) {
7870 priv->ieee->stats.rx_errors++;
7871 priv->wstats.discard.misc++;
7872 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7873 return;
7874 } else if (unlikely(!netif_running(priv->net_dev))) {
7875 priv->ieee->stats.rx_dropped++;
7876 priv->wstats.discard.misc++;
7877 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7878 return;
7879 }
7880
7881 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007882 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007883
7884 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007885 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007886
7887 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7888
James Ketrenosb095c382005-08-24 22:04:42 -05007889 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
7890 if (!priv->ieee->host_decrypt)
7891 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7892
Jeff Garzikbf794512005-07-31 13:07:26 -04007893 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007894 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007895 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007896 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007897 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007898 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007899}
7900
James Ketrenosea2b26e2005-08-24 21:25:16 -05007901static inline int is_network_packet(struct ipw_priv *priv,
7902 struct ieee80211_hdr_4addr *header)
7903{
7904 /* Filter incoming packets to determine if they are targetted toward
7905 * this network, discarding packets coming from ourselves */
7906 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05007907 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007908 /* packets from our adapter are dropped (echo) */
7909 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
7910 return 0;
7911
James Ketrenosafbf30a2005-08-25 00:05:33 -05007912 /* multicast packets to our IBSS go through */
7913 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05007914 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007915
7916 /* packets to our adapter go through */
7917 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7918 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007919
7920 case IW_MODE_INFRA: /* Header: Dest. | AP{BSSID} | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007921 /* packets from our adapter are dropped (echo) */
7922 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
7923 return 0;
7924
James Ketrenosa613bff2005-08-24 21:43:11 -05007925 /* {broad,multi}cast packets to our IBSS go through */
James Ketrenosafbf30a2005-08-25 00:05:33 -05007926 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05007927 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
7928
7929 /* packets to our adapter go through */
7930 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7931 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007932 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007933
James Ketrenosea2b26e2005-08-24 21:25:16 -05007934 return 1;
7935}
7936
James Ketrenosafbf30a2005-08-25 00:05:33 -05007937#define IPW_PACKET_RETRY_TIME HZ
7938
7939static inline int is_duplicate_packet(struct ipw_priv *priv,
7940 struct ieee80211_hdr_4addr *header)
7941{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007942 u16 sc = le16_to_cpu(header->seq_ctl);
7943 u16 seq = WLAN_GET_SEQ_SEQ(sc);
7944 u16 frag = WLAN_GET_SEQ_FRAG(sc);
7945 u16 *last_seq, *last_frag;
7946 unsigned long *last_time;
7947
7948 switch (priv->ieee->iw_mode) {
7949 case IW_MODE_ADHOC:
7950 {
7951 struct list_head *p;
7952 struct ipw_ibss_seq *entry = NULL;
7953 u8 *mac = header->addr2;
7954 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
7955
7956 __list_for_each(p, &priv->ibss_mac_hash[index]) {
7957 entry =
7958 list_entry(p, struct ipw_ibss_seq, list);
7959 if (!memcmp(entry->mac, mac, ETH_ALEN))
7960 break;
7961 }
7962 if (p == &priv->ibss_mac_hash[index]) {
7963 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
7964 if (!entry) {
7965 IPW_ERROR
7966 ("Cannot malloc new mac entry\n");
7967 return 0;
7968 }
7969 memcpy(entry->mac, mac, ETH_ALEN);
7970 entry->seq_num = seq;
7971 entry->frag_num = frag;
7972 entry->packet_time = jiffies;
7973 list_add(&entry->list,
7974 &priv->ibss_mac_hash[index]);
7975 return 0;
7976 }
7977 last_seq = &entry->seq_num;
7978 last_frag = &entry->frag_num;
7979 last_time = &entry->packet_time;
7980 break;
7981 }
7982 case IW_MODE_INFRA:
7983 last_seq = &priv->last_seq_num;
7984 last_frag = &priv->last_frag_num;
7985 last_time = &priv->last_packet_time;
7986 break;
7987 default:
7988 return 0;
7989 }
7990 if ((*last_seq == seq) &&
7991 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
7992 if (*last_frag == frag)
7993 goto drop;
7994 if (*last_frag + 1 != frag)
7995 /* out-of-order fragment */
7996 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007997 } else
7998 *last_seq = seq;
7999
Zhu Yif57ce7c2005-07-13 12:22:15 -05008000 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008001 *last_time = jiffies;
8002 return 0;
8003
8004 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008005 /* Comment this line now since we observed the card receives
8006 * duplicate packets but the FCTL_RETRY bit is not set in the
8007 * IBSS mode with fragmentation enabled.
8008 BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008009 return 1;
8010}
8011
James Ketrenosb095c382005-08-24 22:04:42 -05008012static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8013 struct ipw_rx_mem_buffer *rxb,
8014 struct ieee80211_rx_stats *stats)
8015{
8016 struct sk_buff *skb = rxb->skb;
8017 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
8018 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
8019 (skb->data + IPW_RX_FRAME_SIZE);
8020
8021 ieee80211_rx_mgt(priv->ieee, header, stats);
8022
8023 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8024 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8025 IEEE80211_STYPE_PROBE_RESP) ||
8026 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8027 IEEE80211_STYPE_BEACON))) {
8028 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
8029 ipw_add_station(priv, header->addr2);
8030 }
8031
8032 if (priv->config & CFG_NET_STATS) {
8033 IPW_DEBUG_HC("sending stat packet\n");
8034
8035 /* Set the size of the skb to the size of the full
8036 * ipw header and 802.11 frame */
8037 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8038 IPW_RX_FRAME_SIZE);
8039
8040 /* Advance past the ipw packet header to the 802.11 frame */
8041 skb_pull(skb, IPW_RX_FRAME_SIZE);
8042
8043 /* Push the ieee80211_rx_stats before the 802.11 frame */
8044 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8045
8046 skb->dev = priv->ieee->dev;
8047
8048 /* Point raw at the ieee80211_stats */
8049 skb->mac.raw = skb->data;
8050
8051 skb->pkt_type = PACKET_OTHERHOST;
8052 skb->protocol = __constant_htons(ETH_P_80211_STATS);
8053 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8054 netif_rx(skb);
8055 rxb->skb = NULL;
8056 }
8057}
8058
James Ketrenos43f66a62005-03-25 12:31:53 -06008059/*
8060 * Main entry function for recieving a packet with 80211 headers. This
8061 * should be called when ever the FW has notified us that there is a new
8062 * skb in the recieve queue.
8063 */
8064static void ipw_rx(struct ipw_priv *priv)
8065{
8066 struct ipw_rx_mem_buffer *rxb;
8067 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05008068 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008069 u32 r, w, i;
8070 u8 network_packet;
8071
James Ketrenosb095c382005-08-24 22:04:42 -05008072 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8073 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06008074 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
8075
8076 while (i != r) {
8077 rxb = priv->rxq->queue[i];
8078#ifdef CONFIG_IPW_DEBUG
8079 if (unlikely(rxb == NULL)) {
8080 printk(KERN_CRIT "Queue not allocated!\n");
8081 break;
8082 }
8083#endif
8084 priv->rxq->queue[i] = NULL;
8085
8086 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008087 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008088 PCI_DMA_FROMDEVICE);
8089
8090 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8091 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8092 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008093 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008094
8095 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008096 case RX_FRAME_TYPE: /* 802.11 frame */ {
8097 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05008098 .rssi =
8099 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008100 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008101 .signal =
8102 le16_to_cpu(pkt->u.frame.signal),
8103 .noise =
8104 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008105 .rate = pkt->u.frame.rate,
8106 .mac_time = jiffies,
8107 .received_channel =
8108 pkt->u.frame.received_channel,
8109 .freq =
8110 (pkt->u.frame.
8111 control & (1 << 0)) ?
8112 IEEE80211_24GHZ_BAND :
8113 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008114 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008115 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008116
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008117 if (stats.rssi != 0)
8118 stats.mask |= IEEE80211_STATMASK_RSSI;
8119 if (stats.signal != 0)
8120 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008121 if (stats.noise != 0)
8122 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008123 if (stats.rate != 0)
8124 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008125
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008126 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008127
James Ketrenosb095c382005-08-24 22:04:42 -05008128#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008129 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
8130 ipw_handle_data_packet(priv, rxb,
8131 &stats);
8132 break;
8133 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008134#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008135
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008136 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05008137 (struct ieee80211_hdr_4addr *)(rxb->skb->
8138 data +
8139 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008140 /* TODO: Check Ad-Hoc dest/source and make sure
8141 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008142 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008143 * frame control of the packet and disregard
8144 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008145
James Ketrenosea2b26e2005-08-24 21:25:16 -05008146 network_packet =
8147 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008148 if (network_packet && priv->assoc_network) {
8149 priv->assoc_network->stats.rssi =
8150 stats.rssi;
8151 average_add(&priv->average_rssi,
8152 stats.rssi);
8153 priv->last_rx_rssi = stats.rssi;
8154 }
8155
8156 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008157 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008158
James Ketrenosa613bff2005-08-24 21:43:11 -05008159 if (le16_to_cpu(pkt->u.frame.length) <
8160 frame_hdr_len(header)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008161 IPW_DEBUG_DROP
8162 ("Received packet is too small. "
8163 "Dropping.\n");
8164 priv->ieee->stats.rx_errors++;
8165 priv->wstats.discard.misc++;
8166 break;
8167 }
8168
James Ketrenosa613bff2005-08-24 21:43:11 -05008169 switch (WLAN_FC_GET_TYPE
8170 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008171
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008172 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008173 ipw_handle_mgmt_packet(priv, rxb,
8174 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008175 break;
8176
8177 case IEEE80211_FTYPE_CTL:
8178 break;
8179
8180 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008181 if (unlikely(!network_packet ||
8182 is_duplicate_packet(priv,
8183 header)))
8184 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008185 IPW_DEBUG_DROP("Dropping: "
8186 MAC_FMT ", "
8187 MAC_FMT ", "
8188 MAC_FMT "\n",
8189 MAC_ARG(header->
8190 addr1),
8191 MAC_ARG(header->
8192 addr2),
8193 MAC_ARG(header->
8194 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05008195 break;
8196 }
8197
8198 ipw_handle_data_packet(priv, rxb,
8199 &stats);
8200
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008201 break;
8202 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008203 break;
8204 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008205
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008206 case RX_HOST_NOTIFICATION_TYPE:{
8207 IPW_DEBUG_RX
8208 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008209 pkt->u.notification.subtype,
8210 pkt->u.notification.flags,
8211 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008212 ipw_rx_notification(priv, &pkt->u.notification);
8213 break;
8214 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008215
8216 default:
8217 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8218 pkt->header.message_type);
8219 break;
8220 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008221
8222 /* For now we just don't re-use anything. We can tweak this
8223 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008224 * fail to Rx correctly */
8225 if (rxb->skb != NULL) {
8226 dev_kfree_skb_any(rxb->skb);
8227 rxb->skb = NULL;
8228 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008229
James Ketrenos43f66a62005-03-25 12:31:53 -06008230 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008231 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008232 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008233
James Ketrenos43f66a62005-03-25 12:31:53 -06008234 i = (i + 1) % RX_QUEUE_SIZE;
8235 }
8236
8237 /* Backtrack one entry */
8238 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
8239
8240 ipw_rx_queue_restock(priv);
8241}
8242
James Ketrenosafbf30a2005-08-25 00:05:33 -05008243#define DEFAULT_RTS_THRESHOLD 2304U
8244#define MIN_RTS_THRESHOLD 1U
8245#define MAX_RTS_THRESHOLD 2304U
8246#define DEFAULT_BEACON_INTERVAL 100U
8247#define DEFAULT_SHORT_RETRY_LIMIT 7U
8248#define DEFAULT_LONG_RETRY_LIMIT 4U
8249
8250static int ipw_sw_reset(struct ipw_priv *priv, int init)
8251{
8252 int band, modulation;
8253 int old_mode = priv->ieee->iw_mode;
8254
8255 /* Initialize module parameter values here */
8256 priv->config = 0;
8257
8258 /* We default to disabling the LED code as right now it causes
8259 * too many systems to lock up... */
8260 if (!led)
8261 priv->config |= CFG_NO_LED;
8262
8263 if (associate)
8264 priv->config |= CFG_ASSOCIATE;
8265 else
8266 IPW_DEBUG_INFO("Auto associate disabled.\n");
8267
8268 if (auto_create)
8269 priv->config |= CFG_ADHOC_CREATE;
8270 else
8271 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8272
8273 if (disable) {
8274 priv->status |= STATUS_RF_KILL_SW;
8275 IPW_DEBUG_INFO("Radio disabled.\n");
8276 }
8277
8278 if (channel != 0) {
8279 priv->config |= CFG_STATIC_CHANNEL;
8280 priv->channel = channel;
8281 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
8282 /* TODO: Validate that provided channel is in range */
8283 }
8284#ifdef CONFIG_IPW_QOS
8285 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8286 burst_duration_CCK, burst_duration_OFDM);
8287#endif /* CONFIG_IPW_QOS */
8288
8289 switch (mode) {
8290 case 1:
8291 priv->ieee->iw_mode = IW_MODE_ADHOC;
8292 priv->net_dev->type = ARPHRD_ETHER;
8293
8294 break;
8295#ifdef CONFIG_IPW2200_MONITOR
8296 case 2:
8297 priv->ieee->iw_mode = IW_MODE_MONITOR;
8298 priv->net_dev->type = ARPHRD_IEEE80211;
8299 break;
8300#endif
8301 default:
8302 case 0:
8303 priv->net_dev->type = ARPHRD_ETHER;
8304 priv->ieee->iw_mode = IW_MODE_INFRA;
8305 break;
8306 }
8307
8308 if (hwcrypto) {
8309 priv->ieee->host_encrypt = 0;
8310 priv->ieee->host_encrypt_msdu = 0;
8311 priv->ieee->host_decrypt = 0;
8312 }
8313 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
8314
Zhu Yie402c932005-08-05 17:20:40 +08008315 /* IPW2200/2915 is abled to do hardware fragmentation. */
8316 priv->ieee->host_open_frag = 0;
8317
James Ketrenosafbf30a2005-08-25 00:05:33 -05008318 if ((priv->pci_dev->device == 0x4223) ||
8319 (priv->pci_dev->device == 0x4224)) {
8320 if (init)
8321 printk(KERN_INFO DRV_NAME
8322 ": Detected Intel PRO/Wireless 2915ABG Network "
8323 "Connection\n");
8324 priv->ieee->abg_true = 1;
8325 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8326 modulation = IEEE80211_OFDM_MODULATION |
8327 IEEE80211_CCK_MODULATION;
8328 priv->adapter = IPW_2915ABG;
8329 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
8330 } else {
8331 if (init)
8332 printk(KERN_INFO DRV_NAME
8333 ": Detected Intel PRO/Wireless 2200BG Network "
8334 "Connection\n");
8335
8336 priv->ieee->abg_true = 0;
8337 band = IEEE80211_24GHZ_BAND;
8338 modulation = IEEE80211_OFDM_MODULATION |
8339 IEEE80211_CCK_MODULATION;
8340 priv->adapter = IPW_2200BG;
8341 priv->ieee->mode = IEEE_G | IEEE_B;
8342 }
8343
8344 priv->ieee->freq_band = band;
8345 priv->ieee->modulation = modulation;
8346
8347 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
8348
8349 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8350 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
8351
8352 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8353 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8354 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
8355
8356 /* If power management is turned on, default to AC mode */
8357 priv->power_mode = IPW_POWER_AC;
8358 priv->tx_power = IPW_TX_POWER_DEFAULT;
8359
Zhu Yi0ece35b2005-08-05 17:26:51 +08008360 return old_mode == priv->ieee->iw_mode;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008361}
8362
James Ketrenos43f66a62005-03-25 12:31:53 -06008363/*
8364 * This file defines the Wireless Extension handlers. It does not
8365 * define any methods of hardware manipulation and relies on the
8366 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008367 *
8368 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008369 * function used to poll the hardware vs. making unecessary calls.
8370 *
8371 */
8372
Jeff Garzikbf794512005-07-31 13:07:26 -04008373static int ipw_wx_get_name(struct net_device *dev,
8374 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008375 union iwreq_data *wrqu, char *extra)
8376{
8377 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008378 down(&priv->sem);
8379 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008380 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008381 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008382 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008383 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008384 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8385 ipw_modes[priv->assoc_request.ieee_mode]);
8386 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008387 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008388 return 0;
8389}
8390
8391static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8392{
8393 if (channel == 0) {
8394 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8395 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008396 IPW_DEBUG_ASSOC("Attempting to associate with new "
8397 "parameters.\n");
8398 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008399 return 0;
8400 }
8401
8402 priv->config |= CFG_STATIC_CHANNEL;
8403
8404 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008405 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8406 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008407 return 0;
8408 }
8409
8410 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8411 priv->channel = channel;
8412
James Ketrenosb095c382005-08-24 22:04:42 -05008413#ifdef CONFIG_IPW2200_MONITOR
8414 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008415 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008416 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008417 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008418 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008419 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008420 }
8421
8422 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8423 udelay(10);
8424
8425 if (priv->status & STATUS_SCANNING)
8426 IPW_DEBUG_SCAN("Still scanning...\n");
8427 else
8428 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8429 1000 - i);
8430
8431 return 0;
8432 }
8433#endif /* CONFIG_IPW2200_MONITOR */
8434
James Ketrenosc848d0a2005-08-24 21:56:24 -05008435 /* Network configuration changed -- force [re]association */
8436 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8437 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008438 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008439
8440 return 0;
8441}
8442
Jeff Garzikbf794512005-07-31 13:07:26 -04008443static int ipw_wx_set_freq(struct net_device *dev,
8444 struct iw_request_info *info,
8445 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008446{
8447 struct ipw_priv *priv = ieee80211_priv(dev);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008448 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008449 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008450 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008451 u8 channel, flags;
8452 int band;
James Ketrenosb095c382005-08-24 22:04:42 -05008453
8454 if (fwrq->m == 0) {
8455 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
8456 down(&priv->sem);
8457 ret = ipw_set_channel(priv, 0);
8458 up(&priv->sem);
8459 return ret;
8460 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008461 /* if setting by freq convert to channel */
8462 if (fwrq->e == 1) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05008463 channel = ipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008464 if (channel == 0)
8465 return -EINVAL;
8466 } else
8467 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008468
Liu Hong1fe0adb2005-08-19 09:33:10 -05008469 if (!(band = ipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008470 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008471
Liu Hong1fe0adb2005-08-19 09:33:10 -05008472 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
8473 i = ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008474 if (i == -1)
8475 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008476
8477 flags = (band == IEEE80211_24GHZ_BAND) ?
8478 geo->bg[i].flags : geo->a[i].flags;
8479 if (flags & IEEE80211_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008480 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8481 return -EINVAL;
8482 }
8483 }
8484
James Ketrenos43f66a62005-03-25 12:31:53 -06008485 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008486 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008487 ret = ipw_set_channel(priv, channel);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008488 up(&priv->sem);
8489 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008490}
8491
Jeff Garzikbf794512005-07-31 13:07:26 -04008492static int ipw_wx_get_freq(struct net_device *dev,
8493 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008494 union iwreq_data *wrqu, char *extra)
8495{
8496 struct ipw_priv *priv = ieee80211_priv(dev);
8497
8498 wrqu->freq.e = 0;
8499
8500 /* If we are associated, trying to associate, or have a statically
8501 * configured CHANNEL then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008502 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008503 if (priv->config & CFG_STATIC_CHANNEL ||
8504 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8505 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008506 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008507 wrqu->freq.m = 0;
8508
James Ketrenosc848d0a2005-08-24 21:56:24 -05008509 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008510 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8511 return 0;
8512}
8513
Jeff Garzikbf794512005-07-31 13:07:26 -04008514static int ipw_wx_set_mode(struct net_device *dev,
8515 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008516 union iwreq_data *wrqu, char *extra)
8517{
8518 struct ipw_priv *priv = ieee80211_priv(dev);
8519 int err = 0;
8520
8521 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06008522
8523 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008524#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008525 case IW_MODE_MONITOR:
8526#endif
8527 case IW_MODE_ADHOC:
8528 case IW_MODE_INFRA:
8529 break;
8530 case IW_MODE_AUTO:
8531 wrqu->mode = IW_MODE_INFRA;
8532 break;
8533 default:
8534 return -EINVAL;
8535 }
James Ketrenosb095c382005-08-24 22:04:42 -05008536 if (wrqu->mode == priv->ieee->iw_mode)
8537 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008538
James Ketrenosb095c382005-08-24 22:04:42 -05008539 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008540
8541 ipw_sw_reset(priv, 0);
8542
James Ketrenosb095c382005-08-24 22:04:42 -05008543#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008544 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008545 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008546
8547 if (wrqu->mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008548 priv->net_dev->type = ARPHRD_IEEE80211;
James Ketrenosb095c382005-08-24 22:04:42 -05008549#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008550
Jeff Garzikbf794512005-07-31 13:07:26 -04008551 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008552 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008553 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008554
8555 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008556
James Ketrenosc848d0a2005-08-24 21:56:24 -05008557 queue_work(priv->workqueue, &priv->adapter_restart);
8558 up(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008559 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008560}
8561
Jeff Garzikbf794512005-07-31 13:07:26 -04008562static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008563 struct iw_request_info *info,
8564 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008565{
8566 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008567 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008568 wrqu->mode = priv->ieee->iw_mode;
8569 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008570 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008571 return 0;
8572}
8573
James Ketrenos43f66a62005-03-25 12:31:53 -06008574/* Values are in microsecond */
8575static const s32 timeout_duration[] = {
8576 350000,
8577 250000,
8578 75000,
8579 37000,
8580 25000,
8581};
8582
8583static const s32 period_duration[] = {
8584 400000,
8585 700000,
8586 1000000,
8587 1000000,
8588 1000000
8589};
8590
Jeff Garzikbf794512005-07-31 13:07:26 -04008591static int ipw_wx_get_range(struct net_device *dev,
8592 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008593 union iwreq_data *wrqu, char *extra)
8594{
8595 struct ipw_priv *priv = ieee80211_priv(dev);
8596 struct iw_range *range = (struct iw_range *)extra;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008597 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008598 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008599
8600 wrqu->data.length = sizeof(*range);
8601 memset(range, 0, sizeof(*range));
8602
8603 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008604 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008605
8606 range->max_qual.qual = 100;
8607 /* TODO: Find real max RSSI and stick here */
8608 range->max_qual.level = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008609 range->max_qual.noise = priv->ieee->worst_rssi + 0x100;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008610 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008611
8612 range->avg_qual.qual = 70;
8613 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008614 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008615 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008616 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008617 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008618 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008619
Jeff Garzikbf794512005-07-31 13:07:26 -04008620 for (i = 0; i < range->num_bitrates; i++)
8621 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008622 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008623
James Ketrenos43f66a62005-03-25 12:31:53 -06008624 range->max_rts = DEFAULT_RTS_THRESHOLD;
8625 range->min_frag = MIN_FRAG_THRESHOLD;
8626 range->max_frag = MAX_FRAG_THRESHOLD;
8627
8628 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008629 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008630 range->num_encoding_sizes = 2;
8631 range->max_encoding_tokens = WEP_KEYS;
8632
8633 /* Set the Wireless Extension versions */
8634 range->we_version_compiled = WIRELESS_EXT;
8635 range->we_version_source = 16;
8636
James Ketrenosb095c382005-08-24 22:04:42 -05008637 i = 0;
8638 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
8639 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES;
8640 i++, j++) {
8641 range->freq[i].i = geo->bg[j].channel;
8642 range->freq[i].m = geo->bg[j].freq * 100000;
8643 range->freq[i].e = 1;
8644 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008645 }
James Ketrenosb095c382005-08-24 22:04:42 -05008646
8647 if (priv->ieee->mode & IEEE_A) {
8648 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES;
8649 i++, j++) {
8650 range->freq[i].i = geo->a[j].channel;
8651 range->freq[i].m = geo->a[j].freq * 100000;
8652 range->freq[i].e = 1;
8653 }
8654 }
8655
8656 range->num_channels = i;
8657 range->num_frequency = i;
8658
James Ketrenosc848d0a2005-08-24 21:56:24 -05008659 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008660 IPW_DEBUG_WX("GET Range\n");
8661 return 0;
8662}
8663
Jeff Garzikbf794512005-07-31 13:07:26 -04008664static int ipw_wx_set_wap(struct net_device *dev,
8665 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008666 union iwreq_data *wrqu, char *extra)
8667{
8668 struct ipw_priv *priv = ieee80211_priv(dev);
8669
8670 static const unsigned char any[] = {
8671 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8672 };
8673 static const unsigned char off[] = {
8674 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8675 };
8676
Jeff Garzikbf794512005-07-31 13:07:26 -04008677 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008678 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008679 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008680 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8681 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8682 /* we disable mandatory BSSID association */
8683 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8684 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008685 IPW_DEBUG_ASSOC("Attempting to associate with new "
8686 "parameters.\n");
8687 ipw_associate(priv);
8688 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008689 return 0;
8690 }
8691
8692 priv->config |= CFG_STATIC_BSSID;
8693 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8694 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008695 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008696 return 0;
8697 }
8698
8699 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8700 MAC_ARG(wrqu->ap_addr.sa_data));
8701
8702 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8703
James Ketrenosc848d0a2005-08-24 21:56:24 -05008704 /* Network configuration changed -- force [re]association */
8705 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8706 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008707 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008708
James Ketrenosc848d0a2005-08-24 21:56:24 -05008709 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008710 return 0;
8711}
8712
Jeff Garzikbf794512005-07-31 13:07:26 -04008713static int ipw_wx_get_wap(struct net_device *dev,
8714 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008715 union iwreq_data *wrqu, char *extra)
8716{
8717 struct ipw_priv *priv = ieee80211_priv(dev);
8718 /* If we are associated, trying to associate, or have a statically
8719 * configured BSSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008720 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04008721 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008722 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8723 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008724 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008725 } else
8726 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8727
8728 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8729 MAC_ARG(wrqu->ap_addr.sa_data));
James Ketrenosc848d0a2005-08-24 21:56:24 -05008730 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008731 return 0;
8732}
8733
Jeff Garzikbf794512005-07-31 13:07:26 -04008734static int ipw_wx_set_essid(struct net_device *dev,
8735 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008736 union iwreq_data *wrqu, char *extra)
8737{
8738 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008739 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008740 int length = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008741 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008742 if (wrqu->essid.flags && wrqu->essid.length) {
8743 length = wrqu->essid.length - 1;
8744 essid = extra;
8745 }
8746 if (length == 0) {
8747 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008748 if ((priv->config & CFG_STATIC_ESSID) &&
8749 !(priv->status & (STATUS_ASSOCIATED |
8750 STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008751 IPW_DEBUG_ASSOC("Attempting to associate with new "
8752 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008753 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008754 ipw_associate(priv);
8755 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008756 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008757 return 0;
8758 }
8759
8760 length = min(length, IW_ESSID_MAX_SIZE);
8761
8762 priv->config |= CFG_STATIC_ESSID;
8763
8764 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
8765 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008766 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008767 return 0;
8768 }
8769
8770 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
8771 length);
8772
8773 priv->essid_len = length;
8774 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04008775
James Ketrenosc848d0a2005-08-24 21:56:24 -05008776 /* Network configuration changed -- force [re]association */
8777 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
8778 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008779 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008780
James Ketrenosc848d0a2005-08-24 21:56:24 -05008781 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008782 return 0;
8783}
8784
Jeff Garzikbf794512005-07-31 13:07:26 -04008785static int ipw_wx_get_essid(struct net_device *dev,
8786 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008787 union iwreq_data *wrqu, char *extra)
8788{
8789 struct ipw_priv *priv = ieee80211_priv(dev);
8790
8791 /* If we are associated, trying to associate, or have a statically
8792 * configured ESSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008793 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008794 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04008795 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8796 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008797 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04008798 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06008799 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008800 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008801 } else {
8802 IPW_DEBUG_WX("Getting essid: ANY\n");
8803 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008804 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008805 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008806 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008807 return 0;
8808}
8809
Jeff Garzikbf794512005-07-31 13:07:26 -04008810static int ipw_wx_set_nick(struct net_device *dev,
8811 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008812 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008813{
James Ketrenos43f66a62005-03-25 12:31:53 -06008814 struct ipw_priv *priv = ieee80211_priv(dev);
8815
8816 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
8817 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
8818 return -E2BIG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008819 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008820 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06008821 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008822 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06008823 IPW_DEBUG_TRACE("<<\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008824 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008825 return 0;
8826
8827}
8828
Jeff Garzikbf794512005-07-31 13:07:26 -04008829static int ipw_wx_get_nick(struct net_device *dev,
8830 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008831 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008832{
James Ketrenos43f66a62005-03-25 12:31:53 -06008833 struct ipw_priv *priv = ieee80211_priv(dev);
8834 IPW_DEBUG_WX("Getting nick\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008835 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008836 wrqu->data.length = strlen(priv->nick) + 1;
8837 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008838 wrqu->data.flags = 1; /* active */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008839 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008840 return 0;
8841}
8842
James Ketrenos43f66a62005-03-25 12:31:53 -06008843static int ipw_wx_set_rate(struct net_device *dev,
8844 struct iw_request_info *info,
8845 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008846{
James Ketrenosea2b26e2005-08-24 21:25:16 -05008847 /* TODO: We should use semaphores or locks for access to priv */
8848 struct ipw_priv *priv = ieee80211_priv(dev);
8849 u32 target_rate = wrqu->bitrate.value;
8850 u32 fixed, mask;
8851
8852 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
8853 /* value = X, fixed = 1 means only rate X */
8854 /* value = X, fixed = 0 means all rates lower equal X */
8855
8856 if (target_rate == -1) {
8857 fixed = 0;
8858 mask = IEEE80211_DEFAULT_RATES_MASK;
8859 /* Now we should reassociate */
8860 goto apply;
8861 }
8862
8863 mask = 0;
8864 fixed = wrqu->bitrate.fixed;
8865
8866 if (target_rate == 1000000 || !fixed)
8867 mask |= IEEE80211_CCK_RATE_1MB_MASK;
8868 if (target_rate == 1000000)
8869 goto apply;
8870
8871 if (target_rate == 2000000 || !fixed)
8872 mask |= IEEE80211_CCK_RATE_2MB_MASK;
8873 if (target_rate == 2000000)
8874 goto apply;
8875
8876 if (target_rate == 5500000 || !fixed)
8877 mask |= IEEE80211_CCK_RATE_5MB_MASK;
8878 if (target_rate == 5500000)
8879 goto apply;
8880
8881 if (target_rate == 6000000 || !fixed)
8882 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
8883 if (target_rate == 6000000)
8884 goto apply;
8885
8886 if (target_rate == 9000000 || !fixed)
8887 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
8888 if (target_rate == 9000000)
8889 goto apply;
8890
8891 if (target_rate == 11000000 || !fixed)
8892 mask |= IEEE80211_CCK_RATE_11MB_MASK;
8893 if (target_rate == 11000000)
8894 goto apply;
8895
8896 if (target_rate == 12000000 || !fixed)
8897 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
8898 if (target_rate == 12000000)
8899 goto apply;
8900
8901 if (target_rate == 18000000 || !fixed)
8902 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
8903 if (target_rate == 18000000)
8904 goto apply;
8905
8906 if (target_rate == 24000000 || !fixed)
8907 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
8908 if (target_rate == 24000000)
8909 goto apply;
8910
8911 if (target_rate == 36000000 || !fixed)
8912 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
8913 if (target_rate == 36000000)
8914 goto apply;
8915
8916 if (target_rate == 48000000 || !fixed)
8917 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
8918 if (target_rate == 48000000)
8919 goto apply;
8920
8921 if (target_rate == 54000000 || !fixed)
8922 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
8923 if (target_rate == 54000000)
8924 goto apply;
8925
8926 IPW_DEBUG_WX("invalid rate specified, returning error\n");
8927 return -EINVAL;
8928
8929 apply:
8930 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
8931 mask, fixed ? "fixed" : "sub-rates");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008932 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008933 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05008934 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05008935 ipw_set_fixed_rate(priv, priv->ieee->mode);
8936 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05008937 priv->config |= CFG_FIXED_RATE;
8938
James Ketrenosc848d0a2005-08-24 21:56:24 -05008939 if (priv->rates_mask == mask) {
8940 IPW_DEBUG_WX("Mask set to current mask.\n");
8941 up(&priv->sem);
8942 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05008943 }
8944
James Ketrenosc848d0a2005-08-24 21:56:24 -05008945 priv->rates_mask = mask;
8946
8947 /* Network configuration changed -- force [re]association */
8948 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
8949 if (!ipw_disassociate(priv))
8950 ipw_associate(priv);
8951
8952 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008953 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008954}
8955
Jeff Garzikbf794512005-07-31 13:07:26 -04008956static int ipw_wx_get_rate(struct net_device *dev,
8957 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008958 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008959{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008960 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008961 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008962 wrqu->bitrate.value = priv->last_rate;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008963 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008964 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
8965 return 0;
8966}
8967
Jeff Garzikbf794512005-07-31 13:07:26 -04008968static int ipw_wx_set_rts(struct net_device *dev,
8969 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008970 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008971{
James Ketrenos43f66a62005-03-25 12:31:53 -06008972 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008973 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008974 if (wrqu->rts.disabled)
8975 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8976 else {
8977 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05008978 wrqu->rts.value > MAX_RTS_THRESHOLD) {
8979 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008980 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008981 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008982 priv->rts_threshold = wrqu->rts.value;
8983 }
8984
8985 ipw_send_rts_threshold(priv, priv->rts_threshold);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008986 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008987 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
8988 return 0;
8989}
8990
Jeff Garzikbf794512005-07-31 13:07:26 -04008991static int ipw_wx_get_rts(struct net_device *dev,
8992 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008993 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008994{
James Ketrenos43f66a62005-03-25 12:31:53 -06008995 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008996 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008997 wrqu->rts.value = priv->rts_threshold;
8998 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008999 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009000 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009001 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
9002 return 0;
9003}
9004
Jeff Garzikbf794512005-07-31 13:07:26 -04009005static int ipw_wx_set_txpow(struct net_device *dev,
9006 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009007 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009008{
James Ketrenos43f66a62005-03-25 12:31:53 -06009009 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009010 int err = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05009011
James Ketrenosc848d0a2005-08-24 21:56:24 -05009012 down(&priv->sem);
9013 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009014 err = -EINPROGRESS;
9015 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009016 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009017
James Ketrenosb095c382005-08-24 22:04:42 -05009018 if (!wrqu->power.fixed)
9019 wrqu->power.value = IPW_TX_POWER_DEFAULT;
9020
James Ketrenosc848d0a2005-08-24 21:56:24 -05009021 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009022 err = -EINVAL;
9023 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009024 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009025
James Ketrenosb095c382005-08-24 22:04:42 -05009026 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009027 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009028 err = -EINVAL;
9029 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009030 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009031
9032 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009033 err = ipw_set_tx_power(priv);
9034 out:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009035 up(&priv->sem);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009036 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009037}
9038
Jeff Garzikbf794512005-07-31 13:07:26 -04009039static int ipw_wx_get_txpow(struct net_device *dev,
9040 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009041 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009042{
James Ketrenos43f66a62005-03-25 12:31:53 -06009043 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009044 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009045 wrqu->power.value = priv->tx_power;
9046 wrqu->power.fixed = 1;
9047 wrqu->power.flags = IW_TXPOW_DBM;
9048 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009049 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009050
Jeff Garzikbf794512005-07-31 13:07:26 -04009051 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08009052 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009053
9054 return 0;
9055}
9056
Jeff Garzikbf794512005-07-31 13:07:26 -04009057static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009058 struct iw_request_info *info,
9059 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009060{
9061 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009062 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009063 if (wrqu->frag.disabled)
9064 priv->ieee->fts = DEFAULT_FTS;
9065 else {
9066 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009067 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
9068 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009069 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009070 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009071
James Ketrenos43f66a62005-03-25 12:31:53 -06009072 priv->ieee->fts = wrqu->frag.value & ~0x1;
9073 }
9074
9075 ipw_send_frag_threshold(priv, wrqu->frag.value);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009076 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009077 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
9078 return 0;
9079}
9080
Jeff Garzikbf794512005-07-31 13:07:26 -04009081static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009082 struct iw_request_info *info,
9083 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009084{
9085 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009086 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009087 wrqu->frag.value = priv->ieee->fts;
9088 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009089 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009090 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009091 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
9092
9093 return 0;
9094}
9095
Jeff Garzikbf794512005-07-31 13:07:26 -04009096static int ipw_wx_set_retry(struct net_device *dev,
9097 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009098 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009099{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009100 struct ipw_priv *priv = ieee80211_priv(dev);
9101
9102 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9103 return -EINVAL;
9104
9105 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9106 return 0;
9107
9108 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
9109 return -EINVAL;
9110
9111 down(&priv->sem);
9112 if (wrqu->retry.flags & IW_RETRY_MIN)
9113 priv->short_retry_limit = (u8) wrqu->retry.value;
9114 else if (wrqu->retry.flags & IW_RETRY_MAX)
9115 priv->long_retry_limit = (u8) wrqu->retry.value;
9116 else {
9117 priv->short_retry_limit = (u8) wrqu->retry.value;
9118 priv->long_retry_limit = (u8) wrqu->retry.value;
9119 }
9120
9121 ipw_send_retry_limit(priv, priv->short_retry_limit,
9122 priv->long_retry_limit);
9123 up(&priv->sem);
9124 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9125 priv->short_retry_limit, priv->long_retry_limit);
9126 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009127}
9128
Jeff Garzikbf794512005-07-31 13:07:26 -04009129static int ipw_wx_get_retry(struct net_device *dev,
9130 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009131 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009132{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009133 struct ipw_priv *priv = ieee80211_priv(dev);
9134
9135 down(&priv->sem);
9136 wrqu->retry.disabled = 0;
9137
9138 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
9139 up(&priv->sem);
9140 return -EINVAL;
9141 }
9142
9143 if (wrqu->retry.flags & IW_RETRY_MAX) {
9144 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
9145 wrqu->retry.value = priv->long_retry_limit;
9146 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
9147 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
9148 wrqu->retry.value = priv->short_retry_limit;
9149 } else {
9150 wrqu->retry.flags = IW_RETRY_LIMIT;
9151 wrqu->retry.value = priv->short_retry_limit;
9152 }
9153 up(&priv->sem);
9154
9155 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
9156
9157 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009158}
9159
James Ketrenosafbf30a2005-08-25 00:05:33 -05009160#if WIRELESS_EXT > 17
9161static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
9162 int essid_len)
9163{
9164 struct ipw_scan_request_ext scan;
9165 int err = 0, scan_type;
9166
9167 down(&priv->sem);
9168
9169 if (priv->status & STATUS_RF_KILL_MASK) {
9170 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
9171 priv->status |= STATUS_SCAN_PENDING;
9172 goto done;
9173 }
9174
9175 IPW_DEBUG_HC("starting request direct scan!\n");
9176
9177 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
9178 err = wait_event_interruptible(priv->wait_state,
9179 !(priv->
9180 status & (STATUS_SCANNING |
9181 STATUS_SCAN_ABORTING)));
9182 if (err) {
9183 IPW_DEBUG_HC("aborting direct scan");
9184 goto done;
9185 }
9186 }
9187 memset(&scan, 0, sizeof(scan));
9188
9189 if (priv->config & CFG_SPEED_SCAN)
9190 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9191 cpu_to_le16(30);
9192 else
9193 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9194 cpu_to_le16(20);
9195
9196 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
9197 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05009198 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009199 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
9200
9201 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
9202
9203 err = ipw_send_ssid(priv, essid, essid_len);
9204 if (err) {
9205 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
9206 goto done;
9207 }
9208 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
9209
9210 ipw_add_scan_channels(priv, &scan, scan_type);
9211
9212 err = ipw_send_scan_request_ext(priv, &scan);
9213 if (err) {
9214 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
9215 goto done;
9216 }
9217
9218 priv->status |= STATUS_SCANNING;
9219
9220 done:
9221 up(&priv->sem);
9222 return err;
9223}
9224#endif /* WIRELESS_EXT > 17 */
9225
Jeff Garzikbf794512005-07-31 13:07:26 -04009226static int ipw_wx_set_scan(struct net_device *dev,
9227 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009228 union iwreq_data *wrqu, char *extra)
9229{
9230 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009231#if WIRELESS_EXT > 17
9232 struct iw_scan_req *req = NULL;
9233 if (wrqu->data.length
9234 && wrqu->data.length == sizeof(struct iw_scan_req)) {
9235 req = (struct iw_scan_req *)extra;
9236 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
9237 ipw_request_direct_scan(priv, req->essid,
9238 req->essid_len);
9239 return 0;
9240 }
9241 }
9242#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009243 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009244
9245 queue_work(priv->workqueue, &priv->request_scan);
9246
James Ketrenos43f66a62005-03-25 12:31:53 -06009247 return 0;
9248}
9249
Jeff Garzikbf794512005-07-31 13:07:26 -04009250static int ipw_wx_get_scan(struct net_device *dev,
9251 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009252 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009253{
James Ketrenos43f66a62005-03-25 12:31:53 -06009254 struct ipw_priv *priv = ieee80211_priv(dev);
9255 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9256}
9257
Jeff Garzikbf794512005-07-31 13:07:26 -04009258static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009259 struct iw_request_info *info,
9260 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009261{
9262 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009263 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009264 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009265
9266 down(&priv->sem);
9267 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009268
Hong Liucaeff812005-08-05 17:25:50 +08009269 /* In IBSS mode, we need to notify the firmware to update
9270 * the beacon info after we changed the capability. */
9271 if (cap != priv->capability &&
9272 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9273 priv->status & STATUS_ASSOCIATED)
9274 ipw_disassociate(priv);
9275
9276 up(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009277 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009278}
9279
Jeff Garzikbf794512005-07-31 13:07:26 -04009280static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009281 struct iw_request_info *info,
9282 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009283{
9284 struct ipw_priv *priv = ieee80211_priv(dev);
9285 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9286}
9287
Jeff Garzikbf794512005-07-31 13:07:26 -04009288static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009289 struct iw_request_info *info,
9290 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009291{
9292 struct ipw_priv *priv = ieee80211_priv(dev);
9293 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009294 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009295 if (wrqu->power.disabled) {
9296 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9297 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9298 if (err) {
9299 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009300 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009301 return err;
9302 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009303 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009304 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009305 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009306 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009307
9308 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009309 case IW_POWER_ON: /* If not specified */
9310 case IW_POWER_MODE: /* If set all mask */
9311 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009312 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009313 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009314 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9315 wrqu->power.flags);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009316 up(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009317 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009318 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009319
James Ketrenos43f66a62005-03-25 12:31:53 -06009320 /* If the user hasn't specified a power management mode yet, default
9321 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009322 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009323 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009324 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009325 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9326 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9327 if (err) {
9328 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009329 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009330 return err;
9331 }
9332
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009333 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009334 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009335 return 0;
9336}
9337
Jeff Garzikbf794512005-07-31 13:07:26 -04009338static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009339 struct iw_request_info *info,
9340 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009341{
9342 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009343 down(&priv->sem);
James Ketrenosa613bff2005-08-24 21:43:11 -05009344 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009345 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009346 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009347 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009348
James Ketrenosc848d0a2005-08-24 21:56:24 -05009349 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009350 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009351
James Ketrenos43f66a62005-03-25 12:31:53 -06009352 return 0;
9353}
9354
Jeff Garzikbf794512005-07-31 13:07:26 -04009355static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009356 struct iw_request_info *info,
9357 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009358{
9359 struct ipw_priv *priv = ieee80211_priv(dev);
9360 int mode = *(int *)extra;
9361 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009362 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009363 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9364 mode = IPW_POWER_AC;
9365 priv->power_mode = mode;
9366 } else {
9367 priv->power_mode = IPW_POWER_ENABLED | mode;
9368 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009369
James Ketrenos43f66a62005-03-25 12:31:53 -06009370 if (priv->power_mode != mode) {
9371 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009372
James Ketrenos43f66a62005-03-25 12:31:53 -06009373 if (err) {
9374 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009375 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009376 return err;
9377 }
9378 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009379 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009380 return 0;
9381}
9382
9383#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009384static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009385 struct iw_request_info *info,
9386 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009387{
9388 struct ipw_priv *priv = ieee80211_priv(dev);
9389 int level = IPW_POWER_LEVEL(priv->power_mode);
9390 char *p = extra;
9391
9392 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9393
9394 switch (level) {
9395 case IPW_POWER_AC:
9396 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9397 break;
9398 case IPW_POWER_BATTERY:
9399 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9400 break;
9401 default:
9402 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009403 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009404 timeout_duration[level - 1] / 1000,
9405 period_duration[level - 1] / 1000);
9406 }
9407
9408 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009409 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009410
9411 wrqu->data.length = p - extra + 1;
9412
9413 return 0;
9414}
9415
9416static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009417 struct iw_request_info *info,
9418 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009419{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009420 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009421 int mode = *(int *)extra;
9422 u8 band = 0, modulation = 0;
9423
9424 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009425 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009426 return -EINVAL;
9427 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009428 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009429 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009430 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009431 if (mode & IEEE_A) {
9432 band |= IEEE80211_52GHZ_BAND;
9433 modulation |= IEEE80211_OFDM_MODULATION;
9434 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009435 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009436 } else {
9437 if (mode & IEEE_A) {
9438 IPW_WARNING("Attempt to set 2200BG into "
9439 "802.11a mode\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009440 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009441 return -EINVAL;
9442 }
9443
James Ketrenosa33a1982005-09-14 14:28:59 -05009444 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009445 }
9446
9447 if (mode & IEEE_B) {
9448 band |= IEEE80211_24GHZ_BAND;
9449 modulation |= IEEE80211_CCK_MODULATION;
9450 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009451 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009452
James Ketrenos43f66a62005-03-25 12:31:53 -06009453 if (mode & IEEE_G) {
9454 band |= IEEE80211_24GHZ_BAND;
9455 modulation |= IEEE80211_OFDM_MODULATION;
9456 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009457 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009458
9459 priv->ieee->mode = mode;
9460 priv->ieee->freq_band = band;
9461 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009462 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009463
James Ketrenosc848d0a2005-08-24 21:56:24 -05009464 /* Network configuration changed -- force [re]association */
9465 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9466 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009467 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009468 ipw_associate(priv);
9469 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009470
James Ketrenosa613bff2005-08-24 21:43:11 -05009471 /* Update the band LEDs */
9472 ipw_led_band_on(priv);
9473
Jeff Garzikbf794512005-07-31 13:07:26 -04009474 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009475 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009476 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
James Ketrenosc848d0a2005-08-24 21:56:24 -05009477 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009478 return 0;
9479}
9480
9481static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009482 struct iw_request_info *info,
9483 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009484{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009485 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009486 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009487 switch (priv->ieee->mode) {
9488 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009489 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9490 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009491 case IEEE_B:
9492 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9493 break;
9494 case IEEE_A | IEEE_B:
9495 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9496 break;
9497 case IEEE_G:
9498 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9499 break;
9500 case IEEE_A | IEEE_G:
9501 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9502 break;
9503 case IEEE_B | IEEE_G:
9504 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9505 break;
9506 case IEEE_A | IEEE_B | IEEE_G:
9507 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9508 break;
9509 default:
9510 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009511 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009512 }
9513
James Ketrenos43f66a62005-03-25 12:31:53 -06009514 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9515
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009516 wrqu->data.length = strlen(extra) + 1;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009517 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009518
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009519 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009520}
9521
James Ketrenosea2b26e2005-08-24 21:25:16 -05009522static int ipw_wx_set_preamble(struct net_device *dev,
9523 struct iw_request_info *info,
9524 union iwreq_data *wrqu, char *extra)
9525{
9526 struct ipw_priv *priv = ieee80211_priv(dev);
9527 int mode = *(int *)extra;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009528 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009529 /* Switching from SHORT -> LONG requires a disassociation */
9530 if (mode == 1) {
9531 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9532 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009533
9534 /* Network configuration changed -- force [re]association */
9535 IPW_DEBUG_ASSOC
9536 ("[re]association triggered due to preamble change.\n");
9537 if (!ipw_disassociate(priv))
9538 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009539 }
9540 goto done;
9541 }
9542
9543 if (mode == 0) {
9544 priv->config &= ~CFG_PREAMBLE_LONG;
9545 goto done;
9546 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009547 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009548 return -EINVAL;
9549
9550 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009551 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009552 return 0;
9553}
9554
9555static int ipw_wx_get_preamble(struct net_device *dev,
9556 struct iw_request_info *info,
9557 union iwreq_data *wrqu, char *extra)
9558{
9559 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009560 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009561 if (priv->config & CFG_PREAMBLE_LONG)
9562 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9563 else
9564 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009565 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009566 return 0;
9567}
9568
James Ketrenosb095c382005-08-24 22:04:42 -05009569#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009570static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009571 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009572 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009573{
James Ketrenos43f66a62005-03-25 12:31:53 -06009574 struct ipw_priv *priv = ieee80211_priv(dev);
9575 int *parms = (int *)extra;
9576 int enable = (parms[0] > 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009577 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009578 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009579 if (enable) {
9580 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9581 priv->net_dev->type = ARPHRD_IEEE80211;
James Ketrenosa613bff2005-08-24 21:43:11 -05009582 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009583 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009584
James Ketrenos43f66a62005-03-25 12:31:53 -06009585 ipw_set_channel(priv, parms[1]);
9586 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009587 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9588 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009589 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009590 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009591 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009592 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009593 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009594 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009595 return 0;
9596}
9597
James Ketrenosb095c382005-08-24 22:04:42 -05009598#endif // CONFIG_IPW2200_MONITOR
9599
Jeff Garzikbf794512005-07-31 13:07:26 -04009600static int ipw_wx_reset(struct net_device *dev,
9601 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009602 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009603{
James Ketrenos43f66a62005-03-25 12:31:53 -06009604 struct ipw_priv *priv = ieee80211_priv(dev);
9605 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009606 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009607 return 0;
9608}
James Ketrenosb095c382005-08-24 22:04:42 -05009609
James Ketrenosb095c382005-08-24 22:04:42 -05009610static int ipw_wx_sw_reset(struct net_device *dev,
9611 struct iw_request_info *info,
9612 union iwreq_data *wrqu, char *extra)
9613{
9614 struct ipw_priv *priv = ieee80211_priv(dev);
9615 union iwreq_data wrqu_sec = {
9616 .encoding = {
9617 .flags = IW_ENCODE_DISABLED,
9618 },
9619 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009620 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009621
9622 IPW_DEBUG_WX("SW_RESET\n");
9623
9624 down(&priv->sem);
9625
James Ketrenosafbf30a2005-08-25 00:05:33 -05009626 ret = ipw_sw_reset(priv, 0);
9627 if (!ret) {
9628 free_firmware();
9629 ipw_adapter_restart(priv);
9630 }
James Ketrenosb095c382005-08-24 22:04:42 -05009631
9632 /* The SW reset bit might have been toggled on by the 'disable'
9633 * module parameter, so take appropriate action */
9634 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9635
9636 up(&priv->sem);
9637 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
9638 down(&priv->sem);
9639
9640 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9641 /* Configuration likely changed -- force [re]association */
9642 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9643 "reset.\n");
9644 if (!ipw_disassociate(priv))
9645 ipw_associate(priv);
9646 }
9647
9648 up(&priv->sem);
9649
9650 return 0;
9651}
James Ketrenos43f66a62005-03-25 12:31:53 -06009652
9653/* Rebase the WE IOCTLs to zero for the handler array */
9654#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009655static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009656 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9657 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9658 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9659 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9660 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
9661 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9662 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9663 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9664 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9665 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9666 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9667 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9668 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9669 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9670 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9671 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9672 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9673 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9674 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9675 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9676 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9677 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9678 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9679 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9680 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9681 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9682 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9683 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009684 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9685 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9686 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9687 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009688#if WIRELESS_EXT > 17
9689 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9690 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9691 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9692 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9693 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9694 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9695 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
9696#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009697};
9698
James Ketrenosb095c382005-08-24 22:04:42 -05009699enum {
9700 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9701 IPW_PRIV_GET_POWER,
9702 IPW_PRIV_SET_MODE,
9703 IPW_PRIV_GET_MODE,
9704 IPW_PRIV_SET_PREAMBLE,
9705 IPW_PRIV_GET_PREAMBLE,
9706 IPW_PRIV_RESET,
9707 IPW_PRIV_SW_RESET,
9708#ifdef CONFIG_IPW2200_MONITOR
9709 IPW_PRIV_SET_MONITOR,
9710#endif
9711};
James Ketrenos43f66a62005-03-25 12:31:53 -06009712
Jeff Garzikbf794512005-07-31 13:07:26 -04009713static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009714 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009715 .cmd = IPW_PRIV_SET_POWER,
9716 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9717 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009718 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009719 .cmd = IPW_PRIV_GET_POWER,
9720 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9721 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009722 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009723 .cmd = IPW_PRIV_SET_MODE,
9724 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9725 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009726 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009727 .cmd = IPW_PRIV_GET_MODE,
9728 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9729 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009730 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009731 .cmd = IPW_PRIV_SET_PREAMBLE,
9732 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9733 .name = "set_preamble"},
9734 {
9735 .cmd = IPW_PRIV_GET_PREAMBLE,
9736 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9737 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009738 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009739 IPW_PRIV_RESET,
9740 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009741 {
9742 IPW_PRIV_SW_RESET,
9743 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9744#ifdef CONFIG_IPW2200_MONITOR
9745 {
9746 IPW_PRIV_SET_MONITOR,
9747 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9748#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009749};
9750
9751static iw_handler ipw_priv_handler[] = {
9752 ipw_wx_set_powermode,
9753 ipw_wx_get_powermode,
9754 ipw_wx_set_wireless_mode,
9755 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009756 ipw_wx_set_preamble,
9757 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009758 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -05009759 ipw_wx_sw_reset,
9760#ifdef CONFIG_IPW2200_MONITOR
9761 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -06009762#endif
9763};
9764
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009765static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009766 .standard = ipw_wx_handlers,
9767 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
9768 .num_private = ARRAY_SIZE(ipw_priv_handler),
9769 .num_private_args = ARRAY_SIZE(ipw_priv_args),
9770 .private = ipw_priv_handler,
9771 .private_args = ipw_priv_args,
James Ketrenos43f66a62005-03-25 12:31:53 -06009772};
9773
James Ketrenosa613bff2005-08-24 21:43:11 -05009774static struct iw_public_data ipw_wx_data;
9775
James Ketrenos43f66a62005-03-25 12:31:53 -06009776/*
9777 * Get wireless statistics.
9778 * Called by /proc/net/wireless
9779 * Also called by SIOCGIWSTATS
9780 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009781static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -06009782{
9783 struct ipw_priv *priv = ieee80211_priv(dev);
9784 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009785
James Ketrenos43f66a62005-03-25 12:31:53 -06009786 wstats = &priv->wstats;
9787
James Ketrenosea2b26e2005-08-24 21:25:16 -05009788 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -05009789 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -06009790 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
9791 * and associated; if not associcated, the values are all meaningless
9792 * anyway, so set them all to NULL and INVALID */
9793 if (!(priv->status & STATUS_ASSOCIATED)) {
9794 wstats->miss.beacon = 0;
9795 wstats->discard.retries = 0;
9796 wstats->qual.qual = 0;
9797 wstats->qual.level = 0;
9798 wstats->qual.noise = 0;
9799 wstats->qual.updated = 7;
9800 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009801 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -06009802 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009803 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009804
9805 wstats->qual.qual = priv->quality;
9806 wstats->qual.level = average_value(&priv->average_rssi);
9807 wstats->qual.noise = average_value(&priv->average_noise);
9808 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009809 IW_QUAL_NOISE_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -06009810
9811 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
9812 wstats->discard.retries = priv->last_tx_failures;
9813 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -04009814
James Ketrenos43f66a62005-03-25 12:31:53 -06009815/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
9816 goto fail_get_ordinal;
9817 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -04009818
James Ketrenos43f66a62005-03-25 12:31:53 -06009819 return wstats;
9820}
9821
James Ketrenos43f66a62005-03-25 12:31:53 -06009822/* net device stuff */
9823
9824static inline void init_sys_config(struct ipw_sys_config *sys_config)
9825{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009826 memset(sys_config, 0, sizeof(struct ipw_sys_config));
9827 sys_config->bt_coexistence = 1; /* We may need to look into prvStaBtConfig */
James Ketrenos43f66a62005-03-25 12:31:53 -06009828 sys_config->answer_broadcast_ssid_probe = 0;
9829 sys_config->accept_all_data_frames = 0;
9830 sys_config->accept_non_directed_frames = 1;
9831 sys_config->exclude_unicast_unencrypted = 0;
9832 sys_config->disable_unicast_decryption = 1;
9833 sys_config->exclude_multicast_unencrypted = 0;
9834 sys_config->disable_multicast_decryption = 1;
9835 sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009836 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -06009837 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009838 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009839 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009840 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
James Ketrenos43f66a62005-03-25 12:31:53 -06009841}
9842
9843static int ipw_net_open(struct net_device *dev)
9844{
9845 struct ipw_priv *priv = ieee80211_priv(dev);
9846 IPW_DEBUG_INFO("dev->open\n");
9847 /* we should be verifying the device is ready to be opened */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009848 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009849 if (!(priv->status & STATUS_RF_KILL_MASK) &&
9850 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009851 netif_start_queue(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009852 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009853 return 0;
9854}
9855
9856static int ipw_net_stop(struct net_device *dev)
9857{
9858 IPW_DEBUG_INFO("dev->close\n");
9859 netif_stop_queue(dev);
9860 return 0;
9861}
9862
9863/*
9864todo:
9865
9866modify to send one tfd per fragment instead of using chunking. otherwise
9867we need to heavily modify the ieee80211_skb_to_txb.
9868*/
9869
James Ketrenos227d2dc2005-07-28 16:25:55 -05009870static inline int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
9871 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009872{
James Ketrenos0dacca12005-09-21 12:23:41 -05009873 struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009874 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -06009875 int i = 0;
9876 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -05009877#ifdef CONFIG_IPW_QOS
9878 int tx_id = ipw_get_tx_queue_number(priv, pri);
9879 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9880#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009881 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -05009882#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009883 struct clx2_queue *q = &txq->q;
9884 u8 id, hdr_len, unicast;
9885 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009886 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -06009887
James Ketrenos227d2dc2005-07-28 16:25:55 -05009888 /* If there isn't room in the queue, we return busy and let the
9889 * network stack requeue the packet for us */
9890 if (ipw_queue_space(q) < q->high_mark)
9891 return NETDEV_TX_BUSY;
9892
James Ketrenos43f66a62005-03-25 12:31:53 -06009893 switch (priv->ieee->iw_mode) {
9894 case IW_MODE_ADHOC:
9895 hdr_len = IEEE80211_3ADDR_LEN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009896 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -06009897 id = ipw_find_station(priv, hdr->addr1);
9898 if (id == IPW_INVALID_STATION) {
9899 id = ipw_add_station(priv, hdr->addr1);
9900 if (id == IPW_INVALID_STATION) {
9901 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -04009902 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009903 MAC_ARG(hdr->addr1));
9904 goto drop;
9905 }
9906 }
9907 break;
9908
9909 case IW_MODE_INFRA:
9910 default:
James Ketrenosafbf30a2005-08-25 00:05:33 -05009911 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -06009912 hdr_len = IEEE80211_3ADDR_LEN;
9913 id = 0;
9914 break;
9915 }
9916
9917 tfd = &txq->bd[q->first_empty];
9918 txq->txb[q->first_empty] = txb;
9919 memset(tfd, 0, sizeof(*tfd));
9920 tfd->u.data.station_number = id;
9921
9922 tfd->control_flags.message_type = TX_FRAME_TYPE;
9923 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
9924
9925 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -05009926 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009927 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -04009928
James Ketrenos43f66a62005-03-25 12:31:53 -06009929 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -05009930 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009931 else
James Ketrenosb095c382005-08-24 22:04:42 -05009932 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -06009933
James Ketrenosea2b26e2005-08-24 21:25:16 -05009934 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
9935 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009936
James Ketrenosc848d0a2005-08-24 21:56:24 -05009937 fc = le16_to_cpu(hdr->frame_ctl);
9938 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
9939
James Ketrenos43f66a62005-03-25 12:31:53 -06009940 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
9941
James Ketrenosb095c382005-08-24 22:04:42 -05009942 if (likely(unicast))
9943 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9944
9945 if (txb->encrypted && !priv->ieee->host_encrypt) {
9946 switch (priv->ieee->sec.level) {
9947 case SEC_LEVEL_3:
9948 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9949 IEEE80211_FCTL_PROTECTED;
9950 /* XXX: ACK flag must be set for CCMP even if it
9951 * is a multicast/broadcast packet, because CCMP
9952 * group communication encrypted by GTK is
9953 * actually done by the AP. */
9954 if (!unicast)
9955 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9956
9957 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9958 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
9959 tfd->u.data.key_index = 0;
9960 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
9961 break;
9962 case SEC_LEVEL_2:
9963 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9964 IEEE80211_FCTL_PROTECTED;
9965 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9966 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
9967 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
9968 break;
9969 case SEC_LEVEL_1:
9970 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9971 IEEE80211_FCTL_PROTECTED;
9972 tfd->u.data.key_index = priv->ieee->tx_keyidx;
9973 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
9974 40)
9975 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
9976 else
9977 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
9978 break;
9979 case SEC_LEVEL_0:
9980 break;
9981 default:
9982 printk(KERN_ERR "Unknow security level %d\n",
9983 priv->ieee->sec.level);
9984 break;
9985 }
9986 } else
9987 /* No hardware encryption */
9988 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
9989
9990#ifdef CONFIG_IPW_QOS
9991 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast);
9992#endif /* CONFIG_IPW_QOS */
9993
James Ketrenos43f66a62005-03-25 12:31:53 -06009994 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -05009995 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
9996 txb->nr_frags));
9997 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
9998 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
9999 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10000 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10001 i, le32_to_cpu(tfd->u.data.num_chunks),
10002 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010003 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010004 i, tfd->u.data.num_chunks,
10005 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010006 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010007 txb->fragments[i]->len - hdr_len);
10008
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010009 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010010 cpu_to_le32(pci_map_single
10011 (priv->pci_dev,
10012 txb->fragments[i]->data + hdr_len,
10013 txb->fragments[i]->len - hdr_len,
10014 PCI_DMA_TODEVICE));
10015 tfd->u.data.chunk_len[i] =
10016 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010017 }
10018
10019 if (i != txb->nr_frags) {
10020 struct sk_buff *skb;
10021 u16 remaining_bytes = 0;
10022 int j;
10023
10024 for (j = i; j < txb->nr_frags; j++)
10025 remaining_bytes += txb->fragments[j]->len - hdr_len;
10026
10027 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10028 remaining_bytes);
10029 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10030 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010031 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010032 for (j = i; j < txb->nr_frags; j++) {
10033 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010034
James Ketrenos43f66a62005-03-25 12:31:53 -060010035 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010036 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010037 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010038 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010039 }
10040 dev_kfree_skb_any(txb->fragments[i]);
10041 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010042 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010043 cpu_to_le32(pci_map_single
10044 (priv->pci_dev, skb->data,
10045 tfd->u.data.chunk_len[i],
10046 PCI_DMA_TODEVICE));
10047
10048 tfd->u.data.num_chunks =
10049 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
10050 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010051 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010052 }
10053
10054 /* kick DMA */
10055 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10056 ipw_write32(priv, q->reg_w, q->first_empty);
10057
James Ketrenos227d2dc2005-07-28 16:25:55 -050010058 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010059
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010060 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010061 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
10062 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010063 return NETDEV_TX_OK;
10064}
10065
10066static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10067{
10068 struct ipw_priv *priv = ieee80211_priv(dev);
10069#ifdef CONFIG_IPW_QOS
10070 int tx_id = ipw_get_tx_queue_number(priv, pri);
10071 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10072#else
10073 struct clx2_tx_queue *txq = &priv->txq[0];
10074#endif /* CONFIG_IPW_QOS */
10075
10076 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
10077 return 1;
10078
10079 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010080}
10081
10082static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -050010083 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010084{
10085 struct ipw_priv *priv = ieee80211_priv(dev);
10086 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -050010087 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010088
10089 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010090 spin_lock_irqsave(&priv->lock, flags);
10091
10092 if (!(priv->status & STATUS_ASSOCIATED)) {
10093 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
10094 priv->ieee->stats.tx_carrier_errors++;
10095 netif_stop_queue(dev);
10096 goto fail_unlock;
10097 }
10098
James Ketrenos227d2dc2005-07-28 16:25:55 -050010099 ret = ipw_tx_skb(priv, txb, pri);
10100 if (ret == NETDEV_TX_OK)
10101 __ipw_led_activity_on(priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010102 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010103
James Ketrenos227d2dc2005-07-28 16:25:55 -050010104 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010105
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010106 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010107 spin_unlock_irqrestore(&priv->lock, flags);
10108 return 1;
10109}
10110
10111static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
10112{
10113 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -040010114
James Ketrenos43f66a62005-03-25 12:31:53 -060010115 priv->ieee->stats.tx_packets = priv->tx_packets;
10116 priv->ieee->stats.rx_packets = priv->rx_packets;
10117 return &priv->ieee->stats;
10118}
10119
10120static void ipw_net_set_multicast_list(struct net_device *dev)
10121{
10122
10123}
10124
10125static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10126{
10127 struct ipw_priv *priv = ieee80211_priv(dev);
10128 struct sockaddr *addr = p;
10129 if (!is_valid_ether_addr(addr->sa_data))
10130 return -EADDRNOTAVAIL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010131 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010132 priv->config |= CFG_CUSTOM_MAC;
10133 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
10134 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
10135 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -050010136 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010137 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010138 return 0;
10139}
10140
Jeff Garzikbf794512005-07-31 13:07:26 -040010141static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010142 struct ethtool_drvinfo *info)
10143{
10144 struct ipw_priv *p = ieee80211_priv(dev);
10145 char vers[64];
10146 char date[32];
10147 u32 len;
10148
10149 strcpy(info->driver, DRV_NAME);
10150 strcpy(info->version, DRV_VERSION);
10151
10152 len = sizeof(vers);
10153 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10154 len = sizeof(date);
10155 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10156
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010157 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010158 vers, date);
10159 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -050010160 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010161}
10162
10163static u32 ipw_ethtool_get_link(struct net_device *dev)
10164{
10165 struct ipw_priv *priv = ieee80211_priv(dev);
10166 return (priv->status & STATUS_ASSOCIATED) != 0;
10167}
10168
10169static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10170{
James Ketrenosb095c382005-08-24 22:04:42 -050010171 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010172}
10173
10174static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010175 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010176{
10177 struct ipw_priv *p = ieee80211_priv(dev);
10178
James Ketrenosb095c382005-08-24 22:04:42 -050010179 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010180 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010181 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010182 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010183 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010184 return 0;
10185}
10186
10187static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010188 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010189{
10190 struct ipw_priv *p = ieee80211_priv(dev);
10191 int i;
10192
James Ketrenosb095c382005-08-24 22:04:42 -050010193 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010194 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010195 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010196 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010197 for (i = IPW_EEPROM_DATA;
James Ketrenosb095c382005-08-24 22:04:42 -050010198 i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -060010199 ipw_write8(p, i, p->eeprom[i]);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010200 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010201 return 0;
10202}
10203
10204static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010205 .get_link = ipw_ethtool_get_link,
10206 .get_drvinfo = ipw_ethtool_get_drvinfo,
10207 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10208 .get_eeprom = ipw_ethtool_get_eeprom,
10209 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010210};
10211
10212static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
10213{
10214 struct ipw_priv *priv = data;
10215 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010216
James Ketrenos43f66a62005-03-25 12:31:53 -060010217 if (!priv)
10218 return IRQ_NONE;
10219
10220 spin_lock(&priv->lock);
10221
10222 if (!(priv->status & STATUS_INT_ENABLED)) {
10223 /* Shared IRQ */
10224 goto none;
10225 }
10226
James Ketrenosb095c382005-08-24 22:04:42 -050010227 inta = ipw_read32(priv, IPW_INTA_RW);
10228 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010229
James Ketrenos43f66a62005-03-25 12:31:53 -060010230 if (inta == 0xFFFFFFFF) {
10231 /* Hardware disappeared */
10232 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10233 goto none;
10234 }
10235
James Ketrenosb095c382005-08-24 22:04:42 -050010236 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010237 /* Shared interrupt */
10238 goto none;
10239 }
10240
10241 /* tell the device to stop sending interrupts */
10242 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010243
James Ketrenos43f66a62005-03-25 12:31:53 -060010244 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010245 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10246 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010247
James Ketrenos43f66a62005-03-25 12:31:53 -060010248 /* Cache INTA value for our tasklet */
10249 priv->isr_inta = inta;
10250
10251 tasklet_schedule(&priv->irq_tasklet);
10252
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010253 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010254
10255 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010256 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010257 spin_unlock(&priv->lock);
10258 return IRQ_NONE;
10259}
10260
10261static void ipw_rf_kill(void *adapter)
10262{
10263 struct ipw_priv *priv = adapter;
10264 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010265
James Ketrenos43f66a62005-03-25 12:31:53 -060010266 spin_lock_irqsave(&priv->lock, flags);
10267
10268 if (rf_kill_active(priv)) {
10269 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10270 if (priv->workqueue)
10271 queue_delayed_work(priv->workqueue,
10272 &priv->rf_kill, 2 * HZ);
10273 goto exit_unlock;
10274 }
10275
10276 /* RF Kill is now disabled, so bring the device back up */
10277
10278 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10279 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10280 "device\n");
10281
10282 /* we can not do an adapter restart while inside an irq lock */
10283 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010284 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010285 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10286 "enabled\n");
10287
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010288 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010289 spin_unlock_irqrestore(&priv->lock, flags);
10290}
10291
James Ketrenosc848d0a2005-08-24 21:56:24 -050010292static void ipw_bg_rf_kill(void *data)
10293{
10294 struct ipw_priv *priv = data;
10295 down(&priv->sem);
10296 ipw_rf_kill(data);
10297 up(&priv->sem);
10298}
10299
James Ketrenosa613bff2005-08-24 21:43:11 -050010300void ipw_link_up(struct ipw_priv *priv)
10301{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010302 priv->last_seq_num = -1;
10303 priv->last_frag_num = -1;
10304 priv->last_packet_time = 0;
10305
James Ketrenosa613bff2005-08-24 21:43:11 -050010306 netif_carrier_on(priv->net_dev);
10307 if (netif_queue_stopped(priv->net_dev)) {
10308 IPW_DEBUG_NOTIF("waking queue\n");
10309 netif_wake_queue(priv->net_dev);
10310 } else {
10311 IPW_DEBUG_NOTIF("starting queue\n");
10312 netif_start_queue(priv->net_dev);
10313 }
10314
James Ketrenosc848d0a2005-08-24 21:56:24 -050010315 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010316 ipw_reset_stats(priv);
10317 /* Ensure the rate is updated immediately */
10318 priv->last_rate = ipw_get_current_rate(priv);
10319 ipw_gather_stats(priv);
10320 ipw_led_link_up(priv);
10321 notify_wx_assoc_event(priv);
10322
10323 if (priv->config & CFG_BACKGROUND_SCAN)
10324 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10325}
10326
James Ketrenosc848d0a2005-08-24 21:56:24 -050010327static void ipw_bg_link_up(void *data)
10328{
10329 struct ipw_priv *priv = data;
10330 down(&priv->sem);
10331 ipw_link_up(data);
10332 up(&priv->sem);
10333}
10334
James Ketrenosa613bff2005-08-24 21:43:11 -050010335void ipw_link_down(struct ipw_priv *priv)
10336{
10337 ipw_led_link_down(priv);
10338 netif_carrier_off(priv->net_dev);
10339 netif_stop_queue(priv->net_dev);
10340 notify_wx_assoc_event(priv);
10341
10342 /* Cancel any queued work ... */
10343 cancel_delayed_work(&priv->request_scan);
10344 cancel_delayed_work(&priv->adhoc_check);
10345 cancel_delayed_work(&priv->gather_stats);
10346
10347 ipw_reset_stats(priv);
10348
James Ketrenosafbf30a2005-08-25 00:05:33 -050010349 if (!(priv->status & STATUS_EXIT_PENDING)) {
10350 /* Queue up another scan... */
10351 queue_work(priv->workqueue, &priv->request_scan);
10352 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010353}
10354
James Ketrenosc848d0a2005-08-24 21:56:24 -050010355static void ipw_bg_link_down(void *data)
10356{
10357 struct ipw_priv *priv = data;
10358 down(&priv->sem);
10359 ipw_link_down(data);
10360 up(&priv->sem);
10361}
10362
James Ketrenos43f66a62005-03-25 12:31:53 -060010363static int ipw_setup_deferred_work(struct ipw_priv *priv)
10364{
10365 int ret = 0;
10366
James Ketrenos43f66a62005-03-25 12:31:53 -060010367 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010368 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010369 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010370
James Ketrenosc848d0a2005-08-24 21:56:24 -050010371 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10372 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10373 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010374 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010375 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10376 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10377 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10378 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10379 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010380 INIT_WORK(&priv->request_scan,
James Ketrenosb095c382005-08-24 22:04:42 -050010381 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010382 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010383 (void (*)(void *))ipw_bg_gather_stats, priv);
10384 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10385 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10386 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10387 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10388 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10389 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010390 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010391 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010392 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010393 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10394 priv);
10395 INIT_WORK(&priv->merge_networks,
10396 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010397
James Ketrenosb095c382005-08-24 22:04:42 -050010398#ifdef CONFIG_IPW_QOS
10399 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10400 priv);
10401#endif /* CONFIG_IPW_QOS */
10402
James Ketrenos43f66a62005-03-25 12:31:53 -060010403 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10404 ipw_irq_tasklet, (unsigned long)priv);
10405
10406 return ret;
10407}
10408
James Ketrenos43f66a62005-03-25 12:31:53 -060010409static void shim__set_security(struct net_device *dev,
10410 struct ieee80211_security *sec)
10411{
10412 struct ipw_priv *priv = ieee80211_priv(dev);
10413 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010414 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010415 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010416 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010417 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010418 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010419 priv->ieee->sec.flags &= ~(1 << i);
10420 else {
10421 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010422 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010423 priv->ieee->sec.flags |= (1 << i);
10424 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010425 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010426 } else if (sec->level != SEC_LEVEL_1)
10427 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010428 }
10429
James Ketrenosb095c382005-08-24 22:04:42 -050010430 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010431 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010432 priv->ieee->sec.active_key = sec->active_key;
10433 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010434 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010435 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010436 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010437 } else
10438 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010439
10440 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010441 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10442 priv->ieee->sec.auth_mode = sec->auth_mode;
10443 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010444 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10445 priv->capability |= CAP_SHARED_KEY;
10446 else
10447 priv->capability &= ~CAP_SHARED_KEY;
10448 priv->status |= STATUS_SECURITY_UPDATED;
10449 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010450
James Ketrenosb095c382005-08-24 22:04:42 -050010451 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10452 priv->ieee->sec.flags |= SEC_ENABLED;
10453 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010454 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010455 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010456 priv->capability |= CAP_PRIVACY_ON;
10457 else
10458 priv->capability &= ~CAP_PRIVACY_ON;
10459 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010460
10461 if (sec->flags & SEC_ENCRYPT)
10462 priv->ieee->sec.encrypt = sec->encrypt;
Jeff Garzikbf794512005-07-31 13:07:26 -040010463
James Ketrenosb095c382005-08-24 22:04:42 -050010464 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10465 priv->ieee->sec.level = sec->level;
10466 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010467 priv->status |= STATUS_SECURITY_UPDATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -050010468 }
James Ketrenosb095c382005-08-24 22:04:42 -050010469
Zhu Yi1fbfea52005-08-05 17:22:56 +080010470 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10471 ipw_set_hwcrypto_keys(priv);
10472
Jeff Garzikbf794512005-07-31 13:07:26 -040010473 /* To match current functionality of ipw2100 (which works well w/
10474 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010475 * privacy capability changes ... */
10476#if 0
10477 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010478 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010479 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010480 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010481 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010482 IPW_DEBUG_ASSOC("Disassociating due to capability "
10483 "change.\n");
10484 ipw_disassociate(priv);
10485 }
10486#endif
10487}
10488
Jeff Garzikbf794512005-07-31 13:07:26 -040010489static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010490 struct ipw_supported_rates *rates)
10491{
10492 /* TODO: Mask out rates based on priv->rates_mask */
10493
10494 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010495 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010496 switch (priv->ieee->freq_band) {
10497 case IEEE80211_52GHZ_BAND:
10498 rates->ieee_mode = IPW_A_MODE;
10499 rates->purpose = IPW_RATE_CAPABILITIES;
10500 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10501 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10502 break;
10503
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010504 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010505 rates->ieee_mode = IPW_G_MODE;
10506 rates->purpose = IPW_RATE_CAPABILITIES;
10507 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10508 IEEE80211_CCK_DEFAULT_RATES_MASK);
10509 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10510 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10511 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10512 }
10513 break;
10514 }
10515
10516 return 0;
10517}
10518
Jeff Garzikbf794512005-07-31 13:07:26 -040010519static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010520{
James Ketrenos43f66a62005-03-25 12:31:53 -060010521 /* This is only called from ipw_up, which resets/reloads the firmware
10522 so, we don't need to first disable the card before we configure
10523 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010524 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010525 goto error;
10526
10527 /* initialize adapter address */
10528 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10529 goto error;
10530
10531 /* set basic system config settings */
10532 init_sys_config(&priv->sys_config);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010533 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10534 priv->sys_config.answer_broadcast_ssid_probe = 1;
10535 else
10536 priv->sys_config.answer_broadcast_ssid_probe = 0;
10537
James Ketrenos43f66a62005-03-25 12:31:53 -060010538 if (ipw_send_system_config(priv, &priv->sys_config))
10539 goto error;
10540
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010541 init_supported_rates(priv, &priv->rates);
10542 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010543 goto error;
10544
10545 /* Set request-to-send threshold */
10546 if (priv->rts_threshold) {
10547 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10548 goto error;
10549 }
James Ketrenosb095c382005-08-24 22:04:42 -050010550#ifdef CONFIG_IPW_QOS
10551 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10552 ipw_qos_activate(priv, NULL);
10553#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010554
10555 if (ipw_set_random_seed(priv))
10556 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010557
James Ketrenos43f66a62005-03-25 12:31:53 -060010558 /* final state transition to the RUN state */
10559 if (ipw_send_host_complete(priv))
10560 goto error;
10561
James Ketrenose6666192005-08-12 09:17:04 -050010562 priv->status |= STATUS_INIT;
10563
10564 ipw_led_init(priv);
10565 ipw_led_radio_on(priv);
10566 priv->notif_missed_beacons = 0;
10567
10568 /* Set hardware WEP key if it is configured. */
10569 if ((priv->capability & CAP_PRIVACY_ON) &&
10570 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10571 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10572 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010573
10574 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010575
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010576 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010577 return -EIO;
10578}
10579
James Ketrenos4f36f802005-08-03 20:36:56 -050010580/*
10581 * NOTE:
10582 *
10583 * These tables have been tested in conjunction with the
10584 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10585 *
10586 * Altering this values, using it on other hardware, or in geographies
10587 * not intended for resale of the above mentioned Intel adapters has
10588 * not been tested.
10589 *
10590 */
10591static const struct ieee80211_geo ipw_geos[] = {
10592 { /* Restricted */
10593 "---",
10594 .bg_channels = 11,
10595 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10596 {2427, 4}, {2432, 5}, {2437, 6},
10597 {2442, 7}, {2447, 8}, {2452, 9},
10598 {2457, 10}, {2462, 11}},
10599 },
10600
10601 { /* Custom US/Canada */
10602 "ZZF",
10603 .bg_channels = 11,
10604 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10605 {2427, 4}, {2432, 5}, {2437, 6},
10606 {2442, 7}, {2447, 8}, {2452, 9},
10607 {2457, 10}, {2462, 11}},
10608 .a_channels = 8,
10609 .a = {{5180, 36},
10610 {5200, 40},
10611 {5220, 44},
10612 {5240, 48},
10613 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10614 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10615 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10616 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10617 },
10618
10619 { /* Rest of World */
10620 "ZZD",
10621 .bg_channels = 13,
10622 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10623 {2427, 4}, {2432, 5}, {2437, 6},
10624 {2442, 7}, {2447, 8}, {2452, 9},
10625 {2457, 10}, {2462, 11}, {2467, 12},
10626 {2472, 13}},
10627 },
10628
10629 { /* Custom USA & Europe & High */
10630 "ZZA",
10631 .bg_channels = 11,
10632 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10633 {2427, 4}, {2432, 5}, {2437, 6},
10634 {2442, 7}, {2447, 8}, {2452, 9},
10635 {2457, 10}, {2462, 11}},
10636 .a_channels = 13,
10637 .a = {{5180, 36},
10638 {5200, 40},
10639 {5220, 44},
10640 {5240, 48},
10641 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10642 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10643 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10644 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10645 {5745, 149},
10646 {5765, 153},
10647 {5785, 157},
10648 {5805, 161},
10649 {5825, 165}},
10650 },
10651
10652 { /* Custom NA & Europe */
10653 "ZZB",
10654 .bg_channels = 11,
10655 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10656 {2427, 4}, {2432, 5}, {2437, 6},
10657 {2442, 7}, {2447, 8}, {2452, 9},
10658 {2457, 10}, {2462, 11}},
10659 .a_channels = 13,
10660 .a = {{5180, 36},
10661 {5200, 40},
10662 {5220, 44},
10663 {5240, 48},
10664 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10665 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10666 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10667 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10668 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10669 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10670 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10671 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10672 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10673 },
10674
10675 { /* Custom Japan */
10676 "ZZC",
10677 .bg_channels = 11,
10678 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10679 {2427, 4}, {2432, 5}, {2437, 6},
10680 {2442, 7}, {2447, 8}, {2452, 9},
10681 {2457, 10}, {2462, 11}},
10682 .a_channels = 4,
10683 .a = {{5170, 34}, {5190, 38},
10684 {5210, 42}, {5230, 46}},
10685 },
10686
10687 { /* Custom */
10688 "ZZM",
10689 .bg_channels = 11,
10690 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10691 {2427, 4}, {2432, 5}, {2437, 6},
10692 {2442, 7}, {2447, 8}, {2452, 9},
10693 {2457, 10}, {2462, 11}},
10694 },
10695
10696 { /* Europe */
10697 "ZZE",
10698 .bg_channels = 13,
10699 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10700 {2427, 4}, {2432, 5}, {2437, 6},
10701 {2442, 7}, {2447, 8}, {2452, 9},
10702 {2457, 10}, {2462, 11}, {2467, 12},
10703 {2472, 13}},
10704 .a_channels = 19,
10705 .a = {{5180, 36},
10706 {5200, 40},
10707 {5220, 44},
10708 {5240, 48},
10709 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10710 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10711 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10712 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10713 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10714 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10715 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10716 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10717 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10718 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10719 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10720 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10721 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10722 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10723 {5700, 140, IEEE80211_CH_PASSIVE_ONLY}},
10724 },
10725
10726 { /* Custom Japan */
10727 "ZZJ",
10728 .bg_channels = 14,
10729 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10730 {2427, 4}, {2432, 5}, {2437, 6},
10731 {2442, 7}, {2447, 8}, {2452, 9},
10732 {2457, 10}, {2462, 11}, {2467, 12},
10733 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY}},
10734 .a_channels = 4,
10735 .a = {{5170, 34}, {5190, 38},
10736 {5210, 42}, {5230, 46}},
10737 },
10738
10739 { /* High Band */
10740 "ZZH",
10741 .bg_channels = 13,
10742 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10743 {2427, 4}, {2432, 5}, {2437, 6},
10744 {2442, 7}, {2447, 8}, {2452, 9},
10745 {2457, 10}, {2462, 11},
10746 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10747 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10748 .a_channels = 4,
10749 .a = {{5745, 149}, {5765, 153},
10750 {5785, 157}, {5805, 161}},
10751 },
10752
10753 { /* Custom Europe */
10754 "ZZG",
10755 .bg_channels = 13,
10756 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10757 {2427, 4}, {2432, 5}, {2437, 6},
10758 {2442, 7}, {2447, 8}, {2452, 9},
10759 {2457, 10}, {2462, 11},
10760 {2467, 12}, {2472, 13}},
10761 .a_channels = 4,
10762 .a = {{5180, 36}, {5200, 40},
10763 {5220, 44}, {5240, 48}},
10764 },
10765
10766 { /* Europe */
10767 "ZZK",
10768 .bg_channels = 13,
10769 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10770 {2427, 4}, {2432, 5}, {2437, 6},
10771 {2442, 7}, {2447, 8}, {2452, 9},
10772 {2457, 10}, {2462, 11},
10773 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10774 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10775 .a_channels = 24,
10776 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10777 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10778 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10779 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10780 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10781 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10782 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10783 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10784 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10785 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10786 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10787 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10788 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10789 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10790 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10791 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10792 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10793 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10794 {5700, 140, IEEE80211_CH_PASSIVE_ONLY},
10795 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10796 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10797 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10798 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10799 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10800 },
10801
10802 { /* Europe */
10803 "ZZL",
10804 .bg_channels = 11,
10805 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10806 {2427, 4}, {2432, 5}, {2437, 6},
10807 {2442, 7}, {2447, 8}, {2452, 9},
10808 {2457, 10}, {2462, 11}},
10809 .a_channels = 13,
10810 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10811 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10812 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10813 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10814 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10815 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10816 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10817 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10818 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10819 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10820 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10821 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10822 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10823 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010824};
10825
Liu Hong1fe0adb2005-08-19 09:33:10 -050010826/* GEO code borrowed from ieee80211_geo.c */
10827static int ipw_is_valid_channel(struct ieee80211_device *ieee, u8 channel)
10828{
10829 int i;
10830
10831 /* Driver needs to initialize the geography map before using
10832 * these helper functions */
10833 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10834
10835 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10836 for (i = 0; i < ieee->geo.bg_channels; i++)
10837 /* NOTE: If G mode is currently supported but
10838 * this is a B only channel, we don't see it
10839 * as valid. */
10840 if ((ieee->geo.bg[i].channel == channel) &&
10841 (!(ieee->mode & IEEE_G) ||
10842 !(ieee->geo.bg[i].flags & IEEE80211_CH_B_ONLY)))
10843 return IEEE80211_24GHZ_BAND;
10844
10845 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10846 for (i = 0; i < ieee->geo.a_channels; i++)
10847 if (ieee->geo.a[i].channel == channel)
10848 return IEEE80211_52GHZ_BAND;
10849
10850 return 0;
10851}
10852
10853static int ipw_channel_to_index(struct ieee80211_device *ieee, u8 channel)
10854{
10855 int i;
10856
10857 /* Driver needs to initialize the geography map before using
10858 * these helper functions */
10859 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10860
10861 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10862 for (i = 0; i < ieee->geo.bg_channels; i++)
10863 if (ieee->geo.bg[i].channel == channel)
10864 return i;
10865
10866 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10867 for (i = 0; i < ieee->geo.a_channels; i++)
10868 if (ieee->geo.a[i].channel == channel)
10869 return i;
10870
10871 return -1;
10872}
10873
10874static u8 ipw_freq_to_channel(struct ieee80211_device *ieee, u32 freq)
10875{
10876 int i;
10877
10878 /* Driver needs to initialize the geography map before using
10879 * these helper functions */
10880 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10881
10882 freq /= 100000;
10883
10884 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10885 for (i = 0; i < ieee->geo.bg_channels; i++)
10886 if (ieee->geo.bg[i].freq == freq)
10887 return ieee->geo.bg[i].channel;
10888
10889 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10890 for (i = 0; i < ieee->geo.a_channels; i++)
10891 if (ieee->geo.a[i].freq == freq)
10892 return ieee->geo.a[i].channel;
10893
10894 return 0;
10895}
10896
10897static int ipw_set_geo(struct ieee80211_device *ieee,
10898 const struct ieee80211_geo *geo)
10899{
10900 memcpy(ieee->geo.name, geo->name, 3);
10901 ieee->geo.name[3] = '\0';
10902 ieee->geo.bg_channels = geo->bg_channels;
10903 ieee->geo.a_channels = geo->a_channels;
10904 memcpy(ieee->geo.bg, geo->bg, geo->bg_channels *
10905 sizeof(struct ieee80211_channel));
10906 memcpy(ieee->geo.a, geo->a, ieee->geo.a_channels *
10907 sizeof(struct ieee80211_channel));
10908 return 0;
10909}
10910
10911static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *ieee)
10912{
10913 return &ieee->geo;
10914}
10915
James Ketrenos43f66a62005-03-25 12:31:53 -060010916#define MAX_HW_RESTARTS 5
10917static int ipw_up(struct ipw_priv *priv)
10918{
James Ketrenos4f36f802005-08-03 20:36:56 -050010919 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060010920
10921 if (priv->status & STATUS_EXIT_PENDING)
10922 return -EIO;
10923
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010924 if (cmdlog && !priv->cmdlog) {
10925 priv->cmdlog = kmalloc(sizeof(*priv->cmdlog) * cmdlog,
10926 GFP_KERNEL);
10927 if (priv->cmdlog == NULL) {
10928 IPW_ERROR("Error allocating %d command log entries.\n",
10929 cmdlog);
10930 } else {
10931 memset(priv->cmdlog, 0, sizeof(*priv->cmdlog) * cmdlog);
10932 priv->cmdlog_len = cmdlog;
10933 }
10934 }
10935
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010936 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040010937 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060010938 * Also start the clocks. */
10939 rc = ipw_load(priv);
10940 if (rc) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010941 IPW_ERROR("Unable to load firmware: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010942 return rc;
10943 }
10944
10945 ipw_init_ordinals(priv);
10946 if (!(priv->config & CFG_CUSTOM_MAC))
10947 eeprom_parse_mac(priv, priv->mac_addr);
10948 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
10949
James Ketrenos4f36f802005-08-03 20:36:56 -050010950 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
10951 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
10952 ipw_geos[j].name, 3))
10953 break;
10954 }
10955 if (j == ARRAY_SIZE(ipw_geos))
10956 j = 0;
Liu Hong1fe0adb2005-08-19 09:33:10 -050010957 if (ipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050010958 IPW_WARNING("Could not set geography.");
10959 return 0;
10960 }
10961
10962 IPW_DEBUG_INFO("Geography %03d [%s] detected.\n",
10963 j, priv->ieee->geo.name);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010964
James Ketrenosb095c382005-08-24 22:04:42 -050010965 if (priv->status & STATUS_RF_KILL_SW) {
10966 IPW_WARNING("Radio disabled by module parameter.\n");
10967 return 0;
10968 } else if (rf_kill_active(priv)) {
10969 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
10970 "Kill switch must be turned off for "
10971 "wireless networking to work.\n");
10972 queue_delayed_work(priv->workqueue, &priv->rf_kill,
10973 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010974 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010975 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010976
10977 rc = ipw_config(priv);
10978 if (!rc) {
10979 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010980
James Ketrenose6666192005-08-12 09:17:04 -050010981 /* If configure to try and auto-associate, kick
10982 * off a scan. */
10983 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010984
James Ketrenos43f66a62005-03-25 12:31:53 -060010985 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010986 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010987
James Ketrenosc848d0a2005-08-24 21:56:24 -050010988 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010989 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
10990 i, MAX_HW_RESTARTS);
10991
10992 /* We had an error bringing up the hardware, so take it
10993 * all the way back down so we can try again */
10994 ipw_down(priv);
10995 }
10996
Jeff Garzikbf794512005-07-31 13:07:26 -040010997 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060010998 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010999 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011000
James Ketrenos43f66a62005-03-25 12:31:53 -060011001 return -EIO;
11002}
11003
James Ketrenosc848d0a2005-08-24 21:56:24 -050011004static void ipw_bg_up(void *data)
11005{
11006 struct ipw_priv *priv = data;
11007 down(&priv->sem);
11008 ipw_up(data);
11009 up(&priv->sem);
11010}
11011
James Ketrenosb095c382005-08-24 22:04:42 -050011012static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011013{
James Ketrenosb095c382005-08-24 22:04:42 -050011014 int i;
11015
11016 if (priv->status & STATUS_SCANNING) {
11017 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11018 ipw_abort_scan(priv);
11019 }
11020
11021 if (priv->status & STATUS_ASSOCIATED) {
11022 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11023 ipw_disassociate(priv);
11024 }
11025
11026 ipw_led_shutdown(priv);
11027
11028 /* Wait up to 1s for status to change to not scanning and not
11029 * associated (disassociation can take a while for a ful 802.11
11030 * exchange */
11031 for (i = 1000; i && (priv->status &
11032 (STATUS_DISASSOCIATING |
11033 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11034 udelay(10);
11035
11036 if (priv->status & (STATUS_DISASSOCIATING |
11037 STATUS_ASSOCIATED | STATUS_SCANNING))
11038 IPW_DEBUG_INFO("Still associated or scanning...\n");
11039 else
11040 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11041
James Ketrenosc848d0a2005-08-24 21:56:24 -050011042 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011043 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011044
11045 priv->status &= ~STATUS_INIT;
11046}
11047
11048static void ipw_down(struct ipw_priv *priv)
11049{
11050 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11051
11052 priv->status |= STATUS_EXIT_PENDING;
11053
11054 if (ipw_is_init(priv))
11055 ipw_deinit(priv);
11056
11057 /* Wipe out the EXIT_PENDING status bit if we are not actually
11058 * exiting the module */
11059 if (!exit_pending)
11060 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011061
11062 /* tell the device to stop sending interrupts */
11063 ipw_disable_interrupts(priv);
11064
11065 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011066 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011067 netif_carrier_off(priv->net_dev);
11068 netif_stop_queue(priv->net_dev);
11069
11070 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011071
11072 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011073}
11074
James Ketrenosc848d0a2005-08-24 21:56:24 -050011075static void ipw_bg_down(void *data)
11076{
11077 struct ipw_priv *priv = data;
11078 down(&priv->sem);
11079 ipw_down(data);
11080 up(&priv->sem);
11081}
11082
James Ketrenosafbf30a2005-08-25 00:05:33 -050011083#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011084static int ipw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
11085{
James Ketrenosea2b26e2005-08-24 21:25:16 -050011086 struct iwreq *wrq = (struct iwreq *)rq;
11087 int ret = -1;
11088 switch (cmd) {
11089 case IPW_IOCTL_WPA_SUPPLICANT:
11090 ret = ipw_wpa_supplicant(dev, &wrq->u.data);
11091 return ret;
11092
11093 default:
11094 return -EOPNOTSUPP;
11095 }
11096
James Ketrenosea2b26e2005-08-24 21:25:16 -050011097 return -EOPNOTSUPP;
11098}
James Ketrenosafbf30a2005-08-25 00:05:33 -050011099#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -050011100
James Ketrenos43f66a62005-03-25 12:31:53 -060011101/* Called by register_netdev() */
11102static int ipw_net_init(struct net_device *dev)
11103{
11104 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011105 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011106
James Ketrenosc848d0a2005-08-24 21:56:24 -050011107 if (ipw_up(priv)) {
11108 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011109 return -EIO;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011110 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011111
James Ketrenosc848d0a2005-08-24 21:56:24 -050011112 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011113 return 0;
11114}
11115
11116/* PCI driver stuff */
11117static struct pci_device_id card_ids[] = {
11118 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11119 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11120 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11121 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11122 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11123 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11124 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11125 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11126 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11127 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11128 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11129 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11130 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11131 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11132 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11133 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11134 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
11135 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011136 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050011137 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011138 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
11139 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011140
James Ketrenos43f66a62005-03-25 12:31:53 -060011141 /* required last entry */
11142 {0,}
11143};
11144
11145MODULE_DEVICE_TABLE(pci, card_ids);
11146
11147static struct attribute *ipw_sysfs_entries[] = {
11148 &dev_attr_rf_kill.attr,
11149 &dev_attr_direct_dword.attr,
11150 &dev_attr_indirect_byte.attr,
11151 &dev_attr_indirect_dword.attr,
11152 &dev_attr_mem_gpio_reg.attr,
11153 &dev_attr_command_event_reg.attr,
11154 &dev_attr_nic_type.attr,
11155 &dev_attr_status.attr,
11156 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011157 &dev_attr_error.attr,
11158 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011159 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011160 &dev_attr_eeprom_delay.attr,
11161 &dev_attr_ucode_version.attr,
11162 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011163 &dev_attr_scan_age.attr,
11164 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011165 &dev_attr_speed_scan.attr,
11166 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011167 NULL
11168};
11169
11170static struct attribute_group ipw_attribute_group = {
11171 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011172 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011173};
11174
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011175static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011176{
11177 int err = 0;
11178 struct net_device *net_dev;
11179 void __iomem *base;
11180 u32 length, val;
11181 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011182 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011183
11184 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
11185 if (net_dev == NULL) {
11186 err = -ENOMEM;
11187 goto out;
11188 }
11189
11190 priv = ieee80211_priv(net_dev);
11191 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011192
James Ketrenos43f66a62005-03-25 12:31:53 -060011193 priv->net_dev = net_dev;
11194 priv->pci_dev = pdev;
11195#ifdef CONFIG_IPW_DEBUG
11196 ipw_debug_level = debug;
11197#endif
11198 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011199 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11200 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011201
James Ketrenosc848d0a2005-08-24 21:56:24 -050011202 init_MUTEX(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011203 if (pci_enable_device(pdev)) {
11204 err = -ENODEV;
11205 goto out_free_ieee80211;
11206 }
11207
11208 pci_set_master(pdev);
11209
Tobias Klauser0e08b442005-06-20 14:28:41 -070011210 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040011211 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070011212 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060011213 if (err) {
11214 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11215 goto out_pci_disable_device;
11216 }
11217
11218 pci_set_drvdata(pdev, priv);
11219
11220 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011221 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011222 goto out_pci_disable_device;
11223
Jeff Garzikbf794512005-07-31 13:07:26 -040011224 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011225 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011226 pci_read_config_dword(pdev, 0x40, &val);
11227 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011228 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011229
James Ketrenos43f66a62005-03-25 12:31:53 -060011230 length = pci_resource_len(pdev, 0);
11231 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011232
James Ketrenos43f66a62005-03-25 12:31:53 -060011233 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
11234 if (!base) {
11235 err = -ENODEV;
11236 goto out_pci_release_regions;
11237 }
11238
11239 priv->hw_base = base;
11240 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11241 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11242
11243 err = ipw_setup_deferred_work(priv);
11244 if (err) {
11245 IPW_ERROR("Unable to setup deferred work\n");
11246 goto out_iounmap;
11247 }
11248
James Ketrenosb095c382005-08-24 22:04:42 -050011249 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011250
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011251 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011252 if (err) {
11253 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11254 goto out_destroy_workqueue;
11255 }
11256
11257 SET_MODULE_OWNER(net_dev);
11258 SET_NETDEV_DEV(net_dev, &pdev->dev);
11259
James Ketrenosa613bff2005-08-24 21:43:11 -050011260 ipw_wx_data.spy_data = &priv->ieee->spy_data;
11261 ipw_wx_data.ieee80211 = priv->ieee;
11262
James Ketrenosc848d0a2005-08-24 21:56:24 -050011263 down(&priv->sem);
11264
James Ketrenos43f66a62005-03-25 12:31:53 -060011265 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11266 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011267 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011268
James Ketrenosb095c382005-08-24 22:04:42 -050011269#ifdef CONFIG_IPW_QOS
James Ketrenos3b9990c2005-08-19 13:18:55 -050011270 priv->ieee->handle_probe_response = ipw_handle_beacon;
11271 priv->ieee->handle_beacon = ipw_handle_probe_response;
11272 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
James Ketrenosb095c382005-08-24 22:04:42 -050011273#endif /* CONFIG_IPW_QOS */
11274
James Ketrenosc848d0a2005-08-24 21:56:24 -050011275 priv->ieee->perfect_rssi = -20;
11276 priv->ieee->worst_rssi = -85;
11277
James Ketrenos43f66a62005-03-25 12:31:53 -060011278 net_dev->open = ipw_net_open;
11279 net_dev->stop = ipw_net_stop;
11280 net_dev->init = ipw_net_init;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011281#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011282 net_dev->do_ioctl = ipw_ioctl;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011283#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011284 net_dev->get_stats = ipw_net_get_stats;
11285 net_dev->set_multicast_list = ipw_net_set_multicast_list;
11286 net_dev->set_mac_address = ipw_net_set_mac_address;
11287 net_dev->get_wireless_stats = ipw_get_wireless_stats;
James Ketrenosa613bff2005-08-24 21:43:11 -050011288 net_dev->wireless_data = &ipw_wx_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011289 net_dev->wireless_handlers = &ipw_wx_handler_def;
11290 net_dev->ethtool_ops = &ipw_ethtool_ops;
11291 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011292 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011293 net_dev->mem_start = pci_resource_start(pdev, 0);
11294 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11295
11296 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11297 if (err) {
11298 IPW_ERROR("failed to create sysfs device attributes\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -050011299 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011300 goto out_release_irq;
11301 }
11302
James Ketrenosc848d0a2005-08-24 21:56:24 -050011303 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011304 err = register_netdev(net_dev);
11305 if (err) {
11306 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011307 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011308 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011309 return 0;
11310
James Ketrenosa613bff2005-08-24 21:43:11 -050011311 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011312 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011313 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011314 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011315 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011316 destroy_workqueue(priv->workqueue);
11317 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011318 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011319 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011320 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011321 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011322 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011323 pci_disable_device(pdev);
11324 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011325 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060011326 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011327 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011328 return err;
11329}
11330
11331static void ipw_pci_remove(struct pci_dev *pdev)
11332{
11333 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011334 struct list_head *p, *q;
11335 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011336
James Ketrenos43f66a62005-03-25 12:31:53 -060011337 if (!priv)
11338 return;
11339
James Ketrenosb095c382005-08-24 22:04:42 -050011340 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011341
11342 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011343 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -050011344 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011345
James Ketrenosb095c382005-08-24 22:04:42 -050011346 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011347
11348 unregister_netdev(priv->net_dev);
11349
11350 if (priv->rxq) {
11351 ipw_rx_queue_free(priv, priv->rxq);
11352 priv->rxq = NULL;
11353 }
11354 ipw_tx_queue_free(priv);
11355
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011356 if (priv->cmdlog) {
11357 kfree(priv->cmdlog);
11358 priv->cmdlog = NULL;
11359 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011360 /* ipw_down will ensure that there is no more pending work
11361 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011362 cancel_delayed_work(&priv->adhoc_check);
11363 cancel_delayed_work(&priv->gather_stats);
11364 cancel_delayed_work(&priv->request_scan);
11365 cancel_delayed_work(&priv->rf_kill);
11366 cancel_delayed_work(&priv->scan_check);
11367 destroy_workqueue(priv->workqueue);
11368 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011369
James Ketrenosafbf30a2005-08-25 00:05:33 -050011370 /* Free MAC hash list for ADHOC */
11371 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11372 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
11373 kfree(list_entry(p, struct ipw_ibss_seq, list));
11374 list_del(p);
11375 }
11376 }
11377
James Ketrenosb39860c2005-08-12 09:36:32 -050011378 if (priv->error) {
11379 ipw_free_error_log(priv->error);
11380 priv->error = NULL;
11381 }
11382
James Ketrenos43f66a62005-03-25 12:31:53 -060011383 free_irq(pdev->irq, priv);
11384 iounmap(priv->hw_base);
11385 pci_release_regions(pdev);
11386 pci_disable_device(pdev);
11387 pci_set_drvdata(pdev, NULL);
11388 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011389 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011390}
11391
James Ketrenos43f66a62005-03-25 12:31:53 -060011392#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011393static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011394{
11395 struct ipw_priv *priv = pci_get_drvdata(pdev);
11396 struct net_device *dev = priv->net_dev;
11397
11398 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11399
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011400 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011401 ipw_down(priv);
11402
11403 /* Remove the PRESENT state of the device */
11404 netif_device_detach(dev);
11405
James Ketrenos43f66a62005-03-25 12:31:53 -060011406 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011407 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011408 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011409
James Ketrenos43f66a62005-03-25 12:31:53 -060011410 return 0;
11411}
11412
11413static int ipw_pci_resume(struct pci_dev *pdev)
11414{
11415 struct ipw_priv *priv = pci_get_drvdata(pdev);
11416 struct net_device *dev = priv->net_dev;
11417 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011418
James Ketrenos43f66a62005-03-25 12:31:53 -060011419 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11420
James Ketrenosea2b26e2005-08-24 21:25:16 -050011421 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011422 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011423 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011424
James Ketrenos43f66a62005-03-25 12:31:53 -060011425 /*
11426 * Suspend/Resume resets the PCI configuration space, so we have to
11427 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11428 * from interfering with C3 CPU state. pci_restore_state won't help
11429 * here since it only restores the first 64 bytes pci config header.
11430 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011431 pci_read_config_dword(pdev, 0x40, &val);
11432 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011433 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11434
11435 /* Set the device back into the PRESENT state; this will also wake
11436 * the queue of needed */
11437 netif_device_attach(dev);
11438
11439 /* Bring the device back up */
11440 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011441
James Ketrenos43f66a62005-03-25 12:31:53 -060011442 return 0;
11443}
11444#endif
11445
11446/* driver initialization stuff */
11447static struct pci_driver ipw_driver = {
11448 .name = DRV_NAME,
11449 .id_table = card_ids,
11450 .probe = ipw_pci_probe,
11451 .remove = __devexit_p(ipw_pci_remove),
11452#ifdef CONFIG_PM
11453 .suspend = ipw_pci_suspend,
11454 .resume = ipw_pci_resume,
11455#endif
11456};
11457
11458static int __init ipw_init(void)
11459{
11460 int ret;
11461
11462 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11463 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11464
11465 ret = pci_module_init(&ipw_driver);
11466 if (ret) {
11467 IPW_ERROR("Unable to initialize PCI module\n");
11468 return ret;
11469 }
11470
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011471 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011472 if (ret) {
11473 IPW_ERROR("Unable to create driver sysfs file\n");
11474 pci_unregister_driver(&ipw_driver);
11475 return ret;
11476 }
11477
11478 return ret;
11479}
11480
11481static void __exit ipw_exit(void)
11482{
11483 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11484 pci_unregister_driver(&ipw_driver);
11485}
11486
11487module_param(disable, int, 0444);
11488MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11489
11490module_param(associate, int, 0444);
11491MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
11492
11493module_param(auto_create, int, 0444);
11494MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11495
James Ketrenosa613bff2005-08-24 21:43:11 -050011496module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011497MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011498
James Ketrenos43f66a62005-03-25 12:31:53 -060011499module_param(debug, int, 0444);
11500MODULE_PARM_DESC(debug, "debug output mask");
11501
11502module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011503MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011504
James Ketrenosb095c382005-08-24 22:04:42 -050011505#ifdef CONFIG_IPW_QOS
11506module_param(qos_enable, int, 0444);
11507MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
11508
11509module_param(qos_burst_enable, int, 0444);
11510MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11511
11512module_param(qos_no_ack_mask, int, 0444);
11513MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11514
11515module_param(burst_duration_CCK, int, 0444);
11516MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11517
11518module_param(burst_duration_OFDM, int, 0444);
11519MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
11520#endif /* CONFIG_IPW_QOS */
11521
11522#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060011523module_param(mode, int, 0444);
11524MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
11525#else
11526module_param(mode, int, 0444);
11527MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
11528#endif
11529
James Ketrenosb095c382005-08-24 22:04:42 -050011530module_param(hwcrypto, int, 0444);
11531MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)");
11532
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011533module_param(cmdlog, int, 0444);
11534MODULE_PARM_DESC(cmdlog,
11535 "allocate a ring buffer for logging firmware commands");
11536
James Ketrenos43f66a62005-03-25 12:31:53 -060011537module_exit(ipw_exit);
11538module_init(ipw_init);