blob: e36a1fd9eefd3db6b5745810f2efaeab31850665 [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
Hong Liu7b996592005-08-25 17:36:13 +08001887 if (priv->status & STATUS_ASSOCIATING) {
1888 IPW_DEBUG_HC("abandon a command while associating\n");
1889 spin_unlock_irqrestore(&priv->lock, flags);
1890 return -1;
1891 }
1892
1893 if (priv->status & STATUS_DISASSOCIATING) {
1894 IPW_DEBUG_HC("abandon a command while disassociating\n");
1895 spin_unlock_irqrestore(&priv->lock, flags);
1896 return -1;
1897 }
1898
James Ketrenos43f66a62005-03-25 12:31:53 -06001899 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001900
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001901 if (priv->cmdlog) {
1902 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
1903 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
1904 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
1905 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
1906 cmd->len);
1907 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
1908 }
1909
James Ketrenosb095c382005-08-24 22:04:42 -05001910 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1911 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1912 priv->status);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001913 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001914
1915 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, &cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001916 if (rc) {
1917 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001918 IPW_ERROR("Failed to send %s: Reason %d\n",
1919 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05001920 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001921 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001922 }
1923 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001924
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001925 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1926 !(priv->
1927 status & STATUS_HCMD_ACTIVE),
1928 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001929 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001930 spin_lock_irqsave(&priv->lock, flags);
1931 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001932 IPW_ERROR("Failed to send %s: Command timed out.\n",
1933 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001934 priv->status &= ~STATUS_HCMD_ACTIVE;
1935 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001936 rc = -EIO;
1937 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001938 }
1939 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05001940 } else
1941 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001942
James Ketrenosb095c382005-08-24 22:04:42 -05001943 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001944 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
1945 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001946 rc = -EIO;
1947 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06001948 }
1949
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001950 exit:
1951 if (priv->cmdlog) {
1952 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
1953 priv->cmdlog_pos %= priv->cmdlog_len;
1954 }
1955 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06001956}
1957
1958static int ipw_send_host_complete(struct ipw_priv *priv)
1959{
1960 struct host_cmd cmd = {
1961 .cmd = IPW_CMD_HOST_COMPLETE,
1962 .len = 0
1963 };
1964
1965 if (!priv) {
1966 IPW_ERROR("Invalid args\n");
1967 return -1;
1968 }
1969
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001970 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001971}
1972
Jeff Garzikbf794512005-07-31 13:07:26 -04001973static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06001974 struct ipw_sys_config *config)
1975{
1976 struct host_cmd cmd = {
1977 .cmd = IPW_CMD_SYSTEM_CONFIG,
1978 .len = sizeof(*config)
1979 };
1980
1981 if (!priv || !config) {
1982 IPW_ERROR("Invalid args\n");
1983 return -1;
1984 }
1985
James Ketrenosafbf30a2005-08-25 00:05:33 -05001986 memcpy(cmd.param, config, sizeof(*config));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001987 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001988}
1989
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001990static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06001991{
1992 struct host_cmd cmd = {
1993 .cmd = IPW_CMD_SSID,
1994 .len = min(len, IW_ESSID_MAX_SIZE)
1995 };
1996
1997 if (!priv || !ssid) {
1998 IPW_ERROR("Invalid args\n");
1999 return -1;
2000 }
2001
James Ketrenosafbf30a2005-08-25 00:05:33 -05002002 memcpy(cmd.param, ssid, cmd.len);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002003 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002004}
2005
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002006static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002007{
2008 struct host_cmd cmd = {
2009 .cmd = IPW_CMD_ADAPTER_ADDRESS,
2010 .len = ETH_ALEN
2011 };
2012
2013 if (!priv || !mac) {
2014 IPW_ERROR("Invalid args\n");
2015 return -1;
2016 }
2017
2018 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
2019 priv->net_dev->name, MAC_ARG(mac));
2020
James Ketrenosafbf30a2005-08-25 00:05:33 -05002021 memcpy(cmd.param, mac, ETH_ALEN);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002022 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002023}
2024
James Ketrenosa613bff2005-08-24 21:43:11 -05002025/*
2026 * NOTE: This must be executed from our workqueue as it results in udelay
2027 * being called which may corrupt the keyboard if executed on default
2028 * workqueue
2029 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002030static void ipw_adapter_restart(void *adapter)
2031{
2032 struct ipw_priv *priv = adapter;
2033
2034 if (priv->status & STATUS_RF_KILL_MASK)
2035 return;
2036
2037 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002038
2039 if (priv->assoc_network &&
2040 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2041 ipw_remove_current_network(priv);
2042
James Ketrenos43f66a62005-03-25 12:31:53 -06002043 if (ipw_up(priv)) {
2044 IPW_ERROR("Failed to up device\n");
2045 return;
2046 }
2047}
2048
James Ketrenosc848d0a2005-08-24 21:56:24 -05002049static void ipw_bg_adapter_restart(void *data)
2050{
2051 struct ipw_priv *priv = data;
2052 down(&priv->sem);
2053 ipw_adapter_restart(data);
2054 up(&priv->sem);
2055}
2056
James Ketrenos43f66a62005-03-25 12:31:53 -06002057#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2058
2059static void ipw_scan_check(void *data)
2060{
2061 struct ipw_priv *priv = data;
2062 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2063 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Jeff Garzikbf794512005-07-31 13:07:26 -04002064 "adapter (%dms).\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002065 IPW_SCAN_CHECK_WATCHDOG / 100);
James Ketrenosa613bff2005-08-24 21:43:11 -05002066 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002067 }
2068}
2069
James Ketrenosc848d0a2005-08-24 21:56:24 -05002070static void ipw_bg_scan_check(void *data)
2071{
2072 struct ipw_priv *priv = data;
2073 down(&priv->sem);
2074 ipw_scan_check(data);
2075 up(&priv->sem);
2076}
2077
James Ketrenos43f66a62005-03-25 12:31:53 -06002078static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2079 struct ipw_scan_request_ext *request)
2080{
2081 struct host_cmd cmd = {
2082 .cmd = IPW_CMD_SCAN_REQUEST_EXT,
2083 .len = sizeof(*request)
2084 };
2085
James Ketrenosafbf30a2005-08-25 00:05:33 -05002086 memcpy(cmd.param, request, sizeof(*request));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002087 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002088}
2089
2090static int ipw_send_scan_abort(struct ipw_priv *priv)
2091{
2092 struct host_cmd cmd = {
2093 .cmd = IPW_CMD_SCAN_ABORT,
2094 .len = 0
2095 };
2096
2097 if (!priv) {
2098 IPW_ERROR("Invalid args\n");
2099 return -1;
2100 }
2101
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_set_sensitivity(struct ipw_priv *priv, u16 sens)
2106{
2107 struct host_cmd cmd = {
2108 .cmd = IPW_CMD_SENSITIVITY_CALIB,
2109 .len = sizeof(struct ipw_sensitivity_calib)
2110 };
2111 struct ipw_sensitivity_calib *calib = (struct ipw_sensitivity_calib *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002112 &cmd.param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002113 calib->beacon_rssi_raw = sens;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002114 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002115}
2116
2117static int ipw_send_associate(struct ipw_priv *priv,
2118 struct ipw_associate *associate)
2119{
2120 struct host_cmd cmd = {
2121 .cmd = IPW_CMD_ASSOCIATE,
2122 .len = sizeof(*associate)
2123 };
2124
James Ketrenosa613bff2005-08-24 21:43:11 -05002125 struct ipw_associate tmp_associate;
2126 memcpy(&tmp_associate, associate, sizeof(*associate));
2127 tmp_associate.policy_support =
2128 cpu_to_le16(tmp_associate.policy_support);
2129 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
2130 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
2131 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
2132 tmp_associate.listen_interval =
2133 cpu_to_le16(tmp_associate.listen_interval);
2134 tmp_associate.beacon_interval =
2135 cpu_to_le16(tmp_associate.beacon_interval);
2136 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
2137
James Ketrenos43f66a62005-03-25 12:31:53 -06002138 if (!priv || !associate) {
2139 IPW_ERROR("Invalid args\n");
2140 return -1;
2141 }
2142
James Ketrenosafbf30a2005-08-25 00:05:33 -05002143 memcpy(cmd.param, &tmp_associate, sizeof(*associate));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002144 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002145}
2146
2147static int ipw_send_supported_rates(struct ipw_priv *priv,
2148 struct ipw_supported_rates *rates)
2149{
2150 struct host_cmd cmd = {
2151 .cmd = IPW_CMD_SUPPORTED_RATES,
2152 .len = sizeof(*rates)
2153 };
2154
2155 if (!priv || !rates) {
2156 IPW_ERROR("Invalid args\n");
2157 return -1;
2158 }
2159
James Ketrenosafbf30a2005-08-25 00:05:33 -05002160 memcpy(cmd.param, rates, sizeof(*rates));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002161 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002162}
2163
2164static int ipw_set_random_seed(struct ipw_priv *priv)
2165{
2166 struct host_cmd cmd = {
2167 .cmd = IPW_CMD_SEED_NUMBER,
2168 .len = sizeof(u32)
2169 };
2170
2171 if (!priv) {
2172 IPW_ERROR("Invalid args\n");
2173 return -1;
2174 }
2175
2176 get_random_bytes(&cmd.param, sizeof(u32));
2177
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002178 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002179}
2180
James Ketrenos43f66a62005-03-25 12:31:53 -06002181static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2182{
2183 struct host_cmd cmd = {
2184 .cmd = IPW_CMD_CARD_DISABLE,
2185 .len = sizeof(u32)
2186 };
2187
2188 if (!priv) {
2189 IPW_ERROR("Invalid args\n");
2190 return -1;
2191 }
2192
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002193 *((u32 *) & cmd.param) = phy_off;
James Ketrenos43f66a62005-03-25 12:31:53 -06002194
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002195 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002196}
James Ketrenos43f66a62005-03-25 12:31:53 -06002197
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002198static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002199{
2200 struct host_cmd cmd = {
2201 .cmd = IPW_CMD_TX_POWER,
2202 .len = sizeof(*power)
2203 };
2204
2205 if (!priv || !power) {
2206 IPW_ERROR("Invalid args\n");
2207 return -1;
2208 }
2209
James Ketrenosafbf30a2005-08-25 00:05:33 -05002210 memcpy(cmd.param, power, sizeof(*power));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002211 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002212}
2213
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002214static int ipw_set_tx_power(struct ipw_priv *priv)
2215{
Liu Hong1fe0adb2005-08-19 09:33:10 -05002216 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002217 struct ipw_tx_power tx_power;
2218 s8 max_power;
2219 int i;
2220
2221 memset(&tx_power, 0, sizeof(tx_power));
2222
2223 /* configure device for 'G' band */
2224 tx_power.ieee_mode = IPW_G_MODE;
2225 tx_power.num_channels = geo->bg_channels;
2226 for (i = 0; i < geo->bg_channels; i++) {
2227 max_power = geo->bg[i].max_power;
2228 tx_power.channels_tx_power[i].channel_number =
2229 geo->bg[i].channel;
2230 tx_power.channels_tx_power[i].tx_power = max_power ?
2231 min(max_power, priv->tx_power) : priv->tx_power;
2232 }
2233 if (ipw_send_tx_power(priv, &tx_power))
2234 return -EIO;
2235
2236 /* configure device to also handle 'B' band */
2237 tx_power.ieee_mode = IPW_B_MODE;
2238 if (ipw_send_tx_power(priv, &tx_power))
2239 return -EIO;
2240
2241 /* configure device to also handle 'A' band */
2242 if (priv->ieee->abg_true) {
2243 tx_power.ieee_mode = IPW_A_MODE;
2244 tx_power.num_channels = geo->a_channels;
2245 for (i = 0; i < tx_power.num_channels; i++) {
2246 max_power = geo->a[i].max_power;
2247 tx_power.channels_tx_power[i].channel_number =
2248 geo->a[i].channel;
2249 tx_power.channels_tx_power[i].tx_power = max_power ?
2250 min(max_power, priv->tx_power) : priv->tx_power;
2251 }
2252 if (ipw_send_tx_power(priv, &tx_power))
2253 return -EIO;
2254 }
2255 return 0;
2256}
2257
James Ketrenos43f66a62005-03-25 12:31:53 -06002258static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2259{
2260 struct ipw_rts_threshold rts_threshold = {
2261 .rts_threshold = rts,
2262 };
2263 struct host_cmd cmd = {
2264 .cmd = IPW_CMD_RTS_THRESHOLD,
2265 .len = sizeof(rts_threshold)
2266 };
2267
2268 if (!priv) {
2269 IPW_ERROR("Invalid args\n");
2270 return -1;
2271 }
2272
James Ketrenosafbf30a2005-08-25 00:05:33 -05002273 memcpy(cmd.param, &rts_threshold, sizeof(rts_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002274 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002275}
2276
2277static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2278{
2279 struct ipw_frag_threshold frag_threshold = {
2280 .frag_threshold = frag,
2281 };
2282 struct host_cmd cmd = {
2283 .cmd = IPW_CMD_FRAG_THRESHOLD,
2284 .len = sizeof(frag_threshold)
2285 };
2286
2287 if (!priv) {
2288 IPW_ERROR("Invalid args\n");
2289 return -1;
2290 }
2291
James Ketrenosafbf30a2005-08-25 00:05:33 -05002292 memcpy(cmd.param, &frag_threshold, sizeof(frag_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002293 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002294}
2295
2296static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2297{
2298 struct host_cmd cmd = {
2299 .cmd = IPW_CMD_POWER_MODE,
2300 .len = sizeof(u32)
2301 };
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002302 u32 *param = (u32 *) (&cmd.param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002303
2304 if (!priv) {
2305 IPW_ERROR("Invalid args\n");
2306 return -1;
2307 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002308
James Ketrenos43f66a62005-03-25 12:31:53 -06002309 /* If on battery, set to 3, if AC set to CAM, else user
2310 * level */
2311 switch (mode) {
2312 case IPW_POWER_BATTERY:
2313 *param = IPW_POWER_INDEX_3;
2314 break;
2315 case IPW_POWER_AC:
2316 *param = IPW_POWER_MODE_CAM;
2317 break;
2318 default:
2319 *param = mode;
2320 break;
2321 }
2322
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002323 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002324}
2325
James Ketrenosafbf30a2005-08-25 00:05:33 -05002326static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2327{
2328 struct ipw_retry_limit retry_limit = {
2329 .short_retry_limit = slimit,
2330 .long_retry_limit = llimit
2331 };
2332 struct host_cmd cmd = {
2333 .cmd = IPW_CMD_RETRY_LIMIT,
2334 .len = sizeof(retry_limit)
2335 };
2336
2337 if (!priv) {
2338 IPW_ERROR("Invalid args\n");
2339 return -1;
2340 }
2341
2342 memcpy(cmd.param, &retry_limit, sizeof(retry_limit));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002343 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05002344}
2345
James Ketrenos43f66a62005-03-25 12:31:53 -06002346/*
2347 * The IPW device contains a Microwire compatible EEPROM that stores
2348 * various data like the MAC address. Usually the firmware has exclusive
2349 * access to the eeprom, but during device initialization (before the
2350 * device driver has sent the HostComplete command to the firmware) the
2351 * device driver has read access to the EEPROM by way of indirect addressing
2352 * through a couple of memory mapped registers.
2353 *
2354 * The following is a simplified implementation for pulling data out of the
2355 * the eeprom, along with some helper functions to find information in
2356 * the per device private data's copy of the eeprom.
2357 *
2358 * NOTE: To better understand how these functions work (i.e what is a chip
2359 * select and why do have to keep driving the eeprom clock?), read
2360 * just about any data sheet for a Microwire compatible EEPROM.
2361 */
2362
2363/* write a 32 bit value into the indirect accessor register */
2364static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2365{
2366 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002367
James Ketrenos43f66a62005-03-25 12:31:53 -06002368 /* the eeprom requires some time to complete the operation */
2369 udelay(p->eeprom_delay);
2370
2371 return;
2372}
2373
2374/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002375static inline void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002376{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002377 eeprom_write_reg(priv, 0);
2378 eeprom_write_reg(priv, EEPROM_BIT_CS);
2379 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2380 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002381}
2382
2383/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002384static inline void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002385{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002386 eeprom_write_reg(priv, EEPROM_BIT_CS);
2387 eeprom_write_reg(priv, 0);
2388 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002389}
2390
2391/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002392static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002393{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002394 int d = (bit ? EEPROM_BIT_DI : 0);
2395 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2396 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002397}
2398
2399/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002400static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002401{
2402 int i;
2403
2404 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002405 eeprom_write_bit(priv, 1);
2406 eeprom_write_bit(priv, op & 2);
2407 eeprom_write_bit(priv, op & 1);
2408 for (i = 7; i >= 0; i--) {
2409 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002410 }
2411}
2412
2413/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002414static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002415{
2416 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002417 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002418
James Ketrenos43f66a62005-03-25 12:31:53 -06002419 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002420 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002421
2422 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002423 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002424
2425 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002426 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002427 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002428 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2429 eeprom_write_reg(priv, EEPROM_BIT_CS);
2430 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2431 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002432 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002433
James Ketrenos43f66a62005-03-25 12:31:53 -06002434 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002435 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002436 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002437
James Ketrenos43f66a62005-03-25 12:31:53 -06002438 return r;
2439}
2440
2441/* helper function for pulling the mac address out of the private */
2442/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002443static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002444{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002445 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002446}
2447
2448/*
2449 * Either the device driver (i.e. the host) or the firmware can
2450 * load eeprom data into the designated region in SRAM. If neither
2451 * happens then the FW will shutdown with a fatal error.
2452 *
2453 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2454 * bit needs region of shared SRAM needs to be non-zero.
2455 */
2456static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2457{
2458 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002459 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002460
James Ketrenos43f66a62005-03-25 12:31:53 -06002461 IPW_DEBUG_TRACE(">>\n");
2462
2463 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002464 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002465 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002466
Jeff Garzikbf794512005-07-31 13:07:26 -04002467 /*
2468 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002469 copy. Otherwise let the firmware know to perform the operation
2470 on it's own
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002471 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002472 if ((priv->eeprom + EEPROM_VERSION) != 0) {
2473 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2474
2475 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002476 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002477 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002478
2479 /* Do not load eeprom data on fatal error or suspend */
2480 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2481 } else {
2482 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2483
2484 /* Load eeprom data on fatal error or suspend */
2485 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2486 }
2487
2488 IPW_DEBUG_TRACE("<<\n");
2489}
2490
James Ketrenos43f66a62005-03-25 12:31:53 -06002491static inline void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
2492{
2493 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002494 if (!count)
2495 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002496 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002497 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002498 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002499}
2500
2501static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2502{
James Ketrenosb095c382005-08-24 22:04:42 -05002503 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002504 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002505 sizeof(struct command_block));
2506}
2507
2508static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002509{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002510
2511 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002512
James Ketrenos43f66a62005-03-25 12:31:53 -06002513 /* Start the dma */
2514 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002515
James Ketrenos43f66a62005-03-25 12:31:53 -06002516 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002517 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002518
2519 IPW_DEBUG_FW("<< : \n");
2520 return 0;
2521}
2522
2523static void ipw_fw_dma_abort(struct ipw_priv *priv)
2524{
2525 u32 control = 0;
2526
2527 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002528
2529 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002530 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002531 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002532 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002533
James Ketrenos43f66a62005-03-25 12:31:53 -06002534 IPW_DEBUG_FW("<< \n");
2535}
2536
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002537static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2538 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002539{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002540 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002541 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002542 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002543 IPW_DEBUG_FW(">> :\n");
2544
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002545 ipw_write_indirect(priv, address, (u8 *) cb,
2546 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002547
2548 IPW_DEBUG_FW("<< :\n");
2549 return 0;
2550
2551}
2552
2553static int ipw_fw_dma_kick(struct ipw_priv *priv)
2554{
2555 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002556 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002557
2558 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002559
James Ketrenos43f66a62005-03-25 12:31:53 -06002560 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002561 ipw_fw_dma_write_command_block(priv, index,
2562 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002563
2564 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002565 ipw_clear_bit(priv, IPW_RESET_REG,
2566 IPW_RESET_REG_MASTER_DISABLED |
2567 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002568
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002569 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002570 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002571 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002572
2573 IPW_DEBUG_FW("<< :\n");
2574 return 0;
2575}
2576
2577static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2578{
2579 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002580 u32 register_value = 0;
2581 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002582
2583 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002584 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002585 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002586
2587 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002588 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2589 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002590
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002591 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002592 cb_fields_address = address;
2593 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002594 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002595
2596 cb_fields_address += sizeof(u32);
2597 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002598 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002599
2600 cb_fields_address += sizeof(u32);
2601 register_value = ipw_read_reg32(priv, cb_fields_address);
2602 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2603 register_value);
2604
2605 cb_fields_address += sizeof(u32);
2606 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002607 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002608
2609 IPW_DEBUG_FW(">> :\n");
2610}
2611
2612static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2613{
2614 u32 current_cb_address = 0;
2615 u32 current_cb_index = 0;
2616
2617 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002618 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002619
James Ketrenosb095c382005-08-24 22:04:42 -05002620 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002621 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002622
James Ketrenos43f66a62005-03-25 12:31:53 -06002623 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002624 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002625
2626 IPW_DEBUG_FW(">> :\n");
2627 return current_cb_index;
2628
2629}
2630
2631static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2632 u32 src_address,
2633 u32 dest_address,
2634 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002635 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002636{
2637
Jeff Garzikbf794512005-07-31 13:07:26 -04002638 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002639 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2640 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002641 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002642 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002643
2644 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2645 src_address, dest_address, length);
2646
2647 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2648 return -1;
2649
2650 last_cb_element = priv->sram_desc.last_cb_index;
2651 cb = &priv->sram_desc.cb_list[last_cb_element];
2652 priv->sram_desc.last_cb_index++;
2653
2654 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002655 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002656 control |= CB_INT_ENABLED;
2657
2658 if (is_last)
2659 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002660
James Ketrenos43f66a62005-03-25 12:31:53 -06002661 control |= length;
2662
2663 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002664 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002665
2666 /* Copy the Source and Destination addresses */
2667 cb->dest_addr = dest_address;
2668 cb->source_addr = src_address;
2669
2670 /* Copy the Control Word last */
2671 cb->control = control;
2672
2673 return 0;
2674}
2675
2676static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002677 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002678{
2679 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002680 u32 src_offset = 0;
2681 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002682 int status = 0;
2683 IPW_DEBUG_FW(">> \n");
2684 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2685 src_phys, dest_address, length);
2686 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002687 status = ipw_fw_dma_add_command_block(priv,
2688 src_phys + src_offset,
2689 dest_address +
2690 dest_offset,
2691 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002692 if (status) {
2693 IPW_DEBUG_FW_INFO(": Failed\n");
2694 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002695 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002696 IPW_DEBUG_FW_INFO(": Added new cb\n");
2697
2698 src_offset += CB_MAX_LENGTH;
2699 dest_offset += CB_MAX_LENGTH;
2700 bytes_left -= CB_MAX_LENGTH;
2701 }
2702
2703 /* add the buffer tail */
2704 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002705 status =
2706 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2707 dest_address + dest_offset,
2708 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002709 if (status) {
2710 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2711 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002712 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002713 IPW_DEBUG_FW_INFO
2714 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002715 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002716
James Ketrenos43f66a62005-03-25 12:31:53 -06002717 IPW_DEBUG_FW("<< \n");
2718 return 0;
2719}
2720
2721static int ipw_fw_dma_wait(struct ipw_priv *priv)
2722{
2723 u32 current_index = 0;
2724 u32 watchdog = 0;
2725
2726 IPW_DEBUG_FW(">> : \n");
2727
2728 current_index = ipw_fw_dma_command_block_index(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002729 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%8X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002730 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002731
2732 while (current_index < priv->sram_desc.last_cb_index) {
2733 udelay(50);
2734 current_index = ipw_fw_dma_command_block_index(priv);
2735
2736 watchdog++;
2737
2738 if (watchdog > 400) {
2739 IPW_DEBUG_FW_INFO("Timeout\n");
2740 ipw_fw_dma_dump_command_block(priv);
2741 ipw_fw_dma_abort(priv);
2742 return -1;
2743 }
2744 }
2745
2746 ipw_fw_dma_abort(priv);
2747
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002748 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002749 ipw_set_bit(priv, IPW_RESET_REG,
2750 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002751
2752 IPW_DEBUG_FW("<< dmaWaitSync \n");
2753 return 0;
2754}
2755
Jeff Garzikbf794512005-07-31 13:07:26 -04002756static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002757{
2758 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002759 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002760 unsigned long flags;
2761
2762 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002763 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2764 network = list_entry(element, struct ieee80211_network, list);
2765 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2766 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002767 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002768 &priv->ieee->network_free_list);
2769 }
2770 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002771 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002772}
2773
2774/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002775 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002776 * Reads debug register from domain0.
2777 * If card is present, pre-defined value should
2778 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002779 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002780 * @param priv
2781 * @return 1 if card is present, 0 otherwise
2782 */
2783static inline int ipw_alive(struct ipw_priv *priv)
2784{
2785 return ipw_read32(priv, 0x90) == 0xd55555d5;
2786}
2787
2788static inline int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
2789 int timeout)
2790{
2791 int i = 0;
2792
2793 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002794 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002795 return i;
2796 mdelay(10);
2797 i += 10;
2798 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002799
James Ketrenos43f66a62005-03-25 12:31:53 -06002800 return -ETIME;
2801}
2802
Jeff Garzikbf794512005-07-31 13:07:26 -04002803/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002804 * the ipw hardware. It assumes the buffer has all the bits for the
2805 * image and the caller is handling the memory allocation and clean up.
2806 */
2807
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002808static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002809{
2810 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002811
James Ketrenos43f66a62005-03-25 12:31:53 -06002812 IPW_DEBUG_TRACE(">> \n");
2813 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002814 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002815
James Ketrenosb095c382005-08-24 22:04:42 -05002816 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2817 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002818 if (rc < 0) {
2819 IPW_ERROR("stop master failed in 10ms\n");
2820 return -1;
2821 }
2822
2823 IPW_DEBUG_INFO("stop master %dms\n", rc);
2824
2825 return rc;
2826}
2827
2828static void ipw_arc_release(struct ipw_priv *priv)
2829{
2830 IPW_DEBUG_TRACE(">> \n");
2831 mdelay(5);
2832
James Ketrenosb095c382005-08-24 22:04:42 -05002833 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002834
2835 /* no one knows timing, for safety add some delay */
2836 mdelay(5);
2837}
2838
2839struct fw_header {
2840 u32 version;
2841 u32 mode;
2842};
2843
2844struct fw_chunk {
2845 u32 address;
2846 u32 length;
2847};
2848
2849#define IPW_FW_MAJOR_VERSION 2
James Ketrenosb095c382005-08-24 22:04:42 -05002850#define IPW_FW_MINOR_VERSION 3
James Ketrenos43f66a62005-03-25 12:31:53 -06002851
2852#define IPW_FW_MINOR(x) ((x & 0xff) >> 8)
2853#define IPW_FW_MAJOR(x) (x & 0xff)
2854
James Ketrenosafbf30a2005-08-25 00:05:33 -05002855#define IPW_FW_VERSION ((IPW_FW_MINOR_VERSION << 8) | IPW_FW_MAJOR_VERSION)
James Ketrenos43f66a62005-03-25 12:31:53 -06002856
2857#define IPW_FW_PREFIX "ipw-" __stringify(IPW_FW_MAJOR_VERSION) \
2858"." __stringify(IPW_FW_MINOR_VERSION) "-"
2859
2860#if IPW_FW_MAJOR_VERSION >= 2 && IPW_FW_MINOR_VERSION > 0
2861#define IPW_FW_NAME(x) IPW_FW_PREFIX "" x ".fw"
2862#else
2863#define IPW_FW_NAME(x) "ipw2200_" x ".fw"
2864#endif
2865
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002866static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002867{
2868 int rc = 0, i, addr;
2869 u8 cr = 0;
2870 u16 *image;
2871
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002872 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002873
James Ketrenos43f66a62005-03-25 12:31:53 -06002874 IPW_DEBUG_TRACE(">> \n");
2875
2876 rc = ipw_stop_master(priv);
2877
2878 if (rc < 0)
2879 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002880
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002881// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002882
James Ketrenosb095c382005-08-24 22:04:42 -05002883 for (addr = IPW_SHARED_LOWER_BOUND;
2884 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002885 ipw_write32(priv, addr, 0);
2886 }
2887
2888 /* no ucode (yet) */
2889 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2890 /* destroy DMA queues */
2891 /* reset sequence */
2892
James Ketrenosb095c382005-08-24 22:04:42 -05002893 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002894 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002895 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002896 mdelay(1);
2897
2898 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002899 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002900 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002901
James Ketrenosb095c382005-08-24 22:04:42 -05002902 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002903 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002904
James Ketrenos43f66a62005-03-25 12:31:53 -06002905 /* enable ucode store */
2906 ipw_write_reg8(priv, DINO_CONTROL_REG, 0x0);
2907 ipw_write_reg8(priv, DINO_CONTROL_REG, DINO_ENABLE_CS);
2908 mdelay(1);
2909
2910 /* write ucode */
2911 /**
2912 * @bug
2913 * Do NOT set indirect address register once and then
2914 * store data to indirect data register in the loop.
2915 * It seems very reasonable, but in this case DINO do not
2916 * accept ucode. It is essential to set address each time.
2917 */
2918 /* load new ipw uCode */
2919 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002920 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002921 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002922
James Ketrenos43f66a62005-03-25 12:31:53 -06002923 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002924 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2925 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002926
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002927 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002928
2929 /* wait for alive response */
2930 for (i = 0; i < 100; i++) {
2931 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002932 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002933 if (cr & DINO_RXFIFO_DATA)
2934 break;
2935 mdelay(1);
2936 }
2937
2938 if (cr & DINO_RXFIFO_DATA) {
2939 /* alive_command_responce size is NOT multiple of 4 */
2940 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002941
2942 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002943 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002944 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002945 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002946 memcpy(&priv->dino_alive, response_buffer,
2947 sizeof(priv->dino_alive));
2948 if (priv->dino_alive.alive_command == 1
2949 && priv->dino_alive.ucode_valid == 1) {
2950 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002951 IPW_DEBUG_INFO
2952 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2953 "of %02d/%02d/%02d %02d:%02d\n",
2954 priv->dino_alive.software_revision,
2955 priv->dino_alive.software_revision,
2956 priv->dino_alive.device_identifier,
2957 priv->dino_alive.device_identifier,
2958 priv->dino_alive.time_stamp[0],
2959 priv->dino_alive.time_stamp[1],
2960 priv->dino_alive.time_stamp[2],
2961 priv->dino_alive.time_stamp[3],
2962 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002963 } else {
2964 IPW_DEBUG_INFO("Microcode is not alive\n");
2965 rc = -EINVAL;
2966 }
2967 } else {
2968 IPW_DEBUG_INFO("No alive response from DINO\n");
2969 rc = -ETIME;
2970 }
2971
2972 /* disable DINO, otherwise for some reason
2973 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002974 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002975
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002976// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002977
2978 return rc;
2979}
2980
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002981static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002982{
2983 int rc = -1;
2984 int offset = 0;
2985 struct fw_chunk *chunk;
2986 dma_addr_t shared_phys;
2987 u8 *shared_virt;
2988
2989 IPW_DEBUG_TRACE("<< : \n");
2990 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2991
2992 if (!shared_virt)
2993 return -ENOMEM;
2994
2995 memmove(shared_virt, data, len);
2996
2997 /* Start the Dma */
2998 rc = ipw_fw_dma_enable(priv);
2999
3000 if (priv->sram_desc.last_cb_index > 0) {
3001 /* the DMA is already ready this would be a bug. */
3002 BUG();
3003 goto out;
3004 }
3005
3006 do {
3007 chunk = (struct fw_chunk *)(data + offset);
3008 offset += sizeof(struct fw_chunk);
3009 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04003010 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06003011 * offeset*/
3012 /* Dma loading */
3013 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05003014 le32_to_cpu(chunk->address),
3015 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06003016 if (rc) {
3017 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3018 goto out;
3019 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003020
James Ketrenosa613bff2005-08-24 21:43:11 -05003021 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06003022 } while (offset < len);
3023
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003024 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06003025 rc = ipw_fw_dma_kick(priv);
3026 if (rc) {
3027 IPW_ERROR("dmaKick Failed\n");
3028 goto out;
3029 }
3030
3031 rc = ipw_fw_dma_wait(priv);
3032 if (rc) {
3033 IPW_ERROR("dmaWaitSync Failed\n");
3034 goto out;
3035 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003036 out:
3037 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06003038 return rc;
3039}
3040
3041/* stop nic */
3042static int ipw_stop_nic(struct ipw_priv *priv)
3043{
3044 int rc = 0;
3045
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003046 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003047 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003048
James Ketrenosb095c382005-08-24 22:04:42 -05003049 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3050 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003051 if (rc < 0) {
3052 IPW_ERROR("wait for reg master disabled failed\n");
3053 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003054 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003055
James Ketrenosb095c382005-08-24 22:04:42 -05003056 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003057
James Ketrenos43f66a62005-03-25 12:31:53 -06003058 return rc;
3059}
3060
3061static void ipw_start_nic(struct ipw_priv *priv)
3062{
3063 IPW_DEBUG_TRACE(">>\n");
3064
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003065 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003066 ipw_clear_bit(priv, IPW_RESET_REG,
3067 IPW_RESET_REG_MASTER_DISABLED |
3068 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003069 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003070
James Ketrenos43f66a62005-03-25 12:31:53 -06003071 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003072 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3073 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003074
3075 IPW_DEBUG_TRACE("<<\n");
3076}
Jeff Garzikbf794512005-07-31 13:07:26 -04003077
James Ketrenos43f66a62005-03-25 12:31:53 -06003078static int ipw_init_nic(struct ipw_priv *priv)
3079{
3080 int rc;
3081
3082 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003083 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003084 /*prvHwInitNic */
3085 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003086 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003087
3088 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003089 ipw_write32(priv, IPW_READ_INT_REGISTER,
3090 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003091
3092 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003093 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3094 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003095 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003096 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3097
3098 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003099 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003100
3101 udelay(10);
3102
3103 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003104 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003105
3106 IPW_DEBUG_TRACE(">>\n");
3107 return 0;
3108}
3109
Jeff Garzikbf794512005-07-31 13:07:26 -04003110/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003111 * Probe is an ok place to call this from.
3112 */
3113static int ipw_reset_nic(struct ipw_priv *priv)
3114{
3115 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003116 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003117
3118 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003119
James Ketrenos43f66a62005-03-25 12:31:53 -06003120 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003121
James Ketrenosa613bff2005-08-24 21:43:11 -05003122 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003123 /* Clear the 'host command active' bit... */
3124 priv->status &= ~STATUS_HCMD_ACTIVE;
3125 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003126 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3127 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003128 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003129
3130 IPW_DEBUG_TRACE("<<\n");
3131 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003132}
James Ketrenos43f66a62005-03-25 12:31:53 -06003133
Jeff Garzikbf794512005-07-31 13:07:26 -04003134static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003135 const struct firmware **fw, const char *name)
3136{
3137 struct fw_header *header;
3138 int rc;
3139
3140 /* ask firmware_class module to get the boot firmware off disk */
3141 rc = request_firmware(fw, name, &priv->pci_dev->dev);
3142 if (rc < 0) {
3143 IPW_ERROR("%s load failed: Reason %d\n", name, rc);
3144 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003145 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003146
3147 header = (struct fw_header *)(*fw)->data;
James Ketrenosa613bff2005-08-24 21:43:11 -05003148 if (IPW_FW_MAJOR(le32_to_cpu(header->version)) != IPW_FW_MAJOR_VERSION) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003149 IPW_ERROR("'%s' firmware version not compatible (%d != %d)\n",
3150 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003151 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3152 IPW_FW_MAJOR_VERSION);
James Ketrenos43f66a62005-03-25 12:31:53 -06003153 return -EINVAL;
3154 }
3155
Jiri Bencaaa4d302005-06-07 14:58:41 +02003156 IPW_DEBUG_INFO("Loading firmware '%s' file v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003157 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003158 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3159 IPW_FW_MINOR(le32_to_cpu(header->version)),
James Ketrenos43f66a62005-03-25 12:31:53 -06003160 (*fw)->size - sizeof(struct fw_header));
3161 return 0;
3162}
3163
James Ketrenosb095c382005-08-24 22:04:42 -05003164#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003165
3166static inline void ipw_rx_queue_reset(struct ipw_priv *priv,
3167 struct ipw_rx_queue *rxq)
3168{
3169 unsigned long flags;
3170 int i;
3171
3172 spin_lock_irqsave(&rxq->lock, flags);
3173
3174 INIT_LIST_HEAD(&rxq->rx_free);
3175 INIT_LIST_HEAD(&rxq->rx_used);
3176
3177 /* Fill the rx_used queue with _all_ of the Rx buffers */
3178 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3179 /* In the reset function, these buffers may have been allocated
3180 * to an SKB, so we need to unmap and free potential storage */
3181 if (rxq->pool[i].skb != NULL) {
3182 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003183 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003184 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003185 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003186 }
3187 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3188 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003189
James Ketrenos43f66a62005-03-25 12:31:53 -06003190 /* Set us so that we have processed and used all buffers, but have
3191 * not restocked the Rx queue with fresh buffers */
3192 rxq->read = rxq->write = 0;
3193 rxq->processed = RX_QUEUE_SIZE - 1;
3194 rxq->free_count = 0;
3195 spin_unlock_irqrestore(&rxq->lock, flags);
3196}
3197
3198#ifdef CONFIG_PM
3199static int fw_loaded = 0;
3200static const struct firmware *bootfw = NULL;
3201static const struct firmware *firmware = NULL;
3202static const struct firmware *ucode = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003203
3204static void free_firmware(void)
3205{
3206 if (fw_loaded) {
3207 release_firmware(bootfw);
3208 release_firmware(ucode);
3209 release_firmware(firmware);
3210 bootfw = ucode = firmware = NULL;
3211 fw_loaded = 0;
3212 }
3213}
3214#else
3215#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003216#endif
3217
3218static int ipw_load(struct ipw_priv *priv)
3219{
3220#ifndef CONFIG_PM
3221 const struct firmware *bootfw = NULL;
3222 const struct firmware *firmware = NULL;
3223 const struct firmware *ucode = NULL;
3224#endif
3225 int rc = 0, retries = 3;
3226
3227#ifdef CONFIG_PM
3228 if (!fw_loaded) {
3229#endif
3230 rc = ipw_get_fw(priv, &bootfw, IPW_FW_NAME("boot"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003231 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003232 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003233
James Ketrenos43f66a62005-03-25 12:31:53 -06003234 switch (priv->ieee->iw_mode) {
3235 case IW_MODE_ADHOC:
Jeff Garzikbf794512005-07-31 13:07:26 -04003236 rc = ipw_get_fw(priv, &ucode,
James Ketrenos43f66a62005-03-25 12:31:53 -06003237 IPW_FW_NAME("ibss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003238 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003239 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003240
James Ketrenos43f66a62005-03-25 12:31:53 -06003241 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("ibss"));
3242 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003243
James Ketrenosb095c382005-08-24 22:04:42 -05003244#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06003245 case IW_MODE_MONITOR:
Jeff Garzikbf794512005-07-31 13:07:26 -04003246 rc = ipw_get_fw(priv, &ucode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003247 IPW_FW_NAME("sniffer_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003248 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003249 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003250
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003251 rc = ipw_get_fw(priv, &firmware,
3252 IPW_FW_NAME("sniffer"));
James Ketrenos43f66a62005-03-25 12:31:53 -06003253 break;
3254#endif
3255 case IW_MODE_INFRA:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003256 rc = ipw_get_fw(priv, &ucode, IPW_FW_NAME("bss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003257 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003258 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003259
James Ketrenos43f66a62005-03-25 12:31:53 -06003260 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("bss"));
3261 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003262
James Ketrenos43f66a62005-03-25 12:31:53 -06003263 default:
3264 rc = -EINVAL;
3265 }
3266
Jeff Garzikbf794512005-07-31 13:07:26 -04003267 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003268 goto error;
3269
3270#ifdef CONFIG_PM
3271 fw_loaded = 1;
3272 }
3273#endif
3274
3275 if (!priv->rxq)
3276 priv->rxq = ipw_rx_queue_alloc(priv);
3277 else
3278 ipw_rx_queue_reset(priv, priv->rxq);
3279 if (!priv->rxq) {
3280 IPW_ERROR("Unable to initialize Rx queue\n");
3281 goto error;
3282 }
3283
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003284 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003285 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003286 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003287 priv->status &= ~STATUS_INT_ENABLED;
3288
3289 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003290 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003291
James Ketrenos43f66a62005-03-25 12:31:53 -06003292 ipw_stop_nic(priv);
3293
3294 rc = ipw_reset_nic(priv);
3295 if (rc) {
3296 IPW_ERROR("Unable to reset NIC\n");
3297 goto error;
3298 }
3299
James Ketrenosb095c382005-08-24 22:04:42 -05003300 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3301 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003302
3303 /* DMA the initial boot firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003304 rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003305 bootfw->size - sizeof(struct fw_header));
3306 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003307 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003308 goto error;
3309 }
3310
3311 /* kick start the device */
3312 ipw_start_nic(priv);
3313
3314 /* wait for the device to finish it's initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003315 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3316 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003317 if (rc < 0) {
3318 IPW_ERROR("device failed to boot initial fw image\n");
3319 goto error;
3320 }
3321 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3322
Jeff Garzikbf794512005-07-31 13:07:26 -04003323 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003324 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003325
3326 /* DMA the ucode into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003327 rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003328 ucode->size - sizeof(struct fw_header));
3329 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003330 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003331 goto error;
3332 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003333
James Ketrenos43f66a62005-03-25 12:31:53 -06003334 /* stop nic */
3335 ipw_stop_nic(priv);
3336
3337 /* DMA bss firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003338 rc = ipw_load_firmware(priv, firmware->data +
3339 sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003340 firmware->size - sizeof(struct fw_header));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003341 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003342 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003343 goto error;
3344 }
3345
3346 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3347
3348 rc = ipw_queue_reset(priv);
3349 if (rc) {
3350 IPW_ERROR("Unable to initialize queues\n");
3351 goto error;
3352 }
3353
3354 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003355 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003356 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003357 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003358
James Ketrenos43f66a62005-03-25 12:31:53 -06003359 /* kick start the device */
3360 ipw_start_nic(priv);
3361
James Ketrenosb095c382005-08-24 22:04:42 -05003362 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003363 if (retries > 0) {
3364 IPW_WARNING("Parity error. Retrying init.\n");
3365 retries--;
3366 goto retry;
3367 }
3368
3369 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3370 rc = -EIO;
3371 goto error;
3372 }
3373
3374 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003375 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3376 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003377 if (rc < 0) {
3378 IPW_ERROR("device failed to start after 500ms\n");
3379 goto error;
3380 }
3381 IPW_DEBUG_INFO("device response after %dms\n", rc);
3382
3383 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003384 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003385
3386 /* read eeprom data and initialize the eeprom region of sram */
3387 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003388 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003389
3390 /* enable interrupts */
3391 ipw_enable_interrupts(priv);
3392
3393 /* Ensure our queue has valid packets */
3394 ipw_rx_queue_replenish(priv);
3395
James Ketrenosb095c382005-08-24 22:04:42 -05003396 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003397
3398 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003399 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003400
3401#ifndef CONFIG_PM
3402 release_firmware(bootfw);
3403 release_firmware(ucode);
3404 release_firmware(firmware);
3405#endif
3406 return 0;
3407
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003408 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003409 if (priv->rxq) {
3410 ipw_rx_queue_free(priv, priv->rxq);
3411 priv->rxq = NULL;
3412 }
3413 ipw_tx_queue_free(priv);
3414 if (bootfw)
3415 release_firmware(bootfw);
3416 if (ucode)
3417 release_firmware(ucode);
3418 if (firmware)
3419 release_firmware(firmware);
3420#ifdef CONFIG_PM
3421 fw_loaded = 0;
3422 bootfw = ucode = firmware = NULL;
3423#endif
3424
3425 return rc;
3426}
3427
Jeff Garzikbf794512005-07-31 13:07:26 -04003428/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003429 * DMA services
3430 *
3431 * Theory of operation
3432 *
3433 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3434 * 2 empty entries always kept in the buffer to protect from overflow.
3435 *
3436 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003437 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3438 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003439 * Tx queue resumed.
3440 *
3441 * The IPW operates with six queues, one receive queue in the device's
3442 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003443 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003444 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003445 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003446 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003447 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003448 * we only utilize the first data transmit queue (queue1).
3449 */
3450
3451/**
3452 * Driver allocates buffers of this size for Rx
3453 */
3454
3455static inline int ipw_queue_space(const struct clx2_queue *q)
3456{
3457 int s = q->last_used - q->first_empty;
3458 if (s <= 0)
3459 s += q->n_bd;
3460 s -= 2; /* keep some reserve to not confuse empty and full situations */
3461 if (s < 0)
3462 s = 0;
3463 return s;
3464}
3465
3466static inline int ipw_queue_inc_wrap(int index, int n_bd)
3467{
3468 return (++index == n_bd) ? 0 : index;
3469}
3470
3471/**
3472 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003473 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003474 * @param q queue to init
3475 * @param count Number of BD's to allocate. Should be power of 2
3476 * @param read_register Address for 'read' register
3477 * (not offset within BAR, full address)
3478 * @param write_register Address for 'write' register
3479 * (not offset within BAR, full address)
3480 * @param base_register Address for 'base' register
3481 * (not offset within BAR, full address)
3482 * @param size Address for 'size' register
3483 * (not offset within BAR, full address)
3484 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003485static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003486 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003487{
3488 q->n_bd = count;
3489
3490 q->low_mark = q->n_bd / 4;
3491 if (q->low_mark < 4)
3492 q->low_mark = 4;
3493
3494 q->high_mark = q->n_bd / 8;
3495 if (q->high_mark < 2)
3496 q->high_mark = 2;
3497
3498 q->first_empty = q->last_used = 0;
3499 q->reg_r = read;
3500 q->reg_w = write;
3501
3502 ipw_write32(priv, base, q->dma_addr);
3503 ipw_write32(priv, size, count);
3504 ipw_write32(priv, read, 0);
3505 ipw_write32(priv, write, 0);
3506
3507 _ipw_read32(priv, 0x90);
3508}
3509
Jeff Garzikbf794512005-07-31 13:07:26 -04003510static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003511 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003512 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003513{
3514 struct pci_dev *dev = priv->pci_dev;
3515
3516 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3517 if (!q->txb) {
3518 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3519 return -ENOMEM;
3520 }
3521
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003522 q->bd =
3523 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003524 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003525 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003526 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003527 kfree(q->txb);
3528 q->txb = NULL;
3529 return -ENOMEM;
3530 }
3531
3532 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3533 return 0;
3534}
3535
3536/**
3537 * Free one TFD, those at index [txq->q.last_used].
3538 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003539 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003540 * @param dev
3541 * @param txq
3542 */
3543static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3544 struct clx2_tx_queue *txq)
3545{
3546 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3547 struct pci_dev *dev = priv->pci_dev;
3548 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003549
James Ketrenos43f66a62005-03-25 12:31:53 -06003550 /* classify bd */
3551 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3552 /* nothing to cleanup after for host commands */
3553 return;
3554
3555 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003556 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3557 IPW_ERROR("Too many chunks: %i\n",
3558 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003559 /** @todo issue fatal error, it is quite serious situation */
3560 return;
3561 }
3562
3563 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003564 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3565 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3566 le16_to_cpu(bd->u.data.chunk_len[i]),
3567 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003568 if (txq->txb[txq->q.last_used]) {
3569 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3570 txq->txb[txq->q.last_used] = NULL;
3571 }
3572 }
3573}
3574
3575/**
3576 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003577 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003578 * Empty queue by removing and destroying all BD's.
3579 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003580 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003581 * @param dev
3582 * @param q
3583 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003584static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003585{
3586 struct clx2_queue *q = &txq->q;
3587 struct pci_dev *dev = priv->pci_dev;
3588
Jeff Garzikbf794512005-07-31 13:07:26 -04003589 if (q->n_bd == 0)
3590 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003591
3592 /* first, empty all BD's */
3593 for (; q->first_empty != q->last_used;
3594 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3595 ipw_queue_tx_free_tfd(priv, txq);
3596 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003597
James Ketrenos43f66a62005-03-25 12:31:53 -06003598 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003599 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003600 q->dma_addr);
3601 kfree(txq->txb);
3602
3603 /* 0 fill whole structure */
3604 memset(txq, 0, sizeof(*txq));
3605}
3606
James Ketrenos43f66a62005-03-25 12:31:53 -06003607/**
3608 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003609 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003610 * @param priv
3611 */
3612static void ipw_tx_queue_free(struct ipw_priv *priv)
3613{
3614 /* Tx CMD queue */
3615 ipw_queue_tx_free(priv, &priv->txq_cmd);
3616
3617 /* Tx queues */
3618 ipw_queue_tx_free(priv, &priv->txq[0]);
3619 ipw_queue_tx_free(priv, &priv->txq[1]);
3620 ipw_queue_tx_free(priv, &priv->txq[2]);
3621 ipw_queue_tx_free(priv, &priv->txq[3]);
3622}
3623
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003624static inline void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003625{
3626 /* First 3 bytes are manufacturer */
3627 bssid[0] = priv->mac_addr[0];
3628 bssid[1] = priv->mac_addr[1];
3629 bssid[2] = priv->mac_addr[2];
3630
3631 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003632 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003633
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003634 bssid[0] &= 0xfe; /* clear multicast bit */
3635 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003636}
3637
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003638static inline u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003639{
3640 struct ipw_station_entry entry;
3641 int i;
3642
3643 for (i = 0; i < priv->num_stations; i++) {
3644 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3645 /* Another node is active in network */
3646 priv->missed_adhoc_beacons = 0;
3647 if (!(priv->config & CFG_STATIC_CHANNEL))
3648 /* when other nodes drop out, we drop out */
3649 priv->config &= ~CFG_ADHOC_PERSIST;
3650
3651 return i;
3652 }
3653 }
3654
3655 if (i == MAX_STATIONS)
3656 return IPW_INVALID_STATION;
3657
3658 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3659
3660 entry.reserved = 0;
3661 entry.support_mode = 0;
3662 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3663 memcpy(priv->stations[i], bssid, ETH_ALEN);
3664 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003665 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003666 priv->num_stations++;
3667
3668 return i;
3669}
3670
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003671static inline u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003672{
3673 int i;
3674
Jeff Garzikbf794512005-07-31 13:07:26 -04003675 for (i = 0; i < priv->num_stations; i++)
3676 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003677 return i;
3678
3679 return IPW_INVALID_STATION;
3680}
3681
3682static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3683{
3684 int err;
3685
Hong Liu7b996592005-08-25 17:36:13 +08003686 if (priv->status & STATUS_ASSOCIATING) {
3687 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3688 queue_work(priv->workqueue, &priv->disassociate);
3689 return;
3690 }
3691
3692 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003693 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3694 return;
3695 }
3696
3697 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3698 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003699 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003700 priv->assoc_request.channel);
3701
James Ketrenos43f66a62005-03-25 12:31:53 -06003702 if (quiet)
3703 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3704 else
3705 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
3706 err = ipw_send_associate(priv, &priv->assoc_request);
3707 if (err) {
3708 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3709 "failed.\n");
3710 return;
3711 }
3712
Hong Liu7b996592005-08-25 17:36:13 +08003713 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3714 priv->status |= STATUS_DISASSOCIATING;
3715
James Ketrenos43f66a62005-03-25 12:31:53 -06003716}
3717
James Ketrenosc848d0a2005-08-24 21:56:24 -05003718static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003719{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003720 struct ipw_priv *priv = data;
3721 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3722 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003723 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003724 return 1;
3725}
3726
3727static void ipw_bg_disassociate(void *data)
3728{
3729 struct ipw_priv *priv = data;
3730 down(&priv->sem);
3731 ipw_disassociate(data);
3732 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06003733}
3734
Zhu Yid8bad6d2005-07-13 12:25:38 -05003735static void ipw_system_config(void *data)
3736{
3737 struct ipw_priv *priv = data;
3738 ipw_send_system_config(priv, &priv->sys_config);
3739}
3740
James Ketrenos43f66a62005-03-25 12:31:53 -06003741struct ipw_status_code {
3742 u16 status;
3743 const char *reason;
3744};
3745
3746static const struct ipw_status_code ipw_status_codes[] = {
3747 {0x00, "Successful"},
3748 {0x01, "Unspecified failure"},
3749 {0x0A, "Cannot support all requested capabilities in the "
3750 "Capability information field"},
3751 {0x0B, "Reassociation denied due to inability to confirm that "
3752 "association exists"},
3753 {0x0C, "Association denied due to reason outside the scope of this "
3754 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003755 {0x0D,
3756 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003757 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003758 {0x0E,
3759 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003760 "transaction sequence number out of expected sequence"},
3761 {0x0F, "Authentication rejected because of challenge failure"},
3762 {0x10, "Authentication rejected due to timeout waiting for next "
3763 "frame in sequence"},
3764 {0x11, "Association denied because AP is unable to handle additional "
3765 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003766 {0x12,
3767 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003768 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003769 {0x13,
3770 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003771 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003772 {0x14,
3773 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003774 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003775 {0x15,
3776 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003777 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003778 {0x19,
3779 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003780 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003781 {0x1A,
3782 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003783 "DSSS-OFDM operation"},
3784 {0x28, "Invalid Information Element"},
3785 {0x29, "Group Cipher is not valid"},
3786 {0x2A, "Pairwise Cipher is not valid"},
3787 {0x2B, "AKMP is not valid"},
3788 {0x2C, "Unsupported RSN IE version"},
3789 {0x2D, "Invalid RSN IE Capabilities"},
3790 {0x2E, "Cipher suite is rejected per security policy"},
3791};
3792
3793#ifdef CONFIG_IPW_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003794static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003795{
3796 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003797 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003798 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003799 return ipw_status_codes[i].reason;
3800 return "Unknown status value.";
3801}
3802#endif
3803
3804static void inline average_init(struct average *avg)
3805{
3806 memset(avg, 0, sizeof(*avg));
3807}
3808
3809static void inline average_add(struct average *avg, s16 val)
3810{
3811 avg->sum -= avg->entries[avg->pos];
3812 avg->sum += val;
3813 avg->entries[avg->pos++] = val;
3814 if (unlikely(avg->pos == AVG_ENTRIES)) {
3815 avg->init = 1;
3816 avg->pos = 0;
3817 }
3818}
3819
3820static s16 inline average_value(struct average *avg)
3821{
3822 if (!unlikely(avg->init)) {
3823 if (avg->pos)
3824 return avg->sum / avg->pos;
3825 return 0;
3826 }
3827
3828 return avg->sum / AVG_ENTRIES;
3829}
3830
3831static void ipw_reset_stats(struct ipw_priv *priv)
3832{
3833 u32 len = sizeof(u32);
3834
3835 priv->quality = 0;
3836
3837 average_init(&priv->average_missed_beacons);
3838 average_init(&priv->average_rssi);
3839 average_init(&priv->average_noise);
3840
3841 priv->last_rate = 0;
3842 priv->last_missed_beacons = 0;
3843 priv->last_rx_packets = 0;
3844 priv->last_tx_packets = 0;
3845 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003846
James Ketrenos43f66a62005-03-25 12:31:53 -06003847 /* Firmware managed, reset only when NIC is restarted, so we have to
3848 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003849 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003850 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003851 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003852 &priv->last_tx_failures, &len);
3853
3854 /* Driver managed, reset with each association */
3855 priv->missed_adhoc_beacons = 0;
3856 priv->missed_beacons = 0;
3857 priv->tx_packets = 0;
3858 priv->rx_packets = 0;
3859
3860}
3861
James Ketrenos43f66a62005-03-25 12:31:53 -06003862static inline u32 ipw_get_max_rate(struct ipw_priv *priv)
3863{
3864 u32 i = 0x80000000;
3865 u32 mask = priv->rates_mask;
3866 /* If currently associated in B mode, restrict the maximum
3867 * rate match to B rates */
3868 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3869 mask &= IEEE80211_CCK_RATES_MASK;
3870
3871 /* TODO: Verify that the rate is supported by the current rates
3872 * list. */
3873
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003874 while (i && !(mask & i))
3875 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003876 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003877 case IEEE80211_CCK_RATE_1MB_MASK:
3878 return 1000000;
3879 case IEEE80211_CCK_RATE_2MB_MASK:
3880 return 2000000;
3881 case IEEE80211_CCK_RATE_5MB_MASK:
3882 return 5500000;
3883 case IEEE80211_OFDM_RATE_6MB_MASK:
3884 return 6000000;
3885 case IEEE80211_OFDM_RATE_9MB_MASK:
3886 return 9000000;
3887 case IEEE80211_CCK_RATE_11MB_MASK:
3888 return 11000000;
3889 case IEEE80211_OFDM_RATE_12MB_MASK:
3890 return 12000000;
3891 case IEEE80211_OFDM_RATE_18MB_MASK:
3892 return 18000000;
3893 case IEEE80211_OFDM_RATE_24MB_MASK:
3894 return 24000000;
3895 case IEEE80211_OFDM_RATE_36MB_MASK:
3896 return 36000000;
3897 case IEEE80211_OFDM_RATE_48MB_MASK:
3898 return 48000000;
3899 case IEEE80211_OFDM_RATE_54MB_MASK:
3900 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003901 }
3902
Jeff Garzikbf794512005-07-31 13:07:26 -04003903 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003904 return 11000000;
3905 else
3906 return 54000000;
3907}
3908
3909static u32 ipw_get_current_rate(struct ipw_priv *priv)
3910{
3911 u32 rate, len = sizeof(rate);
3912 int err;
3913
Jeff Garzikbf794512005-07-31 13:07:26 -04003914 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003915 return 0;
3916
3917 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003918 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003919 &len);
3920 if (err) {
3921 IPW_DEBUG_INFO("failed querying ordinals.\n");
3922 return 0;
3923 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003924 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003925 return ipw_get_max_rate(priv);
3926
3927 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003928 case IPW_TX_RATE_1MB:
3929 return 1000000;
3930 case IPW_TX_RATE_2MB:
3931 return 2000000;
3932 case IPW_TX_RATE_5MB:
3933 return 5500000;
3934 case IPW_TX_RATE_6MB:
3935 return 6000000;
3936 case IPW_TX_RATE_9MB:
3937 return 9000000;
3938 case IPW_TX_RATE_11MB:
3939 return 11000000;
3940 case IPW_TX_RATE_12MB:
3941 return 12000000;
3942 case IPW_TX_RATE_18MB:
3943 return 18000000;
3944 case IPW_TX_RATE_24MB:
3945 return 24000000;
3946 case IPW_TX_RATE_36MB:
3947 return 36000000;
3948 case IPW_TX_RATE_48MB:
3949 return 48000000;
3950 case IPW_TX_RATE_54MB:
3951 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003952 }
3953
3954 return 0;
3955}
3956
James Ketrenos43f66a62005-03-25 12:31:53 -06003957#define IPW_STATS_INTERVAL (2 * HZ)
3958static void ipw_gather_stats(struct ipw_priv *priv)
3959{
3960 u32 rx_err, rx_err_delta, rx_packets_delta;
3961 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3962 u32 missed_beacons_percent, missed_beacons_delta;
3963 u32 quality = 0;
3964 u32 len = sizeof(u32);
3965 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003966 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003967 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003968 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003969
3970 if (!(priv->status & STATUS_ASSOCIATED)) {
3971 priv->quality = 0;
3972 return;
3973 }
3974
3975 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003976 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003977 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003978 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003979 priv->last_missed_beacons = priv->missed_beacons;
3980 if (priv->assoc_request.beacon_interval) {
3981 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003982 (HZ * priv->assoc_request.beacon_interval) /
3983 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003984 } else {
3985 missed_beacons_percent = 0;
3986 }
3987 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3988
3989 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3990 rx_err_delta = rx_err - priv->last_rx_err;
3991 priv->last_rx_err = rx_err;
3992
3993 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3994 tx_failures_delta = tx_failures - priv->last_tx_failures;
3995 priv->last_tx_failures = tx_failures;
3996
3997 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3998 priv->last_rx_packets = priv->rx_packets;
3999
4000 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
4001 priv->last_tx_packets = priv->tx_packets;
4002
4003 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04004004 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004005 * Missed beacon: 100% = 0, 0% = 70% missed
4006 * Rate: 60% = 1Mbs, 100% = Max
4007 * Rx and Tx errors represent a straight % of total Rx/Tx
4008 * RSSI: 100% = > -50, 0% = < -80
4009 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04004010 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004011 * The lowest computed quality is used.
4012 *
4013 */
4014#define BEACON_THRESHOLD 5
4015 beacon_quality = 100 - missed_beacons_percent;
4016 if (beacon_quality < BEACON_THRESHOLD)
4017 beacon_quality = 0;
4018 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004019 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004020 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004021 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004022 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004023
James Ketrenos43f66a62005-03-25 12:31:53 -06004024 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004025 max_rate = ipw_get_max_rate(priv);
4026 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004027 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4028 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004029
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004030 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004031 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004032 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004033 else
4034 rx_quality = 100;
4035 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4036 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004037
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004038 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004039 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004040 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004041 else
4042 tx_quality = 100;
4043 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4044 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004045
James Ketrenos43f66a62005-03-25 12:31:53 -06004046 rssi = average_value(&priv->average_rssi);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004047 signal_quality =
4048 (100 *
4049 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4050 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4051 (priv->ieee->perfect_rssi - rssi) *
4052 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4053 62 * (priv->ieee->perfect_rssi - rssi))) /
4054 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4055 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4056 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004057 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004058 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004059 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004060
James Ketrenos43f66a62005-03-25 12:31:53 -06004061 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
4062 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004063
4064 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06004065 min(rate_quality,
4066 min(tx_quality, min(rx_quality, signal_quality))));
4067 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004068 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4069 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004070 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004071 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4072 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004073 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004074 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4075 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004076 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004077 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4078 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004079 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004080 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4081 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004082
4083 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004084
4085 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004086 IPW_STATS_INTERVAL);
4087}
4088
James Ketrenosc848d0a2005-08-24 21:56:24 -05004089static void ipw_bg_gather_stats(void *data)
4090{
4091 struct ipw_priv *priv = data;
4092 down(&priv->sem);
4093 ipw_gather_stats(data);
4094 up(&priv->sem);
4095}
4096
James Ketrenosea2b26e2005-08-24 21:25:16 -05004097static inline void ipw_handle_missed_beacon(struct ipw_priv *priv,
4098 int missed_count)
4099{
4100 priv->notif_missed_beacons = missed_count;
4101
James Ketrenosafbf30a2005-08-25 00:05:33 -05004102 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004103 priv->status & STATUS_ASSOCIATED) {
4104 /* If associated and we've hit the missed
4105 * beacon threshold, disassociate, turn
4106 * off roaming, and abort any active scans */
4107 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004108 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004109 "Missed beacon: %d - disassociate\n", missed_count);
4110 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004111 if (priv->status & STATUS_SCANNING) {
4112 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4113 IPW_DL_STATE,
4114 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004115 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004116 }
4117
James Ketrenosea2b26e2005-08-24 21:25:16 -05004118 queue_work(priv->workqueue, &priv->disassociate);
4119 return;
4120 }
4121
4122 if (priv->status & STATUS_ROAMING) {
4123 /* If we are currently roaming, then just
4124 * print a debug statement... */
4125 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4126 "Missed beacon: %d - roam in progress\n",
4127 missed_count);
4128 return;
4129 }
4130
4131 if (missed_count > priv->roaming_threshold) {
4132 /* If we are not already roaming, set the ROAM
4133 * bit in the status and kick off a scan */
4134 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4135 "Missed beacon: %d - initiate "
4136 "roaming\n", missed_count);
4137 if (!(priv->status & STATUS_ROAMING)) {
4138 priv->status |= STATUS_ROAMING;
4139 if (!(priv->status & STATUS_SCANNING))
4140 queue_work(priv->workqueue,
4141 &priv->request_scan);
4142 }
4143 return;
4144 }
4145
4146 if (priv->status & STATUS_SCANNING) {
4147 /* Stop scan to keep fw from getting
4148 * stuck (only if we aren't roaming --
4149 * otherwise we'll never scan more than 2 or 3
4150 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004151 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4152 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004153 queue_work(priv->workqueue, &priv->abort_scan);
4154 }
4155
4156 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
4157
4158}
4159
James Ketrenos43f66a62005-03-25 12:31:53 -06004160/**
4161 * Handle host notification packet.
4162 * Called from interrupt routine
4163 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004164static inline void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004165 struct ipw_rx_notification *notif)
4166{
James Ketrenosa613bff2005-08-24 21:43:11 -05004167 notif->size = le16_to_cpu(notif->size);
4168
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004169 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004170
James Ketrenos43f66a62005-03-25 12:31:53 -06004171 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004172 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4173 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004174
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004175 switch (assoc->state) {
4176 case CMAS_ASSOCIATED:{
4177 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4178 IPW_DL_ASSOC,
4179 "associated: '%s' " MAC_FMT
4180 " \n",
4181 escape_essid(priv->essid,
4182 priv->essid_len),
4183 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004184
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004185 switch (priv->ieee->iw_mode) {
4186 case IW_MODE_INFRA:
4187 memcpy(priv->ieee->bssid,
4188 priv->bssid, ETH_ALEN);
4189 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004190
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004191 case IW_MODE_ADHOC:
4192 memcpy(priv->ieee->bssid,
4193 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004194
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004195 /* clear out the station table */
4196 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004197
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004198 IPW_DEBUG_ASSOC
4199 ("queueing adhoc check\n");
4200 queue_delayed_work(priv->
4201 workqueue,
4202 &priv->
4203 adhoc_check,
4204 priv->
4205 assoc_request.
4206 beacon_interval);
4207 break;
4208 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004209
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004210 priv->status &= ~STATUS_ASSOCIATING;
4211 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004212 queue_work(priv->workqueue,
4213 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004214
James Ketrenosb095c382005-08-24 22:04:42 -05004215#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004216#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4217 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4218 if ((priv->status & STATUS_AUTH) &&
4219 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4220 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004221 if ((sizeof
4222 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004223 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004224 <= notif->size)
4225 && (notif->size <= 2314)) {
4226 struct
4227 ieee80211_rx_stats
4228 stats = {
4229 .len =
4230 notif->
4231 size - 1,
4232 };
4233
4234 IPW_DEBUG_QOS
4235 ("QoS Associate "
4236 "size %d\n",
4237 notif->size);
4238 ieee80211_rx_mgt(priv->
4239 ieee,
4240 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004241 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004242 *)
4243 &notif->u.raw, &stats);
4244 }
4245 }
4246#endif
4247
James Ketrenosa613bff2005-08-24 21:43:11 -05004248 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004249
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004250 break;
4251 }
4252
4253 case CMAS_AUTHENTICATED:{
4254 if (priv->
4255 status & (STATUS_ASSOCIATED |
4256 STATUS_AUTH)) {
4257#ifdef CONFIG_IPW_DEBUG
4258 struct notif_authenticate *auth
4259 = &notif->u.auth;
4260 IPW_DEBUG(IPW_DL_NOTIF |
4261 IPW_DL_STATE |
4262 IPW_DL_ASSOC,
4263 "deauthenticated: '%s' "
4264 MAC_FMT
4265 ": (0x%04X) - %s \n",
4266 escape_essid(priv->
4267 essid,
4268 priv->
4269 essid_len),
4270 MAC_ARG(priv->bssid),
4271 ntohs(auth->status),
4272 ipw_get_status_code
4273 (ntohs
4274 (auth->status)));
4275#endif
4276
4277 priv->status &=
4278 ~(STATUS_ASSOCIATING |
4279 STATUS_AUTH |
4280 STATUS_ASSOCIATED);
4281
James Ketrenosa613bff2005-08-24 21:43:11 -05004282 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004283 break;
4284 }
4285
4286 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4287 IPW_DL_ASSOC,
4288 "authenticated: '%s' " MAC_FMT
4289 "\n",
4290 escape_essid(priv->essid,
4291 priv->essid_len),
4292 MAC_ARG(priv->bssid));
4293 break;
4294 }
4295
4296 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004297 if (priv->status & STATUS_AUTH) {
4298 struct
4299 ieee80211_assoc_response
4300 *resp;
4301 resp =
4302 (struct
4303 ieee80211_assoc_response
4304 *)&notif->u.raw;
4305 IPW_DEBUG(IPW_DL_NOTIF |
4306 IPW_DL_STATE |
4307 IPW_DL_ASSOC,
4308 "association failed (0x%04X): %s\n",
4309 ntohs(resp->status),
4310 ipw_get_status_code
4311 (ntohs
4312 (resp->status)));
4313 }
4314
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004315 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4316 IPW_DL_ASSOC,
4317 "disassociated: '%s' " MAC_FMT
4318 " \n",
4319 escape_essid(priv->essid,
4320 priv->essid_len),
4321 MAC_ARG(priv->bssid));
4322
4323 priv->status &=
4324 ~(STATUS_DISASSOCIATING |
4325 STATUS_ASSOCIATING |
4326 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004327 if (priv->assoc_network
4328 && (priv->assoc_network->
4329 capability &
4330 WLAN_CAPABILITY_IBSS))
4331 ipw_remove_current_network
4332 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004333
James Ketrenosa613bff2005-08-24 21:43:11 -05004334 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004335
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004336 break;
4337 }
4338
James Ketrenosb095c382005-08-24 22:04:42 -05004339 case CMAS_RX_ASSOC_RESP:
4340 break;
4341
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004342 default:
4343 IPW_ERROR("assoc: unknown (%d)\n",
4344 assoc->state);
4345 break;
4346 }
4347
James Ketrenos43f66a62005-03-25 12:31:53 -06004348 break;
4349 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004350
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004351 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4352 struct notif_authenticate *auth = &notif->u.auth;
4353 switch (auth->state) {
4354 case CMAS_AUTHENTICATED:
4355 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4356 "authenticated: '%s' " MAC_FMT " \n",
4357 escape_essid(priv->essid,
4358 priv->essid_len),
4359 MAC_ARG(priv->bssid));
4360 priv->status |= STATUS_AUTH;
4361 break;
4362
4363 case CMAS_INIT:
4364 if (priv->status & STATUS_AUTH) {
4365 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4366 IPW_DL_ASSOC,
4367 "authentication failed (0x%04X): %s\n",
4368 ntohs(auth->status),
4369 ipw_get_status_code(ntohs
4370 (auth->
4371 status)));
4372 }
4373 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4374 IPW_DL_ASSOC,
4375 "deauthenticated: '%s' " MAC_FMT "\n",
4376 escape_essid(priv->essid,
4377 priv->essid_len),
4378 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004379
4380 priv->status &= ~(STATUS_ASSOCIATING |
4381 STATUS_AUTH |
4382 STATUS_ASSOCIATED);
4383
James Ketrenosa613bff2005-08-24 21:43:11 -05004384 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004385 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004386
4387 case CMAS_TX_AUTH_SEQ_1:
4388 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4389 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4390 break;
4391 case CMAS_RX_AUTH_SEQ_2:
4392 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4393 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4394 break;
4395 case CMAS_AUTH_SEQ_1_PASS:
4396 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4397 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4398 break;
4399 case CMAS_AUTH_SEQ_1_FAIL:
4400 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4401 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4402 break;
4403 case CMAS_TX_AUTH_SEQ_3:
4404 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4405 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4406 break;
4407 case CMAS_RX_AUTH_SEQ_4:
4408 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4409 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4410 break;
4411 case CMAS_AUTH_SEQ_2_PASS:
4412 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4413 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4414 break;
4415 case CMAS_AUTH_SEQ_2_FAIL:
4416 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4417 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4418 break;
4419 case CMAS_TX_ASSOC:
4420 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4421 IPW_DL_ASSOC, "TX_ASSOC\n");
4422 break;
4423 case CMAS_RX_ASSOC_RESP:
4424 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4425 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004426
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004427 break;
4428 case CMAS_ASSOCIATED:
4429 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4430 IPW_DL_ASSOC, "ASSOCIATED\n");
4431 break;
4432 default:
4433 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4434 auth->state);
4435 break;
4436 }
4437 break;
4438 }
4439
4440 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4441 struct notif_channel_result *x =
4442 &notif->u.channel_result;
4443
4444 if (notif->size == sizeof(*x)) {
4445 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4446 x->channel_num);
4447 } else {
4448 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4449 "(should be %zd)\n",
4450 notif->size, sizeof(*x));
4451 }
4452 break;
4453 }
4454
4455 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4456 struct notif_scan_complete *x = &notif->u.scan_complete;
4457 if (notif->size == sizeof(*x)) {
4458 IPW_DEBUG_SCAN
4459 ("Scan completed: type %d, %d channels, "
4460 "%d status\n", x->scan_type,
4461 x->num_channels, x->status);
4462 } else {
4463 IPW_ERROR("Scan completed of wrong size %d "
4464 "(should be %zd)\n",
4465 notif->size, sizeof(*x));
4466 }
4467
4468 priv->status &=
4469 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4470
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004471 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004472 cancel_delayed_work(&priv->scan_check);
4473
James Ketrenosb095c382005-08-24 22:04:42 -05004474 if (priv->status & STATUS_EXIT_PENDING)
4475 break;
4476
4477 priv->ieee->scans++;
4478
4479#ifdef CONFIG_IPW2200_MONITOR
4480 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004481 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004482 queue_work(priv->workqueue,
4483 &priv->request_scan);
4484 break;
4485 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004486 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004487#endif /* CONFIG_IPW2200_MONITOR */
4488
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004489 if (!(priv->status & (STATUS_ASSOCIATED |
4490 STATUS_ASSOCIATING |
4491 STATUS_ROAMING |
4492 STATUS_DISASSOCIATING)))
4493 queue_work(priv->workqueue, &priv->associate);
4494 else if (priv->status & STATUS_ROAMING) {
4495 /* If a scan completed and we are in roam mode, then
4496 * the scan that completed was the one requested as a
4497 * result of entering roam... so, schedule the
4498 * roam work */
4499 queue_work(priv->workqueue, &priv->roam);
4500 } else if (priv->status & STATUS_SCAN_PENDING)
4501 queue_work(priv->workqueue,
4502 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004503 else if (priv->config & CFG_BACKGROUND_SCAN
4504 && priv->status & STATUS_ASSOCIATED)
4505 queue_delayed_work(priv->workqueue,
4506 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004507 break;
4508 }
4509
4510 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4511 struct notif_frag_length *x = &notif->u.frag_len;
4512
James Ketrenosa613bff2005-08-24 21:43:11 -05004513 if (notif->size == sizeof(*x))
4514 IPW_ERROR("Frag length: %d\n",
4515 le16_to_cpu(x->frag_length));
4516 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004517 IPW_ERROR("Frag length of wrong size %d "
4518 "(should be %zd)\n",
4519 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004520 break;
4521 }
4522
4523 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4524 struct notif_link_deterioration *x =
4525 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004526
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004527 if (notif->size == sizeof(*x)) {
4528 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4529 "link deterioration: '%s' " MAC_FMT
4530 " \n", escape_essid(priv->essid,
4531 priv->essid_len),
4532 MAC_ARG(priv->bssid));
4533 memcpy(&priv->last_link_deterioration, x,
4534 sizeof(*x));
4535 } else {
4536 IPW_ERROR("Link Deterioration of wrong size %d "
4537 "(should be %zd)\n",
4538 notif->size, sizeof(*x));
4539 }
4540 break;
4541 }
4542
4543 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4544 IPW_ERROR("Dino config\n");
4545 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004546 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004547 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004548
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004549 break;
4550 }
4551
4552 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4553 struct notif_beacon_state *x = &notif->u.beacon_state;
4554 if (notif->size != sizeof(*x)) {
4555 IPW_ERROR
4556 ("Beacon state of wrong size %d (should "
4557 "be %zd)\n", notif->size, sizeof(*x));
4558 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004559 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004560
James Ketrenosa613bff2005-08-24 21:43:11 -05004561 if (le32_to_cpu(x->state) ==
4562 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4563 ipw_handle_missed_beacon(priv,
4564 le32_to_cpu(x->
4565 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004566
James Ketrenos43f66a62005-03-25 12:31:53 -06004567 break;
4568 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004569
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004570 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4571 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4572 if (notif->size == sizeof(*x)) {
4573 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4574 "0x%02x station %d\n",
4575 x->key_state, x->security_type,
4576 x->station_index);
4577 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004578 }
4579
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004580 IPW_ERROR
4581 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4582 notif->size, sizeof(*x));
4583 break;
4584 }
4585
4586 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4587 struct notif_calibration *x = &notif->u.calibration;
4588
4589 if (notif->size == sizeof(*x)) {
4590 memcpy(&priv->calib, x, sizeof(*x));
4591 IPW_DEBUG_INFO("TODO: Calibration\n");
4592 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004593 }
4594
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004595 IPW_ERROR
4596 ("Calibration of wrong size %d (should be %zd)\n",
4597 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004598 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004599 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004600
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004601 case HOST_NOTIFICATION_NOISE_STATS:{
4602 if (notif->size == sizeof(u32)) {
4603 priv->last_noise =
James Ketrenosa613bff2005-08-24 21:43:11 -05004604 (u8) (le32_to_cpu(notif->u.noise.value) &
4605 0xff);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004606 average_add(&priv->average_noise,
4607 priv->last_noise);
4608 break;
4609 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004610
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004611 IPW_ERROR
4612 ("Noise stat is wrong size %d (should be %zd)\n",
4613 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004614 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004615 }
4616
James Ketrenos43f66a62005-03-25 12:31:53 -06004617 default:
4618 IPW_ERROR("Unknown notification: "
4619 "subtype=%d,flags=0x%2x,size=%d\n",
4620 notif->subtype, notif->flags, notif->size);
4621 }
4622}
4623
4624/**
4625 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004626 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004627 * @param priv
4628 * @return error code
4629 */
4630static int ipw_queue_reset(struct ipw_priv *priv)
4631{
4632 int rc = 0;
4633 /** @todo customize queue sizes */
4634 int nTx = 64, nTxCmd = 8;
4635 ipw_tx_queue_free(priv);
4636 /* Tx CMD queue */
4637 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004638 IPW_TX_CMD_QUEUE_READ_INDEX,
4639 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4640 IPW_TX_CMD_QUEUE_BD_BASE,
4641 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004642 if (rc) {
4643 IPW_ERROR("Tx Cmd queue init failed\n");
4644 goto error;
4645 }
4646 /* Tx queue(s) */
4647 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004648 IPW_TX_QUEUE_0_READ_INDEX,
4649 IPW_TX_QUEUE_0_WRITE_INDEX,
4650 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004651 if (rc) {
4652 IPW_ERROR("Tx 0 queue init failed\n");
4653 goto error;
4654 }
4655 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004656 IPW_TX_QUEUE_1_READ_INDEX,
4657 IPW_TX_QUEUE_1_WRITE_INDEX,
4658 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004659 if (rc) {
4660 IPW_ERROR("Tx 1 queue init failed\n");
4661 goto error;
4662 }
4663 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004664 IPW_TX_QUEUE_2_READ_INDEX,
4665 IPW_TX_QUEUE_2_WRITE_INDEX,
4666 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004667 if (rc) {
4668 IPW_ERROR("Tx 2 queue init failed\n");
4669 goto error;
4670 }
4671 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004672 IPW_TX_QUEUE_3_READ_INDEX,
4673 IPW_TX_QUEUE_3_WRITE_INDEX,
4674 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004675 if (rc) {
4676 IPW_ERROR("Tx 3 queue init failed\n");
4677 goto error;
4678 }
4679 /* statistics */
4680 priv->rx_bufs_min = 0;
4681 priv->rx_pend_max = 0;
4682 return rc;
4683
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004684 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004685 ipw_tx_queue_free(priv);
4686 return rc;
4687}
4688
4689/**
4690 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004691 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004692 * When FW adwances 'R' index, all entries between old and
4693 * new 'R' index need to be reclaimed. As result, some free space
4694 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004695 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004696 * @note Need to protect against garbage in 'R' index
4697 * @param priv
4698 * @param txq
4699 * @param qindex
4700 * @return Number of used entries remains in the queue
4701 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004702static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004703 struct clx2_tx_queue *txq, int qindex)
4704{
4705 u32 hw_tail;
4706 int used;
4707 struct clx2_queue *q = &txq->q;
4708
4709 hw_tail = ipw_read32(priv, q->reg_r);
4710 if (hw_tail >= q->n_bd) {
4711 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004712 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4713 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004714 goto done;
4715 }
4716 for (; q->last_used != hw_tail;
4717 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4718 ipw_queue_tx_free_tfd(priv, txq);
4719 priv->tx_packets++;
4720 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004721 done:
James Ketrenos9ddf84f2005-08-16 17:07:11 -05004722 if ((ipw_queue_space(q) > q->low_mark) &&
4723 (qindex >= 0) &&
4724 (priv->status & STATUS_ASSOCIATED) && netif_running(priv->net_dev))
4725 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06004726 used = q->first_empty - q->last_used;
4727 if (used < 0)
4728 used += q->n_bd;
4729
4730 return used;
4731}
4732
4733static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4734 int len, int sync)
4735{
4736 struct clx2_tx_queue *txq = &priv->txq_cmd;
4737 struct clx2_queue *q = &txq->q;
4738 struct tfd_frame *tfd;
4739
4740 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4741 IPW_ERROR("No space for Tx\n");
4742 return -EBUSY;
4743 }
4744
4745 tfd = &txq->bd[q->first_empty];
4746 txq->txb[q->first_empty] = NULL;
4747
4748 memset(tfd, 0, sizeof(*tfd));
4749 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4750 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4751 priv->hcmd_seq++;
4752 tfd->u.cmd.index = hcmd;
4753 tfd->u.cmd.length = len;
4754 memcpy(tfd->u.cmd.payload, buf, len);
4755 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4756 ipw_write32(priv, q->reg_w, q->first_empty);
4757 _ipw_read32(priv, 0x90);
4758
4759 return 0;
4760}
4761
Jeff Garzikbf794512005-07-31 13:07:26 -04004762/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004763 * Rx theory of operation
4764 *
4765 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004766 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004767 * 0 to 31
4768 *
4769 * Rx Queue Indexes
4770 * The host/firmware share two index registers for managing the Rx buffers.
4771 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004772 * The READ index maps to the first position that the firmware may be writing
4773 * to -- the driver can read up to (but not including) this position and get
4774 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004775 * The READ index is managed by the firmware once the card is enabled.
4776 *
4777 * The WRITE index maps to the last position the driver has read from -- the
4778 * position preceding WRITE is the last slot the firmware can place a packet.
4779 *
4780 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004781 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004782 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004783 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004784 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4785 *
4786 * When the firmware places a packet in a buffer it will advance the READ index
4787 * and fire the RX interrupt. The driver can then query the READ index and
4788 * process as many packets as possible, moving the WRITE index forward as it
4789 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004790 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004791 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004792 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004793 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004794 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004795 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4796 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4797 * 'processed' and 'read' driver indexes as well)
4798 * + A received packet is processed and handed to the kernel network stack,
4799 * detached from the ipw->rxq. The driver 'processed' index is updated.
4800 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004801 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4802 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004803 * were enough free buffers and RX_STALLED is set it is cleared.
4804 *
4805 *
4806 * Driver sequence:
4807 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004808 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004809 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4810 * ipw_rx_queue_restock
4811 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4812 * queue, updates firmware pointers, and updates
4813 * the WRITE index. If insufficient rx_free buffers
4814 * are available, schedules ipw_rx_queue_replenish
4815 *
4816 * -- enable interrupts --
4817 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004818 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004819 * Moves the packet buffer from queue to rx_used.
4820 * Calls ipw_rx_queue_restock to refill any empty
4821 * slots.
4822 * ...
4823 *
4824 */
4825
Jeff Garzikbf794512005-07-31 13:07:26 -04004826/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004827 * If there are slots in the RX queue that need to be restocked,
4828 * and we have free pre-allocated buffers, fill the ranks as much
4829 * as we can pulling from rx_free.
4830 *
4831 * This moves the 'write' index forward to catch up with 'processed', and
4832 * also updates the memory address in the firmware to reference the new
4833 * target buffer.
4834 */
4835static void ipw_rx_queue_restock(struct ipw_priv *priv)
4836{
4837 struct ipw_rx_queue *rxq = priv->rxq;
4838 struct list_head *element;
4839 struct ipw_rx_mem_buffer *rxb;
4840 unsigned long flags;
4841 int write;
4842
4843 spin_lock_irqsave(&rxq->lock, flags);
4844 write = rxq->write;
4845 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4846 element = rxq->rx_free.next;
4847 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4848 list_del(element);
4849
James Ketrenosb095c382005-08-24 22:04:42 -05004850 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004851 rxb->dma_addr);
4852 rxq->queue[rxq->write] = rxb;
4853 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4854 rxq->free_count--;
4855 }
4856 spin_unlock_irqrestore(&rxq->lock, flags);
4857
Jeff Garzikbf794512005-07-31 13:07:26 -04004858 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004859 * refill it */
4860 if (rxq->free_count <= RX_LOW_WATERMARK)
4861 queue_work(priv->workqueue, &priv->rx_replenish);
4862
4863 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004864 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004865 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004866}
4867
4868/*
4869 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004870 * Also restock the Rx queue via ipw_rx_queue_restock.
4871 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004872 * This is called as a scheduled work item (except for during intialization)
4873 */
4874static void ipw_rx_queue_replenish(void *data)
4875{
4876 struct ipw_priv *priv = data;
4877 struct ipw_rx_queue *rxq = priv->rxq;
4878 struct list_head *element;
4879 struct ipw_rx_mem_buffer *rxb;
4880 unsigned long flags;
4881
4882 spin_lock_irqsave(&rxq->lock, flags);
4883 while (!list_empty(&rxq->rx_used)) {
4884 element = rxq->rx_used.next;
4885 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004886 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004887 if (!rxb->skb) {
4888 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4889 priv->net_dev->name);
4890 /* We don't reschedule replenish work here -- we will
4891 * call the restock method and if it still needs
4892 * more buffers it will schedule replenish */
4893 break;
4894 }
4895 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004896
James Ketrenos43f66a62005-03-25 12:31:53 -06004897 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004898 rxb->dma_addr =
4899 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004900 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004901
James Ketrenos43f66a62005-03-25 12:31:53 -06004902 list_add_tail(&rxb->list, &rxq->rx_free);
4903 rxq->free_count++;
4904 }
4905 spin_unlock_irqrestore(&rxq->lock, flags);
4906
4907 ipw_rx_queue_restock(priv);
4908}
4909
James Ketrenosc848d0a2005-08-24 21:56:24 -05004910static void ipw_bg_rx_queue_replenish(void *data)
4911{
4912 struct ipw_priv *priv = data;
4913 down(&priv->sem);
4914 ipw_rx_queue_replenish(data);
4915 up(&priv->sem);
4916}
4917
James Ketrenos43f66a62005-03-25 12:31:53 -06004918/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4919 * If an SKB has been detached, the POOL needs to have it's SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004920 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004921 * non NULL it is unmapped and freed
4922 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004923static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004924{
4925 int i;
4926
4927 if (!rxq)
4928 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004929
James Ketrenos43f66a62005-03-25 12:31:53 -06004930 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4931 if (rxq->pool[i].skb != NULL) {
4932 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004933 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004934 dev_kfree_skb(rxq->pool[i].skb);
4935 }
4936 }
4937
4938 kfree(rxq);
4939}
4940
4941static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4942{
4943 struct ipw_rx_queue *rxq;
4944 int i;
4945
4946 rxq = (struct ipw_rx_queue *)kmalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004947 if (unlikely(!rxq)) {
4948 IPW_ERROR("memory allocation failed\n");
4949 return NULL;
4950 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004951 memset(rxq, 0, sizeof(*rxq));
4952 spin_lock_init(&rxq->lock);
4953 INIT_LIST_HEAD(&rxq->rx_free);
4954 INIT_LIST_HEAD(&rxq->rx_used);
4955
4956 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004957 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004958 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4959
4960 /* Set us so that we have processed and used all buffers, but have
4961 * not restocked the Rx queue with fresh buffers */
4962 rxq->read = rxq->write = 0;
4963 rxq->processed = RX_QUEUE_SIZE - 1;
4964 rxq->free_count = 0;
4965
4966 return rxq;
4967}
4968
4969static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4970{
4971 rate &= ~IEEE80211_BASIC_RATE_MASK;
4972 if (ieee_mode == IEEE_A) {
4973 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004974 case IEEE80211_OFDM_RATE_6MB:
4975 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004976 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004977 case IEEE80211_OFDM_RATE_9MB:
4978 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004979 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004980 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004981 return priv->
4982 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004983 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004984 return priv->
4985 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004986 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004987 return priv->
4988 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004989 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004990 return priv->
4991 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004992 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004993 return priv->
4994 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004995 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004996 return priv->
4997 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004998 default:
4999 return 0;
5000 }
5001 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005002
James Ketrenos43f66a62005-03-25 12:31:53 -06005003 /* B and G mixed */
5004 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005005 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005006 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005007 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005008 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005009 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005010 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005011 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005012 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
5013 }
5014
5015 /* If we are limited to B modulations, bail at this point */
5016 if (ieee_mode == IEEE_B)
5017 return 0;
5018
5019 /* G */
5020 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005021 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005022 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005023 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005024 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005025 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005026 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005027 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005028 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005029 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005030 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005031 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005032 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005033 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005034 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005035 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005036 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
5037 }
5038
5039 return 0;
5040}
5041
Jeff Garzikbf794512005-07-31 13:07:26 -04005042static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005043 const struct ieee80211_network *network,
5044 struct ipw_supported_rates *rates)
5045{
5046 int num_rates, i;
5047
5048 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005049 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005050 rates->num_rates = 0;
5051 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005052 if (!ipw_is_rate_in_mask(priv, network->mode,
5053 network->rates[i])) {
5054
James Ketrenosea2b26e2005-08-24 21:25:16 -05005055 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005056 IPW_DEBUG_SCAN("Adding masked mandatory "
5057 "rate %02X\n",
5058 network->rates[i]);
5059 rates->supported_rates[rates->num_rates++] =
5060 network->rates[i];
5061 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005062 }
5063
James Ketrenos43f66a62005-03-25 12:31:53 -06005064 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5065 network->rates[i], priv->rates_mask);
5066 continue;
5067 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005068
James Ketrenos43f66a62005-03-25 12:31:53 -06005069 rates->supported_rates[rates->num_rates++] = network->rates[i];
5070 }
5071
James Ketrenosa613bff2005-08-24 21:43:11 -05005072 num_rates = min(network->rates_ex_len,
5073 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005074 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005075 if (!ipw_is_rate_in_mask(priv, network->mode,
5076 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005077 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005078 IPW_DEBUG_SCAN("Adding masked mandatory "
5079 "rate %02X\n",
5080 network->rates_ex[i]);
5081 rates->supported_rates[rates->num_rates++] =
5082 network->rates[i];
5083 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005084 }
5085
James Ketrenos43f66a62005-03-25 12:31:53 -06005086 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5087 network->rates_ex[i], priv->rates_mask);
5088 continue;
5089 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005090
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005091 rates->supported_rates[rates->num_rates++] =
5092 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005093 }
5094
James Ketrenosea2b26e2005-08-24 21:25:16 -05005095 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005096}
5097
5098static inline void ipw_copy_rates(struct ipw_supported_rates *dest,
5099 const struct ipw_supported_rates *src)
5100{
5101 u8 i;
5102 for (i = 0; i < src->num_rates; i++)
5103 dest->supported_rates[i] = src->supported_rates[i];
5104 dest->num_rates = src->num_rates;
5105}
5106
5107/* TODO: Look at sniffed packets in the air to determine if the basic rate
5108 * mask should ever be used -- right now all callers to add the scan rates are
5109 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5110static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005111 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005112{
Jeff Garzikbf794512005-07-31 13:07:26 -04005113 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005114 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005115
James Ketrenos43f66a62005-03-25 12:31:53 -06005116 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005117 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005118 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005119
5120 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005121 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005122 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005123
5124 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005125 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005126 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005127
5128 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005129 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005130 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005131}
5132
5133static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005134 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005135{
Jeff Garzikbf794512005-07-31 13:07:26 -04005136 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005137 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005138
5139 if (rate_mask & IEEE80211_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005140 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005141 IEEE80211_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005142
5143 if (rate_mask & IEEE80211_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005144 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005145 IEEE80211_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005146
5147 if (rate_mask & IEEE80211_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005148 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005149 IEEE80211_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005150
5151 if (rate_mask & IEEE80211_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005152 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005153 IEEE80211_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005154
5155 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005156 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005157 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005158
5159 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005160 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005161 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005162
5163 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005164 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005165 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005166
5167 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005168 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005169 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005170}
5171
5172struct ipw_network_match {
5173 struct ieee80211_network *network;
5174 struct ipw_supported_rates rates;
5175};
5176
James Ketrenosc848d0a2005-08-24 21:56:24 -05005177static int ipw_find_adhoc_network(struct ipw_priv *priv,
5178 struct ipw_network_match *match,
5179 struct ieee80211_network *network,
5180 int roaming)
5181{
5182 struct ipw_supported_rates rates;
5183
5184 /* Verify that this network's capability is compatible with the
5185 * current mode (AdHoc or Infrastructure) */
5186 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5187 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5188 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5189 "capability mismatch.\n",
5190 escape_essid(network->ssid, network->ssid_len),
5191 MAC_ARG(network->bssid));
5192 return 0;
5193 }
5194
5195 /* If we do not have an ESSID for this AP, we can not associate with
5196 * it */
5197 if (network->flags & NETWORK_EMPTY_ESSID) {
5198 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5199 "because of hidden ESSID.\n",
5200 escape_essid(network->ssid, network->ssid_len),
5201 MAC_ARG(network->bssid));
5202 return 0;
5203 }
5204
5205 if (unlikely(roaming)) {
5206 /* If we are roaming, then ensure check if this is a valid
5207 * network to try and roam to */
5208 if ((network->ssid_len != match->network->ssid_len) ||
5209 memcmp(network->ssid, match->network->ssid,
5210 network->ssid_len)) {
5211 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5212 "because of non-network ESSID.\n",
5213 escape_essid(network->ssid,
5214 network->ssid_len),
5215 MAC_ARG(network->bssid));
5216 return 0;
5217 }
5218 } else {
5219 /* If an ESSID has been configured then compare the broadcast
5220 * ESSID to ours */
5221 if ((priv->config & CFG_STATIC_ESSID) &&
5222 ((network->ssid_len != priv->essid_len) ||
5223 memcmp(network->ssid, priv->essid,
5224 min(network->ssid_len, priv->essid_len)))) {
5225 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005226
James Ketrenosc848d0a2005-08-24 21:56:24 -05005227 strncpy(escaped,
5228 escape_essid(network->ssid, network->ssid_len),
5229 sizeof(escaped));
5230 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5231 "because of ESSID mismatch: '%s'.\n",
5232 escaped, MAC_ARG(network->bssid),
5233 escape_essid(priv->essid,
5234 priv->essid_len));
5235 return 0;
5236 }
5237 }
5238
5239 /* If the old network rate is better than this one, don't bother
5240 * testing everything else. */
5241
5242 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005243 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5244 "current network.\n",
5245 escape_essid(match->network->ssid,
5246 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005247 return 0;
5248 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005249 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5250 "current network.\n",
5251 escape_essid(match->network->ssid,
5252 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005253 return 0;
5254 }
5255
5256 /* Now go through and see if the requested network is valid... */
5257 if (priv->ieee->scan_age != 0 &&
5258 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5259 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5260 "because of age: %lums.\n",
5261 escape_essid(network->ssid, network->ssid_len),
5262 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005263 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005264 return 0;
5265 }
5266
5267 if ((priv->config & CFG_STATIC_CHANNEL) &&
5268 (network->channel != priv->channel)) {
5269 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5270 "because of channel mismatch: %d != %d.\n",
5271 escape_essid(network->ssid, network->ssid_len),
5272 MAC_ARG(network->bssid),
5273 network->channel, priv->channel);
5274 return 0;
5275 }
5276
5277 /* Verify privacy compatability */
5278 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5279 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5280 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5281 "because of privacy mismatch: %s != %s.\n",
5282 escape_essid(network->ssid, network->ssid_len),
5283 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005284 priv->
5285 capability & CAP_PRIVACY_ON ? "on" : "off",
5286 network->
5287 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5288 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005289 return 0;
5290 }
5291
5292 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5293 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5294 "because of the same BSSID match: " MAC_FMT
5295 ".\n", escape_essid(network->ssid,
5296 network->ssid_len),
5297 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5298 return 0;
5299 }
5300
5301 /* Filter out any incompatible freq / mode combinations */
5302 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5303 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5304 "because of invalid frequency/mode "
5305 "combination.\n",
5306 escape_essid(network->ssid, network->ssid_len),
5307 MAC_ARG(network->bssid));
5308 return 0;
5309 }
5310
5311 /* Ensure that the rates supported by the driver are compatible with
5312 * this AP, including verification of basic rates (mandatory) */
5313 if (!ipw_compatible_rates(priv, network, &rates)) {
5314 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5315 "because configured rate mask excludes "
5316 "AP mandatory rate.\n",
5317 escape_essid(network->ssid, network->ssid_len),
5318 MAC_ARG(network->bssid));
5319 return 0;
5320 }
5321
5322 if (rates.num_rates == 0) {
5323 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5324 "because of no compatible rates.\n",
5325 escape_essid(network->ssid, network->ssid_len),
5326 MAC_ARG(network->bssid));
5327 return 0;
5328 }
5329
5330 /* TODO: Perform any further minimal comparititive tests. We do not
5331 * want to put too much policy logic here; intelligent scan selection
5332 * should occur within a generic IEEE 802.11 user space tool. */
5333
5334 /* Set up 'new' AP to this network */
5335 ipw_copy_rates(&match->rates, &rates);
5336 match->network = network;
5337 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5338 escape_essid(network->ssid, network->ssid_len),
5339 MAC_ARG(network->bssid));
5340
5341 return 1;
5342}
5343
5344static void ipw_merge_adhoc_network(void *data)
5345{
5346 struct ipw_priv *priv = data;
5347 struct ieee80211_network *network = NULL;
5348 struct ipw_network_match match = {
5349 .network = priv->assoc_network
5350 };
5351
James Ketrenosafbf30a2005-08-25 00:05:33 -05005352 if ((priv->status & STATUS_ASSOCIATED) &&
5353 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005354 /* First pass through ROAM process -- look for a better
5355 * network */
5356 unsigned long flags;
5357
5358 spin_lock_irqsave(&priv->ieee->lock, flags);
5359 list_for_each_entry(network, &priv->ieee->network_list, list) {
5360 if (network != priv->assoc_network)
5361 ipw_find_adhoc_network(priv, &match, network,
5362 1);
5363 }
5364 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5365
5366 if (match.network == priv->assoc_network) {
5367 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5368 "merge to.\n");
5369 return;
5370 }
5371
5372 down(&priv->sem);
5373 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5374 IPW_DEBUG_MERGE("remove network %s\n",
5375 escape_essid(priv->essid,
5376 priv->essid_len));
5377 ipw_remove_current_network(priv);
5378 }
5379
5380 ipw_disassociate(priv);
5381 priv->assoc_network = match.network;
5382 up(&priv->sem);
5383 return;
5384 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005385}
5386
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005387static int ipw_best_network(struct ipw_priv *priv,
5388 struct ipw_network_match *match,
5389 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005390{
5391 struct ipw_supported_rates rates;
5392
5393 /* Verify that this network's capability is compatible with the
5394 * current mode (AdHoc or Infrastructure) */
5395 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005396 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005397 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5398 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5399 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005400 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005401 escape_essid(network->ssid, network->ssid_len),
5402 MAC_ARG(network->bssid));
5403 return 0;
5404 }
5405
5406 /* If we do not have an ESSID for this AP, we can not associate with
5407 * it */
5408 if (network->flags & NETWORK_EMPTY_ESSID) {
5409 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5410 "because of hidden ESSID.\n",
5411 escape_essid(network->ssid, network->ssid_len),
5412 MAC_ARG(network->bssid));
5413 return 0;
5414 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005415
James Ketrenos43f66a62005-03-25 12:31:53 -06005416 if (unlikely(roaming)) {
5417 /* If we are roaming, then ensure check if this is a valid
5418 * network to try and roam to */
5419 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005420 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005421 network->ssid_len)) {
5422 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5423 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005424 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005425 network->ssid_len),
5426 MAC_ARG(network->bssid));
5427 return 0;
5428 }
5429 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005430 /* If an ESSID has been configured then compare the broadcast
5431 * ESSID to ours */
5432 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005433 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005434 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005435 min(network->ssid_len, priv->essid_len)))) {
5436 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005437 strncpy(escaped,
5438 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005439 sizeof(escaped));
5440 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005441 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005442 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005443 escape_essid(priv->essid,
5444 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005445 return 0;
5446 }
5447 }
5448
5449 /* If the old network rate is better than this one, don't bother
5450 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005451 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005452 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005453 strncpy(escaped,
5454 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005455 sizeof(escaped));
5456 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5457 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5458 escaped, MAC_ARG(network->bssid),
5459 escape_essid(match->network->ssid,
5460 match->network->ssid_len),
5461 MAC_ARG(match->network->bssid));
5462 return 0;
5463 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005464
James Ketrenos43f66a62005-03-25 12:31:53 -06005465 /* If this network has already had an association attempt within the
5466 * last 3 seconds, do not try and associate again... */
5467 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005468 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005469 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
James Ketrenosafbf30a2005-08-25 00:05:33 -05005470 "because of storming (%lus since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005471 "assoc attempt).\n",
5472 escape_essid(network->ssid, network->ssid_len),
5473 MAC_ARG(network->bssid),
5474 (jiffies - network->last_associate) / HZ);
5475 return 0;
5476 }
5477
5478 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005479 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005480 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005481 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5482 "because of age: %lums.\n",
5483 escape_essid(network->ssid, network->ssid_len),
5484 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005485 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06005486 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005487 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005488
Jeff Garzikbf794512005-07-31 13:07:26 -04005489 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005490 (network->channel != priv->channel)) {
5491 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5492 "because of channel mismatch: %d != %d.\n",
5493 escape_essid(network->ssid, network->ssid_len),
5494 MAC_ARG(network->bssid),
5495 network->channel, priv->channel);
5496 return 0;
5497 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005498
James Ketrenos43f66a62005-03-25 12:31:53 -06005499 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005500 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005501 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5502 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5503 "because of privacy mismatch: %s != %s.\n",
5504 escape_essid(network->ssid, network->ssid_len),
5505 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005506 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005507 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005508 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005509 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005510 return 0;
5511 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005512
Hong Liucdd1fa12005-08-31 18:14:27 +08005513 if (!priv->ieee->wpa_enabled && (network->wpa_ie_len > 0 ||
5514 network->rsn_ie_len > 0)) {
5515 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5516 "because of WPA capability mismatch.\n",
5517 escape_essid(network->ssid, network->ssid_len),
5518 MAC_ARG(network->bssid));
5519 return 0;
5520 }
5521
Jeff Garzikbf794512005-07-31 13:07:26 -04005522 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005523 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5524 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5525 "because of BSSID mismatch: " MAC_FMT ".\n",
5526 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005527 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005528 return 0;
5529 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005530
James Ketrenos43f66a62005-03-25 12:31:53 -06005531 /* Filter out any incompatible freq / mode combinations */
5532 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5533 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5534 "because of invalid frequency/mode "
5535 "combination.\n",
5536 escape_essid(network->ssid, network->ssid_len),
5537 MAC_ARG(network->bssid));
5538 return 0;
5539 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005540
Liu Hong1fe0adb2005-08-19 09:33:10 -05005541 /* Filter out invalid channel in current GEO */
5542 if (!ipw_is_valid_channel(priv->ieee, network->channel)) {
5543 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5544 "because of invalid channel in current GEO\n",
5545 escape_essid(network->ssid, network->ssid_len),
5546 MAC_ARG(network->bssid));
5547 return 0;
5548 }
5549
James Ketrenosea2b26e2005-08-24 21:25:16 -05005550 /* Ensure that the rates supported by the driver are compatible with
5551 * this AP, including verification of basic rates (mandatory) */
5552 if (!ipw_compatible_rates(priv, network, &rates)) {
5553 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5554 "because configured rate mask excludes "
5555 "AP mandatory rate.\n",
5556 escape_essid(network->ssid, network->ssid_len),
5557 MAC_ARG(network->bssid));
5558 return 0;
5559 }
5560
James Ketrenos43f66a62005-03-25 12:31:53 -06005561 if (rates.num_rates == 0) {
5562 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5563 "because of no compatible rates.\n",
5564 escape_essid(network->ssid, network->ssid_len),
5565 MAC_ARG(network->bssid));
5566 return 0;
5567 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005568
James Ketrenos43f66a62005-03-25 12:31:53 -06005569 /* TODO: Perform any further minimal comparititive tests. We do not
5570 * want to put too much policy logic here; intelligent scan selection
5571 * should occur within a generic IEEE 802.11 user space tool. */
5572
5573 /* Set up 'new' AP to this network */
5574 ipw_copy_rates(&match->rates, &rates);
5575 match->network = network;
5576
5577 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5578 escape_essid(network->ssid, network->ssid_len),
5579 MAC_ARG(network->bssid));
5580
5581 return 1;
5582}
5583
Jeff Garzikbf794512005-07-31 13:07:26 -04005584static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005585 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005586{
Liu Hong1fe0adb2005-08-19 09:33:10 -05005587 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005588 int i;
5589
James Ketrenos43f66a62005-03-25 12:31:53 -06005590 /*
5591 * For the purposes of scanning, we can set our wireless mode
5592 * to trigger scans across combinations of bands, but when it
5593 * comes to creating a new ad-hoc network, we have tell the FW
5594 * exactly which band to use.
5595 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005596 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005597 * chossen band. Attempting to create a new ad-hoc network
5598 * with an invalid channel for wireless mode will trigger a
5599 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005600 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005601 */
Liu Hong1fe0adb2005-08-19 09:33:10 -05005602 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005603 case IEEE80211_52GHZ_BAND:
5604 network->mode = IEEE_A;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005605 i = ipw_channel_to_index(priv->ieee, priv->channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005606 if (i == -1)
5607 BUG();
5608 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5609 IPW_WARNING("Overriding invalid channel\n");
5610 priv->channel = geo->a[0].channel;
5611 }
5612 break;
5613
5614 case IEEE80211_24GHZ_BAND:
5615 if (priv->ieee->mode & IEEE_G)
5616 network->mode = IEEE_G;
5617 else
5618 network->mode = IEEE_B;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005619 i = ipw_channel_to_index(priv->ieee, priv->channel);
5620 if (i == -1)
5621 BUG();
5622 if (geo->bg[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5623 IPW_WARNING("Overriding invalid channel\n");
5624 priv->channel = geo->bg[0].channel;
5625 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005626 break;
5627
5628 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005629 IPW_WARNING("Overriding invalid channel\n");
5630 if (priv->ieee->mode & IEEE_A) {
5631 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005632 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005633 } else if (priv->ieee->mode & IEEE_G) {
5634 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005635 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005636 } else {
5637 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005638 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005639 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005640 break;
5641 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005642
5643 network->channel = priv->channel;
5644 priv->config |= CFG_ADHOC_PERSIST;
5645 ipw_create_bssid(priv, network->bssid);
5646 network->ssid_len = priv->essid_len;
5647 memcpy(network->ssid, priv->essid, priv->essid_len);
5648 memset(&network->stats, 0, sizeof(network->stats));
5649 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005650 if (!(priv->config & CFG_PREAMBLE_LONG))
5651 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005652 if (priv->capability & CAP_PRIVACY_ON)
5653 network->capability |= WLAN_CAPABILITY_PRIVACY;
5654 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005655 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005656 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005657 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005658 &priv->rates.supported_rates[network->rates_len],
5659 network->rates_ex_len);
5660 network->last_scanned = 0;
5661 network->flags = 0;
5662 network->last_associate = 0;
5663 network->time_stamp[0] = 0;
5664 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005665 network->beacon_interval = 100; /* Default */
5666 network->listen_interval = 10; /* Default */
5667 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005668 network->wpa_ie_len = 0;
5669 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005670}
5671
James Ketrenosb095c382005-08-24 22:04:42 -05005672static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5673{
5674 struct ipw_tgi_tx_key *key;
5675 struct host_cmd cmd = {
5676 .cmd = IPW_CMD_TGI_TX_KEY,
5677 .len = sizeof(*key)
5678 };
5679
5680 if (!(priv->ieee->sec.flags & (1 << index)))
5681 return;
5682
5683 key = (struct ipw_tgi_tx_key *)&cmd.param;
5684 key->key_id = index;
5685 memcpy(key->key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5686 key->security_type = type;
5687 key->station_index = 0; /* always 0 for BSS */
5688 key->flags = 0;
5689 /* 0 for new key; previous value of counter (after fatal error) */
5690 key->tx_counter[0] = 0;
5691 key->tx_counter[1] = 0;
5692
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005693 ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05005694}
5695
5696static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005697{
5698 struct ipw_wep_key *key;
5699 int i;
5700 struct host_cmd cmd = {
5701 .cmd = IPW_CMD_WEP_KEY,
5702 .len = sizeof(*key)
5703 };
5704
5705 key = (struct ipw_wep_key *)&cmd.param;
5706 key->cmd_id = DINO_CMD_WEP_KEY;
5707 key->seq_num = 0;
5708
James Ketrenosb095c382005-08-24 22:04:42 -05005709 /* Note: AES keys cannot be set for multiple times.
5710 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005711 for (i = 0; i < 4; i++) {
James Ketrenosb095c382005-08-24 22:04:42 -05005712 key->key_index = i | type;
5713 if (!(priv->ieee->sec.flags & (1 << i))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005714 key->key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005715 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005716 }
5717
James Ketrenosb095c382005-08-24 22:04:42 -05005718 key->key_size = priv->ieee->sec.key_sizes[i];
5719 memcpy(key->key, priv->ieee->sec.keys[i], key->key_size);
5720
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005721 ipw_send_cmd(priv, &cmd);
Jeff Garzikbf794512005-07-31 13:07:26 -04005722 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005723}
5724
Zhu Yi1fbfea52005-08-05 17:22:56 +08005725static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5726{
5727 if (priv->ieee->host_encrypt)
5728 return;
5729
5730 switch (level) {
5731 case SEC_LEVEL_3:
5732 priv->sys_config.disable_unicast_decryption = 0;
5733 priv->ieee->host_decrypt = 0;
5734 break;
5735 case SEC_LEVEL_2:
5736 priv->sys_config.disable_unicast_decryption = 1;
5737 priv->ieee->host_decrypt = 1;
5738 break;
5739 case SEC_LEVEL_1:
5740 priv->sys_config.disable_unicast_decryption = 0;
5741 priv->ieee->host_decrypt = 0;
5742 break;
5743 case SEC_LEVEL_0:
5744 priv->sys_config.disable_unicast_decryption = 1;
5745 break;
5746 default:
5747 break;
5748 }
5749}
5750
5751static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5752{
5753 if (priv->ieee->host_encrypt)
5754 return;
5755
5756 switch (level) {
5757 case SEC_LEVEL_3:
5758 priv->sys_config.disable_multicast_decryption = 0;
5759 break;
5760 case SEC_LEVEL_2:
5761 priv->sys_config.disable_multicast_decryption = 1;
5762 break;
5763 case SEC_LEVEL_1:
5764 priv->sys_config.disable_multicast_decryption = 0;
5765 break;
5766 case SEC_LEVEL_0:
5767 priv->sys_config.disable_multicast_decryption = 1;
5768 break;
5769 default:
5770 break;
5771 }
5772}
5773
James Ketrenosb095c382005-08-24 22:04:42 -05005774static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5775{
5776 switch (priv->ieee->sec.level) {
5777 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005778 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5779 ipw_send_tgi_tx_key(priv,
5780 DCT_FLAG_EXT_SECURITY_CCM,
5781 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005782
Hong Liu567deaf2005-08-31 18:07:22 +08005783 if (!priv->ieee->host_mc_decrypt)
5784 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005785 break;
5786 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005787 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5788 ipw_send_tgi_tx_key(priv,
5789 DCT_FLAG_EXT_SECURITY_TKIP,
5790 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005791 break;
5792 case SEC_LEVEL_1:
5793 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenosb095c382005-08-24 22:04:42 -05005794 break;
5795 case SEC_LEVEL_0:
5796 default:
5797 break;
5798 }
5799}
5800
James Ketrenos43f66a62005-03-25 12:31:53 -06005801static void ipw_adhoc_check(void *data)
5802{
5803 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005804
James Ketrenosafbf30a2005-08-25 00:05:33 -05005805 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005806 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005807 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5808 IPW_DL_STATE | IPW_DL_ASSOC,
5809 "Missed beacon: %d - disassociate\n",
5810 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005811 ipw_remove_current_network(priv);
5812 ipw_disassociate(priv);
5813 return;
5814 }
5815
Jeff Garzikbf794512005-07-31 13:07:26 -04005816 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005817 priv->assoc_request.beacon_interval);
5818}
5819
James Ketrenosc848d0a2005-08-24 21:56:24 -05005820static void ipw_bg_adhoc_check(void *data)
5821{
5822 struct ipw_priv *priv = data;
5823 down(&priv->sem);
5824 ipw_adhoc_check(data);
5825 up(&priv->sem);
5826}
5827
James Ketrenos43f66a62005-03-25 12:31:53 -06005828#ifdef CONFIG_IPW_DEBUG
5829static void ipw_debug_config(struct ipw_priv *priv)
5830{
5831 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5832 "[CFG 0x%08X]\n", priv->config);
5833 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005834 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005835 else
5836 IPW_DEBUG_INFO("Channel unlocked.\n");
5837 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005838 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005839 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005840 else
5841 IPW_DEBUG_INFO("ESSID unlocked.\n");
5842 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005843 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5844 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005845 else
5846 IPW_DEBUG_INFO("BSSID unlocked.\n");
5847 if (priv->capability & CAP_PRIVACY_ON)
5848 IPW_DEBUG_INFO("PRIVACY on\n");
5849 else
5850 IPW_DEBUG_INFO("PRIVACY off\n");
5851 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5852}
5853#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005854#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005855#endif
5856
James Ketrenosb095c382005-08-24 22:04:42 -05005857static inline void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005858{
5859 /* TODO: Verify that this works... */
5860 struct ipw_fixed_rate fr = {
5861 .tx_rates = priv->rates_mask
5862 };
5863 u32 reg;
5864 u16 mask = 0;
5865
Jeff Garzikbf794512005-07-31 13:07:26 -04005866 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005867 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005868
James Ketrenos43f66a62005-03-25 12:31:53 -06005869 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005870 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005871 /* IEEE_A */
5872 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5873 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005874 IPW_DEBUG_WX
5875 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005876 fr.tx_rates = 0;
5877 break;
5878 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005879
James Ketrenos43f66a62005-03-25 12:31:53 -06005880 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5881 break;
5882
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005883 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005884 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005885 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005886 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5887 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005888 IPW_DEBUG_WX
5889 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005890 fr.tx_rates = 0;
5891 }
5892 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005893 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005894
5895 /* IEEE_G */
5896 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5897 IEEE80211_OFDM_RATES_MASK)) {
5898 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005899 IPW_DEBUG_WX
5900 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005901 fr.tx_rates = 0;
5902 break;
5903 }
5904
5905 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5906 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5907 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5908 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005909
James Ketrenos43f66a62005-03-25 12:31:53 -06005910 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5911 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5912 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5913 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005914
James Ketrenos43f66a62005-03-25 12:31:53 -06005915 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5916 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5917 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5918 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005919
James Ketrenos43f66a62005-03-25 12:31:53 -06005920 fr.tx_rates |= mask;
5921 break;
5922 }
5923
5924 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005925 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005926}
5927
James Ketrenosea2b26e2005-08-24 21:25:16 -05005928static void ipw_abort_scan(struct ipw_priv *priv)
5929{
5930 int err;
5931
5932 if (priv->status & STATUS_SCAN_ABORTING) {
5933 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5934 return;
5935 }
5936 priv->status |= STATUS_SCAN_ABORTING;
5937
5938 err = ipw_send_scan_abort(priv);
5939 if (err)
5940 IPW_DEBUG_HC("Request to abort scan failed.\n");
5941}
5942
James Ketrenosafbf30a2005-08-25 00:05:33 -05005943static void ipw_add_scan_channels(struct ipw_priv *priv,
5944 struct ipw_scan_request_ext *scan,
5945 int scan_type)
5946{
5947 int channel_index = 0;
5948 const struct ieee80211_geo *geo;
5949 int i;
5950
Liu Hong1fe0adb2005-08-19 09:33:10 -05005951 geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005952
5953 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5954 int start = channel_index;
5955 for (i = 0; i < geo->a_channels; i++) {
5956 if ((priv->status & STATUS_ASSOCIATED) &&
5957 geo->a[i].channel == priv->channel)
5958 continue;
5959 channel_index++;
5960 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005961 ipw_set_scan_type(scan, channel_index,
5962 geo->a[i].
5963 flags & IEEE80211_CH_PASSIVE_ONLY ?
5964 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
5965 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005966 }
5967
5968 if (start != channel_index) {
5969 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5970 (channel_index - start);
5971 channel_index++;
5972 }
5973 }
5974
5975 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5976 int start = channel_index;
5977 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005978 int index;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005979 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5980 /* nop out the list */
5981 [0] = 0
5982 };
5983
5984 u8 channel;
5985 while (channel_index < IPW_SCAN_CHANNELS) {
5986 channel =
5987 priv->speed_scan[priv->speed_scan_pos];
5988 if (channel == 0) {
5989 priv->speed_scan_pos = 0;
5990 channel = priv->speed_scan[0];
5991 }
5992 if ((priv->status & STATUS_ASSOCIATED) &&
5993 channel == priv->channel) {
5994 priv->speed_scan_pos++;
5995 continue;
5996 }
5997
5998 /* If this channel has already been
5999 * added in scan, break from loop
6000 * and this will be the first channel
6001 * in the next scan.
6002 */
6003 if (channels[channel - 1] != 0)
6004 break;
6005
6006 channels[channel - 1] = 1;
6007 priv->speed_scan_pos++;
6008 channel_index++;
6009 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006010 index =
6011 ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006012 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006013 geo->bg[index].
6014 flags &
6015 IEEE80211_CH_PASSIVE_ONLY ?
6016 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6017 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006018 }
6019 } else {
6020 for (i = 0; i < geo->bg_channels; i++) {
6021 if ((priv->status & STATUS_ASSOCIATED) &&
6022 geo->bg[i].channel == priv->channel)
6023 continue;
6024 channel_index++;
6025 scan->channels_list[channel_index] =
6026 geo->bg[i].channel;
6027 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006028 geo->bg[i].
6029 flags &
6030 IEEE80211_CH_PASSIVE_ONLY ?
6031 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6032 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006033 }
6034 }
6035
6036 if (start != channel_index) {
6037 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6038 (channel_index - start);
6039 }
6040 }
6041}
6042
James Ketrenosea2b26e2005-08-24 21:25:16 -05006043static int ipw_request_scan(struct ipw_priv *priv)
6044{
6045 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006046 int err = 0, scan_type;
6047
6048 if (!(priv->status & STATUS_INIT) ||
6049 (priv->status & STATUS_EXIT_PENDING))
6050 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006051
James Ketrenosb095c382005-08-24 22:04:42 -05006052 down(&priv->sem);
6053
James Ketrenosea2b26e2005-08-24 21:25:16 -05006054 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05006055 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05006056 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006057 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006058 }
6059
James Ketrenosafbf30a2005-08-25 00:05:33 -05006060 if (!(priv->status & STATUS_SCAN_FORCED) &&
6061 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006062 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6063 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006064 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006065 }
6066
6067 if (priv->status & STATUS_RF_KILL_MASK) {
6068 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6069 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006070 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006071 }
6072
6073 memset(&scan, 0, sizeof(scan));
6074
James Ketrenosb095c382005-08-24 22:04:42 -05006075 if (priv->config & CFG_SPEED_SCAN)
6076 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6077 cpu_to_le16(30);
6078 else
6079 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6080 cpu_to_le16(20);
6081
James Ketrenosa613bff2005-08-24 21:43:11 -05006082 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
6083 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05006084 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006085
James Ketrenosa613bff2005-08-24 21:43:11 -05006086 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006087
James Ketrenosb095c382005-08-24 22:04:42 -05006088#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006089 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006090 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006091 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006092
Liu Hong1fe0adb2005-08-19 09:33:10 -05006093 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006094 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006095 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006096 channel = priv->channel;
6097 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006098
James Ketrenosb095c382005-08-24 22:04:42 -05006099 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006100 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006101 channel = priv->channel;
6102 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006103
James Ketrenosb095c382005-08-24 22:04:42 -05006104 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006105 band = (u8) (IPW_B_MODE << 6) | 1;
6106 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006107 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006108 }
6109
James Ketrenosb095c382005-08-24 22:04:42 -05006110 scan.channels_list[0] = band;
6111 scan.channels_list[1] = channel;
6112 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006113
James Ketrenosb095c382005-08-24 22:04:42 -05006114 /* NOTE: The card will sit on this channel for this time
6115 * period. Scan aborts are timing sensitive and frequently
6116 * result in firmware restarts. As such, it is best to
6117 * set a small dwell_time here and just keep re-issuing
6118 * scans. Otherwise fast channel hopping will not actually
6119 * hop channels.
6120 *
6121 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006122 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6123 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006124 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006125#endif /* CONFIG_IPW2200_MONITOR */
6126 /* If we are roaming, then make this a directed scan for the
6127 * current network. Otherwise, ensure that every other scan
6128 * is a fast channel hop scan */
6129 if ((priv->status & STATUS_ROAMING)
6130 || (!(priv->status & STATUS_ASSOCIATED)
6131 && (priv->config & CFG_STATIC_ESSID)
6132 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006133 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6134 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006135 IPW_DEBUG_HC("Attempt to send SSID command "
6136 "failed.\n");
6137 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006138 }
6139
6140 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006141 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006142 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006143
James Ketrenosafbf30a2005-08-25 00:05:33 -05006144 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006145#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006146 }
6147#endif
6148
6149 err = ipw_send_scan_request_ext(priv, &scan);
6150 if (err) {
6151 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006152 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006153 }
6154
6155 priv->status |= STATUS_SCANNING;
6156 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006157 queue_delayed_work(priv->workqueue, &priv->scan_check,
6158 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05006159 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05006160 up(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05006161 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006162}
6163
6164static void ipw_bg_abort_scan(void *data)
6165{
6166 struct ipw_priv *priv = data;
6167 down(&priv->sem);
6168 ipw_abort_scan(data);
6169 up(&priv->sem);
6170}
6171
James Ketrenosafbf30a2005-08-25 00:05:33 -05006172#if WIRELESS_EXT < 18
6173/* Support for wpa_supplicant before WE-18, deprecated. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006174
6175/* following definitions must match definitions in driver_ipw.c */
6176
6177#define IPW_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
6178
6179#define IPW_CMD_SET_WPA_PARAM 1
6180#define IPW_CMD_SET_WPA_IE 2
6181#define IPW_CMD_SET_ENCRYPTION 3
6182#define IPW_CMD_MLME 4
6183
6184#define IPW_PARAM_WPA_ENABLED 1
6185#define IPW_PARAM_TKIP_COUNTERMEASURES 2
6186#define IPW_PARAM_DROP_UNENCRYPTED 3
6187#define IPW_PARAM_PRIVACY_INVOKED 4
6188#define IPW_PARAM_AUTH_ALGS 5
6189#define IPW_PARAM_IEEE_802_1X 6
6190
6191#define IPW_MLME_STA_DEAUTH 1
6192#define IPW_MLME_STA_DISASSOC 2
6193
6194#define IPW_CRYPT_ERR_UNKNOWN_ALG 2
6195#define IPW_CRYPT_ERR_UNKNOWN_ADDR 3
6196#define IPW_CRYPT_ERR_CRYPT_INIT_FAILED 4
6197#define IPW_CRYPT_ERR_KEY_SET_FAILED 5
6198#define IPW_CRYPT_ERR_TX_KEY_SET_FAILED 6
6199#define IPW_CRYPT_ERR_CARD_CONF_FAILED 7
6200
6201#define IPW_CRYPT_ALG_NAME_LEN 16
6202
6203struct ipw_param {
6204 u32 cmd;
6205 u8 sta_addr[ETH_ALEN];
6206 union {
6207 struct {
6208 u8 name;
6209 u32 value;
6210 } wpa_param;
6211 struct {
6212 u32 len;
James Ketrenosb095c382005-08-24 22:04:42 -05006213 u8 reserved[32];
6214 u8 data[0];
James Ketrenosea2b26e2005-08-24 21:25:16 -05006215 } wpa_ie;
6216 struct {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006217 u32 command;
6218 u32 reason_code;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006219 } mlme;
6220 struct {
6221 u8 alg[IPW_CRYPT_ALG_NAME_LEN];
6222 u8 set_tx;
6223 u32 err;
6224 u8 idx;
6225 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
6226 u16 key_len;
6227 u8 key[0];
6228 } crypt;
6229
6230 } u;
6231};
6232
6233/* end of driver_ipw.c code */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006234#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006235
6236static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6237{
James Ketrenosb095c382005-08-24 22:04:42 -05006238 /* This is called when wpa_supplicant loads and closes the driver
6239 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006240 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006241 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006242}
6243
James Ketrenosafbf30a2005-08-25 00:05:33 -05006244#if WIRELESS_EXT < 18
6245#define IW_AUTH_ALG_OPEN_SYSTEM 0x1
6246#define IW_AUTH_ALG_SHARED_KEY 0x2
6247#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006248
6249static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6250{
6251 struct ieee80211_device *ieee = priv->ieee;
6252 struct ieee80211_security sec = {
6253 .flags = SEC_AUTH_MODE,
6254 };
6255 int ret = 0;
6256
James Ketrenosafbf30a2005-08-25 00:05:33 -05006257 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006258 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6259 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006260 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006261 sec.auth_mode = WLAN_AUTH_OPEN;
6262 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006263 } else
6264 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006265
6266 if (ieee->set_security)
6267 ieee->set_security(ieee->dev, &sec);
6268 else
6269 ret = -EOPNOTSUPP;
6270
6271 return ret;
6272}
6273
James Ketrenosafbf30a2005-08-25 00:05:33 -05006274void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie, int wpa_ie_len)
6275{
6276 /* make sure WPA is enabled */
6277 ipw_wpa_enable(priv, 1);
6278
6279 ipw_disassociate(priv);
6280}
6281
6282static int ipw_set_rsn_capa(struct ipw_priv *priv,
6283 char *capabilities, int length)
6284{
6285 struct host_cmd cmd = {
6286 .cmd = IPW_CMD_RSN_CAPABILITIES,
6287 .len = length,
6288 };
6289
6290 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6291
6292 memcpy(cmd.param, capabilities, length);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05006293 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006294}
6295
6296#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -05006297static int ipw_wpa_set_param(struct net_device *dev, u8 name, u32 value)
6298{
6299 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosa613bff2005-08-24 21:43:11 -05006300 struct ieee80211_crypt_data *crypt;
6301 unsigned long flags;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006302 int ret = 0;
6303
6304 switch (name) {
6305 case IPW_PARAM_WPA_ENABLED:
6306 ret = ipw_wpa_enable(priv, value);
6307 break;
6308
6309 case IPW_PARAM_TKIP_COUNTERMEASURES:
James Ketrenosa613bff2005-08-24 21:43:11 -05006310 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6311 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6312 IPW_WARNING("Can't set TKIP countermeasures: "
6313 "crypt not set!\n");
6314 break;
6315 }
6316
6317 flags = crypt->ops->get_flags(crypt->priv);
6318
6319 if (value)
6320 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6321 else
6322 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6323
6324 crypt->ops->set_flags(flags, crypt->priv);
6325
James Ketrenosea2b26e2005-08-24 21:25:16 -05006326 break;
6327
James Ketrenosb095c382005-08-24 22:04:42 -05006328 case IPW_PARAM_DROP_UNENCRYPTED:{
6329 /* HACK:
6330 *
6331 * wpa_supplicant calls set_wpa_enabled when the driver
6332 * is loaded and unloaded, regardless of if WPA is being
6333 * used. No other calls are made which can be used to
6334 * determine if encryption will be used or not prior to
6335 * association being expected. If encryption is not being
6336 * used, drop_unencrypted is set to false, else true -- we
6337 * can use this to determine if the CAP_PRIVACY_ON bit should
6338 * be set.
6339 */
6340 struct ieee80211_security sec = {
6341 .flags = SEC_ENABLED,
6342 .enabled = value,
6343 };
6344 priv->ieee->drop_unencrypted = value;
6345 /* We only change SEC_LEVEL for open mode. Others
6346 * are set by ipw_wpa_set_encryption.
6347 */
6348 if (!value) {
6349 sec.flags |= SEC_LEVEL;
6350 sec.level = SEC_LEVEL_0;
6351 } else {
6352 sec.flags |= SEC_LEVEL;
6353 sec.level = SEC_LEVEL_1;
6354 }
6355 if (priv->ieee->set_security)
6356 priv->ieee->set_security(priv->ieee->dev, &sec);
6357 break;
6358 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05006359
6360 case IPW_PARAM_PRIVACY_INVOKED:
6361 priv->ieee->privacy_invoked = value;
6362 break;
6363
6364 case IPW_PARAM_AUTH_ALGS:
6365 ret = ipw_wpa_set_auth_algs(priv, value);
6366 break;
6367
6368 case IPW_PARAM_IEEE_802_1X:
6369 priv->ieee->ieee802_1x = value;
6370 break;
6371
6372 default:
6373 IPW_ERROR("%s: Unknown WPA param: %d\n", dev->name, name);
6374 ret = -EOPNOTSUPP;
6375 }
6376
6377 return ret;
6378}
6379
6380static int ipw_wpa_mlme(struct net_device *dev, int command, int reason)
6381{
6382 struct ipw_priv *priv = ieee80211_priv(dev);
6383 int ret = 0;
6384
6385 switch (command) {
6386 case IPW_MLME_STA_DEAUTH:
6387 // silently ignore
6388 break;
6389
6390 case IPW_MLME_STA_DISASSOC:
6391 ipw_disassociate(priv);
6392 break;
6393
6394 default:
6395 IPW_ERROR("%s: Unknown MLME request: %d\n", dev->name, command);
6396 ret = -EOPNOTSUPP;
6397 }
6398
6399 return ret;
6400}
6401
Zhu Yi1fbfea52005-08-05 17:22:56 +08006402static int ipw_wpa_ie_cipher2level(u8 cipher)
6403{
6404 switch (cipher) {
6405 case 4: /* CCMP */
6406 return SEC_LEVEL_3;
6407 case 2: /* TKIP */
6408 return SEC_LEVEL_2;
6409 case 5: /* WEP104 */
6410 case 1: /* WEP40 */
6411 return SEC_LEVEL_1;
6412 case 0: /* NONE */
6413 return SEC_LEVEL_0;
6414 default:
6415 return -1;
6416 }
6417}
6418
James Ketrenosea2b26e2005-08-24 21:25:16 -05006419static int ipw_wpa_set_wpa_ie(struct net_device *dev,
6420 struct ipw_param *param, int plen)
6421{
6422 struct ipw_priv *priv = ieee80211_priv(dev);
6423 struct ieee80211_device *ieee = priv->ieee;
6424 u8 *buf;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006425 u8 *ptk, *gtk;
6426 int level;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006427
James Ketrenosea2b26e2005-08-24 21:25:16 -05006428 if (param->u.wpa_ie.len > MAX_WPA_IE_LEN ||
6429 (param->u.wpa_ie.len && param->u.wpa_ie.data == NULL))
6430 return -EINVAL;
6431
6432 if (param->u.wpa_ie.len) {
6433 buf = kmalloc(param->u.wpa_ie.len, GFP_KERNEL);
6434 if (buf == NULL)
6435 return -ENOMEM;
6436
6437 memcpy(buf, param->u.wpa_ie.data, param->u.wpa_ie.len);
6438 kfree(ieee->wpa_ie);
6439 ieee->wpa_ie = buf;
6440 ieee->wpa_ie_len = param->u.wpa_ie.len;
6441 } else {
6442 kfree(ieee->wpa_ie);
6443 ieee->wpa_ie = NULL;
6444 ieee->wpa_ie_len = 0;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006445 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006446 }
6447
Zhu Yi1fbfea52005-08-05 17:22:56 +08006448 if (priv->ieee->host_encrypt)
6449 goto done;
6450
6451 /* HACK: Parse wpa_ie here to get pairwise suite, otherwise
6452 * we need to change driver_ipw.c from wpa_supplicant. This
6453 * is OK since -Dipw is deprecated. The -Dwext driver has a
6454 * clean way to handle this. */
6455 gtk = ptk = (u8 *) ieee->wpa_ie;
6456 if (ieee->wpa_ie[0] == 0x30) { /* RSN IE */
6457 gtk += 4 + 3;
6458 ptk += 4 + 4 + 2 + 3;
6459 } else { /* WPA IE */
6460 gtk += 8 + 3;
6461 ptk += 8 + 4 + 2 + 3;
6462 }
6463
6464 if (ptk - (u8 *) ieee->wpa_ie > ieee->wpa_ie_len)
6465 return -EINVAL;
6466
6467 level = ipw_wpa_ie_cipher2level(*gtk);
6468 ipw_set_hw_decrypt_multicast(priv, level);
6469
6470 level = ipw_wpa_ie_cipher2level(*ptk);
6471 ipw_set_hw_decrypt_unicast(priv, level);
6472
6473 done:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006474 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6475 return 0;
6476}
6477
6478/* implementation borrowed from hostap driver */
6479
6480static int ipw_wpa_set_encryption(struct net_device *dev,
6481 struct ipw_param *param, int param_len)
6482{
6483 int ret = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006484 int group_key = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006485 struct ipw_priv *priv = ieee80211_priv(dev);
6486 struct ieee80211_device *ieee = priv->ieee;
6487 struct ieee80211_crypto_ops *ops;
6488 struct ieee80211_crypt_data **crypt;
6489
6490 struct ieee80211_security sec = {
6491 .flags = 0,
6492 };
6493
6494 param->u.crypt.err = 0;
6495 param->u.crypt.alg[IPW_CRYPT_ALG_NAME_LEN - 1] = '\0';
6496
6497 if (param_len !=
6498 (int)((char *)param->u.crypt.key - (char *)param) +
6499 param->u.crypt.key_len) {
6500 IPW_DEBUG_INFO("Len mismatch %d, %d\n", param_len,
6501 param->u.crypt.key_len);
6502 return -EINVAL;
6503 }
6504 if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff &&
6505 param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff &&
6506 param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) {
6507 if (param->u.crypt.idx >= WEP_KEYS)
6508 return -EINVAL;
6509 crypt = &ieee->crypt[param->u.crypt.idx];
6510 } else {
6511 return -EINVAL;
6512 }
6513
Hong Liu567deaf2005-08-31 18:07:22 +08006514 if (param->u.crypt.idx != 0)
6515 group_key = 1;
6516
James Ketrenosafbf30a2005-08-25 00:05:33 -05006517 sec.flags |= SEC_ENABLED | SEC_ENCRYPT;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006518 if (strcmp(param->u.crypt.alg, "none") == 0) {
6519 if (crypt) {
6520 sec.enabled = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006521 sec.encrypt = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006522 sec.level = SEC_LEVEL_0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006523 sec.flags |= SEC_LEVEL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006524 ieee80211_crypt_delayed_deinit(ieee, crypt);
6525 }
6526 goto done;
6527 }
6528 sec.enabled = 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006529 sec.encrypt = 1;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006530
James Ketrenosb095c382005-08-24 22:04:42 -05006531 /* IPW HW cannot build TKIP MIC, host decryption still needed. */
Hong Liu567deaf2005-08-31 18:07:22 +08006532 if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
6533 if (group_key)
6534 ieee->host_mc_decrypt = 1;
6535 else
6536 ieee->host_encrypt_msdu = 1;
6537 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006538
Hong Liu567deaf2005-08-31 18:07:22 +08006539 /*if (!(ieee->host_encrypt || ieee->host_encrypt_msdu ||
6540 ieee->host_decrypt))
6541 goto skip_host_crypt; */
6542 if (group_key ? !ieee->host_mc_decrypt :
6543 !(ieee->host_encrypt || ieee->host_decrypt ||
6544 ieee->host_encrypt_msdu))
James Ketrenosb095c382005-08-24 22:04:42 -05006545 goto skip_host_crypt;
6546
James Ketrenosea2b26e2005-08-24 21:25:16 -05006547 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6548 if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) {
6549 request_module("ieee80211_crypt_wep");
6550 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6551 } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) {
6552 request_module("ieee80211_crypt_tkip");
6553 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6554 } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) {
6555 request_module("ieee80211_crypt_ccmp");
6556 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6557 }
6558 if (ops == NULL) {
6559 IPW_DEBUG_INFO("%s: unknown crypto alg '%s'\n",
6560 dev->name, param->u.crypt.alg);
6561 param->u.crypt.err = IPW_CRYPT_ERR_UNKNOWN_ALG;
6562 ret = -EINVAL;
6563 goto done;
6564 }
6565
6566 if (*crypt == NULL || (*crypt)->ops != ops) {
6567 struct ieee80211_crypt_data *new_crypt;
6568
6569 ieee80211_crypt_delayed_deinit(ieee, crypt);
6570
6571 new_crypt = (struct ieee80211_crypt_data *)
6572 kmalloc(sizeof(*new_crypt), GFP_KERNEL);
6573 if (new_crypt == NULL) {
6574 ret = -ENOMEM;
6575 goto done;
6576 }
6577 memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data));
6578 new_crypt->ops = ops;
6579 if (new_crypt->ops && try_module_get(new_crypt->ops->owner))
6580 new_crypt->priv =
6581 new_crypt->ops->init(param->u.crypt.idx);
6582
6583 if (new_crypt->priv == NULL) {
6584 kfree(new_crypt);
6585 param->u.crypt.err = IPW_CRYPT_ERR_CRYPT_INIT_FAILED;
6586 ret = -EINVAL;
6587 goto done;
6588 }
6589
6590 *crypt = new_crypt;
6591 }
6592
6593 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
6594 (*crypt)->ops->set_key(param->u.crypt.key,
6595 param->u.crypt.key_len, param->u.crypt.seq,
6596 (*crypt)->priv) < 0) {
6597 IPW_DEBUG_INFO("%s: key setting failed\n", dev->name);
6598 param->u.crypt.err = IPW_CRYPT_ERR_KEY_SET_FAILED;
6599 ret = -EINVAL;
6600 goto done;
6601 }
6602
James Ketrenosb095c382005-08-24 22:04:42 -05006603 skip_host_crypt:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006604 if (param->u.crypt.set_tx) {
6605 ieee->tx_keyidx = param->u.crypt.idx;
6606 sec.active_key = param->u.crypt.idx;
6607 sec.flags |= SEC_ACTIVE_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05006608 } else
6609 sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006610
James Ketrenosb095c382005-08-24 22:04:42 -05006611 if (param->u.crypt.alg != NULL) {
6612 memcpy(sec.keys[param->u.crypt.idx],
6613 param->u.crypt.key, param->u.crypt.key_len);
6614 sec.key_sizes[param->u.crypt.idx] = param->u.crypt.key_len;
6615 sec.flags |= (1 << param->u.crypt.idx);
6616
6617 if (strcmp(param->u.crypt.alg, "WEP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006618 sec.flags |= SEC_LEVEL;
6619 sec.level = SEC_LEVEL_1;
James Ketrenosb095c382005-08-24 22:04:42 -05006620 } else if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006621 sec.flags |= SEC_LEVEL;
6622 sec.level = SEC_LEVEL_2;
James Ketrenosb095c382005-08-24 22:04:42 -05006623 } else if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006624 sec.flags |= SEC_LEVEL;
6625 sec.level = SEC_LEVEL_3;
6626 }
Hong Liu567deaf2005-08-31 18:07:22 +08006627 /* Don't set sec level for group keys. */
6628 if (group_key)
6629 sec.flags &= ~SEC_LEVEL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006630 }
6631 done:
6632 if (ieee->set_security)
6633 ieee->set_security(ieee->dev, &sec);
6634
6635 /* Do not reset port if card is in Managed mode since resetting will
6636 * generate new IEEE 802.11 authentication which may end up in looping
6637 * with IEEE 802.1X. If your hardware requires a reset after WEP
6638 * configuration (for example... Prism2), implement the reset_port in
6639 * the callbacks structures used to initialize the 802.11 stack. */
6640 if (ieee->reset_on_keychange &&
6641 ieee->iw_mode != IW_MODE_INFRA &&
6642 ieee->reset_port && ieee->reset_port(dev)) {
6643 IPW_DEBUG_INFO("%s: reset_port failed\n", dev->name);
6644 param->u.crypt.err = IPW_CRYPT_ERR_CARD_CONF_FAILED;
6645 return -EINVAL;
6646 }
6647
6648 return ret;
6649}
6650
6651static int ipw_wpa_supplicant(struct net_device *dev, struct iw_point *p)
6652{
6653 struct ipw_param *param;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006654 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006655 int ret = 0;
6656
6657 IPW_DEBUG_INFO("wpa_supplicant: len=%d\n", p->length);
6658
6659 if (p->length < sizeof(struct ipw_param) || !p->pointer)
6660 return -EINVAL;
6661
6662 param = (struct ipw_param *)kmalloc(p->length, GFP_KERNEL);
6663 if (param == NULL)
6664 return -ENOMEM;
6665
6666 if (copy_from_user(param, p->pointer, p->length)) {
6667 kfree(param);
6668 return -EFAULT;
6669 }
6670
James Ketrenosafbf30a2005-08-25 00:05:33 -05006671 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006672 switch (param->cmd) {
6673
6674 case IPW_CMD_SET_WPA_PARAM:
6675 ret = ipw_wpa_set_param(dev, param->u.wpa_param.name,
6676 param->u.wpa_param.value);
6677 break;
6678
6679 case IPW_CMD_SET_WPA_IE:
6680 ret = ipw_wpa_set_wpa_ie(dev, param, p->length);
6681 break;
6682
6683 case IPW_CMD_SET_ENCRYPTION:
6684 ret = ipw_wpa_set_encryption(dev, param, p->length);
6685 break;
6686
6687 case IPW_CMD_MLME:
6688 ret = ipw_wpa_mlme(dev, param->u.mlme.command,
6689 param->u.mlme.reason_code);
6690 break;
6691
6692 default:
6693 IPW_ERROR("%s: Unknown WPA supplicant request: %d\n",
6694 dev->name, param->cmd);
6695 ret = -EOPNOTSUPP;
6696 }
6697
James Ketrenosafbf30a2005-08-25 00:05:33 -05006698 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006699 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
6700 ret = -EFAULT;
6701
6702 kfree(param);
6703 return ret;
6704}
James Ketrenosafbf30a2005-08-25 00:05:33 -05006705#else
6706/*
6707 * WE-18 support
6708 */
6709
6710/* SIOCSIWGENIE */
6711static int ipw_wx_set_genie(struct net_device *dev,
6712 struct iw_request_info *info,
6713 union iwreq_data *wrqu, char *extra)
6714{
6715 struct ipw_priv *priv = ieee80211_priv(dev);
6716 struct ieee80211_device *ieee = priv->ieee;
6717 u8 *buf;
6718 int err = 0;
6719
6720 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6721 (wrqu->data.length && extra == NULL))
6722 return -EINVAL;
6723
6724 //down(&priv->sem);
6725
6726 //if (!ieee->wpa_enabled) {
6727 // err = -EOPNOTSUPP;
6728 // goto out;
6729 //}
6730
6731 if (wrqu->data.length) {
6732 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6733 if (buf == NULL) {
6734 err = -ENOMEM;
6735 goto out;
6736 }
6737
6738 memcpy(buf, extra, wrqu->data.length);
6739 kfree(ieee->wpa_ie);
6740 ieee->wpa_ie = buf;
6741 ieee->wpa_ie_len = wrqu->data.length;
6742 } else {
6743 kfree(ieee->wpa_ie);
6744 ieee->wpa_ie = NULL;
6745 ieee->wpa_ie_len = 0;
6746 }
6747
6748 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6749 out:
6750 //up(&priv->sem);
6751 return err;
6752}
6753
6754/* SIOCGIWGENIE */
6755static int ipw_wx_get_genie(struct net_device *dev,
6756 struct iw_request_info *info,
6757 union iwreq_data *wrqu, char *extra)
6758{
6759 struct ipw_priv *priv = ieee80211_priv(dev);
6760 struct ieee80211_device *ieee = priv->ieee;
6761 int err = 0;
6762
6763 //down(&priv->sem);
6764
6765 //if (!ieee->wpa_enabled) {
6766 // err = -EOPNOTSUPP;
6767 // goto out;
6768 //}
6769
6770 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6771 wrqu->data.length = 0;
6772 goto out;
6773 }
6774
6775 if (wrqu->data.length < ieee->wpa_ie_len) {
6776 err = -E2BIG;
6777 goto out;
6778 }
6779
6780 wrqu->data.length = ieee->wpa_ie_len;
6781 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6782
6783 out:
6784 //up(&priv->sem);
6785 return err;
6786}
6787
Zhu Yi1fbfea52005-08-05 17:22:56 +08006788static int wext_cipher2level(int cipher)
6789{
6790 switch (cipher) {
6791 case IW_AUTH_CIPHER_NONE:
6792 return SEC_LEVEL_0;
6793 case IW_AUTH_CIPHER_WEP40:
6794 case IW_AUTH_CIPHER_WEP104:
6795 return SEC_LEVEL_1;
6796 case IW_AUTH_CIPHER_TKIP:
6797 return SEC_LEVEL_2;
6798 case IW_AUTH_CIPHER_CCMP:
6799 return SEC_LEVEL_3;
6800 default:
6801 return -1;
6802 }
6803}
6804
James Ketrenosafbf30a2005-08-25 00:05:33 -05006805/* SIOCSIWAUTH */
6806static int ipw_wx_set_auth(struct net_device *dev,
6807 struct iw_request_info *info,
6808 union iwreq_data *wrqu, char *extra)
6809{
6810 struct ipw_priv *priv = ieee80211_priv(dev);
6811 struct ieee80211_device *ieee = priv->ieee;
6812 struct iw_param *param = &wrqu->param;
6813 struct ieee80211_crypt_data *crypt;
6814 unsigned long flags;
6815 int ret = 0;
6816
6817 switch (param->flags & IW_AUTH_INDEX) {
6818 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006819 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006820 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006821 ipw_set_hw_decrypt_unicast(priv,
6822 wext_cipher2level(param->value));
6823 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006824 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006825 ipw_set_hw_decrypt_multicast(priv,
6826 wext_cipher2level(param->value));
6827 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006828 case IW_AUTH_KEY_MGMT:
6829 /*
6830 * ipw2200 does not use these parameters
6831 */
6832 break;
6833
6834 case IW_AUTH_TKIP_COUNTERMEASURES:
6835 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6836 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6837 IPW_WARNING("Can't set TKIP countermeasures: "
6838 "crypt not set!\n");
6839 break;
6840 }
6841
6842 flags = crypt->ops->get_flags(crypt->priv);
6843
6844 if (param->value)
6845 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6846 else
6847 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6848
6849 crypt->ops->set_flags(flags, crypt->priv);
6850
6851 break;
6852
6853 case IW_AUTH_DROP_UNENCRYPTED:{
6854 /* HACK:
6855 *
6856 * wpa_supplicant calls set_wpa_enabled when the driver
6857 * is loaded and unloaded, regardless of if WPA is being
6858 * used. No other calls are made which can be used to
6859 * determine if encryption will be used or not prior to
6860 * association being expected. If encryption is not being
6861 * used, drop_unencrypted is set to false, else true -- we
6862 * can use this to determine if the CAP_PRIVACY_ON bit should
6863 * be set.
6864 */
6865 struct ieee80211_security sec = {
6866 .flags = SEC_ENABLED,
6867 .enabled = param->value,
6868 };
6869 priv->ieee->drop_unencrypted = param->value;
6870 /* We only change SEC_LEVEL for open mode. Others
6871 * are set by ipw_wpa_set_encryption.
6872 */
6873 if (!param->value) {
6874 sec.flags |= SEC_LEVEL;
6875 sec.level = SEC_LEVEL_0;
6876 } else {
6877 sec.flags |= SEC_LEVEL;
6878 sec.level = SEC_LEVEL_1;
6879 }
6880 if (priv->ieee->set_security)
6881 priv->ieee->set_security(priv->ieee->dev, &sec);
6882 break;
6883 }
6884
6885 case IW_AUTH_80211_AUTH_ALG:
6886 ret = ipw_wpa_set_auth_algs(priv, param->value);
6887 break;
6888
6889 case IW_AUTH_WPA_ENABLED:
6890 ret = ipw_wpa_enable(priv, param->value);
6891 break;
6892
6893 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6894 ieee->ieee802_1x = param->value;
6895 break;
6896
6897 //case IW_AUTH_ROAMING_CONTROL:
6898 case IW_AUTH_PRIVACY_INVOKED:
6899 ieee->privacy_invoked = param->value;
6900 break;
6901
6902 default:
6903 return -EOPNOTSUPP;
6904 }
6905 return ret;
6906}
6907
6908/* SIOCGIWAUTH */
6909static int ipw_wx_get_auth(struct net_device *dev,
6910 struct iw_request_info *info,
6911 union iwreq_data *wrqu, char *extra)
6912{
6913 struct ipw_priv *priv = ieee80211_priv(dev);
6914 struct ieee80211_device *ieee = priv->ieee;
6915 struct ieee80211_crypt_data *crypt;
6916 struct iw_param *param = &wrqu->param;
6917 int ret = 0;
6918
6919 switch (param->flags & IW_AUTH_INDEX) {
6920 case IW_AUTH_WPA_VERSION:
6921 case IW_AUTH_CIPHER_PAIRWISE:
6922 case IW_AUTH_CIPHER_GROUP:
6923 case IW_AUTH_KEY_MGMT:
6924 /*
6925 * wpa_supplicant will control these internally
6926 */
6927 ret = -EOPNOTSUPP;
6928 break;
6929
6930 case IW_AUTH_TKIP_COUNTERMEASURES:
6931 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6932 if (!crypt || !crypt->ops->get_flags) {
6933 IPW_WARNING("Can't get TKIP countermeasures: "
6934 "crypt not set!\n");
6935 break;
6936 }
6937
6938 param->value = (crypt->ops->get_flags(crypt->priv) &
6939 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6940
6941 break;
6942
6943 case IW_AUTH_DROP_UNENCRYPTED:
6944 param->value = ieee->drop_unencrypted;
6945 break;
6946
6947 case IW_AUTH_80211_AUTH_ALG:
6948 param->value = ieee->sec.auth_mode;
6949 break;
6950
6951 case IW_AUTH_WPA_ENABLED:
6952 param->value = ieee->wpa_enabled;
6953 break;
6954
6955 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6956 param->value = ieee->ieee802_1x;
6957 break;
6958
6959 case IW_AUTH_ROAMING_CONTROL:
6960 case IW_AUTH_PRIVACY_INVOKED:
6961 param->value = ieee->privacy_invoked;
6962 break;
6963
6964 default:
6965 return -EOPNOTSUPP;
6966 }
6967 return 0;
6968}
6969
6970/* SIOCSIWENCODEEXT */
6971static int ipw_wx_set_encodeext(struct net_device *dev,
6972 struct iw_request_info *info,
6973 union iwreq_data *wrqu, char *extra)
6974{
6975 struct ipw_priv *priv = ieee80211_priv(dev);
6976 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6977
6978 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006979 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006980 /* IPW HW can't build TKIP MIC,
6981 host decryption still needed */
6982 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6983 priv->ieee->host_mc_decrypt = 1;
6984 else {
6985 priv->ieee->host_encrypt = 0;
6986 priv->ieee->host_encrypt_msdu = 1;
6987 priv->ieee->host_decrypt = 1;
6988 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006989 } else {
6990 priv->ieee->host_encrypt = 0;
6991 priv->ieee->host_encrypt_msdu = 0;
6992 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006993 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006994 }
6995 }
6996
6997 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6998}
6999
7000/* SIOCGIWENCODEEXT */
7001static int ipw_wx_get_encodeext(struct net_device *dev,
7002 struct iw_request_info *info,
7003 union iwreq_data *wrqu, char *extra)
7004{
7005 struct ipw_priv *priv = ieee80211_priv(dev);
7006 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
7007}
7008
7009/* SIOCSIWMLME */
7010static int ipw_wx_set_mlme(struct net_device *dev,
7011 struct iw_request_info *info,
7012 union iwreq_data *wrqu, char *extra)
7013{
7014 struct ipw_priv *priv = ieee80211_priv(dev);
7015 struct iw_mlme *mlme = (struct iw_mlme *)extra;
7016 u16 reason;
7017
7018 reason = cpu_to_le16(mlme->reason_code);
7019
7020 switch (mlme->cmd) {
7021 case IW_MLME_DEAUTH:
7022 // silently ignore
7023 break;
7024
7025 case IW_MLME_DISASSOC:
7026 ipw_disassociate(priv);
7027 break;
7028
7029 default:
7030 return -EOPNOTSUPP;
7031 }
7032 return 0;
7033}
7034#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05007035
James Ketrenosb095c382005-08-24 22:04:42 -05007036#ifdef CONFIG_IPW_QOS
7037
7038/* QoS */
7039/*
7040* get the modulation type of the current network or
7041* the card current mode
7042*/
7043u8 ipw_qos_current_mode(struct ipw_priv * priv)
7044{
7045 u8 mode = 0;
7046
7047 if (priv->status & STATUS_ASSOCIATED) {
7048 unsigned long flags;
7049
7050 spin_lock_irqsave(&priv->ieee->lock, flags);
7051 mode = priv->assoc_network->mode;
7052 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7053 } else {
7054 mode = priv->ieee->mode;
7055 }
7056 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
7057 return mode;
7058}
7059
7060/*
7061* Handle management frame beacon and probe response
7062*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05007063static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
7064 int active_network,
7065 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007066{
7067 u32 size = sizeof(struct ieee80211_qos_parameters);
7068
James Ketrenosafbf30a2005-08-25 00:05:33 -05007069 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05007070 network->qos_data.active = network->qos_data.supported;
7071
7072 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007073 if (active_network &&
7074 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05007075 network->qos_data.active = network->qos_data.supported;
7076
7077 if ((network->qos_data.active == 1) && (active_network == 1) &&
7078 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
7079 (network->qos_data.old_param_count !=
7080 network->qos_data.param_count)) {
7081 network->qos_data.old_param_count =
7082 network->qos_data.param_count;
7083 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007084 IPW_DEBUG_QOS("QoS parameters change call "
7085 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05007086 }
7087 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007088 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
7089 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007090 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007091 else
7092 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007093 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007094
James Ketrenosb095c382005-08-24 22:04:42 -05007095 if ((network->qos_data.active == 1) && (active_network == 1)) {
7096 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
7097 schedule_work(&priv->qos_activate);
7098 }
7099
7100 network->qos_data.active = 0;
7101 network->qos_data.supported = 0;
7102 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007103 if ((priv->status & STATUS_ASSOCIATED) &&
7104 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
7105 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
7106 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
7107 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05007108 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05007109 priv->assoc_network->ssid_len) &&
7110 !memcmp(network->ssid,
7111 priv->assoc_network->ssid,
7112 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05007113 queue_work(priv->workqueue,
7114 &priv->merge_networks);
7115 }
James Ketrenosb095c382005-08-24 22:04:42 -05007116 }
7117
7118 return 0;
7119}
7120
7121/*
7122* This function set up the firmware to support QoS. It sends
7123* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
7124*/
7125static int ipw_qos_activate(struct ipw_priv *priv,
7126 struct ieee80211_qos_data *qos_network_data)
7127{
7128 int err;
7129 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
7130 struct ieee80211_qos_parameters *active_one = NULL;
7131 u32 size = sizeof(struct ieee80211_qos_parameters);
7132 u32 burst_duration;
7133 int i;
7134 u8 type;
7135
7136 type = ipw_qos_current_mode(priv);
7137
7138 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
7139 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
7140 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
7141 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
7142
7143 if (qos_network_data == NULL) {
7144 if (type == IEEE_B) {
7145 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
7146 active_one = &def_parameters_CCK;
7147 } else
7148 active_one = &def_parameters_OFDM;
7149
James Ketrenosafbf30a2005-08-25 00:05:33 -05007150 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007151 burst_duration = ipw_qos_get_burst_duration(priv);
7152 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007153 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
7154 (u16) burst_duration;
7155 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05007156 if (type == IEEE_B) {
7157 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
7158 type);
7159 if (priv->qos_data.qos_enable == 0)
7160 active_one = &def_parameters_CCK;
7161 else
7162 active_one = priv->qos_data.def_qos_parm_CCK;
7163 } else {
7164 if (priv->qos_data.qos_enable == 0)
7165 active_one = &def_parameters_OFDM;
7166 else
7167 active_one = priv->qos_data.def_qos_parm_OFDM;
7168 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007169 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007170 } else {
7171 unsigned long flags;
7172 int active;
7173
7174 spin_lock_irqsave(&priv->ieee->lock, flags);
7175 active_one = &(qos_network_data->parameters);
7176 qos_network_data->old_param_count =
7177 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007178 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007179 active = qos_network_data->supported;
7180 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7181
7182 if (active == 0) {
7183 burst_duration = ipw_qos_get_burst_duration(priv);
7184 for (i = 0; i < QOS_QUEUE_NUM; i++)
7185 qos_parameters[QOS_PARAM_SET_ACTIVE].
7186 tx_op_limit[i] = (u16) burst_duration;
7187 }
7188 }
7189
7190 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05007191 err = ipw_send_qos_params_command(priv,
7192 (struct ieee80211_qos_parameters *)
7193 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05007194 if (err)
7195 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
7196
7197 return err;
7198}
7199
7200/*
7201* send IPW_CMD_WME_INFO to the firmware
7202*/
7203static int ipw_qos_set_info_element(struct ipw_priv *priv)
7204{
7205 int ret = 0;
7206 struct ieee80211_qos_information_element qos_info;
7207
7208 if (priv == NULL)
7209 return -1;
7210
7211 qos_info.elementID = QOS_ELEMENT_ID;
7212 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
7213
7214 qos_info.version = QOS_VERSION_1;
7215 qos_info.ac_info = 0;
7216
7217 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7218 qos_info.qui_type = QOS_OUI_TYPE;
7219 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7220
7221 ret = ipw_send_qos_info_command(priv, &qos_info);
7222 if (ret != 0) {
7223 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7224 }
7225 return ret;
7226}
7227
7228/*
7229* Set the QoS parameter with the association request structure
7230*/
7231static int ipw_qos_association(struct ipw_priv *priv,
7232 struct ieee80211_network *network)
7233{
7234 int err = 0;
7235 struct ieee80211_qos_data *qos_data = NULL;
7236 struct ieee80211_qos_data ibss_data = {
7237 .supported = 1,
7238 .active = 1,
7239 };
7240
7241 switch (priv->ieee->iw_mode) {
7242 case IW_MODE_ADHOC:
7243 if (!(network->capability & WLAN_CAPABILITY_IBSS))
7244 BUG();
7245
7246 qos_data = &ibss_data;
7247 break;
7248
7249 case IW_MODE_INFRA:
7250 qos_data = &network->qos_data;
7251 break;
7252
7253 default:
7254 BUG();
7255 break;
7256 }
7257
7258 err = ipw_qos_activate(priv, qos_data);
7259 if (err) {
7260 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7261 return err;
7262 }
7263
7264 if (priv->qos_data.qos_enable && qos_data->supported) {
7265 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7266 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7267 return ipw_qos_set_info_element(priv);
7268 }
7269
7270 return 0;
7271}
7272
7273/*
7274* handling the beaconing responces. if we get different QoS setting
7275* of the network from the the associated setting adjust the QoS
7276* setting
7277*/
7278static int ipw_qos_association_resp(struct ipw_priv *priv,
7279 struct ieee80211_network *network)
7280{
7281 int ret = 0;
7282 unsigned long flags;
7283 u32 size = sizeof(struct ieee80211_qos_parameters);
7284 int set_qos_param = 0;
7285
James Ketrenosafbf30a2005-08-25 00:05:33 -05007286 if ((priv == NULL) || (network == NULL) ||
7287 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007288 return ret;
7289
7290 if (!(priv->status & STATUS_ASSOCIATED))
7291 return ret;
7292
James Ketrenosafbf30a2005-08-25 00:05:33 -05007293 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007294 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007295
7296 spin_lock_irqsave(&priv->ieee->lock, flags);
7297 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007298 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05007299 sizeof(struct ieee80211_qos_data));
7300 priv->assoc_network->qos_data.active = 1;
7301 if ((network->qos_data.old_param_count !=
7302 network->qos_data.param_count)) {
7303 set_qos_param = 1;
7304 network->qos_data.old_param_count =
7305 network->qos_data.param_count;
7306 }
7307
7308 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007309 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7310 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007311 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007312 else
7313 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007314 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007315 priv->assoc_network->qos_data.active = 0;
7316 priv->assoc_network->qos_data.supported = 0;
7317 set_qos_param = 1;
7318 }
7319
7320 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7321
7322 if (set_qos_param == 1)
7323 schedule_work(&priv->qos_activate);
7324
7325 return ret;
7326}
7327
7328static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7329{
7330 u32 ret = 0;
7331
7332 if ((priv == NULL))
7333 return 0;
7334
James Ketrenosafbf30a2005-08-25 00:05:33 -05007335 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007336 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007337 else
James Ketrenosb095c382005-08-24 22:04:42 -05007338 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007339
James Ketrenosb095c382005-08-24 22:04:42 -05007340 return ret;
7341}
7342
7343/*
7344* Initialize the setting of QoS global
7345*/
7346static void ipw_qos_init(struct ipw_priv *priv, int enable,
7347 int burst_enable, u32 burst_duration_CCK,
7348 u32 burst_duration_OFDM)
7349{
7350 priv->qos_data.qos_enable = enable;
7351
7352 if (priv->qos_data.qos_enable) {
7353 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7354 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7355 IPW_DEBUG_QOS("QoS is enabled\n");
7356 } else {
7357 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7358 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7359 IPW_DEBUG_QOS("QoS is not enabled\n");
7360 }
7361
7362 priv->qos_data.burst_enable = burst_enable;
7363
7364 if (burst_enable) {
7365 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7366 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7367 } else {
7368 priv->qos_data.burst_duration_CCK = 0;
7369 priv->qos_data.burst_duration_OFDM = 0;
7370 }
7371}
7372
7373/*
7374* map the packet priority to the right TX Queue
7375*/
7376static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7377{
7378 if (priority > 7 || !priv->qos_data.qos_enable)
7379 priority = 0;
7380
7381 return from_priority_to_tx_queue[priority] - 1;
7382}
7383
7384/*
7385* add QoS parameter to the TX command
7386*/
7387static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7388 u16 priority,
7389 struct tfd_data *tfd, u8 unicast)
7390{
7391 int ret = 0;
7392 int tx_queue_id = 0;
7393 struct ieee80211_qos_data *qos_data = NULL;
7394 int active, supported;
7395 unsigned long flags;
7396
7397 if (!(priv->status & STATUS_ASSOCIATED))
7398 return 0;
7399
7400 qos_data = &priv->assoc_network->qos_data;
7401
7402 spin_lock_irqsave(&priv->ieee->lock, flags);
7403
7404 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7405 if (unicast == 0)
7406 qos_data->active = 0;
7407 else
7408 qos_data->active = qos_data->supported;
7409 }
7410
7411 active = qos_data->active;
7412 supported = qos_data->supported;
7413
7414 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7415
James Ketrenosafbf30a2005-08-25 00:05:33 -05007416 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7417 "unicast %d\n",
7418 priv->qos_data.qos_enable, active, supported, unicast);
James Ketrenosb095c382005-08-24 22:04:42 -05007419 if (active && priv->qos_data.qos_enable) {
7420 ret = from_priority_to_tx_queue[priority];
7421 tx_queue_id = ret - 1;
7422 IPW_DEBUG_QOS("QoS packet priority is %d \n", priority);
7423 if (priority <= 7) {
7424 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7425 tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
7426 tfd->tfd.tfd_26.mchdr.frame_ctl |=
7427 IEEE80211_STYPE_QOS_DATA;
7428
7429 if (priv->qos_data.qos_no_ack_mask &
7430 (1UL << tx_queue_id)) {
7431 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
7432 tfd->tfd.tfd_26.mchdr.qos_ctrl |=
7433 CTRL_QOS_NO_ACK;
7434 }
7435 }
7436 }
7437
7438 return ret;
7439}
7440
7441/*
7442* background support to run QoS activate functionality
7443*/
7444static void ipw_bg_qos_activate(void *data)
7445{
7446 struct ipw_priv *priv = data;
7447
7448 if (priv == NULL)
7449 return;
7450
7451 down(&priv->sem);
7452
7453 if (priv->status & STATUS_ASSOCIATED)
7454 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7455
7456 up(&priv->sem);
7457}
7458
James Ketrenos3b9990c2005-08-19 13:18:55 -05007459static int ipw_handle_probe_response(struct net_device *dev,
7460 struct ieee80211_probe_response *resp,
7461 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007462{
7463 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007464 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7465 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007466
James Ketrenos3b9990c2005-08-19 13:18:55 -05007467 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007468
James Ketrenos3b9990c2005-08-19 13:18:55 -05007469 return 0;
7470}
James Ketrenosb095c382005-08-24 22:04:42 -05007471
James Ketrenos3b9990c2005-08-19 13:18:55 -05007472static int ipw_handle_beacon(struct net_device *dev,
7473 struct ieee80211_beacon *resp,
7474 struct ieee80211_network *network)
7475{
7476 struct ipw_priv *priv = ieee80211_priv(dev);
7477 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7478 (network == priv->assoc_network));
7479
7480 ipw_qos_handle_probe_response(priv, active_network, network);
7481
7482 return 0;
7483}
7484
7485static int ipw_handle_assoc_response(struct net_device *dev,
7486 struct ieee80211_assoc_response *resp,
7487 struct ieee80211_network *network)
7488{
7489 struct ipw_priv *priv = ieee80211_priv(dev);
7490 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007491 return 0;
7492}
7493
7494static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
7495 *qos_param)
7496{
7497 struct host_cmd cmd = {
7498 .cmd = IPW_CMD_QOS_PARAMETERS,
7499 .len = (sizeof(struct ieee80211_qos_parameters) * 3)
7500 };
7501
James Ketrenosafbf30a2005-08-25 00:05:33 -05007502 memcpy(cmd.param, qos_param, sizeof(*qos_param) * 3);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007503 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007504}
7505
7506static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
7507 *qos_param)
7508{
7509 struct host_cmd cmd = {
7510 .cmd = IPW_CMD_WME_INFO,
7511 .len = sizeof(*qos_param)
7512 };
7513
James Ketrenosafbf30a2005-08-25 00:05:33 -05007514 memcpy(cmd.param, qos_param, sizeof(*qos_param));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007515 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007516}
7517
7518#endif /* CONFIG_IPW_QOS */
7519
James Ketrenos43f66a62005-03-25 12:31:53 -06007520static int ipw_associate_network(struct ipw_priv *priv,
7521 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007522 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007523{
7524 int err;
7525
7526 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007527 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007528
7529 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007530 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007531 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007532 memcpy(priv->essid, network->ssid, priv->essid_len);
7533 }
7534
7535 network->last_associate = jiffies;
7536
7537 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7538 priv->assoc_request.channel = network->channel;
7539 if ((priv->capability & CAP_PRIVACY_ON) &&
7540 (priv->capability & CAP_SHARED_KEY)) {
7541 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007542 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7543
7544 if ((priv->capability & CAP_PRIVACY_ON) &&
7545 (priv->ieee->sec.level == SEC_LEVEL_1) &&
7546 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
7547 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenos43f66a62005-03-25 12:31:53 -06007548 } else {
7549 priv->assoc_request.auth_type = AUTH_OPEN;
7550 priv->assoc_request.auth_key = 0;
7551 }
7552
James Ketrenosa613bff2005-08-24 21:43:11 -05007553 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007554 priv->assoc_request.policy_support = 0x02; /* RSN active */
7555 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7556 priv->ieee->wpa_ie_len);
7557 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05007558
Jeff Garzikbf794512005-07-31 13:07:26 -04007559 /*
7560 * It is valid for our ieee device to support multiple modes, but
7561 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007562 * just one mode.
7563 */
7564 if (network->mode & priv->ieee->mode & IEEE_A)
7565 priv->assoc_request.ieee_mode = IPW_A_MODE;
7566 else if (network->mode & priv->ieee->mode & IEEE_G)
7567 priv->assoc_request.ieee_mode = IPW_G_MODE;
7568 else if (network->mode & priv->ieee->mode & IEEE_B)
7569 priv->assoc_request.ieee_mode = IPW_B_MODE;
7570
James Ketrenosea2b26e2005-08-24 21:25:16 -05007571 priv->assoc_request.capability = network->capability;
7572 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7573 && !(priv->config & CFG_PREAMBLE_LONG)) {
7574 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7575 } else {
7576 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7577
7578 /* Clear the short preamble if we won't be supporting it */
7579 priv->assoc_request.capability &=
7580 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7581 }
7582
James Ketrenosafbf30a2005-08-25 00:05:33 -05007583 /* Clear capability bits that aren't used in Ad Hoc */
7584 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7585 priv->assoc_request.capability &=
7586 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7587
James Ketrenos43f66a62005-03-25 12:31:53 -06007588 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007589 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007590 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007591 escape_essid(priv->essid, priv->essid_len),
7592 network->channel,
7593 ipw_modes[priv->assoc_request.ieee_mode],
7594 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007595 (priv->assoc_request.preamble_length ==
7596 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7597 network->capability &
7598 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007599 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007600 priv->capability & CAP_PRIVACY_ON ?
7601 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007602 "(open)") : "",
7603 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007604 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007605 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007606 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007607
7608 priv->assoc_request.beacon_interval = network->beacon_interval;
7609 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007610 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007611 priv->assoc_request.assoc_type = HC_IBSS_START;
7612 priv->assoc_request.assoc_tsf_msw = 0;
7613 priv->assoc_request.assoc_tsf_lsw = 0;
7614 } else {
7615 if (unlikely(roaming))
7616 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7617 else
7618 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7619 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7620 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7621 }
7622
James Ketrenosafbf30a2005-08-25 00:05:33 -05007623 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007624
7625 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7626 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7627 priv->assoc_request.atim_window = network->atim_window;
7628 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007629 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007630 priv->assoc_request.atim_window = 0;
7631 }
7632
James Ketrenos43f66a62005-03-25 12:31:53 -06007633 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007634
James Ketrenos43f66a62005-03-25 12:31:53 -06007635 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7636 if (err) {
7637 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7638 return err;
7639 }
7640
7641 rates->ieee_mode = priv->assoc_request.ieee_mode;
7642 rates->purpose = IPW_RATE_CONNECT;
7643 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007644
James Ketrenos43f66a62005-03-25 12:31:53 -06007645 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7646 priv->sys_config.dot11g_auto_detection = 1;
7647 else
7648 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007649
7650 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7651 priv->sys_config.answer_broadcast_ssid_probe = 1;
7652 else
7653 priv->sys_config.answer_broadcast_ssid_probe = 0;
7654
James Ketrenos43f66a62005-03-25 12:31:53 -06007655 err = ipw_send_system_config(priv, &priv->sys_config);
7656 if (err) {
7657 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7658 return err;
7659 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007660
James Ketrenos43f66a62005-03-25 12:31:53 -06007661 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007662 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007663 if (err) {
7664 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7665 return err;
7666 }
7667
7668 /*
7669 * If preemption is enabled, it is possible for the association
7670 * to complete before we return from ipw_send_associate. Therefore
7671 * we have to be sure and update our priviate data first.
7672 */
7673 priv->channel = network->channel;
7674 memcpy(priv->bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007675
7676 priv->assoc_network = network;
7677
James Ketrenosb095c382005-08-24 22:04:42 -05007678#ifdef CONFIG_IPW_QOS
7679 ipw_qos_association(priv, network);
7680#endif
7681
James Ketrenos43f66a62005-03-25 12:31:53 -06007682 err = ipw_send_associate(priv, &priv->assoc_request);
7683 if (err) {
7684 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7685 return err;
7686 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007687
Hong Liu7b996592005-08-25 17:36:13 +08007688 priv->status |= STATUS_ASSOCIATING;
7689 priv->status &= ~STATUS_SECURITY_UPDATED;
7690
Jeff Garzikbf794512005-07-31 13:07:26 -04007691 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007692 escape_essid(priv->essid, priv->essid_len),
7693 MAC_ARG(priv->bssid));
7694
7695 return 0;
7696}
7697
7698static void ipw_roam(void *data)
7699{
7700 struct ipw_priv *priv = data;
7701 struct ieee80211_network *network = NULL;
7702 struct ipw_network_match match = {
7703 .network = priv->assoc_network
7704 };
7705
7706 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007707 *
7708 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007709 * setting the status ROAM bit and requesting a scan.
7710 * 2. When the scan completes, it schedules the ROAM work
7711 * 3. The ROAM work looks at all of the known networks for one that
7712 * is a better network than the currently associated. If none
7713 * found, the ROAM process is over (ROAM bit cleared)
7714 * 4. If a better network is found, a disassociation request is
7715 * sent.
7716 * 5. When the disassociation completes, the roam work is again
7717 * scheduled. The second time through, the driver is no longer
7718 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007719 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007720 * 6. At this point ,the roaming process is complete and the ROAM
7721 * status bit is cleared.
7722 */
7723
7724 /* If we are no longer associated, and the roaming bit is no longer
7725 * set, then we are not actively roaming, so just return */
7726 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7727 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007728
James Ketrenos43f66a62005-03-25 12:31:53 -06007729 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007730 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007731 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007732 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007733 u8 rssi = priv->assoc_network->stats.rssi;
7734 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007735 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007736 list_for_each_entry(network, &priv->ieee->network_list, list) {
7737 if (network != priv->assoc_network)
7738 ipw_best_network(priv, &match, network, 1);
7739 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007740 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007741 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007742
James Ketrenos43f66a62005-03-25 12:31:53 -06007743 if (match.network == priv->assoc_network) {
7744 IPW_DEBUG_ASSOC("No better APs in this network to "
7745 "roam to.\n");
7746 priv->status &= ~STATUS_ROAMING;
7747 ipw_debug_config(priv);
7748 return;
7749 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007750
James Ketrenos43f66a62005-03-25 12:31:53 -06007751 ipw_send_disassociate(priv, 1);
7752 priv->assoc_network = match.network;
7753
7754 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007755 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007756
7757 /* Second pass through ROAM process -- request association */
7758 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7759 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7760 priv->status &= ~STATUS_ROAMING;
7761}
7762
James Ketrenosc848d0a2005-08-24 21:56:24 -05007763static void ipw_bg_roam(void *data)
7764{
7765 struct ipw_priv *priv = data;
7766 down(&priv->sem);
7767 ipw_roam(data);
7768 up(&priv->sem);
7769}
7770
7771static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007772{
7773 struct ipw_priv *priv = data;
7774
7775 struct ieee80211_network *network = NULL;
7776 struct ipw_network_match match = {
7777 .network = NULL
7778 };
7779 struct ipw_supported_rates *rates;
7780 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007781 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007782
James Ketrenosb095c382005-08-24 22:04:42 -05007783 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7784 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7785 return 0;
7786 }
7787
James Ketrenosc848d0a2005-08-24 21:56:24 -05007788 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007789 IPW_DEBUG_ASSOC("Not attempting association (already in "
7790 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007791 return 0;
7792 }
7793
7794 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007795 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7796 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007797 return 0;
7798 }
7799
James Ketrenos43f66a62005-03-25 12:31:53 -06007800 if (!(priv->config & CFG_ASSOCIATE) &&
7801 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007802 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007803 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007804 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007805 }
7806
James Ketrenosa613bff2005-08-24 21:43:11 -05007807 /* Protect our use of the network_list */
7808 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007809 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007810 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007811
7812 network = match.network;
7813 rates = &match.rates;
7814
7815 if (network == NULL &&
7816 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7817 priv->config & CFG_ADHOC_CREATE &&
7818 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007819 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007820 !list_empty(&priv->ieee->network_free_list)) {
7821 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007822 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007823 ipw_adhoc_create(priv, network);
7824 rates = &priv->rates;
7825 list_del(element);
7826 list_add_tail(&network->list, &priv->ieee->network_list);
7827 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007828 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007829
James Ketrenos43f66a62005-03-25 12:31:53 -06007830 /* If we reached the end of the list, then we don't have any valid
7831 * matching APs */
7832 if (!network) {
7833 ipw_debug_config(priv);
7834
James Ketrenosb095c382005-08-24 22:04:42 -05007835 if (!(priv->status & STATUS_SCANNING)) {
7836 if (!(priv->config & CFG_SPEED_SCAN))
7837 queue_delayed_work(priv->workqueue,
7838 &priv->request_scan,
7839 SCAN_INTERVAL);
7840 else
7841 queue_work(priv->workqueue,
7842 &priv->request_scan);
7843 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007844
James Ketrenosc848d0a2005-08-24 21:56:24 -05007845 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007846 }
7847
7848 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007849
7850 return 1;
7851}
7852
7853static void ipw_bg_associate(void *data)
7854{
7855 struct ipw_priv *priv = data;
7856 down(&priv->sem);
7857 ipw_associate(data);
7858 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06007859}
Jeff Garzikbf794512005-07-31 13:07:26 -04007860
James Ketrenosb095c382005-08-24 22:04:42 -05007861static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7862 struct sk_buff *skb)
7863{
7864 struct ieee80211_hdr *hdr;
7865 u16 fc;
7866
7867 hdr = (struct ieee80211_hdr *)skb->data;
7868 fc = le16_to_cpu(hdr->frame_ctl);
7869 if (!(fc & IEEE80211_FCTL_PROTECTED))
7870 return;
7871
7872 fc &= ~IEEE80211_FCTL_PROTECTED;
7873 hdr->frame_ctl = cpu_to_le16(fc);
7874 switch (priv->ieee->sec.level) {
7875 case SEC_LEVEL_3:
7876 /* Remove CCMP HDR */
7877 memmove(skb->data + IEEE80211_3ADDR_LEN,
7878 skb->data + IEEE80211_3ADDR_LEN + 8,
7879 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yia2d73e62005-07-13 12:24:51 -05007880 if (fc & IEEE80211_FCTL_MOREFRAGS)
7881 skb_trim(skb, skb->len - 16); /* 2*MIC */
7882 else
7883 skb_trim(skb, skb->len - 8); /* MIC */
James Ketrenosb095c382005-08-24 22:04:42 -05007884 break;
7885 case SEC_LEVEL_2:
7886 break;
7887 case SEC_LEVEL_1:
7888 /* Remove IV */
7889 memmove(skb->data + IEEE80211_3ADDR_LEN,
7890 skb->data + IEEE80211_3ADDR_LEN + 4,
7891 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yia2d73e62005-07-13 12:24:51 -05007892 if (fc & IEEE80211_FCTL_MOREFRAGS)
7893 skb_trim(skb, skb->len - 8); /* 2*ICV */
7894 else
7895 skb_trim(skb, skb->len - 4); /* ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007896 break;
7897 case SEC_LEVEL_0:
7898 break;
7899 default:
7900 printk(KERN_ERR "Unknow security level %d\n",
7901 priv->ieee->sec.level);
7902 break;
7903 }
7904}
7905
7906static void ipw_handle_data_packet(struct ipw_priv *priv,
7907 struct ipw_rx_mem_buffer *rxb,
7908 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007909{
Hong Liu567deaf2005-08-31 18:07:22 +08007910 struct ieee80211_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007911 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7912
7913 /* We received data from the HW, so stop the watchdog */
7914 priv->net_dev->trans_start = jiffies;
7915
Jeff Garzikbf794512005-07-31 13:07:26 -04007916 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007917 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007918 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007919 skb_tailroom(rxb->skb))) {
7920 priv->ieee->stats.rx_errors++;
7921 priv->wstats.discard.misc++;
7922 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7923 return;
7924 } else if (unlikely(!netif_running(priv->net_dev))) {
7925 priv->ieee->stats.rx_dropped++;
7926 priv->wstats.discard.misc++;
7927 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7928 return;
7929 }
7930
7931 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007932 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007933
7934 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007935 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007936
7937 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7938
James Ketrenosb095c382005-08-24 22:04:42 -05007939 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
Hong Liu567deaf2005-08-31 18:07:22 +08007940 hdr = (struct ieee80211_hdr_4addr *)rxb->skb->data;
7941 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
7942 (is_multicast_ether_addr(hdr->addr1) ?
7943 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007944 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7945
Jeff Garzikbf794512005-07-31 13:07:26 -04007946 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007947 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007948 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007949 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007950 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007951 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007952}
7953
Mike Kershaw24a47db2005-08-26 00:41:54 -05007954#ifdef CONFIG_IEEE80211_RADIOTAP
7955static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7956 struct ipw_rx_mem_buffer *rxb,
7957 struct ieee80211_rx_stats *stats)
7958{
7959 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7960 struct ipw_rx_frame *frame = &pkt->u.frame;
7961
7962 /* initial pull of some data */
7963 u16 received_channel = frame->received_channel;
7964 u8 antennaAndPhy = frame->antennaAndPhy;
7965 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7966 u16 pktrate = frame->rate;
7967
7968 /* Magic struct that slots into the radiotap header -- no reason
7969 * to build this manually element by element, we can write it much
7970 * more efficiently than we can parse it. ORDER MATTERS HERE */
7971 struct ipw_rt_hdr {
7972 struct ieee80211_radiotap_header rt_hdr;
7973 u8 rt_flags; /* radiotap packet flags */
7974 u8 rt_rate; /* rate in 500kb/s */
7975 u16 rt_channel; /* channel in mhz */
7976 u16 rt_chbitmask; /* channel bitfield */
7977 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
7978 u8 rt_antenna; /* antenna number */
7979 } *ipw_rt;
7980
7981 short len = le16_to_cpu(pkt->u.frame.length);
7982
7983 /* We received data from the HW, so stop the watchdog */
7984 priv->net_dev->trans_start = jiffies;
7985
7986 /* We only process data packets if the
7987 * interface is open */
7988 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7989 skb_tailroom(rxb->skb))) {
7990 priv->ieee->stats.rx_errors++;
7991 priv->wstats.discard.misc++;
7992 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7993 return;
7994 } else if (unlikely(!netif_running(priv->net_dev))) {
7995 priv->ieee->stats.rx_dropped++;
7996 priv->wstats.discard.misc++;
7997 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7998 return;
7999 }
8000
8001 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
8002 * that now */
8003 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
8004 /* FIXME: Should alloc bigger skb instead */
8005 priv->ieee->stats.rx_dropped++;
8006 priv->wstats.discard.misc++;
8007 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
8008 return;
8009 }
8010
8011 /* copy the frame itself */
8012 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
8013 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
8014
8015 /* Zero the radiotap static buffer ... We only need to zero the bytes NOT
8016 * part of our real header, saves a little time.
8017 *
8018 * No longer necessary since we fill in all our data. Purge before merging
8019 * patch officially.
8020 * memset(rxb->skb->data + sizeof(struct ipw_rt_hdr), 0,
8021 * IEEE80211_RADIOTAP_HDRLEN - sizeof(struct ipw_rt_hdr));
8022 */
8023
8024 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
8025
8026 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
8027 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
8028 ipw_rt->rt_hdr.it_len = sizeof(struct ipw_rt_hdr); /* total header+data */
8029
8030 /* Big bitfield of all the fields we provide in radiotap */
8031 ipw_rt->rt_hdr.it_present =
8032 ((1 << IEEE80211_RADIOTAP_FLAGS) |
8033 (1 << IEEE80211_RADIOTAP_RATE) |
8034 (1 << IEEE80211_RADIOTAP_CHANNEL) |
8035 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
8036 (1 << IEEE80211_RADIOTAP_ANTENNA));
8037
8038 /* Zero the flags, we'll add to them as we go */
8039 ipw_rt->rt_flags = 0;
8040
8041 /* Convert signal to DBM */
8042 ipw_rt->rt_dbmsignal = antsignal;
8043
8044 /* Convert the channel data and set the flags */
8045 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
8046 if (received_channel > 14) { /* 802.11a */
8047 ipw_rt->rt_chbitmask =
8048 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
8049 } else if (antennaAndPhy & 32) { /* 802.11b */
8050 ipw_rt->rt_chbitmask =
8051 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
8052 } else { /* 802.11g */
8053 ipw_rt->rt_chbitmask =
8054 (IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
8055 }
8056
8057 /* set the rate in multiples of 500k/s */
8058 switch (pktrate) {
8059 case IPW_TX_RATE_1MB:
8060 ipw_rt->rt_rate = 2;
8061 break;
8062 case IPW_TX_RATE_2MB:
8063 ipw_rt->rt_rate = 4;
8064 break;
8065 case IPW_TX_RATE_5MB:
8066 ipw_rt->rt_rate = 10;
8067 break;
8068 case IPW_TX_RATE_6MB:
8069 ipw_rt->rt_rate = 12;
8070 break;
8071 case IPW_TX_RATE_9MB:
8072 ipw_rt->rt_rate = 18;
8073 break;
8074 case IPW_TX_RATE_11MB:
8075 ipw_rt->rt_rate = 22;
8076 break;
8077 case IPW_TX_RATE_12MB:
8078 ipw_rt->rt_rate = 24;
8079 break;
8080 case IPW_TX_RATE_18MB:
8081 ipw_rt->rt_rate = 36;
8082 break;
8083 case IPW_TX_RATE_24MB:
8084 ipw_rt->rt_rate = 48;
8085 break;
8086 case IPW_TX_RATE_36MB:
8087 ipw_rt->rt_rate = 72;
8088 break;
8089 case IPW_TX_RATE_48MB:
8090 ipw_rt->rt_rate = 96;
8091 break;
8092 case IPW_TX_RATE_54MB:
8093 ipw_rt->rt_rate = 108;
8094 break;
8095 default:
8096 ipw_rt->rt_rate = 0;
8097 break;
8098 }
8099
8100 /* antenna number */
8101 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
8102
8103 /* set the preamble flag if we have it */
8104 if ((antennaAndPhy & 64))
8105 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
8106
8107 /* Set the size of the skb to the size of the frame */
8108 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
8109
8110 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
8111
8112 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
8113 priv->ieee->stats.rx_errors++;
8114 else { /* ieee80211_rx succeeded, so it now owns the SKB */
8115 rxb->skb = NULL;
8116 /* no LED during capture */
8117 }
8118}
8119#endif
8120
James Ketrenosea2b26e2005-08-24 21:25:16 -05008121static inline int is_network_packet(struct ipw_priv *priv,
8122 struct ieee80211_hdr_4addr *header)
8123{
8124 /* Filter incoming packets to determine if they are targetted toward
8125 * this network, discarding packets coming from ourselves */
8126 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05008127 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008128 /* packets from our adapter are dropped (echo) */
8129 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
8130 return 0;
8131
Peter Jones90700fd2005-08-26 16:51:06 -05008132 /* {broad,multi}cast packets to our BSSID go through */
8133 if (is_multicast_ether_addr(header->addr1) ||
8134 is_broadcast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05008135 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008136
8137 /* packets to our adapter go through */
8138 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8139 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008140
Peter Jones90700fd2005-08-26 16:51:06 -05008141 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008142 /* packets from our adapter are dropped (echo) */
8143 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
8144 return 0;
8145
Peter Jones90700fd2005-08-26 16:51:06 -05008146 /* {broad,multi}cast packets to our BSS go through */
8147 if (is_multicast_ether_addr(header->addr1) ||
8148 is_broadcast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05008149 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
8150
8151 /* packets to our adapter go through */
8152 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8153 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008154 }
James Ketrenosa613bff2005-08-24 21:43:11 -05008155
James Ketrenosea2b26e2005-08-24 21:25:16 -05008156 return 1;
8157}
8158
James Ketrenosafbf30a2005-08-25 00:05:33 -05008159#define IPW_PACKET_RETRY_TIME HZ
8160
8161static inline int is_duplicate_packet(struct ipw_priv *priv,
8162 struct ieee80211_hdr_4addr *header)
8163{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008164 u16 sc = le16_to_cpu(header->seq_ctl);
8165 u16 seq = WLAN_GET_SEQ_SEQ(sc);
8166 u16 frag = WLAN_GET_SEQ_FRAG(sc);
8167 u16 *last_seq, *last_frag;
8168 unsigned long *last_time;
8169
8170 switch (priv->ieee->iw_mode) {
8171 case IW_MODE_ADHOC:
8172 {
8173 struct list_head *p;
8174 struct ipw_ibss_seq *entry = NULL;
8175 u8 *mac = header->addr2;
8176 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
8177
8178 __list_for_each(p, &priv->ibss_mac_hash[index]) {
8179 entry =
8180 list_entry(p, struct ipw_ibss_seq, list);
8181 if (!memcmp(entry->mac, mac, ETH_ALEN))
8182 break;
8183 }
8184 if (p == &priv->ibss_mac_hash[index]) {
8185 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
8186 if (!entry) {
8187 IPW_ERROR
8188 ("Cannot malloc new mac entry\n");
8189 return 0;
8190 }
8191 memcpy(entry->mac, mac, ETH_ALEN);
8192 entry->seq_num = seq;
8193 entry->frag_num = frag;
8194 entry->packet_time = jiffies;
8195 list_add(&entry->list,
8196 &priv->ibss_mac_hash[index]);
8197 return 0;
8198 }
8199 last_seq = &entry->seq_num;
8200 last_frag = &entry->frag_num;
8201 last_time = &entry->packet_time;
8202 break;
8203 }
8204 case IW_MODE_INFRA:
8205 last_seq = &priv->last_seq_num;
8206 last_frag = &priv->last_frag_num;
8207 last_time = &priv->last_packet_time;
8208 break;
8209 default:
8210 return 0;
8211 }
8212 if ((*last_seq == seq) &&
8213 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
8214 if (*last_frag == frag)
8215 goto drop;
8216 if (*last_frag + 1 != frag)
8217 /* out-of-order fragment */
8218 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008219 } else
8220 *last_seq = seq;
8221
Zhu Yif57ce7c2005-07-13 12:22:15 -05008222 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008223 *last_time = jiffies;
8224 return 0;
8225
8226 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008227 /* Comment this line now since we observed the card receives
8228 * duplicate packets but the FCTL_RETRY bit is not set in the
8229 * IBSS mode with fragmentation enabled.
8230 BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008231 return 1;
8232}
8233
James Ketrenosb095c382005-08-24 22:04:42 -05008234static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8235 struct ipw_rx_mem_buffer *rxb,
8236 struct ieee80211_rx_stats *stats)
8237{
8238 struct sk_buff *skb = rxb->skb;
8239 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
8240 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
8241 (skb->data + IPW_RX_FRAME_SIZE);
8242
8243 ieee80211_rx_mgt(priv->ieee, header, stats);
8244
8245 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8246 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8247 IEEE80211_STYPE_PROBE_RESP) ||
8248 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8249 IEEE80211_STYPE_BEACON))) {
8250 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
8251 ipw_add_station(priv, header->addr2);
8252 }
8253
8254 if (priv->config & CFG_NET_STATS) {
8255 IPW_DEBUG_HC("sending stat packet\n");
8256
8257 /* Set the size of the skb to the size of the full
8258 * ipw header and 802.11 frame */
8259 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8260 IPW_RX_FRAME_SIZE);
8261
8262 /* Advance past the ipw packet header to the 802.11 frame */
8263 skb_pull(skb, IPW_RX_FRAME_SIZE);
8264
8265 /* Push the ieee80211_rx_stats before the 802.11 frame */
8266 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8267
8268 skb->dev = priv->ieee->dev;
8269
8270 /* Point raw at the ieee80211_stats */
8271 skb->mac.raw = skb->data;
8272
8273 skb->pkt_type = PACKET_OTHERHOST;
8274 skb->protocol = __constant_htons(ETH_P_80211_STATS);
8275 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8276 netif_rx(skb);
8277 rxb->skb = NULL;
8278 }
8279}
8280
James Ketrenos43f66a62005-03-25 12:31:53 -06008281/*
8282 * Main entry function for recieving a packet with 80211 headers. This
8283 * should be called when ever the FW has notified us that there is a new
8284 * skb in the recieve queue.
8285 */
8286static void ipw_rx(struct ipw_priv *priv)
8287{
8288 struct ipw_rx_mem_buffer *rxb;
8289 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05008290 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008291 u32 r, w, i;
8292 u8 network_packet;
8293
James Ketrenosb095c382005-08-24 22:04:42 -05008294 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8295 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06008296 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
8297
8298 while (i != r) {
8299 rxb = priv->rxq->queue[i];
8300#ifdef CONFIG_IPW_DEBUG
8301 if (unlikely(rxb == NULL)) {
8302 printk(KERN_CRIT "Queue not allocated!\n");
8303 break;
8304 }
8305#endif
8306 priv->rxq->queue[i] = NULL;
8307
8308 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008309 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008310 PCI_DMA_FROMDEVICE);
8311
8312 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8313 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8314 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008315 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008316
8317 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008318 case RX_FRAME_TYPE: /* 802.11 frame */ {
8319 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05008320 .rssi =
8321 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008322 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008323 .signal =
8324 le16_to_cpu(pkt->u.frame.signal),
8325 .noise =
8326 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008327 .rate = pkt->u.frame.rate,
8328 .mac_time = jiffies,
8329 .received_channel =
8330 pkt->u.frame.received_channel,
8331 .freq =
8332 (pkt->u.frame.
8333 control & (1 << 0)) ?
8334 IEEE80211_24GHZ_BAND :
8335 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008336 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008337 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008338
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008339 if (stats.rssi != 0)
8340 stats.mask |= IEEE80211_STATMASK_RSSI;
8341 if (stats.signal != 0)
8342 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008343 if (stats.noise != 0)
8344 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008345 if (stats.rate != 0)
8346 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008347
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008348 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008349
James Ketrenosb095c382005-08-24 22:04:42 -05008350#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008351 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05008352#ifdef CONFIG_IEEE80211_RADIOTAP
8353 ipw_handle_data_packet_monitor(priv,
8354 rxb,
8355 &stats);
8356#else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008357 ipw_handle_data_packet(priv, rxb,
8358 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008359#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008360 break;
8361 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008362#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008363
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008364 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05008365 (struct ieee80211_hdr_4addr *)(rxb->skb->
8366 data +
8367 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008368 /* TODO: Check Ad-Hoc dest/source and make sure
8369 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008370 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008371 * frame control of the packet and disregard
8372 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008373
James Ketrenosea2b26e2005-08-24 21:25:16 -05008374 network_packet =
8375 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008376 if (network_packet && priv->assoc_network) {
8377 priv->assoc_network->stats.rssi =
8378 stats.rssi;
8379 average_add(&priv->average_rssi,
8380 stats.rssi);
8381 priv->last_rx_rssi = stats.rssi;
8382 }
8383
8384 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008385 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008386
James Ketrenosa613bff2005-08-24 21:43:11 -05008387 if (le16_to_cpu(pkt->u.frame.length) <
8388 frame_hdr_len(header)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008389 IPW_DEBUG_DROP
8390 ("Received packet is too small. "
8391 "Dropping.\n");
8392 priv->ieee->stats.rx_errors++;
8393 priv->wstats.discard.misc++;
8394 break;
8395 }
8396
James Ketrenosa613bff2005-08-24 21:43:11 -05008397 switch (WLAN_FC_GET_TYPE
8398 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008399
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008400 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008401 ipw_handle_mgmt_packet(priv, rxb,
8402 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008403 break;
8404
8405 case IEEE80211_FTYPE_CTL:
8406 break;
8407
8408 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008409 if (unlikely(!network_packet ||
8410 is_duplicate_packet(priv,
8411 header)))
8412 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008413 IPW_DEBUG_DROP("Dropping: "
8414 MAC_FMT ", "
8415 MAC_FMT ", "
8416 MAC_FMT "\n",
8417 MAC_ARG(header->
8418 addr1),
8419 MAC_ARG(header->
8420 addr2),
8421 MAC_ARG(header->
8422 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05008423 break;
8424 }
8425
8426 ipw_handle_data_packet(priv, rxb,
8427 &stats);
8428
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008429 break;
8430 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008431 break;
8432 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008433
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008434 case RX_HOST_NOTIFICATION_TYPE:{
8435 IPW_DEBUG_RX
8436 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008437 pkt->u.notification.subtype,
8438 pkt->u.notification.flags,
8439 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008440 ipw_rx_notification(priv, &pkt->u.notification);
8441 break;
8442 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008443
8444 default:
8445 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8446 pkt->header.message_type);
8447 break;
8448 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008449
8450 /* For now we just don't re-use anything. We can tweak this
8451 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008452 * fail to Rx correctly */
8453 if (rxb->skb != NULL) {
8454 dev_kfree_skb_any(rxb->skb);
8455 rxb->skb = NULL;
8456 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008457
James Ketrenos43f66a62005-03-25 12:31:53 -06008458 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008459 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008460 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008461
James Ketrenos43f66a62005-03-25 12:31:53 -06008462 i = (i + 1) % RX_QUEUE_SIZE;
8463 }
8464
8465 /* Backtrack one entry */
8466 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
8467
8468 ipw_rx_queue_restock(priv);
8469}
8470
James Ketrenosafbf30a2005-08-25 00:05:33 -05008471#define DEFAULT_RTS_THRESHOLD 2304U
8472#define MIN_RTS_THRESHOLD 1U
8473#define MAX_RTS_THRESHOLD 2304U
8474#define DEFAULT_BEACON_INTERVAL 100U
8475#define DEFAULT_SHORT_RETRY_LIMIT 7U
8476#define DEFAULT_LONG_RETRY_LIMIT 4U
8477
8478static int ipw_sw_reset(struct ipw_priv *priv, int init)
8479{
8480 int band, modulation;
8481 int old_mode = priv->ieee->iw_mode;
8482
8483 /* Initialize module parameter values here */
8484 priv->config = 0;
8485
8486 /* We default to disabling the LED code as right now it causes
8487 * too many systems to lock up... */
8488 if (!led)
8489 priv->config |= CFG_NO_LED;
8490
8491 if (associate)
8492 priv->config |= CFG_ASSOCIATE;
8493 else
8494 IPW_DEBUG_INFO("Auto associate disabled.\n");
8495
8496 if (auto_create)
8497 priv->config |= CFG_ADHOC_CREATE;
8498 else
8499 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8500
8501 if (disable) {
8502 priv->status |= STATUS_RF_KILL_SW;
8503 IPW_DEBUG_INFO("Radio disabled.\n");
8504 }
8505
8506 if (channel != 0) {
8507 priv->config |= CFG_STATIC_CHANNEL;
8508 priv->channel = channel;
8509 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
8510 /* TODO: Validate that provided channel is in range */
8511 }
8512#ifdef CONFIG_IPW_QOS
8513 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8514 burst_duration_CCK, burst_duration_OFDM);
8515#endif /* CONFIG_IPW_QOS */
8516
8517 switch (mode) {
8518 case 1:
8519 priv->ieee->iw_mode = IW_MODE_ADHOC;
8520 priv->net_dev->type = ARPHRD_ETHER;
8521
8522 break;
8523#ifdef CONFIG_IPW2200_MONITOR
8524 case 2:
8525 priv->ieee->iw_mode = IW_MODE_MONITOR;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008526#ifdef CONFIG_IEEE80211_RADIOTAP
8527 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8528#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008529 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008530#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008531 break;
8532#endif
8533 default:
8534 case 0:
8535 priv->net_dev->type = ARPHRD_ETHER;
8536 priv->ieee->iw_mode = IW_MODE_INFRA;
8537 break;
8538 }
8539
8540 if (hwcrypto) {
8541 priv->ieee->host_encrypt = 0;
8542 priv->ieee->host_encrypt_msdu = 0;
8543 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008544 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008545 }
8546 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
8547
Zhu Yie402c932005-08-05 17:20:40 +08008548 /* IPW2200/2915 is abled to do hardware fragmentation. */
8549 priv->ieee->host_open_frag = 0;
8550
James Ketrenosafbf30a2005-08-25 00:05:33 -05008551 if ((priv->pci_dev->device == 0x4223) ||
8552 (priv->pci_dev->device == 0x4224)) {
8553 if (init)
8554 printk(KERN_INFO DRV_NAME
8555 ": Detected Intel PRO/Wireless 2915ABG Network "
8556 "Connection\n");
8557 priv->ieee->abg_true = 1;
8558 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8559 modulation = IEEE80211_OFDM_MODULATION |
8560 IEEE80211_CCK_MODULATION;
8561 priv->adapter = IPW_2915ABG;
8562 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
8563 } else {
8564 if (init)
8565 printk(KERN_INFO DRV_NAME
8566 ": Detected Intel PRO/Wireless 2200BG Network "
8567 "Connection\n");
8568
8569 priv->ieee->abg_true = 0;
8570 band = IEEE80211_24GHZ_BAND;
8571 modulation = IEEE80211_OFDM_MODULATION |
8572 IEEE80211_CCK_MODULATION;
8573 priv->adapter = IPW_2200BG;
8574 priv->ieee->mode = IEEE_G | IEEE_B;
8575 }
8576
8577 priv->ieee->freq_band = band;
8578 priv->ieee->modulation = modulation;
8579
8580 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
8581
8582 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8583 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
8584
8585 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8586 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8587 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
8588
8589 /* If power management is turned on, default to AC mode */
8590 priv->power_mode = IPW_POWER_AC;
8591 priv->tx_power = IPW_TX_POWER_DEFAULT;
8592
Zhu Yi0ece35b2005-08-05 17:26:51 +08008593 return old_mode == priv->ieee->iw_mode;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008594}
8595
James Ketrenos43f66a62005-03-25 12:31:53 -06008596/*
8597 * This file defines the Wireless Extension handlers. It does not
8598 * define any methods of hardware manipulation and relies on the
8599 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008600 *
8601 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008602 * function used to poll the hardware vs. making unecessary calls.
8603 *
8604 */
8605
Jeff Garzikbf794512005-07-31 13:07:26 -04008606static int ipw_wx_get_name(struct net_device *dev,
8607 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008608 union iwreq_data *wrqu, char *extra)
8609{
8610 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008611 down(&priv->sem);
8612 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008613 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008614 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008615 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008616 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008617 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8618 ipw_modes[priv->assoc_request.ieee_mode]);
8619 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008620 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008621 return 0;
8622}
8623
8624static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8625{
8626 if (channel == 0) {
8627 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8628 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008629 IPW_DEBUG_ASSOC("Attempting to associate with new "
8630 "parameters.\n");
8631 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008632 return 0;
8633 }
8634
8635 priv->config |= CFG_STATIC_CHANNEL;
8636
8637 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008638 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8639 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008640 return 0;
8641 }
8642
8643 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8644 priv->channel = channel;
8645
James Ketrenosb095c382005-08-24 22:04:42 -05008646#ifdef CONFIG_IPW2200_MONITOR
8647 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008648 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008649 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008650 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008651 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008652 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008653 }
8654
8655 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8656 udelay(10);
8657
8658 if (priv->status & STATUS_SCANNING)
8659 IPW_DEBUG_SCAN("Still scanning...\n");
8660 else
8661 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8662 1000 - i);
8663
8664 return 0;
8665 }
8666#endif /* CONFIG_IPW2200_MONITOR */
8667
James Ketrenosc848d0a2005-08-24 21:56:24 -05008668 /* Network configuration changed -- force [re]association */
8669 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8670 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008671 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008672
8673 return 0;
8674}
8675
Jeff Garzikbf794512005-07-31 13:07:26 -04008676static int ipw_wx_set_freq(struct net_device *dev,
8677 struct iw_request_info *info,
8678 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008679{
8680 struct ipw_priv *priv = ieee80211_priv(dev);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008681 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008682 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008683 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008684 u8 channel, flags;
8685 int band;
James Ketrenosb095c382005-08-24 22:04:42 -05008686
8687 if (fwrq->m == 0) {
8688 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
8689 down(&priv->sem);
8690 ret = ipw_set_channel(priv, 0);
8691 up(&priv->sem);
8692 return ret;
8693 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008694 /* if setting by freq convert to channel */
8695 if (fwrq->e == 1) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05008696 channel = ipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008697 if (channel == 0)
8698 return -EINVAL;
8699 } else
8700 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008701
Liu Hong1fe0adb2005-08-19 09:33:10 -05008702 if (!(band = ipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008703 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008704
Liu Hong1fe0adb2005-08-19 09:33:10 -05008705 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
8706 i = ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008707 if (i == -1)
8708 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008709
8710 flags = (band == IEEE80211_24GHZ_BAND) ?
8711 geo->bg[i].flags : geo->a[i].flags;
8712 if (flags & IEEE80211_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008713 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8714 return -EINVAL;
8715 }
8716 }
8717
James Ketrenos43f66a62005-03-25 12:31:53 -06008718 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008719 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008720 ret = ipw_set_channel(priv, channel);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008721 up(&priv->sem);
8722 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008723}
8724
Jeff Garzikbf794512005-07-31 13:07:26 -04008725static int ipw_wx_get_freq(struct net_device *dev,
8726 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008727 union iwreq_data *wrqu, char *extra)
8728{
8729 struct ipw_priv *priv = ieee80211_priv(dev);
8730
8731 wrqu->freq.e = 0;
8732
8733 /* If we are associated, trying to associate, or have a statically
8734 * configured CHANNEL then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008735 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008736 if (priv->config & CFG_STATIC_CHANNEL ||
8737 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8738 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008739 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008740 wrqu->freq.m = 0;
8741
James Ketrenosc848d0a2005-08-24 21:56:24 -05008742 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008743 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8744 return 0;
8745}
8746
Jeff Garzikbf794512005-07-31 13:07:26 -04008747static int ipw_wx_set_mode(struct net_device *dev,
8748 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008749 union iwreq_data *wrqu, char *extra)
8750{
8751 struct ipw_priv *priv = ieee80211_priv(dev);
8752 int err = 0;
8753
8754 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06008755
8756 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008757#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008758 case IW_MODE_MONITOR:
8759#endif
8760 case IW_MODE_ADHOC:
8761 case IW_MODE_INFRA:
8762 break;
8763 case IW_MODE_AUTO:
8764 wrqu->mode = IW_MODE_INFRA;
8765 break;
8766 default:
8767 return -EINVAL;
8768 }
James Ketrenosb095c382005-08-24 22:04:42 -05008769 if (wrqu->mode == priv->ieee->iw_mode)
8770 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008771
James Ketrenosb095c382005-08-24 22:04:42 -05008772 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008773
8774 ipw_sw_reset(priv, 0);
8775
James Ketrenosb095c382005-08-24 22:04:42 -05008776#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008777 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008778 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008779
8780 if (wrqu->mode == IW_MODE_MONITOR)
Mike Kershaw24a47db2005-08-26 00:41:54 -05008781#ifdef CONFIG_IEEE80211_RADIOTAP
8782 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8783#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008784 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008785#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008786#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008787
Jeff Garzikbf794512005-07-31 13:07:26 -04008788 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008789 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008790 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008791
8792 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008793
James Ketrenosc848d0a2005-08-24 21:56:24 -05008794 queue_work(priv->workqueue, &priv->adapter_restart);
8795 up(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008796 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008797}
8798
Jeff Garzikbf794512005-07-31 13:07:26 -04008799static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008800 struct iw_request_info *info,
8801 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008802{
8803 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008804 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008805 wrqu->mode = priv->ieee->iw_mode;
8806 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008807 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008808 return 0;
8809}
8810
James Ketrenos43f66a62005-03-25 12:31:53 -06008811/* Values are in microsecond */
8812static const s32 timeout_duration[] = {
8813 350000,
8814 250000,
8815 75000,
8816 37000,
8817 25000,
8818};
8819
8820static const s32 period_duration[] = {
8821 400000,
8822 700000,
8823 1000000,
8824 1000000,
8825 1000000
8826};
8827
Jeff Garzikbf794512005-07-31 13:07:26 -04008828static int ipw_wx_get_range(struct net_device *dev,
8829 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008830 union iwreq_data *wrqu, char *extra)
8831{
8832 struct ipw_priv *priv = ieee80211_priv(dev);
8833 struct iw_range *range = (struct iw_range *)extra;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008834 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008835 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008836
8837 wrqu->data.length = sizeof(*range);
8838 memset(range, 0, sizeof(*range));
8839
8840 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008841 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008842
8843 range->max_qual.qual = 100;
8844 /* TODO: Find real max RSSI and stick here */
8845 range->max_qual.level = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008846 range->max_qual.noise = priv->ieee->worst_rssi + 0x100;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008847 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008848
8849 range->avg_qual.qual = 70;
8850 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008851 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008852 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008853 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008854 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008855 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008856
Jeff Garzikbf794512005-07-31 13:07:26 -04008857 for (i = 0; i < range->num_bitrates; i++)
8858 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008859 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008860
James Ketrenos43f66a62005-03-25 12:31:53 -06008861 range->max_rts = DEFAULT_RTS_THRESHOLD;
8862 range->min_frag = MIN_FRAG_THRESHOLD;
8863 range->max_frag = MAX_FRAG_THRESHOLD;
8864
8865 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008866 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008867 range->num_encoding_sizes = 2;
8868 range->max_encoding_tokens = WEP_KEYS;
8869
8870 /* Set the Wireless Extension versions */
8871 range->we_version_compiled = WIRELESS_EXT;
8872 range->we_version_source = 16;
8873
James Ketrenosb095c382005-08-24 22:04:42 -05008874 i = 0;
8875 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
8876 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES;
8877 i++, j++) {
8878 range->freq[i].i = geo->bg[j].channel;
8879 range->freq[i].m = geo->bg[j].freq * 100000;
8880 range->freq[i].e = 1;
8881 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008882 }
James Ketrenosb095c382005-08-24 22:04:42 -05008883
8884 if (priv->ieee->mode & IEEE_A) {
8885 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES;
8886 i++, j++) {
8887 range->freq[i].i = geo->a[j].channel;
8888 range->freq[i].m = geo->a[j].freq * 100000;
8889 range->freq[i].e = 1;
8890 }
8891 }
8892
8893 range->num_channels = i;
8894 range->num_frequency = i;
8895
James Ketrenosc848d0a2005-08-24 21:56:24 -05008896 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008897 IPW_DEBUG_WX("GET Range\n");
8898 return 0;
8899}
8900
Jeff Garzikbf794512005-07-31 13:07:26 -04008901static int ipw_wx_set_wap(struct net_device *dev,
8902 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008903 union iwreq_data *wrqu, char *extra)
8904{
8905 struct ipw_priv *priv = ieee80211_priv(dev);
8906
8907 static const unsigned char any[] = {
8908 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8909 };
8910 static const unsigned char off[] = {
8911 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8912 };
8913
Jeff Garzikbf794512005-07-31 13:07:26 -04008914 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008915 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008916 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008917 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8918 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8919 /* we disable mandatory BSSID association */
8920 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8921 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008922 IPW_DEBUG_ASSOC("Attempting to associate with new "
8923 "parameters.\n");
8924 ipw_associate(priv);
8925 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008926 return 0;
8927 }
8928
8929 priv->config |= CFG_STATIC_BSSID;
8930 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8931 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008932 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008933 return 0;
8934 }
8935
8936 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8937 MAC_ARG(wrqu->ap_addr.sa_data));
8938
8939 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8940
James Ketrenosc848d0a2005-08-24 21:56:24 -05008941 /* Network configuration changed -- force [re]association */
8942 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8943 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008944 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008945
James Ketrenosc848d0a2005-08-24 21:56:24 -05008946 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008947 return 0;
8948}
8949
Jeff Garzikbf794512005-07-31 13:07:26 -04008950static int ipw_wx_get_wap(struct net_device *dev,
8951 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008952 union iwreq_data *wrqu, char *extra)
8953{
8954 struct ipw_priv *priv = ieee80211_priv(dev);
8955 /* If we are associated, trying to associate, or have a statically
8956 * configured BSSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008957 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04008958 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008959 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8960 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008961 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008962 } else
8963 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8964
8965 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8966 MAC_ARG(wrqu->ap_addr.sa_data));
James Ketrenosc848d0a2005-08-24 21:56:24 -05008967 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008968 return 0;
8969}
8970
Jeff Garzikbf794512005-07-31 13:07:26 -04008971static int ipw_wx_set_essid(struct net_device *dev,
8972 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008973 union iwreq_data *wrqu, char *extra)
8974{
8975 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008976 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008977 int length = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008978 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008979 if (wrqu->essid.flags && wrqu->essid.length) {
8980 length = wrqu->essid.length - 1;
8981 essid = extra;
8982 }
8983 if (length == 0) {
8984 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008985 if ((priv->config & CFG_STATIC_ESSID) &&
8986 !(priv->status & (STATUS_ASSOCIATED |
8987 STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008988 IPW_DEBUG_ASSOC("Attempting to associate with new "
8989 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008990 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008991 ipw_associate(priv);
8992 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008993 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008994 return 0;
8995 }
8996
8997 length = min(length, IW_ESSID_MAX_SIZE);
8998
8999 priv->config |= CFG_STATIC_ESSID;
9000
9001 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
9002 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009003 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009004 return 0;
9005 }
9006
9007 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
9008 length);
9009
9010 priv->essid_len = length;
9011 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009012
James Ketrenosc848d0a2005-08-24 21:56:24 -05009013 /* Network configuration changed -- force [re]association */
9014 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
9015 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009016 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009017
James Ketrenosc848d0a2005-08-24 21:56:24 -05009018 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009019 return 0;
9020}
9021
Jeff Garzikbf794512005-07-31 13:07:26 -04009022static int ipw_wx_get_essid(struct net_device *dev,
9023 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009024 union iwreq_data *wrqu, char *extra)
9025{
9026 struct ipw_priv *priv = ieee80211_priv(dev);
9027
9028 /* If we are associated, trying to associate, or have a statically
9029 * configured ESSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009030 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009031 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04009032 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9033 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009034 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04009035 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009036 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009037 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009038 } else {
9039 IPW_DEBUG_WX("Getting essid: ANY\n");
9040 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009041 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009042 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009043 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009044 return 0;
9045}
9046
Jeff Garzikbf794512005-07-31 13:07:26 -04009047static int ipw_wx_set_nick(struct net_device *dev,
9048 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009049 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009050{
James Ketrenos43f66a62005-03-25 12:31:53 -06009051 struct ipw_priv *priv = ieee80211_priv(dev);
9052
9053 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
9054 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
9055 return -E2BIG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009056 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009057 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06009058 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009059 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009060 IPW_DEBUG_TRACE("<<\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009061 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009062 return 0;
9063
9064}
9065
Jeff Garzikbf794512005-07-31 13:07:26 -04009066static int ipw_wx_get_nick(struct net_device *dev,
9067 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009068 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009069{
James Ketrenos43f66a62005-03-25 12:31:53 -06009070 struct ipw_priv *priv = ieee80211_priv(dev);
9071 IPW_DEBUG_WX("Getting nick\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009072 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009073 wrqu->data.length = strlen(priv->nick) + 1;
9074 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009075 wrqu->data.flags = 1; /* active */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009076 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009077 return 0;
9078}
9079
James Ketrenos43f66a62005-03-25 12:31:53 -06009080static int ipw_wx_set_rate(struct net_device *dev,
9081 struct iw_request_info *info,
9082 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009083{
James Ketrenosea2b26e2005-08-24 21:25:16 -05009084 /* TODO: We should use semaphores or locks for access to priv */
9085 struct ipw_priv *priv = ieee80211_priv(dev);
9086 u32 target_rate = wrqu->bitrate.value;
9087 u32 fixed, mask;
9088
9089 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
9090 /* value = X, fixed = 1 means only rate X */
9091 /* value = X, fixed = 0 means all rates lower equal X */
9092
9093 if (target_rate == -1) {
9094 fixed = 0;
9095 mask = IEEE80211_DEFAULT_RATES_MASK;
9096 /* Now we should reassociate */
9097 goto apply;
9098 }
9099
9100 mask = 0;
9101 fixed = wrqu->bitrate.fixed;
9102
9103 if (target_rate == 1000000 || !fixed)
9104 mask |= IEEE80211_CCK_RATE_1MB_MASK;
9105 if (target_rate == 1000000)
9106 goto apply;
9107
9108 if (target_rate == 2000000 || !fixed)
9109 mask |= IEEE80211_CCK_RATE_2MB_MASK;
9110 if (target_rate == 2000000)
9111 goto apply;
9112
9113 if (target_rate == 5500000 || !fixed)
9114 mask |= IEEE80211_CCK_RATE_5MB_MASK;
9115 if (target_rate == 5500000)
9116 goto apply;
9117
9118 if (target_rate == 6000000 || !fixed)
9119 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
9120 if (target_rate == 6000000)
9121 goto apply;
9122
9123 if (target_rate == 9000000 || !fixed)
9124 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
9125 if (target_rate == 9000000)
9126 goto apply;
9127
9128 if (target_rate == 11000000 || !fixed)
9129 mask |= IEEE80211_CCK_RATE_11MB_MASK;
9130 if (target_rate == 11000000)
9131 goto apply;
9132
9133 if (target_rate == 12000000 || !fixed)
9134 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
9135 if (target_rate == 12000000)
9136 goto apply;
9137
9138 if (target_rate == 18000000 || !fixed)
9139 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
9140 if (target_rate == 18000000)
9141 goto apply;
9142
9143 if (target_rate == 24000000 || !fixed)
9144 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
9145 if (target_rate == 24000000)
9146 goto apply;
9147
9148 if (target_rate == 36000000 || !fixed)
9149 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
9150 if (target_rate == 36000000)
9151 goto apply;
9152
9153 if (target_rate == 48000000 || !fixed)
9154 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
9155 if (target_rate == 48000000)
9156 goto apply;
9157
9158 if (target_rate == 54000000 || !fixed)
9159 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
9160 if (target_rate == 54000000)
9161 goto apply;
9162
9163 IPW_DEBUG_WX("invalid rate specified, returning error\n");
9164 return -EINVAL;
9165
9166 apply:
9167 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
9168 mask, fixed ? "fixed" : "sub-rates");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009169 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05009170 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009171 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05009172 ipw_set_fixed_rate(priv, priv->ieee->mode);
9173 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05009174 priv->config |= CFG_FIXED_RATE;
9175
James Ketrenosc848d0a2005-08-24 21:56:24 -05009176 if (priv->rates_mask == mask) {
9177 IPW_DEBUG_WX("Mask set to current mask.\n");
9178 up(&priv->sem);
9179 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009180 }
9181
James Ketrenosc848d0a2005-08-24 21:56:24 -05009182 priv->rates_mask = mask;
9183
9184 /* Network configuration changed -- force [re]association */
9185 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
9186 if (!ipw_disassociate(priv))
9187 ipw_associate(priv);
9188
9189 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009190 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009191}
9192
Jeff Garzikbf794512005-07-31 13:07:26 -04009193static int ipw_wx_get_rate(struct net_device *dev,
9194 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009195 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009196{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009197 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009198 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009199 wrqu->bitrate.value = priv->last_rate;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009200 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009201 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
9202 return 0;
9203}
9204
Jeff Garzikbf794512005-07-31 13:07:26 -04009205static int ipw_wx_set_rts(struct net_device *dev,
9206 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009207 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009208{
James Ketrenos43f66a62005-03-25 12:31:53 -06009209 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009210 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009211 if (wrqu->rts.disabled)
9212 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
9213 else {
9214 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05009215 wrqu->rts.value > MAX_RTS_THRESHOLD) {
9216 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009217 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009218 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009219 priv->rts_threshold = wrqu->rts.value;
9220 }
9221
9222 ipw_send_rts_threshold(priv, priv->rts_threshold);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009223 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009224 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
9225 return 0;
9226}
9227
Jeff Garzikbf794512005-07-31 13:07:26 -04009228static int ipw_wx_get_rts(struct net_device *dev,
9229 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009230 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009231{
James Ketrenos43f66a62005-03-25 12:31:53 -06009232 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009233 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009234 wrqu->rts.value = priv->rts_threshold;
9235 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009236 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009237 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009238 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
9239 return 0;
9240}
9241
Jeff Garzikbf794512005-07-31 13:07:26 -04009242static int ipw_wx_set_txpow(struct net_device *dev,
9243 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009244 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009245{
James Ketrenos43f66a62005-03-25 12:31:53 -06009246 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009247 int err = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05009248
James Ketrenosc848d0a2005-08-24 21:56:24 -05009249 down(&priv->sem);
9250 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009251 err = -EINPROGRESS;
9252 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009253 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009254
James Ketrenosb095c382005-08-24 22:04:42 -05009255 if (!wrqu->power.fixed)
9256 wrqu->power.value = IPW_TX_POWER_DEFAULT;
9257
James Ketrenosc848d0a2005-08-24 21:56:24 -05009258 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009259 err = -EINVAL;
9260 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009261 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009262
James Ketrenosb095c382005-08-24 22:04:42 -05009263 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009264 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009265 err = -EINVAL;
9266 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009267 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009268
9269 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009270 err = ipw_set_tx_power(priv);
9271 out:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009272 up(&priv->sem);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009273 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009274}
9275
Jeff Garzikbf794512005-07-31 13:07:26 -04009276static int ipw_wx_get_txpow(struct net_device *dev,
9277 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009278 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009279{
James Ketrenos43f66a62005-03-25 12:31:53 -06009280 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009281 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009282 wrqu->power.value = priv->tx_power;
9283 wrqu->power.fixed = 1;
9284 wrqu->power.flags = IW_TXPOW_DBM;
9285 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009286 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009287
Jeff Garzikbf794512005-07-31 13:07:26 -04009288 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08009289 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009290
9291 return 0;
9292}
9293
Jeff Garzikbf794512005-07-31 13:07:26 -04009294static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009295 struct iw_request_info *info,
9296 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009297{
9298 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009299 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009300 if (wrqu->frag.disabled)
9301 priv->ieee->fts = DEFAULT_FTS;
9302 else {
9303 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009304 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
9305 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009306 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009307 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009308
James Ketrenos43f66a62005-03-25 12:31:53 -06009309 priv->ieee->fts = wrqu->frag.value & ~0x1;
9310 }
9311
9312 ipw_send_frag_threshold(priv, wrqu->frag.value);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009313 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009314 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
9315 return 0;
9316}
9317
Jeff Garzikbf794512005-07-31 13:07:26 -04009318static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009319 struct iw_request_info *info,
9320 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009321{
9322 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009323 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009324 wrqu->frag.value = priv->ieee->fts;
9325 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009326 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009327 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009328 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
9329
9330 return 0;
9331}
9332
Jeff Garzikbf794512005-07-31 13:07:26 -04009333static int ipw_wx_set_retry(struct net_device *dev,
9334 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009335 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009336{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009337 struct ipw_priv *priv = ieee80211_priv(dev);
9338
9339 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9340 return -EINVAL;
9341
9342 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9343 return 0;
9344
9345 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
9346 return -EINVAL;
9347
9348 down(&priv->sem);
9349 if (wrqu->retry.flags & IW_RETRY_MIN)
9350 priv->short_retry_limit = (u8) wrqu->retry.value;
9351 else if (wrqu->retry.flags & IW_RETRY_MAX)
9352 priv->long_retry_limit = (u8) wrqu->retry.value;
9353 else {
9354 priv->short_retry_limit = (u8) wrqu->retry.value;
9355 priv->long_retry_limit = (u8) wrqu->retry.value;
9356 }
9357
9358 ipw_send_retry_limit(priv, priv->short_retry_limit,
9359 priv->long_retry_limit);
9360 up(&priv->sem);
9361 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9362 priv->short_retry_limit, priv->long_retry_limit);
9363 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009364}
9365
Jeff Garzikbf794512005-07-31 13:07:26 -04009366static int ipw_wx_get_retry(struct net_device *dev,
9367 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009368 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009369{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009370 struct ipw_priv *priv = ieee80211_priv(dev);
9371
9372 down(&priv->sem);
9373 wrqu->retry.disabled = 0;
9374
9375 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
9376 up(&priv->sem);
9377 return -EINVAL;
9378 }
9379
9380 if (wrqu->retry.flags & IW_RETRY_MAX) {
9381 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
9382 wrqu->retry.value = priv->long_retry_limit;
9383 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
9384 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
9385 wrqu->retry.value = priv->short_retry_limit;
9386 } else {
9387 wrqu->retry.flags = IW_RETRY_LIMIT;
9388 wrqu->retry.value = priv->short_retry_limit;
9389 }
9390 up(&priv->sem);
9391
9392 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
9393
9394 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009395}
9396
James Ketrenosafbf30a2005-08-25 00:05:33 -05009397#if WIRELESS_EXT > 17
9398static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
9399 int essid_len)
9400{
9401 struct ipw_scan_request_ext scan;
9402 int err = 0, scan_type;
9403
9404 down(&priv->sem);
9405
9406 if (priv->status & STATUS_RF_KILL_MASK) {
9407 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
9408 priv->status |= STATUS_SCAN_PENDING;
9409 goto done;
9410 }
9411
9412 IPW_DEBUG_HC("starting request direct scan!\n");
9413
9414 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
9415 err = wait_event_interruptible(priv->wait_state,
9416 !(priv->
9417 status & (STATUS_SCANNING |
9418 STATUS_SCAN_ABORTING)));
9419 if (err) {
9420 IPW_DEBUG_HC("aborting direct scan");
9421 goto done;
9422 }
9423 }
9424 memset(&scan, 0, sizeof(scan));
9425
9426 if (priv->config & CFG_SPEED_SCAN)
9427 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9428 cpu_to_le16(30);
9429 else
9430 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9431 cpu_to_le16(20);
9432
9433 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
9434 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05009435 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009436 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
9437
9438 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
9439
9440 err = ipw_send_ssid(priv, essid, essid_len);
9441 if (err) {
9442 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
9443 goto done;
9444 }
9445 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
9446
9447 ipw_add_scan_channels(priv, &scan, scan_type);
9448
9449 err = ipw_send_scan_request_ext(priv, &scan);
9450 if (err) {
9451 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
9452 goto done;
9453 }
9454
9455 priv->status |= STATUS_SCANNING;
9456
9457 done:
9458 up(&priv->sem);
9459 return err;
9460}
9461#endif /* WIRELESS_EXT > 17 */
9462
Jeff Garzikbf794512005-07-31 13:07:26 -04009463static int ipw_wx_set_scan(struct net_device *dev,
9464 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009465 union iwreq_data *wrqu, char *extra)
9466{
9467 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009468#if WIRELESS_EXT > 17
9469 struct iw_scan_req *req = NULL;
9470 if (wrqu->data.length
9471 && wrqu->data.length == sizeof(struct iw_scan_req)) {
9472 req = (struct iw_scan_req *)extra;
9473 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
9474 ipw_request_direct_scan(priv, req->essid,
9475 req->essid_len);
9476 return 0;
9477 }
9478 }
9479#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009480 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009481
9482 queue_work(priv->workqueue, &priv->request_scan);
9483
James Ketrenos43f66a62005-03-25 12:31:53 -06009484 return 0;
9485}
9486
Jeff Garzikbf794512005-07-31 13:07:26 -04009487static int ipw_wx_get_scan(struct net_device *dev,
9488 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009489 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009490{
James Ketrenos43f66a62005-03-25 12:31:53 -06009491 struct ipw_priv *priv = ieee80211_priv(dev);
9492 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9493}
9494
Jeff Garzikbf794512005-07-31 13:07:26 -04009495static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009496 struct iw_request_info *info,
9497 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009498{
9499 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009500 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009501 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009502
9503 down(&priv->sem);
9504 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009505
Hong Liucaeff812005-08-05 17:25:50 +08009506 /* In IBSS mode, we need to notify the firmware to update
9507 * the beacon info after we changed the capability. */
9508 if (cap != priv->capability &&
9509 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9510 priv->status & STATUS_ASSOCIATED)
9511 ipw_disassociate(priv);
9512
9513 up(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009514 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009515}
9516
Jeff Garzikbf794512005-07-31 13:07:26 -04009517static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009518 struct iw_request_info *info,
9519 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009520{
9521 struct ipw_priv *priv = ieee80211_priv(dev);
9522 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9523}
9524
Jeff Garzikbf794512005-07-31 13:07:26 -04009525static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009526 struct iw_request_info *info,
9527 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009528{
9529 struct ipw_priv *priv = ieee80211_priv(dev);
9530 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009531 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009532 if (wrqu->power.disabled) {
9533 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9534 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9535 if (err) {
9536 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009537 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009538 return err;
9539 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009540 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009541 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009542 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009543 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009544
9545 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009546 case IW_POWER_ON: /* If not specified */
9547 case IW_POWER_MODE: /* If set all mask */
9548 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009549 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009550 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009551 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9552 wrqu->power.flags);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009553 up(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009554 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009555 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009556
James Ketrenos43f66a62005-03-25 12:31:53 -06009557 /* If the user hasn't specified a power management mode yet, default
9558 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009559 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009560 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009561 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009562 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9563 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9564 if (err) {
9565 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009566 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009567 return err;
9568 }
9569
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009570 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009571 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009572 return 0;
9573}
9574
Jeff Garzikbf794512005-07-31 13:07:26 -04009575static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009576 struct iw_request_info *info,
9577 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009578{
9579 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009580 down(&priv->sem);
James Ketrenosa613bff2005-08-24 21:43:11 -05009581 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009582 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009583 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009584 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009585
James Ketrenosc848d0a2005-08-24 21:56:24 -05009586 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009587 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009588
James Ketrenos43f66a62005-03-25 12:31:53 -06009589 return 0;
9590}
9591
Jeff Garzikbf794512005-07-31 13:07:26 -04009592static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009593 struct iw_request_info *info,
9594 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009595{
9596 struct ipw_priv *priv = ieee80211_priv(dev);
9597 int mode = *(int *)extra;
9598 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009599 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009600 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9601 mode = IPW_POWER_AC;
9602 priv->power_mode = mode;
9603 } else {
9604 priv->power_mode = IPW_POWER_ENABLED | mode;
9605 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009606
James Ketrenos43f66a62005-03-25 12:31:53 -06009607 if (priv->power_mode != mode) {
9608 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009609
James Ketrenos43f66a62005-03-25 12:31:53 -06009610 if (err) {
9611 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009612 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009613 return err;
9614 }
9615 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009616 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009617 return 0;
9618}
9619
9620#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009621static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009622 struct iw_request_info *info,
9623 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009624{
9625 struct ipw_priv *priv = ieee80211_priv(dev);
9626 int level = IPW_POWER_LEVEL(priv->power_mode);
9627 char *p = extra;
9628
9629 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9630
9631 switch (level) {
9632 case IPW_POWER_AC:
9633 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9634 break;
9635 case IPW_POWER_BATTERY:
9636 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9637 break;
9638 default:
9639 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009640 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009641 timeout_duration[level - 1] / 1000,
9642 period_duration[level - 1] / 1000);
9643 }
9644
9645 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009646 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009647
9648 wrqu->data.length = p - extra + 1;
9649
9650 return 0;
9651}
9652
9653static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009654 struct iw_request_info *info,
9655 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009656{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009657 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009658 int mode = *(int *)extra;
9659 u8 band = 0, modulation = 0;
9660
9661 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009662 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009663 return -EINVAL;
9664 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009665 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009666 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009667 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009668 if (mode & IEEE_A) {
9669 band |= IEEE80211_52GHZ_BAND;
9670 modulation |= IEEE80211_OFDM_MODULATION;
9671 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009672 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009673 } else {
9674 if (mode & IEEE_A) {
9675 IPW_WARNING("Attempt to set 2200BG into "
9676 "802.11a mode\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009677 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009678 return -EINVAL;
9679 }
9680
James Ketrenosa33a1982005-09-14 14:28:59 -05009681 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009682 }
9683
9684 if (mode & IEEE_B) {
9685 band |= IEEE80211_24GHZ_BAND;
9686 modulation |= IEEE80211_CCK_MODULATION;
9687 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009688 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009689
James Ketrenos43f66a62005-03-25 12:31:53 -06009690 if (mode & IEEE_G) {
9691 band |= IEEE80211_24GHZ_BAND;
9692 modulation |= IEEE80211_OFDM_MODULATION;
9693 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009694 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009695
9696 priv->ieee->mode = mode;
9697 priv->ieee->freq_band = band;
9698 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009699 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009700
James Ketrenosc848d0a2005-08-24 21:56:24 -05009701 /* Network configuration changed -- force [re]association */
9702 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9703 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009704 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009705 ipw_associate(priv);
9706 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009707
James Ketrenosa613bff2005-08-24 21:43:11 -05009708 /* Update the band LEDs */
9709 ipw_led_band_on(priv);
9710
Jeff Garzikbf794512005-07-31 13:07:26 -04009711 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009712 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009713 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
James Ketrenosc848d0a2005-08-24 21:56:24 -05009714 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009715 return 0;
9716}
9717
9718static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009719 struct iw_request_info *info,
9720 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009721{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009722 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009723 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009724 switch (priv->ieee->mode) {
9725 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009726 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9727 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009728 case IEEE_B:
9729 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9730 break;
9731 case IEEE_A | IEEE_B:
9732 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9733 break;
9734 case IEEE_G:
9735 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9736 break;
9737 case IEEE_A | IEEE_G:
9738 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9739 break;
9740 case IEEE_B | IEEE_G:
9741 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9742 break;
9743 case IEEE_A | IEEE_B | IEEE_G:
9744 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9745 break;
9746 default:
9747 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009748 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009749 }
9750
James Ketrenos43f66a62005-03-25 12:31:53 -06009751 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9752
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009753 wrqu->data.length = strlen(extra) + 1;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009754 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009755
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009756 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009757}
9758
James Ketrenosea2b26e2005-08-24 21:25:16 -05009759static int ipw_wx_set_preamble(struct net_device *dev,
9760 struct iw_request_info *info,
9761 union iwreq_data *wrqu, char *extra)
9762{
9763 struct ipw_priv *priv = ieee80211_priv(dev);
9764 int mode = *(int *)extra;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009765 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009766 /* Switching from SHORT -> LONG requires a disassociation */
9767 if (mode == 1) {
9768 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9769 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009770
9771 /* Network configuration changed -- force [re]association */
9772 IPW_DEBUG_ASSOC
9773 ("[re]association triggered due to preamble change.\n");
9774 if (!ipw_disassociate(priv))
9775 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009776 }
9777 goto done;
9778 }
9779
9780 if (mode == 0) {
9781 priv->config &= ~CFG_PREAMBLE_LONG;
9782 goto done;
9783 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009784 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009785 return -EINVAL;
9786
9787 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009788 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009789 return 0;
9790}
9791
9792static int ipw_wx_get_preamble(struct net_device *dev,
9793 struct iw_request_info *info,
9794 union iwreq_data *wrqu, char *extra)
9795{
9796 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009797 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009798 if (priv->config & CFG_PREAMBLE_LONG)
9799 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9800 else
9801 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009802 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009803 return 0;
9804}
9805
James Ketrenosb095c382005-08-24 22:04:42 -05009806#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009807static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009808 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009809 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009810{
James Ketrenos43f66a62005-03-25 12:31:53 -06009811 struct ipw_priv *priv = ieee80211_priv(dev);
9812 int *parms = (int *)extra;
9813 int enable = (parms[0] > 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009814 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009815 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009816 if (enable) {
9817 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05009818#ifdef CONFIG_IEEE80211_RADIOTAP
9819 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9820#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009821 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009822#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009823 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009824 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009825
James Ketrenos43f66a62005-03-25 12:31:53 -06009826 ipw_set_channel(priv, parms[1]);
9827 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009828 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9829 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009830 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009831 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009832 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009833 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009834 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009835 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009836 return 0;
9837}
9838
James Ketrenosb095c382005-08-24 22:04:42 -05009839#endif // CONFIG_IPW2200_MONITOR
9840
Jeff Garzikbf794512005-07-31 13:07:26 -04009841static int ipw_wx_reset(struct net_device *dev,
9842 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009843 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009844{
James Ketrenos43f66a62005-03-25 12:31:53 -06009845 struct ipw_priv *priv = ieee80211_priv(dev);
9846 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009847 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009848 return 0;
9849}
James Ketrenosb095c382005-08-24 22:04:42 -05009850
James Ketrenosb095c382005-08-24 22:04:42 -05009851static int ipw_wx_sw_reset(struct net_device *dev,
9852 struct iw_request_info *info,
9853 union iwreq_data *wrqu, char *extra)
9854{
9855 struct ipw_priv *priv = ieee80211_priv(dev);
9856 union iwreq_data wrqu_sec = {
9857 .encoding = {
9858 .flags = IW_ENCODE_DISABLED,
9859 },
9860 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009861 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009862
9863 IPW_DEBUG_WX("SW_RESET\n");
9864
9865 down(&priv->sem);
9866
James Ketrenosafbf30a2005-08-25 00:05:33 -05009867 ret = ipw_sw_reset(priv, 0);
9868 if (!ret) {
9869 free_firmware();
9870 ipw_adapter_restart(priv);
9871 }
James Ketrenosb095c382005-08-24 22:04:42 -05009872
9873 /* The SW reset bit might have been toggled on by the 'disable'
9874 * module parameter, so take appropriate action */
9875 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9876
9877 up(&priv->sem);
9878 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
9879 down(&priv->sem);
9880
9881 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9882 /* Configuration likely changed -- force [re]association */
9883 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9884 "reset.\n");
9885 if (!ipw_disassociate(priv))
9886 ipw_associate(priv);
9887 }
9888
9889 up(&priv->sem);
9890
9891 return 0;
9892}
James Ketrenos43f66a62005-03-25 12:31:53 -06009893
9894/* Rebase the WE IOCTLs to zero for the handler array */
9895#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009896static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009897 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9898 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9899 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9900 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9901 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
9902 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9903 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9904 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9905 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9906 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9907 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9908 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9909 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9910 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9911 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9912 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9913 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9914 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9915 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9916 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9917 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9918 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9919 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9920 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9921 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9922 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9923 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9924 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009925 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9926 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9927 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9928 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009929#if WIRELESS_EXT > 17
9930 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9931 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9932 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9933 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9934 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9935 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9936 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
9937#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009938};
9939
James Ketrenosb095c382005-08-24 22:04:42 -05009940enum {
9941 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9942 IPW_PRIV_GET_POWER,
9943 IPW_PRIV_SET_MODE,
9944 IPW_PRIV_GET_MODE,
9945 IPW_PRIV_SET_PREAMBLE,
9946 IPW_PRIV_GET_PREAMBLE,
9947 IPW_PRIV_RESET,
9948 IPW_PRIV_SW_RESET,
9949#ifdef CONFIG_IPW2200_MONITOR
9950 IPW_PRIV_SET_MONITOR,
9951#endif
9952};
James Ketrenos43f66a62005-03-25 12:31:53 -06009953
Jeff Garzikbf794512005-07-31 13:07:26 -04009954static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009955 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009956 .cmd = IPW_PRIV_SET_POWER,
9957 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9958 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009959 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009960 .cmd = IPW_PRIV_GET_POWER,
9961 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9962 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009963 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009964 .cmd = IPW_PRIV_SET_MODE,
9965 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9966 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009967 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009968 .cmd = IPW_PRIV_GET_MODE,
9969 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9970 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009971 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009972 .cmd = IPW_PRIV_SET_PREAMBLE,
9973 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9974 .name = "set_preamble"},
9975 {
9976 .cmd = IPW_PRIV_GET_PREAMBLE,
9977 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9978 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009979 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009980 IPW_PRIV_RESET,
9981 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009982 {
9983 IPW_PRIV_SW_RESET,
9984 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9985#ifdef CONFIG_IPW2200_MONITOR
9986 {
9987 IPW_PRIV_SET_MONITOR,
9988 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9989#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009990};
9991
9992static iw_handler ipw_priv_handler[] = {
9993 ipw_wx_set_powermode,
9994 ipw_wx_get_powermode,
9995 ipw_wx_set_wireless_mode,
9996 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009997 ipw_wx_set_preamble,
9998 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009999 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -050010000 ipw_wx_sw_reset,
10001#ifdef CONFIG_IPW2200_MONITOR
10002 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -060010003#endif
10004};
10005
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010006static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010007 .standard = ipw_wx_handlers,
10008 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
10009 .num_private = ARRAY_SIZE(ipw_priv_handler),
10010 .num_private_args = ARRAY_SIZE(ipw_priv_args),
10011 .private = ipw_priv_handler,
10012 .private_args = ipw_priv_args,
James Ketrenos43f66a62005-03-25 12:31:53 -060010013};
10014
James Ketrenosa613bff2005-08-24 21:43:11 -050010015static struct iw_public_data ipw_wx_data;
10016
James Ketrenos43f66a62005-03-25 12:31:53 -060010017/*
10018 * Get wireless statistics.
10019 * Called by /proc/net/wireless
10020 * Also called by SIOCGIWSTATS
10021 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010022static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -060010023{
10024 struct ipw_priv *priv = ieee80211_priv(dev);
10025 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010026
James Ketrenos43f66a62005-03-25 12:31:53 -060010027 wstats = &priv->wstats;
10028
James Ketrenosea2b26e2005-08-24 21:25:16 -050010029 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -050010030 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -060010031 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
10032 * and associated; if not associcated, the values are all meaningless
10033 * anyway, so set them all to NULL and INVALID */
10034 if (!(priv->status & STATUS_ASSOCIATED)) {
10035 wstats->miss.beacon = 0;
10036 wstats->discard.retries = 0;
10037 wstats->qual.qual = 0;
10038 wstats->qual.level = 0;
10039 wstats->qual.noise = 0;
10040 wstats->qual.updated = 7;
10041 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010042 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -060010043 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010044 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010045
10046 wstats->qual.qual = priv->quality;
10047 wstats->qual.level = average_value(&priv->average_rssi);
10048 wstats->qual.noise = average_value(&priv->average_noise);
10049 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010050 IW_QUAL_NOISE_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -060010051
10052 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
10053 wstats->discard.retries = priv->last_tx_failures;
10054 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -040010055
James Ketrenos43f66a62005-03-25 12:31:53 -060010056/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
10057 goto fail_get_ordinal;
10058 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -040010059
James Ketrenos43f66a62005-03-25 12:31:53 -060010060 return wstats;
10061}
10062
James Ketrenos43f66a62005-03-25 12:31:53 -060010063/* net device stuff */
10064
10065static inline void init_sys_config(struct ipw_sys_config *sys_config)
10066{
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010067 memset(sys_config, 0, sizeof(struct ipw_sys_config));
10068 sys_config->bt_coexistence = 1; /* We may need to look into prvStaBtConfig */
James Ketrenos43f66a62005-03-25 12:31:53 -060010069 sys_config->answer_broadcast_ssid_probe = 0;
10070 sys_config->accept_all_data_frames = 0;
10071 sys_config->accept_non_directed_frames = 1;
10072 sys_config->exclude_unicast_unencrypted = 0;
10073 sys_config->disable_unicast_decryption = 1;
10074 sys_config->exclude_multicast_unencrypted = 0;
10075 sys_config->disable_multicast_decryption = 1;
10076 sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010077 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010078 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010079 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010080 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010081 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
James Ketrenos43f66a62005-03-25 12:31:53 -060010082}
10083
10084static int ipw_net_open(struct net_device *dev)
10085{
10086 struct ipw_priv *priv = ieee80211_priv(dev);
10087 IPW_DEBUG_INFO("dev->open\n");
10088 /* we should be verifying the device is ready to be opened */
James Ketrenosc848d0a2005-08-24 21:56:24 -050010089 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -040010090 if (!(priv->status & STATUS_RF_KILL_MASK) &&
10091 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -060010092 netif_start_queue(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010093 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010094 return 0;
10095}
10096
10097static int ipw_net_stop(struct net_device *dev)
10098{
10099 IPW_DEBUG_INFO("dev->close\n");
10100 netif_stop_queue(dev);
10101 return 0;
10102}
10103
10104/*
10105todo:
10106
10107modify to send one tfd per fragment instead of using chunking. otherwise
10108we need to heavily modify the ieee80211_skb_to_txb.
10109*/
10110
James Ketrenos227d2dc2005-07-28 16:25:55 -050010111static inline int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
10112 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010113{
James Ketrenos0dacca12005-09-21 12:23:41 -050010114 struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010115 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010116 int i = 0;
10117 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -050010118#ifdef CONFIG_IPW_QOS
10119 int tx_id = ipw_get_tx_queue_number(priv, pri);
10120 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10121#else
James Ketrenos43f66a62005-03-25 12:31:53 -060010122 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -050010123#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010124 struct clx2_queue *q = &txq->q;
10125 u8 id, hdr_len, unicast;
10126 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010127 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -060010128
James Ketrenos227d2dc2005-07-28 16:25:55 -050010129 /* If there isn't room in the queue, we return busy and let the
10130 * network stack requeue the packet for us */
10131 if (ipw_queue_space(q) < q->high_mark)
10132 return NETDEV_TX_BUSY;
10133
James Ketrenos43f66a62005-03-25 12:31:53 -060010134 switch (priv->ieee->iw_mode) {
10135 case IW_MODE_ADHOC:
10136 hdr_len = IEEE80211_3ADDR_LEN;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010137 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010138 id = ipw_find_station(priv, hdr->addr1);
10139 if (id == IPW_INVALID_STATION) {
10140 id = ipw_add_station(priv, hdr->addr1);
10141 if (id == IPW_INVALID_STATION) {
10142 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -040010143 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010144 MAC_ARG(hdr->addr1));
10145 goto drop;
10146 }
10147 }
10148 break;
10149
10150 case IW_MODE_INFRA:
10151 default:
James Ketrenosafbf30a2005-08-25 00:05:33 -050010152 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -060010153 hdr_len = IEEE80211_3ADDR_LEN;
10154 id = 0;
10155 break;
10156 }
10157
10158 tfd = &txq->bd[q->first_empty];
10159 txq->txb[q->first_empty] = txb;
10160 memset(tfd, 0, sizeof(*tfd));
10161 tfd->u.data.station_number = id;
10162
10163 tfd->control_flags.message_type = TX_FRAME_TYPE;
10164 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
10165
10166 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -050010167 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010168 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -040010169
James Ketrenos43f66a62005-03-25 12:31:53 -060010170 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -050010171 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010172 else
James Ketrenosb095c382005-08-24 22:04:42 -050010173 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010174
James Ketrenosea2b26e2005-08-24 21:25:16 -050010175 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
10176 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010177
James Ketrenosc848d0a2005-08-24 21:56:24 -050010178 fc = le16_to_cpu(hdr->frame_ctl);
10179 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
10180
James Ketrenos43f66a62005-03-25 12:31:53 -060010181 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
10182
James Ketrenosb095c382005-08-24 22:04:42 -050010183 if (likely(unicast))
10184 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10185
10186 if (txb->encrypted && !priv->ieee->host_encrypt) {
10187 switch (priv->ieee->sec.level) {
10188 case SEC_LEVEL_3:
10189 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
10190 IEEE80211_FCTL_PROTECTED;
10191 /* XXX: ACK flag must be set for CCMP even if it
10192 * is a multicast/broadcast packet, because CCMP
10193 * group communication encrypted by GTK is
10194 * actually done by the AP. */
10195 if (!unicast)
10196 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10197
10198 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10199 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
10200 tfd->u.data.key_index = 0;
10201 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
10202 break;
10203 case SEC_LEVEL_2:
10204 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
10205 IEEE80211_FCTL_PROTECTED;
10206 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10207 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
10208 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
10209 break;
10210 case SEC_LEVEL_1:
10211 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
10212 IEEE80211_FCTL_PROTECTED;
10213 tfd->u.data.key_index = priv->ieee->tx_keyidx;
10214 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
10215 40)
10216 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
10217 else
10218 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
10219 break;
10220 case SEC_LEVEL_0:
10221 break;
10222 default:
10223 printk(KERN_ERR "Unknow security level %d\n",
10224 priv->ieee->sec.level);
10225 break;
10226 }
10227 } else
10228 /* No hardware encryption */
10229 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
10230
10231#ifdef CONFIG_IPW_QOS
10232 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast);
10233#endif /* CONFIG_IPW_QOS */
10234
James Ketrenos43f66a62005-03-25 12:31:53 -060010235 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -050010236 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
10237 txb->nr_frags));
10238 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
10239 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10240 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10241 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10242 i, le32_to_cpu(tfd->u.data.num_chunks),
10243 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010244 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010245 i, tfd->u.data.num_chunks,
10246 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010247 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010248 txb->fragments[i]->len - hdr_len);
10249
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010250 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010251 cpu_to_le32(pci_map_single
10252 (priv->pci_dev,
10253 txb->fragments[i]->data + hdr_len,
10254 txb->fragments[i]->len - hdr_len,
10255 PCI_DMA_TODEVICE));
10256 tfd->u.data.chunk_len[i] =
10257 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010258 }
10259
10260 if (i != txb->nr_frags) {
10261 struct sk_buff *skb;
10262 u16 remaining_bytes = 0;
10263 int j;
10264
10265 for (j = i; j < txb->nr_frags; j++)
10266 remaining_bytes += txb->fragments[j]->len - hdr_len;
10267
10268 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10269 remaining_bytes);
10270 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10271 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010272 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010273 for (j = i; j < txb->nr_frags; j++) {
10274 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010275
James Ketrenos43f66a62005-03-25 12:31:53 -060010276 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010277 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010278 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010279 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010280 }
10281 dev_kfree_skb_any(txb->fragments[i]);
10282 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010283 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010284 cpu_to_le32(pci_map_single
10285 (priv->pci_dev, skb->data,
10286 tfd->u.data.chunk_len[i],
10287 PCI_DMA_TODEVICE));
10288
10289 tfd->u.data.num_chunks =
10290 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
10291 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010292 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010293 }
10294
10295 /* kick DMA */
10296 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10297 ipw_write32(priv, q->reg_w, q->first_empty);
10298
James Ketrenos227d2dc2005-07-28 16:25:55 -050010299 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010300
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010301 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010302 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
10303 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010304 return NETDEV_TX_OK;
10305}
10306
10307static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10308{
10309 struct ipw_priv *priv = ieee80211_priv(dev);
10310#ifdef CONFIG_IPW_QOS
10311 int tx_id = ipw_get_tx_queue_number(priv, pri);
10312 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10313#else
10314 struct clx2_tx_queue *txq = &priv->txq[0];
10315#endif /* CONFIG_IPW_QOS */
10316
10317 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
10318 return 1;
10319
10320 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010321}
10322
10323static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -050010324 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010325{
10326 struct ipw_priv *priv = ieee80211_priv(dev);
10327 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -050010328 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010329
10330 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010331 spin_lock_irqsave(&priv->lock, flags);
10332
10333 if (!(priv->status & STATUS_ASSOCIATED)) {
10334 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
10335 priv->ieee->stats.tx_carrier_errors++;
10336 netif_stop_queue(dev);
10337 goto fail_unlock;
10338 }
10339
James Ketrenos227d2dc2005-07-28 16:25:55 -050010340 ret = ipw_tx_skb(priv, txb, pri);
10341 if (ret == NETDEV_TX_OK)
10342 __ipw_led_activity_on(priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010343 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010344
James Ketrenos227d2dc2005-07-28 16:25:55 -050010345 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010346
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010347 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010348 spin_unlock_irqrestore(&priv->lock, flags);
10349 return 1;
10350}
10351
10352static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
10353{
10354 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -040010355
James Ketrenos43f66a62005-03-25 12:31:53 -060010356 priv->ieee->stats.tx_packets = priv->tx_packets;
10357 priv->ieee->stats.rx_packets = priv->rx_packets;
10358 return &priv->ieee->stats;
10359}
10360
10361static void ipw_net_set_multicast_list(struct net_device *dev)
10362{
10363
10364}
10365
10366static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10367{
10368 struct ipw_priv *priv = ieee80211_priv(dev);
10369 struct sockaddr *addr = p;
10370 if (!is_valid_ether_addr(addr->sa_data))
10371 return -EADDRNOTAVAIL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010372 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010373 priv->config |= CFG_CUSTOM_MAC;
10374 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
10375 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
10376 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -050010377 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010378 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010379 return 0;
10380}
10381
Jeff Garzikbf794512005-07-31 13:07:26 -040010382static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010383 struct ethtool_drvinfo *info)
10384{
10385 struct ipw_priv *p = ieee80211_priv(dev);
10386 char vers[64];
10387 char date[32];
10388 u32 len;
10389
10390 strcpy(info->driver, DRV_NAME);
10391 strcpy(info->version, DRV_VERSION);
10392
10393 len = sizeof(vers);
10394 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10395 len = sizeof(date);
10396 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10397
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010398 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010399 vers, date);
10400 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -050010401 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010402}
10403
10404static u32 ipw_ethtool_get_link(struct net_device *dev)
10405{
10406 struct ipw_priv *priv = ieee80211_priv(dev);
10407 return (priv->status & STATUS_ASSOCIATED) != 0;
10408}
10409
10410static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10411{
James Ketrenosb095c382005-08-24 22:04:42 -050010412 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010413}
10414
10415static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010416 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010417{
10418 struct ipw_priv *p = ieee80211_priv(dev);
10419
James Ketrenosb095c382005-08-24 22:04:42 -050010420 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010421 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010422 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010423 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010424 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010425 return 0;
10426}
10427
10428static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010429 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010430{
10431 struct ipw_priv *p = ieee80211_priv(dev);
10432 int i;
10433
James Ketrenosb095c382005-08-24 22:04:42 -050010434 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010435 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010436 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010437 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010438 for (i = IPW_EEPROM_DATA;
James Ketrenosb095c382005-08-24 22:04:42 -050010439 i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -060010440 ipw_write8(p, i, p->eeprom[i]);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010441 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010442 return 0;
10443}
10444
10445static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010446 .get_link = ipw_ethtool_get_link,
10447 .get_drvinfo = ipw_ethtool_get_drvinfo,
10448 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10449 .get_eeprom = ipw_ethtool_get_eeprom,
10450 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010451};
10452
10453static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
10454{
10455 struct ipw_priv *priv = data;
10456 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010457
James Ketrenos43f66a62005-03-25 12:31:53 -060010458 if (!priv)
10459 return IRQ_NONE;
10460
10461 spin_lock(&priv->lock);
10462
10463 if (!(priv->status & STATUS_INT_ENABLED)) {
10464 /* Shared IRQ */
10465 goto none;
10466 }
10467
James Ketrenosb095c382005-08-24 22:04:42 -050010468 inta = ipw_read32(priv, IPW_INTA_RW);
10469 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010470
James Ketrenos43f66a62005-03-25 12:31:53 -060010471 if (inta == 0xFFFFFFFF) {
10472 /* Hardware disappeared */
10473 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10474 goto none;
10475 }
10476
James Ketrenosb095c382005-08-24 22:04:42 -050010477 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010478 /* Shared interrupt */
10479 goto none;
10480 }
10481
10482 /* tell the device to stop sending interrupts */
10483 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010484
James Ketrenos43f66a62005-03-25 12:31:53 -060010485 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010486 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10487 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010488
James Ketrenos43f66a62005-03-25 12:31:53 -060010489 /* Cache INTA value for our tasklet */
10490 priv->isr_inta = inta;
10491
10492 tasklet_schedule(&priv->irq_tasklet);
10493
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010494 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010495
10496 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010497 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010498 spin_unlock(&priv->lock);
10499 return IRQ_NONE;
10500}
10501
10502static void ipw_rf_kill(void *adapter)
10503{
10504 struct ipw_priv *priv = adapter;
10505 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010506
James Ketrenos43f66a62005-03-25 12:31:53 -060010507 spin_lock_irqsave(&priv->lock, flags);
10508
10509 if (rf_kill_active(priv)) {
10510 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10511 if (priv->workqueue)
10512 queue_delayed_work(priv->workqueue,
10513 &priv->rf_kill, 2 * HZ);
10514 goto exit_unlock;
10515 }
10516
10517 /* RF Kill is now disabled, so bring the device back up */
10518
10519 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10520 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10521 "device\n");
10522
10523 /* we can not do an adapter restart while inside an irq lock */
10524 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010525 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010526 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10527 "enabled\n");
10528
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010529 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010530 spin_unlock_irqrestore(&priv->lock, flags);
10531}
10532
James Ketrenosc848d0a2005-08-24 21:56:24 -050010533static void ipw_bg_rf_kill(void *data)
10534{
10535 struct ipw_priv *priv = data;
10536 down(&priv->sem);
10537 ipw_rf_kill(data);
10538 up(&priv->sem);
10539}
10540
James Ketrenosa613bff2005-08-24 21:43:11 -050010541void ipw_link_up(struct ipw_priv *priv)
10542{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010543 priv->last_seq_num = -1;
10544 priv->last_frag_num = -1;
10545 priv->last_packet_time = 0;
10546
James Ketrenosa613bff2005-08-24 21:43:11 -050010547 netif_carrier_on(priv->net_dev);
10548 if (netif_queue_stopped(priv->net_dev)) {
10549 IPW_DEBUG_NOTIF("waking queue\n");
10550 netif_wake_queue(priv->net_dev);
10551 } else {
10552 IPW_DEBUG_NOTIF("starting queue\n");
10553 netif_start_queue(priv->net_dev);
10554 }
10555
James Ketrenosc848d0a2005-08-24 21:56:24 -050010556 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010557 ipw_reset_stats(priv);
10558 /* Ensure the rate is updated immediately */
10559 priv->last_rate = ipw_get_current_rate(priv);
10560 ipw_gather_stats(priv);
10561 ipw_led_link_up(priv);
10562 notify_wx_assoc_event(priv);
10563
10564 if (priv->config & CFG_BACKGROUND_SCAN)
10565 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10566}
10567
James Ketrenosc848d0a2005-08-24 21:56:24 -050010568static void ipw_bg_link_up(void *data)
10569{
10570 struct ipw_priv *priv = data;
10571 down(&priv->sem);
10572 ipw_link_up(data);
10573 up(&priv->sem);
10574}
10575
James Ketrenosa613bff2005-08-24 21:43:11 -050010576void ipw_link_down(struct ipw_priv *priv)
10577{
10578 ipw_led_link_down(priv);
10579 netif_carrier_off(priv->net_dev);
10580 netif_stop_queue(priv->net_dev);
10581 notify_wx_assoc_event(priv);
10582
10583 /* Cancel any queued work ... */
10584 cancel_delayed_work(&priv->request_scan);
10585 cancel_delayed_work(&priv->adhoc_check);
10586 cancel_delayed_work(&priv->gather_stats);
10587
10588 ipw_reset_stats(priv);
10589
James Ketrenosafbf30a2005-08-25 00:05:33 -050010590 if (!(priv->status & STATUS_EXIT_PENDING)) {
10591 /* Queue up another scan... */
10592 queue_work(priv->workqueue, &priv->request_scan);
10593 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010594}
10595
James Ketrenosc848d0a2005-08-24 21:56:24 -050010596static void ipw_bg_link_down(void *data)
10597{
10598 struct ipw_priv *priv = data;
10599 down(&priv->sem);
10600 ipw_link_down(data);
10601 up(&priv->sem);
10602}
10603
James Ketrenos43f66a62005-03-25 12:31:53 -060010604static int ipw_setup_deferred_work(struct ipw_priv *priv)
10605{
10606 int ret = 0;
10607
James Ketrenos43f66a62005-03-25 12:31:53 -060010608 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010609 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010610 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010611
James Ketrenosc848d0a2005-08-24 21:56:24 -050010612 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10613 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10614 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010615 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010616 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10617 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10618 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10619 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10620 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010621 INIT_WORK(&priv->request_scan,
James Ketrenosb095c382005-08-24 22:04:42 -050010622 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010623 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010624 (void (*)(void *))ipw_bg_gather_stats, priv);
10625 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10626 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10627 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10628 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10629 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10630 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010631 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010632 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010633 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010634 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10635 priv);
10636 INIT_WORK(&priv->merge_networks,
10637 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010638
James Ketrenosb095c382005-08-24 22:04:42 -050010639#ifdef CONFIG_IPW_QOS
10640 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10641 priv);
10642#endif /* CONFIG_IPW_QOS */
10643
James Ketrenos43f66a62005-03-25 12:31:53 -060010644 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10645 ipw_irq_tasklet, (unsigned long)priv);
10646
10647 return ret;
10648}
10649
James Ketrenos43f66a62005-03-25 12:31:53 -060010650static void shim__set_security(struct net_device *dev,
10651 struct ieee80211_security *sec)
10652{
10653 struct ipw_priv *priv = ieee80211_priv(dev);
10654 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010655 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010656 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010657 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010658 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010659 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010660 priv->ieee->sec.flags &= ~(1 << i);
10661 else {
10662 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010663 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010664 priv->ieee->sec.flags |= (1 << i);
10665 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010666 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010667 } else if (sec->level != SEC_LEVEL_1)
10668 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010669 }
10670
James Ketrenosb095c382005-08-24 22:04:42 -050010671 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010672 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010673 priv->ieee->sec.active_key = sec->active_key;
10674 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010675 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010676 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010677 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010678 } else
10679 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010680
10681 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010682 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10683 priv->ieee->sec.auth_mode = sec->auth_mode;
10684 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010685 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10686 priv->capability |= CAP_SHARED_KEY;
10687 else
10688 priv->capability &= ~CAP_SHARED_KEY;
10689 priv->status |= STATUS_SECURITY_UPDATED;
10690 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010691
James Ketrenosb095c382005-08-24 22:04:42 -050010692 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10693 priv->ieee->sec.flags |= SEC_ENABLED;
10694 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010695 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010696 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010697 priv->capability |= CAP_PRIVACY_ON;
10698 else
10699 priv->capability &= ~CAP_PRIVACY_ON;
10700 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010701
10702 if (sec->flags & SEC_ENCRYPT)
10703 priv->ieee->sec.encrypt = sec->encrypt;
Jeff Garzikbf794512005-07-31 13:07:26 -040010704
James Ketrenosb095c382005-08-24 22:04:42 -050010705 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10706 priv->ieee->sec.level = sec->level;
10707 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010708 priv->status |= STATUS_SECURITY_UPDATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -050010709 }
James Ketrenosb095c382005-08-24 22:04:42 -050010710
Zhu Yi1fbfea52005-08-05 17:22:56 +080010711 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10712 ipw_set_hwcrypto_keys(priv);
10713
Jeff Garzikbf794512005-07-31 13:07:26 -040010714 /* To match current functionality of ipw2100 (which works well w/
10715 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010716 * privacy capability changes ... */
10717#if 0
10718 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010719 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010720 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010721 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010722 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010723 IPW_DEBUG_ASSOC("Disassociating due to capability "
10724 "change.\n");
10725 ipw_disassociate(priv);
10726 }
10727#endif
10728}
10729
Jeff Garzikbf794512005-07-31 13:07:26 -040010730static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010731 struct ipw_supported_rates *rates)
10732{
10733 /* TODO: Mask out rates based on priv->rates_mask */
10734
10735 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010736 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010737 switch (priv->ieee->freq_band) {
10738 case IEEE80211_52GHZ_BAND:
10739 rates->ieee_mode = IPW_A_MODE;
10740 rates->purpose = IPW_RATE_CAPABILITIES;
10741 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10742 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10743 break;
10744
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010745 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010746 rates->ieee_mode = IPW_G_MODE;
10747 rates->purpose = IPW_RATE_CAPABILITIES;
10748 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10749 IEEE80211_CCK_DEFAULT_RATES_MASK);
10750 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10751 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10752 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10753 }
10754 break;
10755 }
10756
10757 return 0;
10758}
10759
Jeff Garzikbf794512005-07-31 13:07:26 -040010760static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010761{
James Ketrenos43f66a62005-03-25 12:31:53 -060010762 /* This is only called from ipw_up, which resets/reloads the firmware
10763 so, we don't need to first disable the card before we configure
10764 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010765 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010766 goto error;
10767
10768 /* initialize adapter address */
10769 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10770 goto error;
10771
10772 /* set basic system config settings */
10773 init_sys_config(&priv->sys_config);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010774 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10775 priv->sys_config.answer_broadcast_ssid_probe = 1;
10776 else
10777 priv->sys_config.answer_broadcast_ssid_probe = 0;
10778
James Ketrenos43f66a62005-03-25 12:31:53 -060010779 if (ipw_send_system_config(priv, &priv->sys_config))
10780 goto error;
10781
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010782 init_supported_rates(priv, &priv->rates);
10783 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010784 goto error;
10785
10786 /* Set request-to-send threshold */
10787 if (priv->rts_threshold) {
10788 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10789 goto error;
10790 }
James Ketrenosb095c382005-08-24 22:04:42 -050010791#ifdef CONFIG_IPW_QOS
10792 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10793 ipw_qos_activate(priv, NULL);
10794#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010795
10796 if (ipw_set_random_seed(priv))
10797 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010798
James Ketrenos43f66a62005-03-25 12:31:53 -060010799 /* final state transition to the RUN state */
10800 if (ipw_send_host_complete(priv))
10801 goto error;
10802
James Ketrenose6666192005-08-12 09:17:04 -050010803 priv->status |= STATUS_INIT;
10804
10805 ipw_led_init(priv);
10806 ipw_led_radio_on(priv);
10807 priv->notif_missed_beacons = 0;
10808
10809 /* Set hardware WEP key if it is configured. */
10810 if ((priv->capability & CAP_PRIVACY_ON) &&
10811 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10812 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10813 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010814
10815 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010816
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010817 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010818 return -EIO;
10819}
10820
James Ketrenos4f36f802005-08-03 20:36:56 -050010821/*
10822 * NOTE:
10823 *
10824 * These tables have been tested in conjunction with the
10825 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10826 *
10827 * Altering this values, using it on other hardware, or in geographies
10828 * not intended for resale of the above mentioned Intel adapters has
10829 * not been tested.
10830 *
10831 */
10832static const struct ieee80211_geo ipw_geos[] = {
10833 { /* Restricted */
10834 "---",
10835 .bg_channels = 11,
10836 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10837 {2427, 4}, {2432, 5}, {2437, 6},
10838 {2442, 7}, {2447, 8}, {2452, 9},
10839 {2457, 10}, {2462, 11}},
10840 },
10841
10842 { /* Custom US/Canada */
10843 "ZZF",
10844 .bg_channels = 11,
10845 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10846 {2427, 4}, {2432, 5}, {2437, 6},
10847 {2442, 7}, {2447, 8}, {2452, 9},
10848 {2457, 10}, {2462, 11}},
10849 .a_channels = 8,
10850 .a = {{5180, 36},
10851 {5200, 40},
10852 {5220, 44},
10853 {5240, 48},
10854 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10855 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10856 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10857 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10858 },
10859
10860 { /* Rest of World */
10861 "ZZD",
10862 .bg_channels = 13,
10863 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10864 {2427, 4}, {2432, 5}, {2437, 6},
10865 {2442, 7}, {2447, 8}, {2452, 9},
10866 {2457, 10}, {2462, 11}, {2467, 12},
10867 {2472, 13}},
10868 },
10869
10870 { /* Custom USA & Europe & High */
10871 "ZZA",
10872 .bg_channels = 11,
10873 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10874 {2427, 4}, {2432, 5}, {2437, 6},
10875 {2442, 7}, {2447, 8}, {2452, 9},
10876 {2457, 10}, {2462, 11}},
10877 .a_channels = 13,
10878 .a = {{5180, 36},
10879 {5200, 40},
10880 {5220, 44},
10881 {5240, 48},
10882 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10883 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10884 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10885 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10886 {5745, 149},
10887 {5765, 153},
10888 {5785, 157},
10889 {5805, 161},
10890 {5825, 165}},
10891 },
10892
10893 { /* Custom NA & Europe */
10894 "ZZB",
10895 .bg_channels = 11,
10896 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10897 {2427, 4}, {2432, 5}, {2437, 6},
10898 {2442, 7}, {2447, 8}, {2452, 9},
10899 {2457, 10}, {2462, 11}},
10900 .a_channels = 13,
10901 .a = {{5180, 36},
10902 {5200, 40},
10903 {5220, 44},
10904 {5240, 48},
10905 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10906 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10907 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10908 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10909 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10910 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10911 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10912 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10913 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10914 },
10915
10916 { /* Custom Japan */
10917 "ZZC",
10918 .bg_channels = 11,
10919 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10920 {2427, 4}, {2432, 5}, {2437, 6},
10921 {2442, 7}, {2447, 8}, {2452, 9},
10922 {2457, 10}, {2462, 11}},
10923 .a_channels = 4,
10924 .a = {{5170, 34}, {5190, 38},
10925 {5210, 42}, {5230, 46}},
10926 },
10927
10928 { /* Custom */
10929 "ZZM",
10930 .bg_channels = 11,
10931 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10932 {2427, 4}, {2432, 5}, {2437, 6},
10933 {2442, 7}, {2447, 8}, {2452, 9},
10934 {2457, 10}, {2462, 11}},
10935 },
10936
10937 { /* Europe */
10938 "ZZE",
10939 .bg_channels = 13,
10940 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10941 {2427, 4}, {2432, 5}, {2437, 6},
10942 {2442, 7}, {2447, 8}, {2452, 9},
10943 {2457, 10}, {2462, 11}, {2467, 12},
10944 {2472, 13}},
10945 .a_channels = 19,
10946 .a = {{5180, 36},
10947 {5200, 40},
10948 {5220, 44},
10949 {5240, 48},
10950 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10951 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10952 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10953 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10954 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10955 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10956 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10957 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10958 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10959 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10960 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10961 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10962 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10963 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10964 {5700, 140, IEEE80211_CH_PASSIVE_ONLY}},
10965 },
10966
10967 { /* Custom Japan */
10968 "ZZJ",
10969 .bg_channels = 14,
10970 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10971 {2427, 4}, {2432, 5}, {2437, 6},
10972 {2442, 7}, {2447, 8}, {2452, 9},
10973 {2457, 10}, {2462, 11}, {2467, 12},
10974 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY}},
10975 .a_channels = 4,
10976 .a = {{5170, 34}, {5190, 38},
10977 {5210, 42}, {5230, 46}},
10978 },
10979
10980 { /* High Band */
10981 "ZZH",
10982 .bg_channels = 13,
10983 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10984 {2427, 4}, {2432, 5}, {2437, 6},
10985 {2442, 7}, {2447, 8}, {2452, 9},
10986 {2457, 10}, {2462, 11},
10987 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10988 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10989 .a_channels = 4,
10990 .a = {{5745, 149}, {5765, 153},
10991 {5785, 157}, {5805, 161}},
10992 },
10993
10994 { /* Custom Europe */
10995 "ZZG",
10996 .bg_channels = 13,
10997 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10998 {2427, 4}, {2432, 5}, {2437, 6},
10999 {2442, 7}, {2447, 8}, {2452, 9},
11000 {2457, 10}, {2462, 11},
11001 {2467, 12}, {2472, 13}},
11002 .a_channels = 4,
11003 .a = {{5180, 36}, {5200, 40},
11004 {5220, 44}, {5240, 48}},
11005 },
11006
11007 { /* Europe */
11008 "ZZK",
11009 .bg_channels = 13,
11010 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11011 {2427, 4}, {2432, 5}, {2437, 6},
11012 {2442, 7}, {2447, 8}, {2452, 9},
11013 {2457, 10}, {2462, 11},
11014 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
11015 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
11016 .a_channels = 24,
11017 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
11018 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
11019 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
11020 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
11021 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
11022 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
11023 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
11024 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
11025 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
11026 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
11027 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
11028 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
11029 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
11030 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
11031 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
11032 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
11033 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
11034 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
11035 {5700, 140, IEEE80211_CH_PASSIVE_ONLY},
11036 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
11037 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
11038 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
11039 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
11040 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
11041 },
11042
11043 { /* Europe */
11044 "ZZL",
11045 .bg_channels = 11,
11046 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11047 {2427, 4}, {2432, 5}, {2437, 6},
11048 {2442, 7}, {2447, 8}, {2452, 9},
11049 {2457, 10}, {2462, 11}},
11050 .a_channels = 13,
11051 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
11052 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
11053 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
11054 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
11055 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
11056 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
11057 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
11058 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
11059 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
11060 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
11061 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
11062 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
11063 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
11064 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050011065};
11066
Liu Hong1fe0adb2005-08-19 09:33:10 -050011067/* GEO code borrowed from ieee80211_geo.c */
11068static int ipw_is_valid_channel(struct ieee80211_device *ieee, u8 channel)
11069{
11070 int i;
11071
11072 /* Driver needs to initialize the geography map before using
11073 * these helper functions */
11074 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
11075
11076 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
11077 for (i = 0; i < ieee->geo.bg_channels; i++)
11078 /* NOTE: If G mode is currently supported but
11079 * this is a B only channel, we don't see it
11080 * as valid. */
11081 if ((ieee->geo.bg[i].channel == channel) &&
11082 (!(ieee->mode & IEEE_G) ||
11083 !(ieee->geo.bg[i].flags & IEEE80211_CH_B_ONLY)))
11084 return IEEE80211_24GHZ_BAND;
11085
11086 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
11087 for (i = 0; i < ieee->geo.a_channels; i++)
11088 if (ieee->geo.a[i].channel == channel)
11089 return IEEE80211_52GHZ_BAND;
11090
11091 return 0;
11092}
11093
11094static int ipw_channel_to_index(struct ieee80211_device *ieee, u8 channel)
11095{
11096 int i;
11097
11098 /* Driver needs to initialize the geography map before using
11099 * these helper functions */
11100 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
11101
11102 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
11103 for (i = 0; i < ieee->geo.bg_channels; i++)
11104 if (ieee->geo.bg[i].channel == channel)
11105 return i;
11106
11107 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
11108 for (i = 0; i < ieee->geo.a_channels; i++)
11109 if (ieee->geo.a[i].channel == channel)
11110 return i;
11111
11112 return -1;
11113}
11114
11115static u8 ipw_freq_to_channel(struct ieee80211_device *ieee, u32 freq)
11116{
11117 int i;
11118
11119 /* Driver needs to initialize the geography map before using
11120 * these helper functions */
11121 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
11122
11123 freq /= 100000;
11124
11125 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
11126 for (i = 0; i < ieee->geo.bg_channels; i++)
11127 if (ieee->geo.bg[i].freq == freq)
11128 return ieee->geo.bg[i].channel;
11129
11130 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
11131 for (i = 0; i < ieee->geo.a_channels; i++)
11132 if (ieee->geo.a[i].freq == freq)
11133 return ieee->geo.a[i].channel;
11134
11135 return 0;
11136}
11137
11138static int ipw_set_geo(struct ieee80211_device *ieee,
11139 const struct ieee80211_geo *geo)
11140{
11141 memcpy(ieee->geo.name, geo->name, 3);
11142 ieee->geo.name[3] = '\0';
11143 ieee->geo.bg_channels = geo->bg_channels;
11144 ieee->geo.a_channels = geo->a_channels;
11145 memcpy(ieee->geo.bg, geo->bg, geo->bg_channels *
11146 sizeof(struct ieee80211_channel));
11147 memcpy(ieee->geo.a, geo->a, ieee->geo.a_channels *
11148 sizeof(struct ieee80211_channel));
11149 return 0;
11150}
11151
11152static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *ieee)
11153{
11154 return &ieee->geo;
11155}
11156
James Ketrenos43f66a62005-03-25 12:31:53 -060011157#define MAX_HW_RESTARTS 5
11158static int ipw_up(struct ipw_priv *priv)
11159{
James Ketrenos4f36f802005-08-03 20:36:56 -050011160 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060011161
11162 if (priv->status & STATUS_EXIT_PENDING)
11163 return -EIO;
11164
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011165 if (cmdlog && !priv->cmdlog) {
11166 priv->cmdlog = kmalloc(sizeof(*priv->cmdlog) * cmdlog,
11167 GFP_KERNEL);
11168 if (priv->cmdlog == NULL) {
11169 IPW_ERROR("Error allocating %d command log entries.\n",
11170 cmdlog);
11171 } else {
11172 memset(priv->cmdlog, 0, sizeof(*priv->cmdlog) * cmdlog);
11173 priv->cmdlog_len = cmdlog;
11174 }
11175 }
11176
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011177 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040011178 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060011179 * Also start the clocks. */
11180 rc = ipw_load(priv);
11181 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050011182 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011183 return rc;
11184 }
11185
11186 ipw_init_ordinals(priv);
11187 if (!(priv->config & CFG_CUSTOM_MAC))
11188 eeprom_parse_mac(priv, priv->mac_addr);
11189 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
11190
James Ketrenos4f36f802005-08-03 20:36:56 -050011191 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
11192 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
11193 ipw_geos[j].name, 3))
11194 break;
11195 }
11196 if (j == ARRAY_SIZE(ipw_geos))
11197 j = 0;
Liu Hong1fe0adb2005-08-19 09:33:10 -050011198 if (ipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050011199 IPW_WARNING("Could not set geography.");
11200 return 0;
11201 }
11202
11203 IPW_DEBUG_INFO("Geography %03d [%s] detected.\n",
11204 j, priv->ieee->geo.name);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011205
James Ketrenosb095c382005-08-24 22:04:42 -050011206 if (priv->status & STATUS_RF_KILL_SW) {
11207 IPW_WARNING("Radio disabled by module parameter.\n");
11208 return 0;
11209 } else if (rf_kill_active(priv)) {
11210 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
11211 "Kill switch must be turned off for "
11212 "wireless networking to work.\n");
11213 queue_delayed_work(priv->workqueue, &priv->rf_kill,
11214 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060011215 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011216 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011217
11218 rc = ipw_config(priv);
11219 if (!rc) {
11220 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011221
James Ketrenose6666192005-08-12 09:17:04 -050011222 /* If configure to try and auto-associate, kick
11223 * off a scan. */
11224 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011225
James Ketrenos43f66a62005-03-25 12:31:53 -060011226 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011227 }
Jeff Garzikbf794512005-07-31 13:07:26 -040011228
James Ketrenosc848d0a2005-08-24 21:56:24 -050011229 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011230 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
11231 i, MAX_HW_RESTARTS);
11232
11233 /* We had an error bringing up the hardware, so take it
11234 * all the way back down so we can try again */
11235 ipw_down(priv);
11236 }
11237
Jeff Garzikbf794512005-07-31 13:07:26 -040011238 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060011239 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011240 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011241
James Ketrenos43f66a62005-03-25 12:31:53 -060011242 return -EIO;
11243}
11244
James Ketrenosc848d0a2005-08-24 21:56:24 -050011245static void ipw_bg_up(void *data)
11246{
11247 struct ipw_priv *priv = data;
11248 down(&priv->sem);
11249 ipw_up(data);
11250 up(&priv->sem);
11251}
11252
James Ketrenosb095c382005-08-24 22:04:42 -050011253static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011254{
James Ketrenosb095c382005-08-24 22:04:42 -050011255 int i;
11256
11257 if (priv->status & STATUS_SCANNING) {
11258 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11259 ipw_abort_scan(priv);
11260 }
11261
11262 if (priv->status & STATUS_ASSOCIATED) {
11263 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11264 ipw_disassociate(priv);
11265 }
11266
11267 ipw_led_shutdown(priv);
11268
11269 /* Wait up to 1s for status to change to not scanning and not
11270 * associated (disassociation can take a while for a ful 802.11
11271 * exchange */
11272 for (i = 1000; i && (priv->status &
11273 (STATUS_DISASSOCIATING |
11274 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11275 udelay(10);
11276
11277 if (priv->status & (STATUS_DISASSOCIATING |
11278 STATUS_ASSOCIATED | STATUS_SCANNING))
11279 IPW_DEBUG_INFO("Still associated or scanning...\n");
11280 else
11281 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11282
James Ketrenosc848d0a2005-08-24 21:56:24 -050011283 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011284 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011285
11286 priv->status &= ~STATUS_INIT;
11287}
11288
11289static void ipw_down(struct ipw_priv *priv)
11290{
11291 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11292
11293 priv->status |= STATUS_EXIT_PENDING;
11294
11295 if (ipw_is_init(priv))
11296 ipw_deinit(priv);
11297
11298 /* Wipe out the EXIT_PENDING status bit if we are not actually
11299 * exiting the module */
11300 if (!exit_pending)
11301 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011302
11303 /* tell the device to stop sending interrupts */
11304 ipw_disable_interrupts(priv);
11305
11306 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011307 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011308 netif_carrier_off(priv->net_dev);
11309 netif_stop_queue(priv->net_dev);
11310
11311 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011312
11313 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011314}
11315
James Ketrenosc848d0a2005-08-24 21:56:24 -050011316static void ipw_bg_down(void *data)
11317{
11318 struct ipw_priv *priv = data;
11319 down(&priv->sem);
11320 ipw_down(data);
11321 up(&priv->sem);
11322}
11323
James Ketrenosafbf30a2005-08-25 00:05:33 -050011324#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011325static int ipw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
11326{
James Ketrenosea2b26e2005-08-24 21:25:16 -050011327 struct iwreq *wrq = (struct iwreq *)rq;
11328 int ret = -1;
11329 switch (cmd) {
11330 case IPW_IOCTL_WPA_SUPPLICANT:
11331 ret = ipw_wpa_supplicant(dev, &wrq->u.data);
11332 return ret;
11333
11334 default:
11335 return -EOPNOTSUPP;
11336 }
11337
James Ketrenosea2b26e2005-08-24 21:25:16 -050011338 return -EOPNOTSUPP;
11339}
James Ketrenosafbf30a2005-08-25 00:05:33 -050011340#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -050011341
James Ketrenos43f66a62005-03-25 12:31:53 -060011342/* Called by register_netdev() */
11343static int ipw_net_init(struct net_device *dev)
11344{
11345 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011346 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011347
James Ketrenosc848d0a2005-08-24 21:56:24 -050011348 if (ipw_up(priv)) {
11349 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011350 return -EIO;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011351 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011352
James Ketrenosc848d0a2005-08-24 21:56:24 -050011353 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011354 return 0;
11355}
11356
11357/* PCI driver stuff */
11358static struct pci_device_id card_ids[] = {
11359 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11360 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11361 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11362 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11363 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11364 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11365 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11366 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11367 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11368 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11369 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11370 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11371 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11372 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11373 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11374 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11375 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
11376 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011377 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050011378 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011379 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
11380 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011381
James Ketrenos43f66a62005-03-25 12:31:53 -060011382 /* required last entry */
11383 {0,}
11384};
11385
11386MODULE_DEVICE_TABLE(pci, card_ids);
11387
11388static struct attribute *ipw_sysfs_entries[] = {
11389 &dev_attr_rf_kill.attr,
11390 &dev_attr_direct_dword.attr,
11391 &dev_attr_indirect_byte.attr,
11392 &dev_attr_indirect_dword.attr,
11393 &dev_attr_mem_gpio_reg.attr,
11394 &dev_attr_command_event_reg.attr,
11395 &dev_attr_nic_type.attr,
11396 &dev_attr_status.attr,
11397 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011398 &dev_attr_error.attr,
11399 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011400 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011401 &dev_attr_eeprom_delay.attr,
11402 &dev_attr_ucode_version.attr,
11403 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011404 &dev_attr_scan_age.attr,
11405 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011406 &dev_attr_speed_scan.attr,
11407 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011408 NULL
11409};
11410
11411static struct attribute_group ipw_attribute_group = {
11412 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011413 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011414};
11415
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011416static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011417{
11418 int err = 0;
11419 struct net_device *net_dev;
11420 void __iomem *base;
11421 u32 length, val;
11422 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011423 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011424
11425 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
11426 if (net_dev == NULL) {
11427 err = -ENOMEM;
11428 goto out;
11429 }
11430
11431 priv = ieee80211_priv(net_dev);
11432 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011433
James Ketrenos43f66a62005-03-25 12:31:53 -060011434 priv->net_dev = net_dev;
11435 priv->pci_dev = pdev;
11436#ifdef CONFIG_IPW_DEBUG
11437 ipw_debug_level = debug;
11438#endif
11439 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011440 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11441 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011442
James Ketrenosc848d0a2005-08-24 21:56:24 -050011443 init_MUTEX(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011444 if (pci_enable_device(pdev)) {
11445 err = -ENODEV;
11446 goto out_free_ieee80211;
11447 }
11448
11449 pci_set_master(pdev);
11450
Tobias Klauser0e08b442005-06-20 14:28:41 -070011451 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040011452 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070011453 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060011454 if (err) {
11455 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11456 goto out_pci_disable_device;
11457 }
11458
11459 pci_set_drvdata(pdev, priv);
11460
11461 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011462 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011463 goto out_pci_disable_device;
11464
Jeff Garzikbf794512005-07-31 13:07:26 -040011465 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011466 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011467 pci_read_config_dword(pdev, 0x40, &val);
11468 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011469 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011470
James Ketrenos43f66a62005-03-25 12:31:53 -060011471 length = pci_resource_len(pdev, 0);
11472 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011473
James Ketrenos43f66a62005-03-25 12:31:53 -060011474 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
11475 if (!base) {
11476 err = -ENODEV;
11477 goto out_pci_release_regions;
11478 }
11479
11480 priv->hw_base = base;
11481 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11482 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11483
11484 err = ipw_setup_deferred_work(priv);
11485 if (err) {
11486 IPW_ERROR("Unable to setup deferred work\n");
11487 goto out_iounmap;
11488 }
11489
James Ketrenosb095c382005-08-24 22:04:42 -050011490 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011491
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011492 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011493 if (err) {
11494 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11495 goto out_destroy_workqueue;
11496 }
11497
11498 SET_MODULE_OWNER(net_dev);
11499 SET_NETDEV_DEV(net_dev, &pdev->dev);
11500
James Ketrenosa613bff2005-08-24 21:43:11 -050011501 ipw_wx_data.spy_data = &priv->ieee->spy_data;
11502 ipw_wx_data.ieee80211 = priv->ieee;
11503
James Ketrenosc848d0a2005-08-24 21:56:24 -050011504 down(&priv->sem);
11505
James Ketrenos43f66a62005-03-25 12:31:53 -060011506 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11507 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011508 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011509
James Ketrenosb095c382005-08-24 22:04:42 -050011510#ifdef CONFIG_IPW_QOS
James Ketrenos3b9990c2005-08-19 13:18:55 -050011511 priv->ieee->handle_probe_response = ipw_handle_beacon;
11512 priv->ieee->handle_beacon = ipw_handle_probe_response;
11513 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
James Ketrenosb095c382005-08-24 22:04:42 -050011514#endif /* CONFIG_IPW_QOS */
11515
James Ketrenosc848d0a2005-08-24 21:56:24 -050011516 priv->ieee->perfect_rssi = -20;
11517 priv->ieee->worst_rssi = -85;
11518
James Ketrenos43f66a62005-03-25 12:31:53 -060011519 net_dev->open = ipw_net_open;
11520 net_dev->stop = ipw_net_stop;
11521 net_dev->init = ipw_net_init;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011522#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011523 net_dev->do_ioctl = ipw_ioctl;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011524#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011525 net_dev->get_stats = ipw_net_get_stats;
11526 net_dev->set_multicast_list = ipw_net_set_multicast_list;
11527 net_dev->set_mac_address = ipw_net_set_mac_address;
11528 net_dev->get_wireless_stats = ipw_get_wireless_stats;
James Ketrenosa613bff2005-08-24 21:43:11 -050011529 net_dev->wireless_data = &ipw_wx_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011530 net_dev->wireless_handlers = &ipw_wx_handler_def;
11531 net_dev->ethtool_ops = &ipw_ethtool_ops;
11532 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011533 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011534 net_dev->mem_start = pci_resource_start(pdev, 0);
11535 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11536
11537 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11538 if (err) {
11539 IPW_ERROR("failed to create sysfs device attributes\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -050011540 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011541 goto out_release_irq;
11542 }
11543
James Ketrenosc848d0a2005-08-24 21:56:24 -050011544 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011545 err = register_netdev(net_dev);
11546 if (err) {
11547 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011548 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011549 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011550 return 0;
11551
James Ketrenosa613bff2005-08-24 21:43:11 -050011552 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011553 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011554 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011555 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011556 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011557 destroy_workqueue(priv->workqueue);
11558 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011559 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011560 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011561 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011562 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011563 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011564 pci_disable_device(pdev);
11565 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011566 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060011567 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011568 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011569 return err;
11570}
11571
11572static void ipw_pci_remove(struct pci_dev *pdev)
11573{
11574 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011575 struct list_head *p, *q;
11576 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011577
James Ketrenos43f66a62005-03-25 12:31:53 -060011578 if (!priv)
11579 return;
11580
James Ketrenosb095c382005-08-24 22:04:42 -050011581 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011582
11583 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011584 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -050011585 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011586
James Ketrenosb095c382005-08-24 22:04:42 -050011587 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011588
11589 unregister_netdev(priv->net_dev);
11590
11591 if (priv->rxq) {
11592 ipw_rx_queue_free(priv, priv->rxq);
11593 priv->rxq = NULL;
11594 }
11595 ipw_tx_queue_free(priv);
11596
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011597 if (priv->cmdlog) {
11598 kfree(priv->cmdlog);
11599 priv->cmdlog = NULL;
11600 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011601 /* ipw_down will ensure that there is no more pending work
11602 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011603 cancel_delayed_work(&priv->adhoc_check);
11604 cancel_delayed_work(&priv->gather_stats);
11605 cancel_delayed_work(&priv->request_scan);
11606 cancel_delayed_work(&priv->rf_kill);
11607 cancel_delayed_work(&priv->scan_check);
11608 destroy_workqueue(priv->workqueue);
11609 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011610
James Ketrenosafbf30a2005-08-25 00:05:33 -050011611 /* Free MAC hash list for ADHOC */
11612 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11613 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
11614 kfree(list_entry(p, struct ipw_ibss_seq, list));
11615 list_del(p);
11616 }
11617 }
11618
James Ketrenosb39860c2005-08-12 09:36:32 -050011619 if (priv->error) {
11620 ipw_free_error_log(priv->error);
11621 priv->error = NULL;
11622 }
11623
James Ketrenos43f66a62005-03-25 12:31:53 -060011624 free_irq(pdev->irq, priv);
11625 iounmap(priv->hw_base);
11626 pci_release_regions(pdev);
11627 pci_disable_device(pdev);
11628 pci_set_drvdata(pdev, NULL);
11629 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011630 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011631}
11632
James Ketrenos43f66a62005-03-25 12:31:53 -060011633#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011634static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011635{
11636 struct ipw_priv *priv = pci_get_drvdata(pdev);
11637 struct net_device *dev = priv->net_dev;
11638
11639 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11640
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011641 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011642 ipw_down(priv);
11643
11644 /* Remove the PRESENT state of the device */
11645 netif_device_detach(dev);
11646
James Ketrenos43f66a62005-03-25 12:31:53 -060011647 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011648 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011649 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011650
James Ketrenos43f66a62005-03-25 12:31:53 -060011651 return 0;
11652}
11653
11654static int ipw_pci_resume(struct pci_dev *pdev)
11655{
11656 struct ipw_priv *priv = pci_get_drvdata(pdev);
11657 struct net_device *dev = priv->net_dev;
11658 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011659
James Ketrenos43f66a62005-03-25 12:31:53 -060011660 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11661
James Ketrenosea2b26e2005-08-24 21:25:16 -050011662 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011663 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011664 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011665
James Ketrenos43f66a62005-03-25 12:31:53 -060011666 /*
11667 * Suspend/Resume resets the PCI configuration space, so we have to
11668 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11669 * from interfering with C3 CPU state. pci_restore_state won't help
11670 * here since it only restores the first 64 bytes pci config header.
11671 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011672 pci_read_config_dword(pdev, 0x40, &val);
11673 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011674 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11675
11676 /* Set the device back into the PRESENT state; this will also wake
11677 * the queue of needed */
11678 netif_device_attach(dev);
11679
11680 /* Bring the device back up */
11681 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011682
James Ketrenos43f66a62005-03-25 12:31:53 -060011683 return 0;
11684}
11685#endif
11686
11687/* driver initialization stuff */
11688static struct pci_driver ipw_driver = {
11689 .name = DRV_NAME,
11690 .id_table = card_ids,
11691 .probe = ipw_pci_probe,
11692 .remove = __devexit_p(ipw_pci_remove),
11693#ifdef CONFIG_PM
11694 .suspend = ipw_pci_suspend,
11695 .resume = ipw_pci_resume,
11696#endif
11697};
11698
11699static int __init ipw_init(void)
11700{
11701 int ret;
11702
11703 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11704 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11705
11706 ret = pci_module_init(&ipw_driver);
11707 if (ret) {
11708 IPW_ERROR("Unable to initialize PCI module\n");
11709 return ret;
11710 }
11711
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011712 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011713 if (ret) {
11714 IPW_ERROR("Unable to create driver sysfs file\n");
11715 pci_unregister_driver(&ipw_driver);
11716 return ret;
11717 }
11718
11719 return ret;
11720}
11721
11722static void __exit ipw_exit(void)
11723{
11724 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11725 pci_unregister_driver(&ipw_driver);
11726}
11727
11728module_param(disable, int, 0444);
11729MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11730
11731module_param(associate, int, 0444);
11732MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
11733
11734module_param(auto_create, int, 0444);
11735MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11736
James Ketrenosa613bff2005-08-24 21:43:11 -050011737module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011738MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011739
James Ketrenos43f66a62005-03-25 12:31:53 -060011740module_param(debug, int, 0444);
11741MODULE_PARM_DESC(debug, "debug output mask");
11742
11743module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011744MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011745
James Ketrenosb095c382005-08-24 22:04:42 -050011746#ifdef CONFIG_IPW_QOS
11747module_param(qos_enable, int, 0444);
11748MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
11749
11750module_param(qos_burst_enable, int, 0444);
11751MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11752
11753module_param(qos_no_ack_mask, int, 0444);
11754MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11755
11756module_param(burst_duration_CCK, int, 0444);
11757MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11758
11759module_param(burst_duration_OFDM, int, 0444);
11760MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
11761#endif /* CONFIG_IPW_QOS */
11762
11763#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060011764module_param(mode, int, 0444);
11765MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
11766#else
11767module_param(mode, int, 0444);
11768MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
11769#endif
11770
James Ketrenosb095c382005-08-24 22:04:42 -050011771module_param(hwcrypto, int, 0444);
11772MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)");
11773
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011774module_param(cmdlog, int, 0444);
11775MODULE_PARM_DESC(cmdlog,
11776 "allocate a ring buffer for logging firmware commands");
11777
James Ketrenos43f66a62005-03-25 12:31:53 -060011778module_exit(ipw_exit);
11779module_init(ipw_init);