blob: 9ced5b778a7707d01fee3770713f31998dbe5883 [file] [log] [blame]
James Ketrenos43f66a62005-03-25 12:31:53 -06001/******************************************************************************
Jeff Garzikbf794512005-07-31 13:07:26 -04002
James Ketrenosafbf30a2005-08-25 00:05:33 -05003 Copyright(c) 2003 - 2005 Intel Corporation. All rights reserved.
James Ketrenos43f66a62005-03-25 12:31:53 -06004
5 802.11 status code portion of this file from ethereal-0.10.6:
6 Copyright 2000, Axis Communications AB
7 Ethereal - Network traffic analyzer
8 By Gerald Combs <gerald@ethereal.com>
9 Copyright 1998 Gerald Combs
10
Jeff Garzikbf794512005-07-31 13:07:26 -040011 This program is free software; you can redistribute it and/or modify it
12 under the terms of version 2 of the GNU General Public License as
James Ketrenos43f66a62005-03-25 12:31:53 -060013 published by the Free Software Foundation.
Jeff Garzikbf794512005-07-31 13:07:26 -040014
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
James Ketrenos43f66a62005-03-25 12:31:53 -060018 more details.
Jeff Garzikbf794512005-07-31 13:07:26 -040019
James Ketrenos43f66a62005-03-25 12:31:53 -060020 You should have received a copy of the GNU General Public License along with
Jeff Garzikbf794512005-07-31 13:07:26 -040021 this program; if not, write to the Free Software Foundation, Inc., 59
James Ketrenos43f66a62005-03-25 12:31:53 -060022 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Jeff Garzikbf794512005-07-31 13:07:26 -040023
James Ketrenos43f66a62005-03-25 12:31:53 -060024 The full GNU General Public License is included in this distribution in the
25 file called LICENSE.
Jeff Garzikbf794512005-07-31 13:07:26 -040026
James Ketrenos43f66a62005-03-25 12:31:53 -060027 Contact Information:
28 James P. Ketrenos <ipw2100-admin@linux.intel.com>
29 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30
31******************************************************************************/
32
33#include "ipw2200.h"
34
James Ketrenosafbf30a2005-08-25 00:05:33 -050035#define IPW2200_VERSION "1.0.5"
James Ketrenos43f66a62005-03-25 12:31:53 -060036#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
James Ketrenos2b184d52005-08-03 20:33:14 -050037#define DRV_COPYRIGHT "Copyright(c) 2003-2005 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060038#define DRV_VERSION IPW2200_VERSION
39
James Ketrenosb095c382005-08-24 22:04:42 -050040#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
41
James Ketrenos43f66a62005-03-25 12:31:53 -060042MODULE_DESCRIPTION(DRV_DESCRIPTION);
43MODULE_VERSION(DRV_VERSION);
44MODULE_AUTHOR(DRV_COPYRIGHT);
45MODULE_LICENSE("GPL");
46
James Ketrenosf6c5cb72005-08-25 00:39:09 -050047static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060048static int debug = 0;
49static int channel = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060050static int mode = 0;
51
52static u32 ipw_debug_level;
53static int associate = 1;
54static int auto_create = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -050055static int led = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060056static int disable = 0;
James Ketrenosb095c382005-08-24 22:04:42 -050057static int hwcrypto = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -060058static const char ipw_modes[] = {
59 'a', 'b', 'g', '?'
60};
61
James Ketrenosb095c382005-08-24 22:04:42 -050062#ifdef CONFIG_IPW_QOS
63static int qos_enable = 0;
64static int qos_burst_enable = 0;
65static int qos_no_ack_mask = 0;
66static int burst_duration_CCK = 0;
67static int burst_duration_OFDM = 0;
68
69static struct ieee80211_qos_parameters def_qos_parameters_OFDM = {
70 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
71 QOS_TX3_CW_MIN_OFDM},
72 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
73 QOS_TX3_CW_MAX_OFDM},
74 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
75 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
76 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
77 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
78};
79
80static struct ieee80211_qos_parameters def_qos_parameters_CCK = {
81 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
82 QOS_TX3_CW_MIN_CCK},
83 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
84 QOS_TX3_CW_MAX_CCK},
85 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
86 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
87 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
88 QOS_TX3_TXOP_LIMIT_CCK}
89};
90
91static struct ieee80211_qos_parameters def_parameters_OFDM = {
92 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
93 DEF_TX3_CW_MIN_OFDM},
94 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
95 DEF_TX3_CW_MAX_OFDM},
96 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
97 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
98 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
99 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
100};
101
102static struct ieee80211_qos_parameters def_parameters_CCK = {
103 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
104 DEF_TX3_CW_MIN_CCK},
105 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
106 DEF_TX3_CW_MAX_CCK},
107 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
108 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
109 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
110 DEF_TX3_TXOP_LIMIT_CCK}
111};
112
113static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
114
115static int from_priority_to_tx_queue[] = {
116 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
117 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
118};
119
120static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
121
122static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
123 *qos_param);
124static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
125 *qos_param);
126#endif /* CONFIG_IPW_QOS */
127
128static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600129static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400130static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600131 struct clx2_tx_queue *txq, int qindex);
132static int ipw_queue_reset(struct ipw_priv *priv);
133
134static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
135 int len, int sync);
136
137static void ipw_tx_queue_free(struct ipw_priv *);
138
139static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
140static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
141static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600142static int ipw_up(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500143static void ipw_bg_up(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600144static void ipw_down(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500145static void ipw_bg_down(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600146static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400147static int init_supported_rates(struct ipw_priv *priv,
148 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500149static void ipw_set_hwcrypto_keys(struct ipw_priv *);
150static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600151
Liu Hong1fe0adb2005-08-19 09:33:10 -0500152static int ipw_is_valid_channel(struct ieee80211_device *, u8);
153static int ipw_channel_to_index(struct ieee80211_device *, u8);
154static u8 ipw_freq_to_channel(struct ieee80211_device *, u32);
155static int ipw_set_geo(struct ieee80211_device *, const struct ieee80211_geo *);
156static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *);
157
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500158static int snprint_line(char *buf, size_t count,
159 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600160{
161 int out, i, j, l;
162 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400163
James Ketrenos43f66a62005-03-25 12:31:53 -0600164 out = snprintf(buf, count, "%08X", ofs);
165
166 for (l = 0, i = 0; i < 2; i++) {
167 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400168 for (j = 0; j < 8 && l < len; j++, l++)
169 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600170 data[(i * 8 + j)]);
171 for (; j < 8; j++)
172 out += snprintf(buf + out, count - out, " ");
173 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400174
James Ketrenos43f66a62005-03-25 12:31:53 -0600175 out += snprintf(buf + out, count - out, " ");
176 for (l = 0, i = 0; i < 2; i++) {
177 out += snprintf(buf + out, count - out, " ");
178 for (j = 0; j < 8 && l < len; j++, l++) {
179 c = data[(i * 8 + j)];
180 if (!isascii(c) || !isprint(c))
181 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400182
James Ketrenos43f66a62005-03-25 12:31:53 -0600183 out += snprintf(buf + out, count - out, "%c", c);
184 }
185
186 for (; j < 8; j++)
187 out += snprintf(buf + out, count - out, " ");
188 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400189
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500190 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600191}
192
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400193static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600194{
195 char line[81];
196 u32 ofs = 0;
197 if (!(ipw_debug_level & level))
198 return;
199
200 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500201 snprint_line(line, sizeof(line), &data[ofs],
202 min(len, 16U), ofs);
203 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600204 ofs += 16;
205 len -= min(len, 16U);
206 }
207}
208
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500209static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
210{
211 size_t out = size;
212 u32 ofs = 0;
213 int total = 0;
214
215 while (size && len) {
216 out = snprint_line(output, size, &data[ofs],
217 min_t(size_t, len, 16U), ofs);
218
219 ofs += 16;
220 output += out;
221 size -= out;
222 len -= min_t(size_t, len, 16U);
223 total += out;
224 }
225 return total;
226}
227
James Ketrenos43f66a62005-03-25 12:31:53 -0600228static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
229#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
230
231static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
232#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
233
234static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
235static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
236{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400237 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
238 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600239 _ipw_write_reg8(a, b, c);
240}
241
242static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
243static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
244{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400245 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
246 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600247 _ipw_write_reg16(a, b, c);
248}
249
250static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
251static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
252{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400253 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
254 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600255 _ipw_write_reg32(a, b, c);
256}
257
258#define _ipw_write8(ipw, ofs, val) writeb((val), (ipw)->hw_base + (ofs))
259#define ipw_write8(ipw, ofs, val) \
260 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
261 _ipw_write8(ipw, ofs, val)
262
263#define _ipw_write16(ipw, ofs, val) writew((val), (ipw)->hw_base + (ofs))
264#define ipw_write16(ipw, ofs, val) \
265 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
266 _ipw_write16(ipw, ofs, val)
267
268#define _ipw_write32(ipw, ofs, val) writel((val), (ipw)->hw_base + (ofs))
269#define ipw_write32(ipw, ofs, val) \
270 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
271 _ipw_write32(ipw, ofs, val)
272
273#define _ipw_read8(ipw, ofs) readb((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400274static inline u8 __ipw_read8(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
275{
276 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600277 return _ipw_read8(ipw, ofs);
278}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400279
James Ketrenos43f66a62005-03-25 12:31:53 -0600280#define ipw_read8(ipw, ofs) __ipw_read8(__FILE__, __LINE__, ipw, ofs)
281
282#define _ipw_read16(ipw, ofs) readw((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400283static inline u16 __ipw_read16(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
284{
285 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600286 return _ipw_read16(ipw, ofs);
287}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400288
James Ketrenos43f66a62005-03-25 12:31:53 -0600289#define ipw_read16(ipw, ofs) __ipw_read16(__FILE__, __LINE__, ipw, ofs)
290
291#define _ipw_read32(ipw, ofs) readl((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400292static inline u32 __ipw_read32(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
293{
294 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600295 return _ipw_read32(ipw, ofs);
296}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400297
James Ketrenos43f66a62005-03-25 12:31:53 -0600298#define ipw_read32(ipw, ofs) __ipw_read32(__FILE__, __LINE__, ipw, ofs)
299
300static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500301static inline void __ipw_read_indirect(const char *f, int l,
302 struct ipw_priv *a, u32 b, u8 * c, int d)
303{
304 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %d bytes\n", f, l, (u32) (b),
305 d);
306 _ipw_read_indirect(a, b, c, d);
307}
308
309#define ipw_read_indirect(a, b, c, d) __ipw_read_indirect(__FILE__, __LINE__, a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600310
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400311static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
312 int num);
James Ketrenos43f66a62005-03-25 12:31:53 -0600313#define ipw_write_indirect(a, b, c, d) \
314 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %d bytes\n", __FILE__, __LINE__, (u32)(b), d); \
James Ketrenosafbf30a2005-08-25 00:05:33 -0500315 _ipw_write_indirect(a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600316
317/* indirect write s */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400318static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600319{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400320 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500321 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
322 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600323}
324
James Ketrenos43f66a62005-03-25 12:31:53 -0600325static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
326{
327 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500328 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
329 _ipw_write8(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600330}
331
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400332static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600333{
334 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500335 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
336 _ipw_write16(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600337}
338
339/* indirect read s */
340
341static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
342{
343 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500344 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -0600345 IPW_DEBUG_IO(" reg = 0x%8X : \n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500346 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400347 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600348}
349
350static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
351{
352 u32 value;
353
354 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
355
James Ketrenosb095c382005-08-24 22:04:42 -0500356 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
357 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
James Ketrenos43f66a62005-03-25 12:31:53 -0600358 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x \n", reg, value);
359 return value;
360}
361
362/* iterative/auto-increment 32 bit reads and writes */
363static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
364 int num)
365{
James Ketrenosb095c382005-08-24 22:04:42 -0500366 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600367 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600368 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400369
James Ketrenos43f66a62005-03-25 12:31:53 -0600370 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
371
James Ketrenosea2b26e2005-08-24 21:25:16 -0500372 if (num <= 0) {
373 return;
374 }
375
James Ketrenos43f66a62005-03-25 12:31:53 -0600376 /* Read the first nibble byte by byte */
377 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500378 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500379 /* Start reading at aligned_addr + dif_len */
380 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500381 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600382 aligned_addr += 4;
383 }
384
James Ketrenosb095c382005-08-24 22:04:42 -0500385 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500386 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500387 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400388
James Ketrenos43f66a62005-03-25 12:31:53 -0600389 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500390 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500391 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500392 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500393 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500394 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600395}
396
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400397static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600398 int num)
399{
James Ketrenosb095c382005-08-24 22:04:42 -0500400 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600401 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600402 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400403
James Ketrenos43f66a62005-03-25 12:31:53 -0600404 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400405
James Ketrenosea2b26e2005-08-24 21:25:16 -0500406 if (num <= 0) {
407 return;
408 }
409
James Ketrenos43f66a62005-03-25 12:31:53 -0600410 /* Write the first nibble byte by byte */
411 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500412 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500413 /* Start reading at aligned_addr + dif_len */
414 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500415 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600416 aligned_addr += 4;
417 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400418
James Ketrenosb095c382005-08-24 22:04:42 -0500419 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500420 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500421 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400422
James Ketrenos43f66a62005-03-25 12:31:53 -0600423 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500424 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500425 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500426 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500427 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500428 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600429}
430
Jeff Garzikbf794512005-07-31 13:07:26 -0400431static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600432 int num)
433{
434 memcpy_toio((priv->hw_base + addr), buf, num);
435}
436
437static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
438{
439 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
440}
441
442static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
443{
444 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
445}
446
447static inline void ipw_enable_interrupts(struct ipw_priv *priv)
448{
449 if (priv->status & STATUS_INT_ENABLED)
450 return;
451 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500452 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600453}
454
455static inline void ipw_disable_interrupts(struct ipw_priv *priv)
456{
457 if (!(priv->status & STATUS_INT_ENABLED))
458 return;
459 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500460 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600461}
462
James Ketrenosb39860c2005-08-12 09:36:32 -0500463#ifdef CONFIG_IPW_DEBUG
James Ketrenos43f66a62005-03-25 12:31:53 -0600464static char *ipw_error_desc(u32 val)
465{
466 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400467 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600468 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400469 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600470 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400471 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600472 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400473 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600474 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400475 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500476 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400477 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500478 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400479 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500480 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400481 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500482 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400483 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500484 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400485 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500486 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400487 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500488 return "DMA_STATUS";
489 case IPW_FW_ERROR_DINO_ERROR:
490 return "DINO_ERROR";
491 case IPW_FW_ERROR_EEPROM_ERROR:
492 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400493 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500494 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400495 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500496 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400497 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500498 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600499 }
500}
501
James Ketrenosb39860c2005-08-12 09:36:32 -0500502static void ipw_dump_error_log(struct ipw_priv *priv,
503 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600504{
James Ketrenosb39860c2005-08-12 09:36:32 -0500505 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600506
James Ketrenosb39860c2005-08-12 09:36:32 -0500507 if (!error) {
508 IPW_ERROR("Error allocating and capturing error log. "
509 "Nothing to dump.\n");
510 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600511 }
512
James Ketrenosb39860c2005-08-12 09:36:32 -0500513 IPW_ERROR("Start IPW Error Log Dump:\n");
514 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
515 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600516
James Ketrenosb39860c2005-08-12 09:36:32 -0500517 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400518 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500519 ipw_error_desc(error->elem[i].desc),
520 error->elem[i].time,
521 error->elem[i].blink1,
522 error->elem[i].blink2,
523 error->elem[i].link1,
524 error->elem[i].link2, error->elem[i].data);
525 for (i = 0; i < error->log_len; i++)
526 IPW_ERROR("%i\t0x%08x\t%i\n",
527 error->log[i].time,
528 error->log[i].event, error->log[i].data);
James Ketrenos43f66a62005-03-25 12:31:53 -0600529}
James Ketrenos43f66a62005-03-25 12:31:53 -0600530#endif
James Ketrenos43f66a62005-03-25 12:31:53 -0600531
James Ketrenosc848d0a2005-08-24 21:56:24 -0500532static inline int ipw_is_init(struct ipw_priv *priv)
533{
534 return (priv->status & STATUS_INIT) ? 1 : 0;
535}
536
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400537static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600538{
539 u32 addr, field_info, field_len, field_count, total_len;
540
541 IPW_DEBUG_ORD("ordinal = %i\n", ord);
542
543 if (!priv || !val || !len) {
544 IPW_DEBUG_ORD("Invalid argument\n");
545 return -EINVAL;
546 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400547
James Ketrenos43f66a62005-03-25 12:31:53 -0600548 /* verify device ordinal tables have been initialized */
549 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
550 IPW_DEBUG_ORD("Access ordinals before initialization\n");
551 return -EINVAL;
552 }
553
554 switch (IPW_ORD_TABLE_ID_MASK & ord) {
555 case IPW_ORD_TABLE_0_MASK:
556 /*
557 * TABLE 0: Direct access to a table of 32 bit values
558 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400559 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600560 * read from the table
561 */
562
563 /* remove the table id from the ordinal */
564 ord &= IPW_ORD_TABLE_VALUE_MASK;
565
566 /* boundary check */
567 if (ord > priv->table0_len) {
568 IPW_DEBUG_ORD("ordinal value (%i) longer then "
569 "max (%i)\n", ord, priv->table0_len);
570 return -EINVAL;
571 }
572
573 /* verify we have enough room to store the value */
574 if (*len < sizeof(u32)) {
575 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200576 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600577 return -EINVAL;
578 }
579
580 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400581 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600582
583 *len = sizeof(u32);
584 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400585 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600586 break;
587
588 case IPW_ORD_TABLE_1_MASK:
589 /*
590 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400591 *
592 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600593 * representing starting addr for the data (which is
594 * also a u32)
595 */
596
597 /* remove the table id from the ordinal */
598 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400599
James Ketrenos43f66a62005-03-25 12:31:53 -0600600 /* boundary check */
601 if (ord > priv->table1_len) {
602 IPW_DEBUG_ORD("ordinal value too long\n");
603 return -EINVAL;
604 }
605
606 /* verify we have enough room to store the value */
607 if (*len < sizeof(u32)) {
608 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200609 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600610 return -EINVAL;
611 }
612
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400613 *((u32 *) val) =
614 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600615 *len = sizeof(u32);
616 break;
617
618 case IPW_ORD_TABLE_2_MASK:
619 /*
620 * TABLE 2: Indirect access to a table of variable sized values
621 *
622 * This table consist of six values, each containing
623 * - dword containing the starting offset of the data
624 * - dword containing the lengh in the first 16bits
625 * and the count in the second 16bits
626 */
627
628 /* remove the table id from the ordinal */
629 ord &= IPW_ORD_TABLE_VALUE_MASK;
630
631 /* boundary check */
632 if (ord > priv->table2_len) {
633 IPW_DEBUG_ORD("ordinal value too long\n");
634 return -EINVAL;
635 }
636
637 /* get the address of statistic */
638 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400639
640 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600641 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400642 field_info =
643 ipw_read_reg32(priv,
644 priv->table2_addr + (ord << 3) +
645 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400646
James Ketrenos43f66a62005-03-25 12:31:53 -0600647 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400648 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400649
James Ketrenos43f66a62005-03-25 12:31:53 -0600650 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400651 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400652
James Ketrenos43f66a62005-03-25 12:31:53 -0600653 /* abort if not enought memory */
654 total_len = field_len * field_count;
655 if (total_len > *len) {
656 *len = total_len;
657 return -EINVAL;
658 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400659
James Ketrenos43f66a62005-03-25 12:31:53 -0600660 *len = total_len;
661 if (!total_len)
662 return 0;
663
664 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400665 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600666 addr, total_len, field_info);
667 ipw_read_indirect(priv, addr, val, total_len);
668 break;
669
670 default:
671 IPW_DEBUG_ORD("Invalid ordinal!\n");
672 return -EINVAL;
673
674 }
675
James Ketrenos43f66a62005-03-25 12:31:53 -0600676 return 0;
677}
678
679static void ipw_init_ordinals(struct ipw_priv *priv)
680{
681 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400682 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600683
684 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
685 priv->table0_addr, priv->table0_len);
686
687 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
688 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
689
690 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
691 priv->table1_addr, priv->table1_len);
692
693 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
694 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400695 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600696
697 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
698 priv->table2_addr, priv->table2_len);
699
700}
701
James Ketrenosa613bff2005-08-24 21:43:11 -0500702u32 ipw_register_toggle(u32 reg)
703{
James Ketrenosb095c382005-08-24 22:04:42 -0500704 reg &= ~IPW_START_STANDBY;
705 if (reg & IPW_GATE_ODMA)
706 reg &= ~IPW_GATE_ODMA;
707 if (reg & IPW_GATE_IDMA)
708 reg &= ~IPW_GATE_IDMA;
709 if (reg & IPW_GATE_ADMA)
710 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500711 return reg;
712}
713
714/*
715 * LED behavior:
716 * - On radio ON, turn on any LEDs that require to be on during start
717 * - On initialization, start unassociated blink
718 * - On association, disable unassociated blink
719 * - On disassociation, start unassociated blink
720 * - On radio OFF, turn off any LEDs started during radio on
721 *
722 */
723#define LD_TIME_LINK_ON 300
724#define LD_TIME_LINK_OFF 2700
725#define LD_TIME_ACT_ON 250
726
727void ipw_led_link_on(struct ipw_priv *priv)
728{
729 unsigned long flags;
730 u32 led;
731
732 /* If configured to not use LEDs, or nic_type is 1,
733 * then we don't toggle a LINK led */
734 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
735 return;
736
737 spin_lock_irqsave(&priv->lock, flags);
738
739 if (!(priv->status & STATUS_RF_KILL_MASK) &&
740 !(priv->status & STATUS_LED_LINK_ON)) {
741 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500742 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500743 led |= priv->led_association_on;
744
745 led = ipw_register_toggle(led);
746
747 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500748 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500749
750 priv->status |= STATUS_LED_LINK_ON;
751
752 /* If we aren't associated, schedule turning the LED off */
753 if (!(priv->status & STATUS_ASSOCIATED))
754 queue_delayed_work(priv->workqueue,
755 &priv->led_link_off,
756 LD_TIME_LINK_ON);
757 }
758
759 spin_unlock_irqrestore(&priv->lock, flags);
760}
761
James Ketrenosc848d0a2005-08-24 21:56:24 -0500762static void ipw_bg_led_link_on(void *data)
763{
764 struct ipw_priv *priv = data;
765 down(&priv->sem);
766 ipw_led_link_on(data);
767 up(&priv->sem);
768}
769
James Ketrenosa613bff2005-08-24 21:43:11 -0500770void ipw_led_link_off(struct ipw_priv *priv)
771{
772 unsigned long flags;
773 u32 led;
774
775 /* If configured not to use LEDs, or nic type is 1,
776 * then we don't goggle the LINK led. */
777 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
778 return;
779
780 spin_lock_irqsave(&priv->lock, flags);
781
782 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500783 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500784 led &= priv->led_association_off;
785 led = ipw_register_toggle(led);
786
787 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500788 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500789
790 IPW_DEBUG_LED("Link LED Off\n");
791
792 priv->status &= ~STATUS_LED_LINK_ON;
793
794 /* If we aren't associated and the radio is on, schedule
795 * turning the LED on (blink while unassociated) */
796 if (!(priv->status & STATUS_RF_KILL_MASK) &&
797 !(priv->status & STATUS_ASSOCIATED))
798 queue_delayed_work(priv->workqueue, &priv->led_link_on,
799 LD_TIME_LINK_OFF);
800
801 }
802
803 spin_unlock_irqrestore(&priv->lock, flags);
804}
805
James Ketrenosc848d0a2005-08-24 21:56:24 -0500806static void ipw_bg_led_link_off(void *data)
807{
808 struct ipw_priv *priv = data;
809 down(&priv->sem);
810 ipw_led_link_off(data);
811 up(&priv->sem);
812}
813
James Ketrenosb095c382005-08-24 22:04:42 -0500814static inline void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500815{
James Ketrenosa613bff2005-08-24 21:43:11 -0500816 u32 led;
817
818 if (priv->config & CFG_NO_LED)
819 return;
820
James Ketrenosb095c382005-08-24 22:04:42 -0500821 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500822 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500823
824 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500825 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500826 led |= priv->led_activity_on;
827
828 led = ipw_register_toggle(led);
829
830 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500831 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500832
833 IPW_DEBUG_LED("Activity LED On\n");
834
835 priv->status |= STATUS_LED_ACT_ON;
836
James Ketrenosc848d0a2005-08-24 21:56:24 -0500837 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500838 queue_delayed_work(priv->workqueue, &priv->led_act_off,
839 LD_TIME_ACT_ON);
840 } else {
841 /* Reschedule LED off for full time period */
842 cancel_delayed_work(&priv->led_act_off);
843 queue_delayed_work(priv->workqueue, &priv->led_act_off,
844 LD_TIME_ACT_ON);
845 }
James Ketrenosb095c382005-08-24 22:04:42 -0500846}
James Ketrenosa613bff2005-08-24 21:43:11 -0500847
James Ketrenosb095c382005-08-24 22:04:42 -0500848void ipw_led_activity_on(struct ipw_priv *priv)
849{
850 unsigned long flags;
851 spin_lock_irqsave(&priv->lock, flags);
852 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500853 spin_unlock_irqrestore(&priv->lock, flags);
854}
855
856void ipw_led_activity_off(struct ipw_priv *priv)
857{
858 unsigned long flags;
859 u32 led;
860
861 if (priv->config & CFG_NO_LED)
862 return;
863
864 spin_lock_irqsave(&priv->lock, flags);
865
866 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500867 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500868 led &= priv->led_activity_off;
869
870 led = ipw_register_toggle(led);
871
872 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500873 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500874
875 IPW_DEBUG_LED("Activity LED Off\n");
876
877 priv->status &= ~STATUS_LED_ACT_ON;
878 }
879
880 spin_unlock_irqrestore(&priv->lock, flags);
881}
882
James Ketrenosc848d0a2005-08-24 21:56:24 -0500883static void ipw_bg_led_activity_off(void *data)
884{
885 struct ipw_priv *priv = data;
886 down(&priv->sem);
887 ipw_led_activity_off(data);
888 up(&priv->sem);
889}
890
James Ketrenosa613bff2005-08-24 21:43:11 -0500891void ipw_led_band_on(struct ipw_priv *priv)
892{
893 unsigned long flags;
894 u32 led;
895
896 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -0500897 if (priv->config & CFG_NO_LED ||
898 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -0500899 return;
900
901 spin_lock_irqsave(&priv->lock, flags);
902
James Ketrenosb095c382005-08-24 22:04:42 -0500903 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500904 if (priv->assoc_network->mode == IEEE_A) {
905 led |= priv->led_ofdm_on;
906 led &= priv->led_association_off;
907 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
908 } else if (priv->assoc_network->mode == IEEE_G) {
909 led |= priv->led_ofdm_on;
910 led |= priv->led_association_on;
911 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
912 } else {
913 led &= priv->led_ofdm_off;
914 led |= priv->led_association_on;
915 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
916 }
917
918 led = ipw_register_toggle(led);
919
920 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500921 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500922
923 spin_unlock_irqrestore(&priv->lock, flags);
924}
925
926void ipw_led_band_off(struct ipw_priv *priv)
927{
928 unsigned long flags;
929 u32 led;
930
931 /* Only nic type 1 supports mode LEDs */
932 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
933 return;
934
935 spin_lock_irqsave(&priv->lock, flags);
936
James Ketrenosb095c382005-08-24 22:04:42 -0500937 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500938 led &= priv->led_ofdm_off;
939 led &= priv->led_association_off;
940
941 led = ipw_register_toggle(led);
942
943 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500944 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500945
946 spin_unlock_irqrestore(&priv->lock, flags);
947}
948
949void ipw_led_radio_on(struct ipw_priv *priv)
950{
951 ipw_led_link_on(priv);
952}
953
954void ipw_led_radio_off(struct ipw_priv *priv)
955{
956 ipw_led_activity_off(priv);
957 ipw_led_link_off(priv);
958}
959
960void ipw_led_link_up(struct ipw_priv *priv)
961{
962 /* Set the Link Led on for all nic types */
963 ipw_led_link_on(priv);
964}
965
966void ipw_led_link_down(struct ipw_priv *priv)
967{
968 ipw_led_activity_off(priv);
969 ipw_led_link_off(priv);
970
971 if (priv->status & STATUS_RF_KILL_MASK)
972 ipw_led_radio_off(priv);
973}
974
975void ipw_led_init(struct ipw_priv *priv)
976{
977 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
978
979 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500980 priv->led_activity_on = IPW_ACTIVITY_LED;
981 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500982
James Ketrenosb095c382005-08-24 22:04:42 -0500983 priv->led_association_on = IPW_ASSOCIATED_LED;
984 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500985
986 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500987 priv->led_ofdm_on = IPW_OFDM_LED;
988 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500989
990 switch (priv->nic_type) {
991 case EEPROM_NIC_TYPE_1:
992 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -0500993 priv->led_activity_on = IPW_ASSOCIATED_LED;
994 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
995 priv->led_association_on = IPW_ACTIVITY_LED;
996 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500997
998 if (!(priv->config & CFG_NO_LED))
999 ipw_led_band_on(priv);
1000
1001 /* And we don't blink link LEDs for this nic, so
1002 * just return here */
1003 return;
1004
1005 case EEPROM_NIC_TYPE_3:
1006 case EEPROM_NIC_TYPE_2:
1007 case EEPROM_NIC_TYPE_4:
1008 case EEPROM_NIC_TYPE_0:
1009 break;
1010
1011 default:
1012 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1013 priv->nic_type);
1014 priv->nic_type = EEPROM_NIC_TYPE_0;
1015 break;
1016 }
1017
1018 if (!(priv->config & CFG_NO_LED)) {
1019 if (priv->status & STATUS_ASSOCIATED)
1020 ipw_led_link_on(priv);
1021 else
1022 ipw_led_link_off(priv);
1023 }
1024}
1025
1026void ipw_led_shutdown(struct ipw_priv *priv)
1027{
James Ketrenosa613bff2005-08-24 21:43:11 -05001028 ipw_led_activity_off(priv);
1029 ipw_led_link_off(priv);
1030 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001031 cancel_delayed_work(&priv->led_link_on);
1032 cancel_delayed_work(&priv->led_link_off);
1033 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001034}
1035
James Ketrenos43f66a62005-03-25 12:31:53 -06001036/*
1037 * The following adds a new attribute to the sysfs representation
1038 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1039 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001040 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001041 * See the level definitions in ipw for details.
1042 */
1043static ssize_t show_debug_level(struct device_driver *d, char *buf)
1044{
1045 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1046}
James Ketrenosa613bff2005-08-24 21:43:11 -05001047
1048static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1049 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001050{
1051 char *p = (char *)buf;
1052 u32 val;
1053
1054 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1055 p++;
1056 if (p[0] == 'x' || p[0] == 'X')
1057 p++;
1058 val = simple_strtoul(p, &p, 16);
1059 } else
1060 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001061 if (p == buf)
1062 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001063 ": %s is not in hex or decimal form.\n", buf);
1064 else
1065 ipw_debug_level = val;
1066
1067 return strnlen(buf, count);
1068}
1069
Jeff Garzikbf794512005-07-31 13:07:26 -04001070static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001071 show_debug_level, store_debug_level);
1072
James Ketrenosb39860c2005-08-12 09:36:32 -05001073static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1074{
1075 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1076}
1077
1078static void ipw_capture_event_log(struct ipw_priv *priv,
1079 u32 log_len, struct ipw_event *log)
1080{
1081 u32 base;
1082
1083 if (log_len) {
1084 base = ipw_read32(priv, IPW_EVENT_LOG);
1085 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1086 (u8 *) log, sizeof(*log) * log_len);
1087 }
1088}
1089
1090static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1091{
1092 struct ipw_fw_error *error;
1093 u32 log_len = ipw_get_event_log_len(priv);
1094 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1095 u32 elem_len = ipw_read_reg32(priv, base);
1096
1097 error = kmalloc(sizeof(*error) +
1098 sizeof(*error->elem) * elem_len +
1099 sizeof(*error->log) * log_len, GFP_ATOMIC);
1100 if (!error) {
1101 IPW_ERROR("Memory allocation for firmware error log "
1102 "failed.\n");
1103 return NULL;
1104 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001105 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001106 error->status = priv->status;
1107 error->config = priv->config;
1108 error->elem_len = elem_len;
1109 error->log_len = log_len;
1110 error->elem = (struct ipw_error_elem *)error->payload;
1111 error->log = (struct ipw_event *)(error->elem +
1112 (sizeof(*error->elem) * elem_len));
1113
1114 ipw_capture_event_log(priv, log_len, error->log);
1115
1116 if (elem_len)
1117 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1118 sizeof(*error->elem) * elem_len);
1119
1120 return error;
1121}
1122
1123static void ipw_free_error_log(struct ipw_fw_error *error)
1124{
1125 if (error)
1126 kfree(error);
1127}
1128
1129static ssize_t show_event_log(struct device *d,
1130 struct device_attribute *attr, char *buf)
1131{
1132 struct ipw_priv *priv = dev_get_drvdata(d);
1133 u32 log_len = ipw_get_event_log_len(priv);
1134 struct ipw_event log[log_len];
1135 u32 len = 0, i;
1136
1137 ipw_capture_event_log(priv, log_len, log);
1138
1139 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1140 for (i = 0; i < log_len; i++)
1141 len += snprintf(buf + len, PAGE_SIZE - len,
1142 "\n%08X%08X%08X",
1143 log[i].time, log[i].event, log[i].data);
1144 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1145 return len;
1146}
1147
1148static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1149
1150static ssize_t show_error(struct device *d,
1151 struct device_attribute *attr, char *buf)
1152{
1153 struct ipw_priv *priv = dev_get_drvdata(d);
1154 u32 len = 0, i;
1155 if (!priv->error)
1156 return 0;
1157 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001158 "%08lX%08X%08X%08X",
1159 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001160 priv->error->status,
1161 priv->error->config, priv->error->elem_len);
1162 for (i = 0; i < priv->error->elem_len; i++)
1163 len += snprintf(buf + len, PAGE_SIZE - len,
1164 "\n%08X%08X%08X%08X%08X%08X%08X",
1165 priv->error->elem[i].time,
1166 priv->error->elem[i].desc,
1167 priv->error->elem[i].blink1,
1168 priv->error->elem[i].blink2,
1169 priv->error->elem[i].link1,
1170 priv->error->elem[i].link2,
1171 priv->error->elem[i].data);
1172
1173 len += snprintf(buf + len, PAGE_SIZE - len,
1174 "\n%08X", priv->error->log_len);
1175 for (i = 0; i < priv->error->log_len; i++)
1176 len += snprintf(buf + len, PAGE_SIZE - len,
1177 "\n%08X%08X%08X",
1178 priv->error->log[i].time,
1179 priv->error->log[i].event,
1180 priv->error->log[i].data);
1181 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1182 return len;
1183}
1184
1185static ssize_t clear_error(struct device *d,
1186 struct device_attribute *attr,
1187 const char *buf, size_t count)
1188{
1189 struct ipw_priv *priv = dev_get_drvdata(d);
1190 if (priv->error) {
1191 ipw_free_error_log(priv->error);
1192 priv->error = NULL;
1193 }
1194 return count;
1195}
1196
1197static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1198
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001199static ssize_t show_cmd_log(struct device *d,
1200 struct device_attribute *attr, char *buf)
1201{
1202 struct ipw_priv *priv = dev_get_drvdata(d);
1203 u32 len = 0, i;
1204 if (!priv->cmdlog)
1205 return 0;
1206 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1207 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1208 i = (i + 1) % priv->cmdlog_len) {
1209 len +=
1210 snprintf(buf + len, PAGE_SIZE - len,
1211 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1212 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1213 priv->cmdlog[i].cmd.len);
1214 len +=
1215 snprintk_buf(buf + len, PAGE_SIZE - len,
1216 (u8 *) priv->cmdlog[i].cmd.param,
1217 priv->cmdlog[i].cmd.len);
1218 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1219 }
1220 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1221 return len;
1222}
1223
1224static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1225
James Ketrenosa613bff2005-08-24 21:43:11 -05001226static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1227 char *buf)
1228{
1229 struct ipw_priv *priv = dev_get_drvdata(d);
1230 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1231}
1232
1233static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1234 const char *buf, size_t count)
1235{
1236 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001237#ifdef CONFIG_IPW_DEBUG
James Ketrenosa613bff2005-08-24 21:43:11 -05001238 struct net_device *dev = priv->net_dev;
James Ketrenosc848d0a2005-08-24 21:56:24 -05001239#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05001240 char buffer[] = "00000000";
1241 unsigned long len =
1242 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1243 unsigned long val;
1244 char *p = buffer;
1245
1246 IPW_DEBUG_INFO("enter\n");
1247
1248 strncpy(buffer, buf, len);
1249 buffer[len] = 0;
1250
1251 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1252 p++;
1253 if (p[0] == 'x' || p[0] == 'X')
1254 p++;
1255 val = simple_strtoul(p, &p, 16);
1256 } else
1257 val = simple_strtoul(p, &p, 10);
1258 if (p == buffer) {
1259 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1260 } else {
1261 priv->ieee->scan_age = val;
1262 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1263 }
1264
1265 IPW_DEBUG_INFO("exit\n");
1266 return len;
1267}
1268
1269static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1270
1271static ssize_t show_led(struct device *d, struct device_attribute *attr,
1272 char *buf)
1273{
1274 struct ipw_priv *priv = dev_get_drvdata(d);
1275 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1276}
1277
1278static ssize_t store_led(struct device *d, struct device_attribute *attr,
1279 const char *buf, size_t count)
1280{
1281 struct ipw_priv *priv = dev_get_drvdata(d);
1282
1283 IPW_DEBUG_INFO("enter\n");
1284
1285 if (count == 0)
1286 return 0;
1287
1288 if (*buf == 0) {
1289 IPW_DEBUG_LED("Disabling LED control.\n");
1290 priv->config |= CFG_NO_LED;
1291 ipw_led_shutdown(priv);
1292 } else {
1293 IPW_DEBUG_LED("Enabling LED control.\n");
1294 priv->config &= ~CFG_NO_LED;
1295 ipw_led_init(priv);
1296 }
1297
1298 IPW_DEBUG_INFO("exit\n");
1299 return count;
1300}
1301
1302static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1303
Andrew Mortonad3fee52005-06-20 14:30:36 -07001304static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001305 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001306{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001307 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001308 return sprintf(buf, "0x%08x\n", (int)p->status);
1309}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001310
James Ketrenos43f66a62005-03-25 12:31:53 -06001311static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1312
Andrew Mortonad3fee52005-06-20 14:30:36 -07001313static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1314 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001315{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001316 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001317 return sprintf(buf, "0x%08x\n", (int)p->config);
1318}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001319
James Ketrenos43f66a62005-03-25 12:31:53 -06001320static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1321
Andrew Mortonad3fee52005-06-20 14:30:36 -07001322static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001323 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001324{
James Ketrenosa613bff2005-08-24 21:43:11 -05001325 struct ipw_priv *priv = d->driver_data;
1326 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001327}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001328
James Ketrenos43f66a62005-03-25 12:31:53 -06001329static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1330
Andrew Mortonad3fee52005-06-20 14:30:36 -07001331static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001332 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001333{
1334 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001335 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001336
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001337 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001338 return 0;
1339
1340 return sprintf(buf, "0x%08x\n", tmp);
1341}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001342
1343static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001344
Andrew Mortonad3fee52005-06-20 14:30:36 -07001345static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1346 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001347{
1348 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001349 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001350
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001351 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001352 return 0;
1353
1354 return sprintf(buf, "0x%08x\n", tmp);
1355}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001356
1357static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001358
1359/*
1360 * Add a device attribute to view/control the delay between eeprom
1361 * operations.
1362 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001363static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001364 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001365{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001366 int n = ((struct ipw_priv *)d->driver_data)->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001367 return sprintf(buf, "%i\n", n);
1368}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001369static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001370 struct device_attribute *attr,
1371 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001372{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001373 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001374 sscanf(buf, "%i", &p->eeprom_delay);
1375 return strnlen(buf, count);
1376}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001377
1378static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1379 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001380
Andrew Mortonad3fee52005-06-20 14:30:36 -07001381static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001382 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001383{
1384 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001385 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001386
James Ketrenosb095c382005-08-24 22:04:42 -05001387 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001388 return sprintf(buf, "0x%08x\n", reg);
1389}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001390static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001391 struct device_attribute *attr,
1392 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001393{
1394 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001395 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001396
1397 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001398 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001399 return strnlen(buf, count);
1400}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001401
1402static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1403 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001404
Andrew Mortonad3fee52005-06-20 14:30:36 -07001405static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001406 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001407{
1408 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001409 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001410
1411 reg = ipw_read_reg32(p, 0x301100);
1412 return sprintf(buf, "0x%08x\n", reg);
1413}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001414static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001415 struct device_attribute *attr,
1416 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001417{
1418 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001419 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001420
1421 sscanf(buf, "%x", &reg);
1422 ipw_write_reg32(p, 0x301100, reg);
1423 return strnlen(buf, count);
1424}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001425
1426static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1427 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001428
Andrew Mortonad3fee52005-06-20 14:30:36 -07001429static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001430 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001431{
1432 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001433 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001434
Jeff Garzikbf794512005-07-31 13:07:26 -04001435 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001436 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001437 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001438 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001439
James Ketrenos43f66a62005-03-25 12:31:53 -06001440 return sprintf(buf, "0x%08x\n", reg);
1441}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001442static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001443 struct device_attribute *attr,
1444 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001445{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001446 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001447
1448 sscanf(buf, "%x", &priv->indirect_dword);
1449 priv->status |= STATUS_INDIRECT_DWORD;
1450 return strnlen(buf, count);
1451}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001452
1453static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1454 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001455
Andrew Mortonad3fee52005-06-20 14:30:36 -07001456static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001457 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001458{
1459 u8 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001460 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001461
Jeff Garzikbf794512005-07-31 13:07:26 -04001462 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001463 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001464 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001465 reg = 0;
1466
1467 return sprintf(buf, "0x%02x\n", reg);
1468}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001469static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001470 struct device_attribute *attr,
1471 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001472{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001473 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001474
1475 sscanf(buf, "%x", &priv->indirect_byte);
1476 priv->status |= STATUS_INDIRECT_BYTE;
1477 return strnlen(buf, count);
1478}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001479
1480static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001481 show_indirect_byte, store_indirect_byte);
1482
Andrew Mortonad3fee52005-06-20 14:30:36 -07001483static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001484 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001485{
1486 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001487 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001488
Jeff Garzikbf794512005-07-31 13:07:26 -04001489 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001490 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001491 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001492 reg = 0;
1493
1494 return sprintf(buf, "0x%08x\n", reg);
1495}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001496static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001497 struct device_attribute *attr,
1498 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001499{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001500 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001501
1502 sscanf(buf, "%x", &priv->direct_dword);
1503 priv->status |= STATUS_DIRECT_DWORD;
1504 return strnlen(buf, count);
1505}
James Ketrenos43f66a62005-03-25 12:31:53 -06001506
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001507static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1508 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001509
1510static inline int rf_kill_active(struct ipw_priv *priv)
1511{
1512 if (0 == (ipw_read32(priv, 0x30) & 0x10000))
1513 priv->status |= STATUS_RF_KILL_HW;
1514 else
1515 priv->status &= ~STATUS_RF_KILL_HW;
1516
1517 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1518}
1519
Andrew Mortonad3fee52005-06-20 14:30:36 -07001520static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001521 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001522{
1523 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001524 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001525 2 - HW based RF kill active
1526 3 - Both HW and SW baed RF kill active */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001527 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001528 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001529 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001530 return sprintf(buf, "%i\n", val);
1531}
1532
1533static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1534{
Jeff Garzikbf794512005-07-31 13:07:26 -04001535 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001536 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001537 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001538
1539 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1540 disable_radio ? "OFF" : "ON");
1541
1542 if (disable_radio) {
1543 priv->status |= STATUS_RF_KILL_SW;
1544
James Ketrenosa613bff2005-08-24 21:43:11 -05001545 if (priv->workqueue)
James Ketrenos43f66a62005-03-25 12:31:53 -06001546 cancel_delayed_work(&priv->request_scan);
James Ketrenos43f66a62005-03-25 12:31:53 -06001547 queue_work(priv->workqueue, &priv->down);
1548 } else {
1549 priv->status &= ~STATUS_RF_KILL_SW;
1550 if (rf_kill_active(priv)) {
1551 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1552 "disabled by HW switch\n");
1553 /* Make sure the RF_KILL check timer is running */
1554 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001555 queue_delayed_work(priv->workqueue, &priv->rf_kill,
James Ketrenos43f66a62005-03-25 12:31:53 -06001556 2 * HZ);
Jeff Garzikbf794512005-07-31 13:07:26 -04001557 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001558 queue_work(priv->workqueue, &priv->up);
1559 }
1560
1561 return 1;
1562}
1563
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001564static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1565 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001566{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001567 struct ipw_priv *priv = d->driver_data;
Jeff Garzikbf794512005-07-31 13:07:26 -04001568
James Ketrenos43f66a62005-03-25 12:31:53 -06001569 ipw_radio_kill_sw(priv, buf[0] == '1');
1570
1571 return count;
1572}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001573
1574static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001575
James Ketrenosb095c382005-08-24 22:04:42 -05001576static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1577 char *buf)
1578{
1579 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1580 int pos = 0, len = 0;
1581 if (priv->config & CFG_SPEED_SCAN) {
1582 while (priv->speed_scan[pos] != 0)
1583 len += sprintf(&buf[len], "%d ",
1584 priv->speed_scan[pos++]);
1585 return len + sprintf(&buf[len], "\n");
1586 }
1587
1588 return sprintf(buf, "0\n");
1589}
1590
1591static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1592 const char *buf, size_t count)
1593{
1594 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1595 int channel, pos = 0;
1596 const char *p = buf;
1597
1598 /* list of space separated channels to scan, optionally ending with 0 */
1599 while ((channel = simple_strtol(p, NULL, 0))) {
1600 if (pos == MAX_SPEED_SCAN - 1) {
1601 priv->speed_scan[pos] = 0;
1602 break;
1603 }
1604
Liu Hong1fe0adb2005-08-19 09:33:10 -05001605 if (ipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001606 priv->speed_scan[pos++] = channel;
1607 else
1608 IPW_WARNING("Skipping invalid channel request: %d\n",
1609 channel);
1610 p = strchr(p, ' ');
1611 if (!p)
1612 break;
1613 while (*p == ' ' || *p == '\t')
1614 p++;
1615 }
1616
1617 if (pos == 0)
1618 priv->config &= ~CFG_SPEED_SCAN;
1619 else {
1620 priv->speed_scan_pos = 0;
1621 priv->config |= CFG_SPEED_SCAN;
1622 }
1623
1624 return count;
1625}
1626
1627static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1628 store_speed_scan);
1629
1630static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1631 char *buf)
1632{
1633 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1634 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1635}
1636
1637static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1638 const char *buf, size_t count)
1639{
1640 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1641 if (buf[0] == '1')
1642 priv->config |= CFG_NET_STATS;
1643 else
1644 priv->config &= ~CFG_NET_STATS;
1645
1646 return count;
1647}
1648
James Ketrenosafbf30a2005-08-25 00:05:33 -05001649static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1650 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001651
James Ketrenosea2b26e2005-08-24 21:25:16 -05001652static void notify_wx_assoc_event(struct ipw_priv *priv)
1653{
1654 union iwreq_data wrqu;
1655 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1656 if (priv->status & STATUS_ASSOCIATED)
1657 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1658 else
1659 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1660 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1661}
1662
James Ketrenos43f66a62005-03-25 12:31:53 -06001663static void ipw_irq_tasklet(struct ipw_priv *priv)
1664{
1665 u32 inta, inta_mask, handled = 0;
1666 unsigned long flags;
1667 int rc = 0;
1668
1669 spin_lock_irqsave(&priv->lock, flags);
1670
James Ketrenosb095c382005-08-24 22:04:42 -05001671 inta = ipw_read32(priv, IPW_INTA_RW);
1672 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1673 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001674
1675 /* Add any cached INTA values that need to be handled */
1676 inta |= priv->isr_inta;
1677
1678 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001679 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001680 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001681 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001682 }
1683
James Ketrenosb095c382005-08-24 22:04:42 -05001684 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001685 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001686 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001687 priv->status &= ~STATUS_HCMD_ACTIVE;
1688 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001689 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001690 }
1691
James Ketrenosb095c382005-08-24 22:04:42 -05001692 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001693 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001694 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05001695 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06001696 }
1697
James Ketrenosb095c382005-08-24 22:04:42 -05001698 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001699 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001700 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05001701 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06001702 }
1703
James Ketrenosb095c382005-08-24 22:04:42 -05001704 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001705 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001706 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05001707 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06001708 }
1709
James Ketrenosb095c382005-08-24 22:04:42 -05001710 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001711 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001712 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05001713 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06001714 }
1715
James Ketrenosb095c382005-08-24 22:04:42 -05001716 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001717 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001718 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001719 }
1720
James Ketrenosb095c382005-08-24 22:04:42 -05001721 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001722 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001723 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06001724 }
1725
James Ketrenosb095c382005-08-24 22:04:42 -05001726 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001727 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001728 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001729 }
1730
James Ketrenosb095c382005-08-24 22:04:42 -05001731 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001732 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001733 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001734 }
1735
James Ketrenosb095c382005-08-24 22:04:42 -05001736 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001737 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001738 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001739 }
1740
James Ketrenosb095c382005-08-24 22:04:42 -05001741 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001742 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
1743 priv->status |= STATUS_RF_KILL_HW;
1744 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001745 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06001746 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05001747 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001748 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05001749 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001750 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001751
James Ketrenosb095c382005-08-24 22:04:42 -05001752 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001753 IPW_ERROR("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05001754 if (priv->error) {
1755 IPW_ERROR("Sysfs 'error' log already exists.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06001756#ifdef CONFIG_IPW_DEBUG
James Ketrenosb39860c2005-08-12 09:36:32 -05001757 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
1758 struct ipw_fw_error *error =
1759 ipw_alloc_error_log(priv);
1760 ipw_dump_error_log(priv, error);
1761 if (error)
1762 ipw_free_error_log(error);
1763 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001764#endif
James Ketrenosb39860c2005-08-12 09:36:32 -05001765 } else {
1766 priv->error = ipw_alloc_error_log(priv);
1767 if (priv->error)
1768 IPW_ERROR("Sysfs 'error' log captured.\n");
1769 else
1770 IPW_ERROR("Error allocating sysfs 'error' "
1771 "log.\n");
1772#ifdef CONFIG_IPW_DEBUG
1773 if (ipw_debug_level & IPW_DL_FW_ERRORS)
1774 ipw_dump_error_log(priv, priv->error);
1775#endif
1776 }
1777
James Ketrenosb095c382005-08-24 22:04:42 -05001778 /* XXX: If hardware encryption is for WPA/WPA2,
1779 * we have to notify the supplicant. */
1780 if (priv->ieee->sec.encrypt) {
1781 priv->status &= ~STATUS_ASSOCIATED;
1782 notify_wx_assoc_event(priv);
1783 }
1784
1785 /* Keep the restart process from trying to send host
1786 * commands by clearing the INIT status bit */
1787 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001788
1789 /* Cancel currently queued command. */
1790 priv->status &= ~STATUS_HCMD_ACTIVE;
1791 wake_up_interruptible(&priv->wait_command_queue);
1792
James Ketrenos43f66a62005-03-25 12:31:53 -06001793 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05001794 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001795 }
1796
James Ketrenosb095c382005-08-24 22:04:42 -05001797 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001798 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001799 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001800 }
1801
1802 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001803 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06001804 }
1805
1806 /* enable all interrupts */
1807 ipw_enable_interrupts(priv);
1808
1809 spin_unlock_irqrestore(&priv->lock, flags);
1810}
Jeff Garzikbf794512005-07-31 13:07:26 -04001811
James Ketrenos43f66a62005-03-25 12:31:53 -06001812#ifdef CONFIG_IPW_DEBUG
1813#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
1814static char *get_cmd_string(u8 cmd)
1815{
1816 switch (cmd) {
1817 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04001818 IPW_CMD(POWER_DOWN);
1819 IPW_CMD(SYSTEM_CONFIG);
1820 IPW_CMD(MULTICAST_ADDRESS);
1821 IPW_CMD(SSID);
1822 IPW_CMD(ADAPTER_ADDRESS);
1823 IPW_CMD(PORT_TYPE);
1824 IPW_CMD(RTS_THRESHOLD);
1825 IPW_CMD(FRAG_THRESHOLD);
1826 IPW_CMD(POWER_MODE);
1827 IPW_CMD(WEP_KEY);
1828 IPW_CMD(TGI_TX_KEY);
1829 IPW_CMD(SCAN_REQUEST);
1830 IPW_CMD(SCAN_REQUEST_EXT);
1831 IPW_CMD(ASSOCIATE);
1832 IPW_CMD(SUPPORTED_RATES);
1833 IPW_CMD(SCAN_ABORT);
1834 IPW_CMD(TX_FLUSH);
1835 IPW_CMD(QOS_PARAMETERS);
1836 IPW_CMD(DINO_CONFIG);
1837 IPW_CMD(RSN_CAPABILITIES);
1838 IPW_CMD(RX_KEY);
1839 IPW_CMD(CARD_DISABLE);
1840 IPW_CMD(SEED_NUMBER);
1841 IPW_CMD(TX_POWER);
1842 IPW_CMD(COUNTRY_INFO);
1843 IPW_CMD(AIRONET_INFO);
1844 IPW_CMD(AP_TX_POWER);
1845 IPW_CMD(CCKM_INFO);
1846 IPW_CMD(CCX_VER_INFO);
1847 IPW_CMD(SET_CALIBRATION);
1848 IPW_CMD(SENSITIVITY_CALIB);
1849 IPW_CMD(RETRY_LIMIT);
1850 IPW_CMD(IPW_PRE_POWER_DOWN);
1851 IPW_CMD(VAP_BEACON_TEMPLATE);
1852 IPW_CMD(VAP_DTIM_PERIOD);
1853 IPW_CMD(EXT_SUPPORTED_RATES);
1854 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
1855 IPW_CMD(VAP_QUIET_INTERVALS);
1856 IPW_CMD(VAP_CHANNEL_SWITCH);
1857 IPW_CMD(VAP_MANDATORY_CHANNELS);
1858 IPW_CMD(VAP_CELL_PWR_LIMIT);
1859 IPW_CMD(VAP_CF_PARAM_SET);
1860 IPW_CMD(VAP_SET_BEACONING_STATE);
1861 IPW_CMD(MEASUREMENT);
1862 IPW_CMD(POWER_CAPABILITY);
1863 IPW_CMD(SUPPORTED_CHANNELS);
1864 IPW_CMD(TPC_REPORT);
1865 IPW_CMD(WME_INFO);
1866 IPW_CMD(PRODUCTION_COMMAND);
1867 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06001868 return "UNKNOWN";
1869 }
1870}
James Ketrenosea2b26e2005-08-24 21:25:16 -05001871#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06001872
1873#define HOST_COMPLETE_TIMEOUT HZ
1874static int ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
1875{
1876 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001877 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06001878
James Ketrenosa613bff2005-08-24 21:43:11 -05001879 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001880 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001881 IPW_ERROR("Failed to send %s: Already sending a command.\n",
1882 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001883 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001884 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06001885 }
1886
1887 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001888
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001889 if (priv->cmdlog) {
1890 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
1891 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
1892 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
1893 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
1894 cmd->len);
1895 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
1896 }
1897
James Ketrenosb095c382005-08-24 22:04:42 -05001898 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1899 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1900 priv->status);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001901 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001902
1903 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, &cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001904 if (rc) {
1905 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001906 IPW_ERROR("Failed to send %s: Reason %d\n",
1907 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05001908 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001909 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001910 }
1911 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001912
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001913 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1914 !(priv->
1915 status & STATUS_HCMD_ACTIVE),
1916 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001917 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001918 spin_lock_irqsave(&priv->lock, flags);
1919 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001920 IPW_ERROR("Failed to send %s: Command timed out.\n",
1921 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001922 priv->status &= ~STATUS_HCMD_ACTIVE;
1923 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001924 rc = -EIO;
1925 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001926 }
1927 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05001928 } else
1929 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001930
James Ketrenosb095c382005-08-24 22:04:42 -05001931 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001932 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
1933 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001934 rc = -EIO;
1935 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06001936 }
1937
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001938 exit:
1939 if (priv->cmdlog) {
1940 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
1941 priv->cmdlog_pos %= priv->cmdlog_len;
1942 }
1943 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06001944}
1945
1946static int ipw_send_host_complete(struct ipw_priv *priv)
1947{
1948 struct host_cmd cmd = {
1949 .cmd = IPW_CMD_HOST_COMPLETE,
1950 .len = 0
1951 };
1952
1953 if (!priv) {
1954 IPW_ERROR("Invalid args\n");
1955 return -1;
1956 }
1957
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001958 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001959}
1960
Jeff Garzikbf794512005-07-31 13:07:26 -04001961static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06001962 struct ipw_sys_config *config)
1963{
1964 struct host_cmd cmd = {
1965 .cmd = IPW_CMD_SYSTEM_CONFIG,
1966 .len = sizeof(*config)
1967 };
1968
1969 if (!priv || !config) {
1970 IPW_ERROR("Invalid args\n");
1971 return -1;
1972 }
1973
James Ketrenosafbf30a2005-08-25 00:05:33 -05001974 memcpy(cmd.param, config, sizeof(*config));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001975 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001976}
1977
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001978static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06001979{
1980 struct host_cmd cmd = {
1981 .cmd = IPW_CMD_SSID,
1982 .len = min(len, IW_ESSID_MAX_SIZE)
1983 };
1984
1985 if (!priv || !ssid) {
1986 IPW_ERROR("Invalid args\n");
1987 return -1;
1988 }
1989
James Ketrenosafbf30a2005-08-25 00:05:33 -05001990 memcpy(cmd.param, ssid, cmd.len);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001991 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001992}
1993
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001994static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06001995{
1996 struct host_cmd cmd = {
1997 .cmd = IPW_CMD_ADAPTER_ADDRESS,
1998 .len = ETH_ALEN
1999 };
2000
2001 if (!priv || !mac) {
2002 IPW_ERROR("Invalid args\n");
2003 return -1;
2004 }
2005
2006 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
2007 priv->net_dev->name, MAC_ARG(mac));
2008
James Ketrenosafbf30a2005-08-25 00:05:33 -05002009 memcpy(cmd.param, mac, ETH_ALEN);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002010 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002011}
2012
James Ketrenosa613bff2005-08-24 21:43:11 -05002013/*
2014 * NOTE: This must be executed from our workqueue as it results in udelay
2015 * being called which may corrupt the keyboard if executed on default
2016 * workqueue
2017 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002018static void ipw_adapter_restart(void *adapter)
2019{
2020 struct ipw_priv *priv = adapter;
2021
2022 if (priv->status & STATUS_RF_KILL_MASK)
2023 return;
2024
2025 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002026
2027 if (priv->assoc_network &&
2028 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2029 ipw_remove_current_network(priv);
2030
James Ketrenos43f66a62005-03-25 12:31:53 -06002031 if (ipw_up(priv)) {
2032 IPW_ERROR("Failed to up device\n");
2033 return;
2034 }
2035}
2036
James Ketrenosc848d0a2005-08-24 21:56:24 -05002037static void ipw_bg_adapter_restart(void *data)
2038{
2039 struct ipw_priv *priv = data;
2040 down(&priv->sem);
2041 ipw_adapter_restart(data);
2042 up(&priv->sem);
2043}
2044
James Ketrenos43f66a62005-03-25 12:31:53 -06002045#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2046
2047static void ipw_scan_check(void *data)
2048{
2049 struct ipw_priv *priv = data;
2050 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2051 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Jeff Garzikbf794512005-07-31 13:07:26 -04002052 "adapter (%dms).\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002053 IPW_SCAN_CHECK_WATCHDOG / 100);
James Ketrenosa613bff2005-08-24 21:43:11 -05002054 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002055 }
2056}
2057
James Ketrenosc848d0a2005-08-24 21:56:24 -05002058static void ipw_bg_scan_check(void *data)
2059{
2060 struct ipw_priv *priv = data;
2061 down(&priv->sem);
2062 ipw_scan_check(data);
2063 up(&priv->sem);
2064}
2065
James Ketrenos43f66a62005-03-25 12:31:53 -06002066static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2067 struct ipw_scan_request_ext *request)
2068{
2069 struct host_cmd cmd = {
2070 .cmd = IPW_CMD_SCAN_REQUEST_EXT,
2071 .len = sizeof(*request)
2072 };
2073
James Ketrenosafbf30a2005-08-25 00:05:33 -05002074 memcpy(cmd.param, request, sizeof(*request));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002075 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002076}
2077
2078static int ipw_send_scan_abort(struct ipw_priv *priv)
2079{
2080 struct host_cmd cmd = {
2081 .cmd = IPW_CMD_SCAN_ABORT,
2082 .len = 0
2083 };
2084
2085 if (!priv) {
2086 IPW_ERROR("Invalid args\n");
2087 return -1;
2088 }
2089
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002090 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002091}
2092
2093static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2094{
2095 struct host_cmd cmd = {
2096 .cmd = IPW_CMD_SENSITIVITY_CALIB,
2097 .len = sizeof(struct ipw_sensitivity_calib)
2098 };
2099 struct ipw_sensitivity_calib *calib = (struct ipw_sensitivity_calib *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002100 &cmd.param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002101 calib->beacon_rssi_raw = sens;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002102 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002103}
2104
2105static int ipw_send_associate(struct ipw_priv *priv,
2106 struct ipw_associate *associate)
2107{
2108 struct host_cmd cmd = {
2109 .cmd = IPW_CMD_ASSOCIATE,
2110 .len = sizeof(*associate)
2111 };
2112
James Ketrenosa613bff2005-08-24 21:43:11 -05002113 struct ipw_associate tmp_associate;
2114 memcpy(&tmp_associate, associate, sizeof(*associate));
2115 tmp_associate.policy_support =
2116 cpu_to_le16(tmp_associate.policy_support);
2117 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
2118 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
2119 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
2120 tmp_associate.listen_interval =
2121 cpu_to_le16(tmp_associate.listen_interval);
2122 tmp_associate.beacon_interval =
2123 cpu_to_le16(tmp_associate.beacon_interval);
2124 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
2125
James Ketrenos43f66a62005-03-25 12:31:53 -06002126 if (!priv || !associate) {
2127 IPW_ERROR("Invalid args\n");
2128 return -1;
2129 }
2130
James Ketrenosafbf30a2005-08-25 00:05:33 -05002131 memcpy(cmd.param, &tmp_associate, sizeof(*associate));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002132 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002133}
2134
2135static int ipw_send_supported_rates(struct ipw_priv *priv,
2136 struct ipw_supported_rates *rates)
2137{
2138 struct host_cmd cmd = {
2139 .cmd = IPW_CMD_SUPPORTED_RATES,
2140 .len = sizeof(*rates)
2141 };
2142
2143 if (!priv || !rates) {
2144 IPW_ERROR("Invalid args\n");
2145 return -1;
2146 }
2147
James Ketrenosafbf30a2005-08-25 00:05:33 -05002148 memcpy(cmd.param, rates, sizeof(*rates));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002149 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002150}
2151
2152static int ipw_set_random_seed(struct ipw_priv *priv)
2153{
2154 struct host_cmd cmd = {
2155 .cmd = IPW_CMD_SEED_NUMBER,
2156 .len = sizeof(u32)
2157 };
2158
2159 if (!priv) {
2160 IPW_ERROR("Invalid args\n");
2161 return -1;
2162 }
2163
2164 get_random_bytes(&cmd.param, sizeof(u32));
2165
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002166 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002167}
2168
James Ketrenos43f66a62005-03-25 12:31:53 -06002169static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2170{
2171 struct host_cmd cmd = {
2172 .cmd = IPW_CMD_CARD_DISABLE,
2173 .len = sizeof(u32)
2174 };
2175
2176 if (!priv) {
2177 IPW_ERROR("Invalid args\n");
2178 return -1;
2179 }
2180
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002181 *((u32 *) & cmd.param) = phy_off;
James Ketrenos43f66a62005-03-25 12:31:53 -06002182
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002183 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002184}
James Ketrenos43f66a62005-03-25 12:31:53 -06002185
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002186static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002187{
2188 struct host_cmd cmd = {
2189 .cmd = IPW_CMD_TX_POWER,
2190 .len = sizeof(*power)
2191 };
2192
2193 if (!priv || !power) {
2194 IPW_ERROR("Invalid args\n");
2195 return -1;
2196 }
2197
James Ketrenosafbf30a2005-08-25 00:05:33 -05002198 memcpy(cmd.param, power, sizeof(*power));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002199 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002200}
2201
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002202static int ipw_set_tx_power(struct ipw_priv *priv)
2203{
Liu Hong1fe0adb2005-08-19 09:33:10 -05002204 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002205 struct ipw_tx_power tx_power;
2206 s8 max_power;
2207 int i;
2208
2209 memset(&tx_power, 0, sizeof(tx_power));
2210
2211 /* configure device for 'G' band */
2212 tx_power.ieee_mode = IPW_G_MODE;
2213 tx_power.num_channels = geo->bg_channels;
2214 for (i = 0; i < geo->bg_channels; i++) {
2215 max_power = geo->bg[i].max_power;
2216 tx_power.channels_tx_power[i].channel_number =
2217 geo->bg[i].channel;
2218 tx_power.channels_tx_power[i].tx_power = max_power ?
2219 min(max_power, priv->tx_power) : priv->tx_power;
2220 }
2221 if (ipw_send_tx_power(priv, &tx_power))
2222 return -EIO;
2223
2224 /* configure device to also handle 'B' band */
2225 tx_power.ieee_mode = IPW_B_MODE;
2226 if (ipw_send_tx_power(priv, &tx_power))
2227 return -EIO;
2228
2229 /* configure device to also handle 'A' band */
2230 if (priv->ieee->abg_true) {
2231 tx_power.ieee_mode = IPW_A_MODE;
2232 tx_power.num_channels = geo->a_channels;
2233 for (i = 0; i < tx_power.num_channels; i++) {
2234 max_power = geo->a[i].max_power;
2235 tx_power.channels_tx_power[i].channel_number =
2236 geo->a[i].channel;
2237 tx_power.channels_tx_power[i].tx_power = max_power ?
2238 min(max_power, priv->tx_power) : priv->tx_power;
2239 }
2240 if (ipw_send_tx_power(priv, &tx_power))
2241 return -EIO;
2242 }
2243 return 0;
2244}
2245
James Ketrenos43f66a62005-03-25 12:31:53 -06002246static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2247{
2248 struct ipw_rts_threshold rts_threshold = {
2249 .rts_threshold = rts,
2250 };
2251 struct host_cmd cmd = {
2252 .cmd = IPW_CMD_RTS_THRESHOLD,
2253 .len = sizeof(rts_threshold)
2254 };
2255
2256 if (!priv) {
2257 IPW_ERROR("Invalid args\n");
2258 return -1;
2259 }
2260
James Ketrenosafbf30a2005-08-25 00:05:33 -05002261 memcpy(cmd.param, &rts_threshold, sizeof(rts_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002262 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002263}
2264
2265static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2266{
2267 struct ipw_frag_threshold frag_threshold = {
2268 .frag_threshold = frag,
2269 };
2270 struct host_cmd cmd = {
2271 .cmd = IPW_CMD_FRAG_THRESHOLD,
2272 .len = sizeof(frag_threshold)
2273 };
2274
2275 if (!priv) {
2276 IPW_ERROR("Invalid args\n");
2277 return -1;
2278 }
2279
James Ketrenosafbf30a2005-08-25 00:05:33 -05002280 memcpy(cmd.param, &frag_threshold, sizeof(frag_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002281 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002282}
2283
2284static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2285{
2286 struct host_cmd cmd = {
2287 .cmd = IPW_CMD_POWER_MODE,
2288 .len = sizeof(u32)
2289 };
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002290 u32 *param = (u32 *) (&cmd.param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002291
2292 if (!priv) {
2293 IPW_ERROR("Invalid args\n");
2294 return -1;
2295 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002296
James Ketrenos43f66a62005-03-25 12:31:53 -06002297 /* If on battery, set to 3, if AC set to CAM, else user
2298 * level */
2299 switch (mode) {
2300 case IPW_POWER_BATTERY:
2301 *param = IPW_POWER_INDEX_3;
2302 break;
2303 case IPW_POWER_AC:
2304 *param = IPW_POWER_MODE_CAM;
2305 break;
2306 default:
2307 *param = mode;
2308 break;
2309 }
2310
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002311 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002312}
2313
James Ketrenosafbf30a2005-08-25 00:05:33 -05002314static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2315{
2316 struct ipw_retry_limit retry_limit = {
2317 .short_retry_limit = slimit,
2318 .long_retry_limit = llimit
2319 };
2320 struct host_cmd cmd = {
2321 .cmd = IPW_CMD_RETRY_LIMIT,
2322 .len = sizeof(retry_limit)
2323 };
2324
2325 if (!priv) {
2326 IPW_ERROR("Invalid args\n");
2327 return -1;
2328 }
2329
2330 memcpy(cmd.param, &retry_limit, sizeof(retry_limit));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002331 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05002332}
2333
James Ketrenos43f66a62005-03-25 12:31:53 -06002334/*
2335 * The IPW device contains a Microwire compatible EEPROM that stores
2336 * various data like the MAC address. Usually the firmware has exclusive
2337 * access to the eeprom, but during device initialization (before the
2338 * device driver has sent the HostComplete command to the firmware) the
2339 * device driver has read access to the EEPROM by way of indirect addressing
2340 * through a couple of memory mapped registers.
2341 *
2342 * The following is a simplified implementation for pulling data out of the
2343 * the eeprom, along with some helper functions to find information in
2344 * the per device private data's copy of the eeprom.
2345 *
2346 * NOTE: To better understand how these functions work (i.e what is a chip
2347 * select and why do have to keep driving the eeprom clock?), read
2348 * just about any data sheet for a Microwire compatible EEPROM.
2349 */
2350
2351/* write a 32 bit value into the indirect accessor register */
2352static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2353{
2354 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002355
James Ketrenos43f66a62005-03-25 12:31:53 -06002356 /* the eeprom requires some time to complete the operation */
2357 udelay(p->eeprom_delay);
2358
2359 return;
2360}
2361
2362/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002363static inline void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002364{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002365 eeprom_write_reg(priv, 0);
2366 eeprom_write_reg(priv, EEPROM_BIT_CS);
2367 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2368 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002369}
2370
2371/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002372static inline void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002373{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002374 eeprom_write_reg(priv, EEPROM_BIT_CS);
2375 eeprom_write_reg(priv, 0);
2376 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002377}
2378
2379/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002380static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002381{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002382 int d = (bit ? EEPROM_BIT_DI : 0);
2383 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2384 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002385}
2386
2387/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002388static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002389{
2390 int i;
2391
2392 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002393 eeprom_write_bit(priv, 1);
2394 eeprom_write_bit(priv, op & 2);
2395 eeprom_write_bit(priv, op & 1);
2396 for (i = 7; i >= 0; i--) {
2397 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002398 }
2399}
2400
2401/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002402static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002403{
2404 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002405 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002406
James Ketrenos43f66a62005-03-25 12:31:53 -06002407 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002408 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002409
2410 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002411 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002412
2413 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002414 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002415 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002416 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2417 eeprom_write_reg(priv, EEPROM_BIT_CS);
2418 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2419 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002420 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002421
James Ketrenos43f66a62005-03-25 12:31:53 -06002422 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002423 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002424 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002425
James Ketrenos43f66a62005-03-25 12:31:53 -06002426 return r;
2427}
2428
2429/* helper function for pulling the mac address out of the private */
2430/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002431static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002432{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002433 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002434}
2435
2436/*
2437 * Either the device driver (i.e. the host) or the firmware can
2438 * load eeprom data into the designated region in SRAM. If neither
2439 * happens then the FW will shutdown with a fatal error.
2440 *
2441 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2442 * bit needs region of shared SRAM needs to be non-zero.
2443 */
2444static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2445{
2446 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002447 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002448
James Ketrenos43f66a62005-03-25 12:31:53 -06002449 IPW_DEBUG_TRACE(">>\n");
2450
2451 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002452 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002453 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002454
Jeff Garzikbf794512005-07-31 13:07:26 -04002455 /*
2456 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002457 copy. Otherwise let the firmware know to perform the operation
2458 on it's own
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002459 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002460 if ((priv->eeprom + EEPROM_VERSION) != 0) {
2461 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2462
2463 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002464 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002465 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002466
2467 /* Do not load eeprom data on fatal error or suspend */
2468 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2469 } else {
2470 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2471
2472 /* Load eeprom data on fatal error or suspend */
2473 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2474 }
2475
2476 IPW_DEBUG_TRACE("<<\n");
2477}
2478
James Ketrenos43f66a62005-03-25 12:31:53 -06002479static inline void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
2480{
2481 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002482 if (!count)
2483 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002484 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002485 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002486 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002487}
2488
2489static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2490{
James Ketrenosb095c382005-08-24 22:04:42 -05002491 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002492 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002493 sizeof(struct command_block));
2494}
2495
2496static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002497{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002498
2499 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002500
James Ketrenos43f66a62005-03-25 12:31:53 -06002501 /* Start the dma */
2502 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002503
James Ketrenos43f66a62005-03-25 12:31:53 -06002504 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002505 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002506
2507 IPW_DEBUG_FW("<< : \n");
2508 return 0;
2509}
2510
2511static void ipw_fw_dma_abort(struct ipw_priv *priv)
2512{
2513 u32 control = 0;
2514
2515 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002516
2517 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002518 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002519 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002520 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002521
James Ketrenos43f66a62005-03-25 12:31:53 -06002522 IPW_DEBUG_FW("<< \n");
2523}
2524
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002525static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2526 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002527{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002528 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002529 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002530 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002531 IPW_DEBUG_FW(">> :\n");
2532
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002533 ipw_write_indirect(priv, address, (u8 *) cb,
2534 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002535
2536 IPW_DEBUG_FW("<< :\n");
2537 return 0;
2538
2539}
2540
2541static int ipw_fw_dma_kick(struct ipw_priv *priv)
2542{
2543 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002544 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002545
2546 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002547
James Ketrenos43f66a62005-03-25 12:31:53 -06002548 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002549 ipw_fw_dma_write_command_block(priv, index,
2550 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002551
2552 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002553 ipw_clear_bit(priv, IPW_RESET_REG,
2554 IPW_RESET_REG_MASTER_DISABLED |
2555 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002556
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002557 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002558 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002559 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002560
2561 IPW_DEBUG_FW("<< :\n");
2562 return 0;
2563}
2564
2565static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2566{
2567 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002568 u32 register_value = 0;
2569 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002570
2571 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002572 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002573 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002574
2575 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002576 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2577 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002578
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002579 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002580 cb_fields_address = address;
2581 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002582 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002583
2584 cb_fields_address += sizeof(u32);
2585 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002586 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002587
2588 cb_fields_address += sizeof(u32);
2589 register_value = ipw_read_reg32(priv, cb_fields_address);
2590 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2591 register_value);
2592
2593 cb_fields_address += sizeof(u32);
2594 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002595 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002596
2597 IPW_DEBUG_FW(">> :\n");
2598}
2599
2600static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2601{
2602 u32 current_cb_address = 0;
2603 u32 current_cb_index = 0;
2604
2605 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002606 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002607
James Ketrenosb095c382005-08-24 22:04:42 -05002608 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002609 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002610
James Ketrenos43f66a62005-03-25 12:31:53 -06002611 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002612 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002613
2614 IPW_DEBUG_FW(">> :\n");
2615 return current_cb_index;
2616
2617}
2618
2619static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2620 u32 src_address,
2621 u32 dest_address,
2622 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002623 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002624{
2625
Jeff Garzikbf794512005-07-31 13:07:26 -04002626 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002627 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2628 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002629 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002630 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002631
2632 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2633 src_address, dest_address, length);
2634
2635 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2636 return -1;
2637
2638 last_cb_element = priv->sram_desc.last_cb_index;
2639 cb = &priv->sram_desc.cb_list[last_cb_element];
2640 priv->sram_desc.last_cb_index++;
2641
2642 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002643 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002644 control |= CB_INT_ENABLED;
2645
2646 if (is_last)
2647 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002648
James Ketrenos43f66a62005-03-25 12:31:53 -06002649 control |= length;
2650
2651 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002652 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002653
2654 /* Copy the Source and Destination addresses */
2655 cb->dest_addr = dest_address;
2656 cb->source_addr = src_address;
2657
2658 /* Copy the Control Word last */
2659 cb->control = control;
2660
2661 return 0;
2662}
2663
2664static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002665 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002666{
2667 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002668 u32 src_offset = 0;
2669 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002670 int status = 0;
2671 IPW_DEBUG_FW(">> \n");
2672 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2673 src_phys, dest_address, length);
2674 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002675 status = ipw_fw_dma_add_command_block(priv,
2676 src_phys + src_offset,
2677 dest_address +
2678 dest_offset,
2679 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002680 if (status) {
2681 IPW_DEBUG_FW_INFO(": Failed\n");
2682 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002683 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002684 IPW_DEBUG_FW_INFO(": Added new cb\n");
2685
2686 src_offset += CB_MAX_LENGTH;
2687 dest_offset += CB_MAX_LENGTH;
2688 bytes_left -= CB_MAX_LENGTH;
2689 }
2690
2691 /* add the buffer tail */
2692 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002693 status =
2694 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2695 dest_address + dest_offset,
2696 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002697 if (status) {
2698 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2699 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002700 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002701 IPW_DEBUG_FW_INFO
2702 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002703 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002704
James Ketrenos43f66a62005-03-25 12:31:53 -06002705 IPW_DEBUG_FW("<< \n");
2706 return 0;
2707}
2708
2709static int ipw_fw_dma_wait(struct ipw_priv *priv)
2710{
2711 u32 current_index = 0;
2712 u32 watchdog = 0;
2713
2714 IPW_DEBUG_FW(">> : \n");
2715
2716 current_index = ipw_fw_dma_command_block_index(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002717 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%8X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002718 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002719
2720 while (current_index < priv->sram_desc.last_cb_index) {
2721 udelay(50);
2722 current_index = ipw_fw_dma_command_block_index(priv);
2723
2724 watchdog++;
2725
2726 if (watchdog > 400) {
2727 IPW_DEBUG_FW_INFO("Timeout\n");
2728 ipw_fw_dma_dump_command_block(priv);
2729 ipw_fw_dma_abort(priv);
2730 return -1;
2731 }
2732 }
2733
2734 ipw_fw_dma_abort(priv);
2735
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002736 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002737 ipw_set_bit(priv, IPW_RESET_REG,
2738 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002739
2740 IPW_DEBUG_FW("<< dmaWaitSync \n");
2741 return 0;
2742}
2743
Jeff Garzikbf794512005-07-31 13:07:26 -04002744static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002745{
2746 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002747 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002748 unsigned long flags;
2749
2750 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002751 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2752 network = list_entry(element, struct ieee80211_network, list);
2753 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2754 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002755 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002756 &priv->ieee->network_free_list);
2757 }
2758 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002759 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002760}
2761
2762/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002763 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002764 * Reads debug register from domain0.
2765 * If card is present, pre-defined value should
2766 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002767 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002768 * @param priv
2769 * @return 1 if card is present, 0 otherwise
2770 */
2771static inline int ipw_alive(struct ipw_priv *priv)
2772{
2773 return ipw_read32(priv, 0x90) == 0xd55555d5;
2774}
2775
2776static inline int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
2777 int timeout)
2778{
2779 int i = 0;
2780
2781 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002782 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002783 return i;
2784 mdelay(10);
2785 i += 10;
2786 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002787
James Ketrenos43f66a62005-03-25 12:31:53 -06002788 return -ETIME;
2789}
2790
Jeff Garzikbf794512005-07-31 13:07:26 -04002791/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002792 * the ipw hardware. It assumes the buffer has all the bits for the
2793 * image and the caller is handling the memory allocation and clean up.
2794 */
2795
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002796static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002797{
2798 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002799
James Ketrenos43f66a62005-03-25 12:31:53 -06002800 IPW_DEBUG_TRACE(">> \n");
2801 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002802 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002803
James Ketrenosb095c382005-08-24 22:04:42 -05002804 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2805 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002806 if (rc < 0) {
2807 IPW_ERROR("stop master failed in 10ms\n");
2808 return -1;
2809 }
2810
2811 IPW_DEBUG_INFO("stop master %dms\n", rc);
2812
2813 return rc;
2814}
2815
2816static void ipw_arc_release(struct ipw_priv *priv)
2817{
2818 IPW_DEBUG_TRACE(">> \n");
2819 mdelay(5);
2820
James Ketrenosb095c382005-08-24 22:04:42 -05002821 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002822
2823 /* no one knows timing, for safety add some delay */
2824 mdelay(5);
2825}
2826
2827struct fw_header {
2828 u32 version;
2829 u32 mode;
2830};
2831
2832struct fw_chunk {
2833 u32 address;
2834 u32 length;
2835};
2836
2837#define IPW_FW_MAJOR_VERSION 2
James Ketrenosb095c382005-08-24 22:04:42 -05002838#define IPW_FW_MINOR_VERSION 3
James Ketrenos43f66a62005-03-25 12:31:53 -06002839
2840#define IPW_FW_MINOR(x) ((x & 0xff) >> 8)
2841#define IPW_FW_MAJOR(x) (x & 0xff)
2842
James Ketrenosafbf30a2005-08-25 00:05:33 -05002843#define IPW_FW_VERSION ((IPW_FW_MINOR_VERSION << 8) | IPW_FW_MAJOR_VERSION)
James Ketrenos43f66a62005-03-25 12:31:53 -06002844
2845#define IPW_FW_PREFIX "ipw-" __stringify(IPW_FW_MAJOR_VERSION) \
2846"." __stringify(IPW_FW_MINOR_VERSION) "-"
2847
2848#if IPW_FW_MAJOR_VERSION >= 2 && IPW_FW_MINOR_VERSION > 0
2849#define IPW_FW_NAME(x) IPW_FW_PREFIX "" x ".fw"
2850#else
2851#define IPW_FW_NAME(x) "ipw2200_" x ".fw"
2852#endif
2853
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002854static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002855{
2856 int rc = 0, i, addr;
2857 u8 cr = 0;
2858 u16 *image;
2859
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002860 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002861
James Ketrenos43f66a62005-03-25 12:31:53 -06002862 IPW_DEBUG_TRACE(">> \n");
2863
2864 rc = ipw_stop_master(priv);
2865
2866 if (rc < 0)
2867 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002868
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002869// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002870
James Ketrenosb095c382005-08-24 22:04:42 -05002871 for (addr = IPW_SHARED_LOWER_BOUND;
2872 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002873 ipw_write32(priv, addr, 0);
2874 }
2875
2876 /* no ucode (yet) */
2877 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2878 /* destroy DMA queues */
2879 /* reset sequence */
2880
James Ketrenosb095c382005-08-24 22:04:42 -05002881 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002882 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002883 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002884 mdelay(1);
2885
2886 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002887 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002888 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002889
James Ketrenosb095c382005-08-24 22:04:42 -05002890 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002891 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002892
James Ketrenos43f66a62005-03-25 12:31:53 -06002893 /* enable ucode store */
2894 ipw_write_reg8(priv, DINO_CONTROL_REG, 0x0);
2895 ipw_write_reg8(priv, DINO_CONTROL_REG, DINO_ENABLE_CS);
2896 mdelay(1);
2897
2898 /* write ucode */
2899 /**
2900 * @bug
2901 * Do NOT set indirect address register once and then
2902 * store data to indirect data register in the loop.
2903 * It seems very reasonable, but in this case DINO do not
2904 * accept ucode. It is essential to set address each time.
2905 */
2906 /* load new ipw uCode */
2907 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002908 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002909 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002910
James Ketrenos43f66a62005-03-25 12:31:53 -06002911 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002912 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2913 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002914
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002915 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002916
2917 /* wait for alive response */
2918 for (i = 0; i < 100; i++) {
2919 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002920 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002921 if (cr & DINO_RXFIFO_DATA)
2922 break;
2923 mdelay(1);
2924 }
2925
2926 if (cr & DINO_RXFIFO_DATA) {
2927 /* alive_command_responce size is NOT multiple of 4 */
2928 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002929
2930 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002931 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002932 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002933 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002934 memcpy(&priv->dino_alive, response_buffer,
2935 sizeof(priv->dino_alive));
2936 if (priv->dino_alive.alive_command == 1
2937 && priv->dino_alive.ucode_valid == 1) {
2938 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002939 IPW_DEBUG_INFO
2940 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2941 "of %02d/%02d/%02d %02d:%02d\n",
2942 priv->dino_alive.software_revision,
2943 priv->dino_alive.software_revision,
2944 priv->dino_alive.device_identifier,
2945 priv->dino_alive.device_identifier,
2946 priv->dino_alive.time_stamp[0],
2947 priv->dino_alive.time_stamp[1],
2948 priv->dino_alive.time_stamp[2],
2949 priv->dino_alive.time_stamp[3],
2950 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002951 } else {
2952 IPW_DEBUG_INFO("Microcode is not alive\n");
2953 rc = -EINVAL;
2954 }
2955 } else {
2956 IPW_DEBUG_INFO("No alive response from DINO\n");
2957 rc = -ETIME;
2958 }
2959
2960 /* disable DINO, otherwise for some reason
2961 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002962 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002963
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002964// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002965
2966 return rc;
2967}
2968
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002969static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002970{
2971 int rc = -1;
2972 int offset = 0;
2973 struct fw_chunk *chunk;
2974 dma_addr_t shared_phys;
2975 u8 *shared_virt;
2976
2977 IPW_DEBUG_TRACE("<< : \n");
2978 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2979
2980 if (!shared_virt)
2981 return -ENOMEM;
2982
2983 memmove(shared_virt, data, len);
2984
2985 /* Start the Dma */
2986 rc = ipw_fw_dma_enable(priv);
2987
2988 if (priv->sram_desc.last_cb_index > 0) {
2989 /* the DMA is already ready this would be a bug. */
2990 BUG();
2991 goto out;
2992 }
2993
2994 do {
2995 chunk = (struct fw_chunk *)(data + offset);
2996 offset += sizeof(struct fw_chunk);
2997 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04002998 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06002999 * offeset*/
3000 /* Dma loading */
3001 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05003002 le32_to_cpu(chunk->address),
3003 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06003004 if (rc) {
3005 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3006 goto out;
3007 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003008
James Ketrenosa613bff2005-08-24 21:43:11 -05003009 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06003010 } while (offset < len);
3011
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003012 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06003013 rc = ipw_fw_dma_kick(priv);
3014 if (rc) {
3015 IPW_ERROR("dmaKick Failed\n");
3016 goto out;
3017 }
3018
3019 rc = ipw_fw_dma_wait(priv);
3020 if (rc) {
3021 IPW_ERROR("dmaWaitSync Failed\n");
3022 goto out;
3023 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003024 out:
3025 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06003026 return rc;
3027}
3028
3029/* stop nic */
3030static int ipw_stop_nic(struct ipw_priv *priv)
3031{
3032 int rc = 0;
3033
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003034 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003035 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003036
James Ketrenosb095c382005-08-24 22:04:42 -05003037 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3038 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003039 if (rc < 0) {
3040 IPW_ERROR("wait for reg master disabled failed\n");
3041 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003042 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003043
James Ketrenosb095c382005-08-24 22:04:42 -05003044 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003045
James Ketrenos43f66a62005-03-25 12:31:53 -06003046 return rc;
3047}
3048
3049static void ipw_start_nic(struct ipw_priv *priv)
3050{
3051 IPW_DEBUG_TRACE(">>\n");
3052
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003053 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003054 ipw_clear_bit(priv, IPW_RESET_REG,
3055 IPW_RESET_REG_MASTER_DISABLED |
3056 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003057 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003058
James Ketrenos43f66a62005-03-25 12:31:53 -06003059 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003060 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3061 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003062
3063 IPW_DEBUG_TRACE("<<\n");
3064}
Jeff Garzikbf794512005-07-31 13:07:26 -04003065
James Ketrenos43f66a62005-03-25 12:31:53 -06003066static int ipw_init_nic(struct ipw_priv *priv)
3067{
3068 int rc;
3069
3070 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003071 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003072 /*prvHwInitNic */
3073 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003074 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003075
3076 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003077 ipw_write32(priv, IPW_READ_INT_REGISTER,
3078 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003079
3080 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003081 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3082 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003083 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003084 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3085
3086 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003087 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003088
3089 udelay(10);
3090
3091 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003092 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003093
3094 IPW_DEBUG_TRACE(">>\n");
3095 return 0;
3096}
3097
Jeff Garzikbf794512005-07-31 13:07:26 -04003098/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003099 * Probe is an ok place to call this from.
3100 */
3101static int ipw_reset_nic(struct ipw_priv *priv)
3102{
3103 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003104 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003105
3106 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003107
James Ketrenos43f66a62005-03-25 12:31:53 -06003108 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003109
James Ketrenosa613bff2005-08-24 21:43:11 -05003110 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003111 /* Clear the 'host command active' bit... */
3112 priv->status &= ~STATUS_HCMD_ACTIVE;
3113 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003114 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3115 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003116 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003117
3118 IPW_DEBUG_TRACE("<<\n");
3119 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003120}
James Ketrenos43f66a62005-03-25 12:31:53 -06003121
Jeff Garzikbf794512005-07-31 13:07:26 -04003122static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003123 const struct firmware **fw, const char *name)
3124{
3125 struct fw_header *header;
3126 int rc;
3127
3128 /* ask firmware_class module to get the boot firmware off disk */
3129 rc = request_firmware(fw, name, &priv->pci_dev->dev);
3130 if (rc < 0) {
3131 IPW_ERROR("%s load failed: Reason %d\n", name, rc);
3132 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003133 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003134
3135 header = (struct fw_header *)(*fw)->data;
James Ketrenosa613bff2005-08-24 21:43:11 -05003136 if (IPW_FW_MAJOR(le32_to_cpu(header->version)) != IPW_FW_MAJOR_VERSION) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003137 IPW_ERROR("'%s' firmware version not compatible (%d != %d)\n",
3138 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003139 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3140 IPW_FW_MAJOR_VERSION);
James Ketrenos43f66a62005-03-25 12:31:53 -06003141 return -EINVAL;
3142 }
3143
Jiri Bencaaa4d302005-06-07 14:58:41 +02003144 IPW_DEBUG_INFO("Loading firmware '%s' file v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003145 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003146 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3147 IPW_FW_MINOR(le32_to_cpu(header->version)),
James Ketrenos43f66a62005-03-25 12:31:53 -06003148 (*fw)->size - sizeof(struct fw_header));
3149 return 0;
3150}
3151
James Ketrenosb095c382005-08-24 22:04:42 -05003152#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003153
3154static inline void ipw_rx_queue_reset(struct ipw_priv *priv,
3155 struct ipw_rx_queue *rxq)
3156{
3157 unsigned long flags;
3158 int i;
3159
3160 spin_lock_irqsave(&rxq->lock, flags);
3161
3162 INIT_LIST_HEAD(&rxq->rx_free);
3163 INIT_LIST_HEAD(&rxq->rx_used);
3164
3165 /* Fill the rx_used queue with _all_ of the Rx buffers */
3166 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3167 /* In the reset function, these buffers may have been allocated
3168 * to an SKB, so we need to unmap and free potential storage */
3169 if (rxq->pool[i].skb != NULL) {
3170 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003171 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003172 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003173 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003174 }
3175 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3176 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003177
James Ketrenos43f66a62005-03-25 12:31:53 -06003178 /* Set us so that we have processed and used all buffers, but have
3179 * not restocked the Rx queue with fresh buffers */
3180 rxq->read = rxq->write = 0;
3181 rxq->processed = RX_QUEUE_SIZE - 1;
3182 rxq->free_count = 0;
3183 spin_unlock_irqrestore(&rxq->lock, flags);
3184}
3185
3186#ifdef CONFIG_PM
3187static int fw_loaded = 0;
3188static const struct firmware *bootfw = NULL;
3189static const struct firmware *firmware = NULL;
3190static const struct firmware *ucode = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003191
3192static void free_firmware(void)
3193{
3194 if (fw_loaded) {
3195 release_firmware(bootfw);
3196 release_firmware(ucode);
3197 release_firmware(firmware);
3198 bootfw = ucode = firmware = NULL;
3199 fw_loaded = 0;
3200 }
3201}
3202#else
3203#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003204#endif
3205
3206static int ipw_load(struct ipw_priv *priv)
3207{
3208#ifndef CONFIG_PM
3209 const struct firmware *bootfw = NULL;
3210 const struct firmware *firmware = NULL;
3211 const struct firmware *ucode = NULL;
3212#endif
3213 int rc = 0, retries = 3;
3214
3215#ifdef CONFIG_PM
3216 if (!fw_loaded) {
3217#endif
3218 rc = ipw_get_fw(priv, &bootfw, IPW_FW_NAME("boot"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003219 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003220 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003221
James Ketrenos43f66a62005-03-25 12:31:53 -06003222 switch (priv->ieee->iw_mode) {
3223 case IW_MODE_ADHOC:
Jeff Garzikbf794512005-07-31 13:07:26 -04003224 rc = ipw_get_fw(priv, &ucode,
James Ketrenos43f66a62005-03-25 12:31:53 -06003225 IPW_FW_NAME("ibss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003226 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003227 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003228
James Ketrenos43f66a62005-03-25 12:31:53 -06003229 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("ibss"));
3230 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003231
James Ketrenosb095c382005-08-24 22:04:42 -05003232#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06003233 case IW_MODE_MONITOR:
Jeff Garzikbf794512005-07-31 13:07:26 -04003234 rc = ipw_get_fw(priv, &ucode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003235 IPW_FW_NAME("sniffer_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003236 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003237 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003238
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003239 rc = ipw_get_fw(priv, &firmware,
3240 IPW_FW_NAME("sniffer"));
James Ketrenos43f66a62005-03-25 12:31:53 -06003241 break;
3242#endif
3243 case IW_MODE_INFRA:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003244 rc = ipw_get_fw(priv, &ucode, IPW_FW_NAME("bss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003245 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003246 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003247
James Ketrenos43f66a62005-03-25 12:31:53 -06003248 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("bss"));
3249 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003250
James Ketrenos43f66a62005-03-25 12:31:53 -06003251 default:
3252 rc = -EINVAL;
3253 }
3254
Jeff Garzikbf794512005-07-31 13:07:26 -04003255 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003256 goto error;
3257
3258#ifdef CONFIG_PM
3259 fw_loaded = 1;
3260 }
3261#endif
3262
3263 if (!priv->rxq)
3264 priv->rxq = ipw_rx_queue_alloc(priv);
3265 else
3266 ipw_rx_queue_reset(priv, priv->rxq);
3267 if (!priv->rxq) {
3268 IPW_ERROR("Unable to initialize Rx queue\n");
3269 goto error;
3270 }
3271
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003272 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003273 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003274 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003275 priv->status &= ~STATUS_INT_ENABLED;
3276
3277 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003278 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003279
James Ketrenos43f66a62005-03-25 12:31:53 -06003280 ipw_stop_nic(priv);
3281
3282 rc = ipw_reset_nic(priv);
3283 if (rc) {
3284 IPW_ERROR("Unable to reset NIC\n");
3285 goto error;
3286 }
3287
James Ketrenosb095c382005-08-24 22:04:42 -05003288 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3289 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003290
3291 /* DMA the initial boot firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003292 rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003293 bootfw->size - sizeof(struct fw_header));
3294 if (rc < 0) {
3295 IPW_ERROR("Unable to load boot firmware\n");
3296 goto error;
3297 }
3298
3299 /* kick start the device */
3300 ipw_start_nic(priv);
3301
3302 /* wait for the device to finish it's initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003303 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3304 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003305 if (rc < 0) {
3306 IPW_ERROR("device failed to boot initial fw image\n");
3307 goto error;
3308 }
3309 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3310
Jeff Garzikbf794512005-07-31 13:07:26 -04003311 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003312 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003313
3314 /* DMA the ucode into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003315 rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003316 ucode->size - sizeof(struct fw_header));
3317 if (rc < 0) {
3318 IPW_ERROR("Unable to load ucode\n");
3319 goto error;
3320 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003321
James Ketrenos43f66a62005-03-25 12:31:53 -06003322 /* stop nic */
3323 ipw_stop_nic(priv);
3324
3325 /* DMA bss firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003326 rc = ipw_load_firmware(priv, firmware->data +
3327 sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003328 firmware->size - sizeof(struct fw_header));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003329 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003330 IPW_ERROR("Unable to load firmware\n");
3331 goto error;
3332 }
3333
3334 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3335
3336 rc = ipw_queue_reset(priv);
3337 if (rc) {
3338 IPW_ERROR("Unable to initialize queues\n");
3339 goto error;
3340 }
3341
3342 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003343 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003344 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003345 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003346
James Ketrenos43f66a62005-03-25 12:31:53 -06003347 /* kick start the device */
3348 ipw_start_nic(priv);
3349
James Ketrenosb095c382005-08-24 22:04:42 -05003350 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003351 if (retries > 0) {
3352 IPW_WARNING("Parity error. Retrying init.\n");
3353 retries--;
3354 goto retry;
3355 }
3356
3357 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3358 rc = -EIO;
3359 goto error;
3360 }
3361
3362 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003363 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3364 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003365 if (rc < 0) {
3366 IPW_ERROR("device failed to start after 500ms\n");
3367 goto error;
3368 }
3369 IPW_DEBUG_INFO("device response after %dms\n", rc);
3370
3371 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003372 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003373
3374 /* read eeprom data and initialize the eeprom region of sram */
3375 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003376 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003377
3378 /* enable interrupts */
3379 ipw_enable_interrupts(priv);
3380
3381 /* Ensure our queue has valid packets */
3382 ipw_rx_queue_replenish(priv);
3383
James Ketrenosb095c382005-08-24 22:04:42 -05003384 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003385
3386 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003387 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003388
3389#ifndef CONFIG_PM
3390 release_firmware(bootfw);
3391 release_firmware(ucode);
3392 release_firmware(firmware);
3393#endif
3394 return 0;
3395
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003396 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003397 if (priv->rxq) {
3398 ipw_rx_queue_free(priv, priv->rxq);
3399 priv->rxq = NULL;
3400 }
3401 ipw_tx_queue_free(priv);
3402 if (bootfw)
3403 release_firmware(bootfw);
3404 if (ucode)
3405 release_firmware(ucode);
3406 if (firmware)
3407 release_firmware(firmware);
3408#ifdef CONFIG_PM
3409 fw_loaded = 0;
3410 bootfw = ucode = firmware = NULL;
3411#endif
3412
3413 return rc;
3414}
3415
Jeff Garzikbf794512005-07-31 13:07:26 -04003416/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003417 * DMA services
3418 *
3419 * Theory of operation
3420 *
3421 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3422 * 2 empty entries always kept in the buffer to protect from overflow.
3423 *
3424 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003425 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3426 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003427 * Tx queue resumed.
3428 *
3429 * The IPW operates with six queues, one receive queue in the device's
3430 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003431 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003432 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003433 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003434 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003435 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003436 * we only utilize the first data transmit queue (queue1).
3437 */
3438
3439/**
3440 * Driver allocates buffers of this size for Rx
3441 */
3442
3443static inline int ipw_queue_space(const struct clx2_queue *q)
3444{
3445 int s = q->last_used - q->first_empty;
3446 if (s <= 0)
3447 s += q->n_bd;
3448 s -= 2; /* keep some reserve to not confuse empty and full situations */
3449 if (s < 0)
3450 s = 0;
3451 return s;
3452}
3453
3454static inline int ipw_queue_inc_wrap(int index, int n_bd)
3455{
3456 return (++index == n_bd) ? 0 : index;
3457}
3458
3459/**
3460 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003461 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003462 * @param q queue to init
3463 * @param count Number of BD's to allocate. Should be power of 2
3464 * @param read_register Address for 'read' register
3465 * (not offset within BAR, full address)
3466 * @param write_register Address for 'write' register
3467 * (not offset within BAR, full address)
3468 * @param base_register Address for 'base' register
3469 * (not offset within BAR, full address)
3470 * @param size Address for 'size' register
3471 * (not offset within BAR, full address)
3472 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003473static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003474 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003475{
3476 q->n_bd = count;
3477
3478 q->low_mark = q->n_bd / 4;
3479 if (q->low_mark < 4)
3480 q->low_mark = 4;
3481
3482 q->high_mark = q->n_bd / 8;
3483 if (q->high_mark < 2)
3484 q->high_mark = 2;
3485
3486 q->first_empty = q->last_used = 0;
3487 q->reg_r = read;
3488 q->reg_w = write;
3489
3490 ipw_write32(priv, base, q->dma_addr);
3491 ipw_write32(priv, size, count);
3492 ipw_write32(priv, read, 0);
3493 ipw_write32(priv, write, 0);
3494
3495 _ipw_read32(priv, 0x90);
3496}
3497
Jeff Garzikbf794512005-07-31 13:07:26 -04003498static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003499 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003500 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003501{
3502 struct pci_dev *dev = priv->pci_dev;
3503
3504 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3505 if (!q->txb) {
3506 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3507 return -ENOMEM;
3508 }
3509
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003510 q->bd =
3511 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003512 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003513 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003514 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003515 kfree(q->txb);
3516 q->txb = NULL;
3517 return -ENOMEM;
3518 }
3519
3520 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3521 return 0;
3522}
3523
3524/**
3525 * Free one TFD, those at index [txq->q.last_used].
3526 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003527 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003528 * @param dev
3529 * @param txq
3530 */
3531static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3532 struct clx2_tx_queue *txq)
3533{
3534 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3535 struct pci_dev *dev = priv->pci_dev;
3536 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003537
James Ketrenos43f66a62005-03-25 12:31:53 -06003538 /* classify bd */
3539 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3540 /* nothing to cleanup after for host commands */
3541 return;
3542
3543 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003544 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3545 IPW_ERROR("Too many chunks: %i\n",
3546 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003547 /** @todo issue fatal error, it is quite serious situation */
3548 return;
3549 }
3550
3551 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003552 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3553 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3554 le16_to_cpu(bd->u.data.chunk_len[i]),
3555 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003556 if (txq->txb[txq->q.last_used]) {
3557 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3558 txq->txb[txq->q.last_used] = NULL;
3559 }
3560 }
3561}
3562
3563/**
3564 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003565 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003566 * Empty queue by removing and destroying all BD's.
3567 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003568 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003569 * @param dev
3570 * @param q
3571 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003572static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003573{
3574 struct clx2_queue *q = &txq->q;
3575 struct pci_dev *dev = priv->pci_dev;
3576
Jeff Garzikbf794512005-07-31 13:07:26 -04003577 if (q->n_bd == 0)
3578 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003579
3580 /* first, empty all BD's */
3581 for (; q->first_empty != q->last_used;
3582 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3583 ipw_queue_tx_free_tfd(priv, txq);
3584 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003585
James Ketrenos43f66a62005-03-25 12:31:53 -06003586 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003587 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003588 q->dma_addr);
3589 kfree(txq->txb);
3590
3591 /* 0 fill whole structure */
3592 memset(txq, 0, sizeof(*txq));
3593}
3594
James Ketrenos43f66a62005-03-25 12:31:53 -06003595/**
3596 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003597 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003598 * @param priv
3599 */
3600static void ipw_tx_queue_free(struct ipw_priv *priv)
3601{
3602 /* Tx CMD queue */
3603 ipw_queue_tx_free(priv, &priv->txq_cmd);
3604
3605 /* Tx queues */
3606 ipw_queue_tx_free(priv, &priv->txq[0]);
3607 ipw_queue_tx_free(priv, &priv->txq[1]);
3608 ipw_queue_tx_free(priv, &priv->txq[2]);
3609 ipw_queue_tx_free(priv, &priv->txq[3]);
3610}
3611
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003612static inline void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003613{
3614 /* First 3 bytes are manufacturer */
3615 bssid[0] = priv->mac_addr[0];
3616 bssid[1] = priv->mac_addr[1];
3617 bssid[2] = priv->mac_addr[2];
3618
3619 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003620 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003621
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003622 bssid[0] &= 0xfe; /* clear multicast bit */
3623 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003624}
3625
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003626static inline u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003627{
3628 struct ipw_station_entry entry;
3629 int i;
3630
3631 for (i = 0; i < priv->num_stations; i++) {
3632 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3633 /* Another node is active in network */
3634 priv->missed_adhoc_beacons = 0;
3635 if (!(priv->config & CFG_STATIC_CHANNEL))
3636 /* when other nodes drop out, we drop out */
3637 priv->config &= ~CFG_ADHOC_PERSIST;
3638
3639 return i;
3640 }
3641 }
3642
3643 if (i == MAX_STATIONS)
3644 return IPW_INVALID_STATION;
3645
3646 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3647
3648 entry.reserved = 0;
3649 entry.support_mode = 0;
3650 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3651 memcpy(priv->stations[i], bssid, ETH_ALEN);
3652 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003653 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003654 priv->num_stations++;
3655
3656 return i;
3657}
3658
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003659static inline u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003660{
3661 int i;
3662
Jeff Garzikbf794512005-07-31 13:07:26 -04003663 for (i = 0; i < priv->num_stations; i++)
3664 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003665 return i;
3666
3667 return IPW_INVALID_STATION;
3668}
3669
3670static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3671{
3672 int err;
3673
3674 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))) {
3675 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3676 return;
3677 }
3678
3679 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3680 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003681 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003682 priv->assoc_request.channel);
3683
3684 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3685 priv->status |= STATUS_DISASSOCIATING;
3686
3687 if (quiet)
3688 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3689 else
3690 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
3691 err = ipw_send_associate(priv, &priv->assoc_request);
3692 if (err) {
3693 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3694 "failed.\n");
3695 return;
3696 }
3697
3698}
3699
James Ketrenosc848d0a2005-08-24 21:56:24 -05003700static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003701{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003702 struct ipw_priv *priv = data;
3703 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3704 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003705 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003706 return 1;
3707}
3708
3709static void ipw_bg_disassociate(void *data)
3710{
3711 struct ipw_priv *priv = data;
3712 down(&priv->sem);
3713 ipw_disassociate(data);
3714 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06003715}
3716
Zhu Yid8bad6d2005-07-13 12:25:38 -05003717static void ipw_system_config(void *data)
3718{
3719 struct ipw_priv *priv = data;
3720 ipw_send_system_config(priv, &priv->sys_config);
3721}
3722
James Ketrenos43f66a62005-03-25 12:31:53 -06003723struct ipw_status_code {
3724 u16 status;
3725 const char *reason;
3726};
3727
3728static const struct ipw_status_code ipw_status_codes[] = {
3729 {0x00, "Successful"},
3730 {0x01, "Unspecified failure"},
3731 {0x0A, "Cannot support all requested capabilities in the "
3732 "Capability information field"},
3733 {0x0B, "Reassociation denied due to inability to confirm that "
3734 "association exists"},
3735 {0x0C, "Association denied due to reason outside the scope of this "
3736 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003737 {0x0D,
3738 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003739 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003740 {0x0E,
3741 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003742 "transaction sequence number out of expected sequence"},
3743 {0x0F, "Authentication rejected because of challenge failure"},
3744 {0x10, "Authentication rejected due to timeout waiting for next "
3745 "frame in sequence"},
3746 {0x11, "Association denied because AP is unable to handle additional "
3747 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003748 {0x12,
3749 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003750 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003751 {0x13,
3752 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003753 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003754 {0x14,
3755 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003756 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003757 {0x15,
3758 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003759 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003760 {0x19,
3761 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003762 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003763 {0x1A,
3764 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003765 "DSSS-OFDM operation"},
3766 {0x28, "Invalid Information Element"},
3767 {0x29, "Group Cipher is not valid"},
3768 {0x2A, "Pairwise Cipher is not valid"},
3769 {0x2B, "AKMP is not valid"},
3770 {0x2C, "Unsupported RSN IE version"},
3771 {0x2D, "Invalid RSN IE Capabilities"},
3772 {0x2E, "Cipher suite is rejected per security policy"},
3773};
3774
3775#ifdef CONFIG_IPW_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003776static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003777{
3778 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003779 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003780 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003781 return ipw_status_codes[i].reason;
3782 return "Unknown status value.";
3783}
3784#endif
3785
3786static void inline average_init(struct average *avg)
3787{
3788 memset(avg, 0, sizeof(*avg));
3789}
3790
3791static void inline average_add(struct average *avg, s16 val)
3792{
3793 avg->sum -= avg->entries[avg->pos];
3794 avg->sum += val;
3795 avg->entries[avg->pos++] = val;
3796 if (unlikely(avg->pos == AVG_ENTRIES)) {
3797 avg->init = 1;
3798 avg->pos = 0;
3799 }
3800}
3801
3802static s16 inline average_value(struct average *avg)
3803{
3804 if (!unlikely(avg->init)) {
3805 if (avg->pos)
3806 return avg->sum / avg->pos;
3807 return 0;
3808 }
3809
3810 return avg->sum / AVG_ENTRIES;
3811}
3812
3813static void ipw_reset_stats(struct ipw_priv *priv)
3814{
3815 u32 len = sizeof(u32);
3816
3817 priv->quality = 0;
3818
3819 average_init(&priv->average_missed_beacons);
3820 average_init(&priv->average_rssi);
3821 average_init(&priv->average_noise);
3822
3823 priv->last_rate = 0;
3824 priv->last_missed_beacons = 0;
3825 priv->last_rx_packets = 0;
3826 priv->last_tx_packets = 0;
3827 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003828
James Ketrenos43f66a62005-03-25 12:31:53 -06003829 /* Firmware managed, reset only when NIC is restarted, so we have to
3830 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003831 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003832 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003833 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003834 &priv->last_tx_failures, &len);
3835
3836 /* Driver managed, reset with each association */
3837 priv->missed_adhoc_beacons = 0;
3838 priv->missed_beacons = 0;
3839 priv->tx_packets = 0;
3840 priv->rx_packets = 0;
3841
3842}
3843
James Ketrenos43f66a62005-03-25 12:31:53 -06003844static inline u32 ipw_get_max_rate(struct ipw_priv *priv)
3845{
3846 u32 i = 0x80000000;
3847 u32 mask = priv->rates_mask;
3848 /* If currently associated in B mode, restrict the maximum
3849 * rate match to B rates */
3850 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3851 mask &= IEEE80211_CCK_RATES_MASK;
3852
3853 /* TODO: Verify that the rate is supported by the current rates
3854 * list. */
3855
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003856 while (i && !(mask & i))
3857 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003858 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003859 case IEEE80211_CCK_RATE_1MB_MASK:
3860 return 1000000;
3861 case IEEE80211_CCK_RATE_2MB_MASK:
3862 return 2000000;
3863 case IEEE80211_CCK_RATE_5MB_MASK:
3864 return 5500000;
3865 case IEEE80211_OFDM_RATE_6MB_MASK:
3866 return 6000000;
3867 case IEEE80211_OFDM_RATE_9MB_MASK:
3868 return 9000000;
3869 case IEEE80211_CCK_RATE_11MB_MASK:
3870 return 11000000;
3871 case IEEE80211_OFDM_RATE_12MB_MASK:
3872 return 12000000;
3873 case IEEE80211_OFDM_RATE_18MB_MASK:
3874 return 18000000;
3875 case IEEE80211_OFDM_RATE_24MB_MASK:
3876 return 24000000;
3877 case IEEE80211_OFDM_RATE_36MB_MASK:
3878 return 36000000;
3879 case IEEE80211_OFDM_RATE_48MB_MASK:
3880 return 48000000;
3881 case IEEE80211_OFDM_RATE_54MB_MASK:
3882 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003883 }
3884
Jeff Garzikbf794512005-07-31 13:07:26 -04003885 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003886 return 11000000;
3887 else
3888 return 54000000;
3889}
3890
3891static u32 ipw_get_current_rate(struct ipw_priv *priv)
3892{
3893 u32 rate, len = sizeof(rate);
3894 int err;
3895
Jeff Garzikbf794512005-07-31 13:07:26 -04003896 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003897 return 0;
3898
3899 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003900 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003901 &len);
3902 if (err) {
3903 IPW_DEBUG_INFO("failed querying ordinals.\n");
3904 return 0;
3905 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003906 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003907 return ipw_get_max_rate(priv);
3908
3909 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003910 case IPW_TX_RATE_1MB:
3911 return 1000000;
3912 case IPW_TX_RATE_2MB:
3913 return 2000000;
3914 case IPW_TX_RATE_5MB:
3915 return 5500000;
3916 case IPW_TX_RATE_6MB:
3917 return 6000000;
3918 case IPW_TX_RATE_9MB:
3919 return 9000000;
3920 case IPW_TX_RATE_11MB:
3921 return 11000000;
3922 case IPW_TX_RATE_12MB:
3923 return 12000000;
3924 case IPW_TX_RATE_18MB:
3925 return 18000000;
3926 case IPW_TX_RATE_24MB:
3927 return 24000000;
3928 case IPW_TX_RATE_36MB:
3929 return 36000000;
3930 case IPW_TX_RATE_48MB:
3931 return 48000000;
3932 case IPW_TX_RATE_54MB:
3933 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003934 }
3935
3936 return 0;
3937}
3938
James Ketrenos43f66a62005-03-25 12:31:53 -06003939#define IPW_STATS_INTERVAL (2 * HZ)
3940static void ipw_gather_stats(struct ipw_priv *priv)
3941{
3942 u32 rx_err, rx_err_delta, rx_packets_delta;
3943 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3944 u32 missed_beacons_percent, missed_beacons_delta;
3945 u32 quality = 0;
3946 u32 len = sizeof(u32);
3947 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003948 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003949 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003950 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003951
3952 if (!(priv->status & STATUS_ASSOCIATED)) {
3953 priv->quality = 0;
3954 return;
3955 }
3956
3957 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003958 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003959 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003960 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003961 priv->last_missed_beacons = priv->missed_beacons;
3962 if (priv->assoc_request.beacon_interval) {
3963 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003964 (HZ * priv->assoc_request.beacon_interval) /
3965 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003966 } else {
3967 missed_beacons_percent = 0;
3968 }
3969 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3970
3971 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3972 rx_err_delta = rx_err - priv->last_rx_err;
3973 priv->last_rx_err = rx_err;
3974
3975 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3976 tx_failures_delta = tx_failures - priv->last_tx_failures;
3977 priv->last_tx_failures = tx_failures;
3978
3979 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3980 priv->last_rx_packets = priv->rx_packets;
3981
3982 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
3983 priv->last_tx_packets = priv->tx_packets;
3984
3985 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04003986 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003987 * Missed beacon: 100% = 0, 0% = 70% missed
3988 * Rate: 60% = 1Mbs, 100% = Max
3989 * Rx and Tx errors represent a straight % of total Rx/Tx
3990 * RSSI: 100% = > -50, 0% = < -80
3991 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04003992 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003993 * The lowest computed quality is used.
3994 *
3995 */
3996#define BEACON_THRESHOLD 5
3997 beacon_quality = 100 - missed_beacons_percent;
3998 if (beacon_quality < BEACON_THRESHOLD)
3999 beacon_quality = 0;
4000 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004001 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004002 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004003 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004004 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004005
James Ketrenos43f66a62005-03-25 12:31:53 -06004006 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004007 max_rate = ipw_get_max_rate(priv);
4008 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004009 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4010 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004011
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004012 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004013 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004014 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004015 else
4016 rx_quality = 100;
4017 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4018 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004019
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004020 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004021 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004022 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004023 else
4024 tx_quality = 100;
4025 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4026 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004027
James Ketrenos43f66a62005-03-25 12:31:53 -06004028 rssi = average_value(&priv->average_rssi);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004029 signal_quality =
4030 (100 *
4031 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4032 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4033 (priv->ieee->perfect_rssi - rssi) *
4034 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4035 62 * (priv->ieee->perfect_rssi - rssi))) /
4036 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4037 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4038 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004039 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004040 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004041 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004042
James Ketrenos43f66a62005-03-25 12:31:53 -06004043 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
4044 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004045
4046 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06004047 min(rate_quality,
4048 min(tx_quality, min(rx_quality, signal_quality))));
4049 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004050 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4051 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004052 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004053 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4054 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004055 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004056 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4057 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004058 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004059 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4060 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004061 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004062 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4063 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004064
4065 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004066
4067 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004068 IPW_STATS_INTERVAL);
4069}
4070
James Ketrenosc848d0a2005-08-24 21:56:24 -05004071static void ipw_bg_gather_stats(void *data)
4072{
4073 struct ipw_priv *priv = data;
4074 down(&priv->sem);
4075 ipw_gather_stats(data);
4076 up(&priv->sem);
4077}
4078
James Ketrenosea2b26e2005-08-24 21:25:16 -05004079static inline void ipw_handle_missed_beacon(struct ipw_priv *priv,
4080 int missed_count)
4081{
4082 priv->notif_missed_beacons = missed_count;
4083
James Ketrenosafbf30a2005-08-25 00:05:33 -05004084 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004085 priv->status & STATUS_ASSOCIATED) {
4086 /* If associated and we've hit the missed
4087 * beacon threshold, disassociate, turn
4088 * off roaming, and abort any active scans */
4089 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004090 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004091 "Missed beacon: %d - disassociate\n", missed_count);
4092 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004093 if (priv->status & STATUS_SCANNING) {
4094 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4095 IPW_DL_STATE,
4096 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004097 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004098 }
4099
James Ketrenosea2b26e2005-08-24 21:25:16 -05004100 queue_work(priv->workqueue, &priv->disassociate);
4101 return;
4102 }
4103
4104 if (priv->status & STATUS_ROAMING) {
4105 /* If we are currently roaming, then just
4106 * print a debug statement... */
4107 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4108 "Missed beacon: %d - roam in progress\n",
4109 missed_count);
4110 return;
4111 }
4112
4113 if (missed_count > priv->roaming_threshold) {
4114 /* If we are not already roaming, set the ROAM
4115 * bit in the status and kick off a scan */
4116 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4117 "Missed beacon: %d - initiate "
4118 "roaming\n", missed_count);
4119 if (!(priv->status & STATUS_ROAMING)) {
4120 priv->status |= STATUS_ROAMING;
4121 if (!(priv->status & STATUS_SCANNING))
4122 queue_work(priv->workqueue,
4123 &priv->request_scan);
4124 }
4125 return;
4126 }
4127
4128 if (priv->status & STATUS_SCANNING) {
4129 /* Stop scan to keep fw from getting
4130 * stuck (only if we aren't roaming --
4131 * otherwise we'll never scan more than 2 or 3
4132 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004133 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4134 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004135 queue_work(priv->workqueue, &priv->abort_scan);
4136 }
4137
4138 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
4139
4140}
4141
James Ketrenos43f66a62005-03-25 12:31:53 -06004142/**
4143 * Handle host notification packet.
4144 * Called from interrupt routine
4145 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004146static inline void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004147 struct ipw_rx_notification *notif)
4148{
James Ketrenosa613bff2005-08-24 21:43:11 -05004149 notif->size = le16_to_cpu(notif->size);
4150
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004151 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004152
James Ketrenos43f66a62005-03-25 12:31:53 -06004153 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004154 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4155 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004156
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004157 switch (assoc->state) {
4158 case CMAS_ASSOCIATED:{
4159 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4160 IPW_DL_ASSOC,
4161 "associated: '%s' " MAC_FMT
4162 " \n",
4163 escape_essid(priv->essid,
4164 priv->essid_len),
4165 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004166
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004167 switch (priv->ieee->iw_mode) {
4168 case IW_MODE_INFRA:
4169 memcpy(priv->ieee->bssid,
4170 priv->bssid, ETH_ALEN);
4171 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004172
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004173 case IW_MODE_ADHOC:
4174 memcpy(priv->ieee->bssid,
4175 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004176
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004177 /* clear out the station table */
4178 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004179
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004180 IPW_DEBUG_ASSOC
4181 ("queueing adhoc check\n");
4182 queue_delayed_work(priv->
4183 workqueue,
4184 &priv->
4185 adhoc_check,
4186 priv->
4187 assoc_request.
4188 beacon_interval);
4189 break;
4190 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004191
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004192 priv->status &= ~STATUS_ASSOCIATING;
4193 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004194 queue_work(priv->workqueue,
4195 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004196
James Ketrenosb095c382005-08-24 22:04:42 -05004197#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004198#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4199 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4200 if ((priv->status & STATUS_AUTH) &&
4201 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4202 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004203 if ((sizeof
4204 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004205 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004206 <= notif->size)
4207 && (notif->size <= 2314)) {
4208 struct
4209 ieee80211_rx_stats
4210 stats = {
4211 .len =
4212 notif->
4213 size - 1,
4214 };
4215
4216 IPW_DEBUG_QOS
4217 ("QoS Associate "
4218 "size %d\n",
4219 notif->size);
4220 ieee80211_rx_mgt(priv->
4221 ieee,
4222 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004223 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004224 *)
4225 &notif->u.raw, &stats);
4226 }
4227 }
4228#endif
4229
James Ketrenosa613bff2005-08-24 21:43:11 -05004230 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004231
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004232 break;
4233 }
4234
4235 case CMAS_AUTHENTICATED:{
4236 if (priv->
4237 status & (STATUS_ASSOCIATED |
4238 STATUS_AUTH)) {
4239#ifdef CONFIG_IPW_DEBUG
4240 struct notif_authenticate *auth
4241 = &notif->u.auth;
4242 IPW_DEBUG(IPW_DL_NOTIF |
4243 IPW_DL_STATE |
4244 IPW_DL_ASSOC,
4245 "deauthenticated: '%s' "
4246 MAC_FMT
4247 ": (0x%04X) - %s \n",
4248 escape_essid(priv->
4249 essid,
4250 priv->
4251 essid_len),
4252 MAC_ARG(priv->bssid),
4253 ntohs(auth->status),
4254 ipw_get_status_code
4255 (ntohs
4256 (auth->status)));
4257#endif
4258
4259 priv->status &=
4260 ~(STATUS_ASSOCIATING |
4261 STATUS_AUTH |
4262 STATUS_ASSOCIATED);
4263
James Ketrenosa613bff2005-08-24 21:43:11 -05004264 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004265 break;
4266 }
4267
4268 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4269 IPW_DL_ASSOC,
4270 "authenticated: '%s' " MAC_FMT
4271 "\n",
4272 escape_essid(priv->essid,
4273 priv->essid_len),
4274 MAC_ARG(priv->bssid));
4275 break;
4276 }
4277
4278 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004279 if (priv->status & STATUS_AUTH) {
4280 struct
4281 ieee80211_assoc_response
4282 *resp;
4283 resp =
4284 (struct
4285 ieee80211_assoc_response
4286 *)&notif->u.raw;
4287 IPW_DEBUG(IPW_DL_NOTIF |
4288 IPW_DL_STATE |
4289 IPW_DL_ASSOC,
4290 "association failed (0x%04X): %s\n",
4291 ntohs(resp->status),
4292 ipw_get_status_code
4293 (ntohs
4294 (resp->status)));
4295 }
4296
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004297 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4298 IPW_DL_ASSOC,
4299 "disassociated: '%s' " MAC_FMT
4300 " \n",
4301 escape_essid(priv->essid,
4302 priv->essid_len),
4303 MAC_ARG(priv->bssid));
4304
4305 priv->status &=
4306 ~(STATUS_DISASSOCIATING |
4307 STATUS_ASSOCIATING |
4308 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004309 if (priv->assoc_network
4310 && (priv->assoc_network->
4311 capability &
4312 WLAN_CAPABILITY_IBSS))
4313 ipw_remove_current_network
4314 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004315
James Ketrenosa613bff2005-08-24 21:43:11 -05004316 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004317
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004318 break;
4319 }
4320
James Ketrenosb095c382005-08-24 22:04:42 -05004321 case CMAS_RX_ASSOC_RESP:
4322 break;
4323
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004324 default:
4325 IPW_ERROR("assoc: unknown (%d)\n",
4326 assoc->state);
4327 break;
4328 }
4329
James Ketrenos43f66a62005-03-25 12:31:53 -06004330 break;
4331 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004332
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004333 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4334 struct notif_authenticate *auth = &notif->u.auth;
4335 switch (auth->state) {
4336 case CMAS_AUTHENTICATED:
4337 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4338 "authenticated: '%s' " MAC_FMT " \n",
4339 escape_essid(priv->essid,
4340 priv->essid_len),
4341 MAC_ARG(priv->bssid));
4342 priv->status |= STATUS_AUTH;
4343 break;
4344
4345 case CMAS_INIT:
4346 if (priv->status & STATUS_AUTH) {
4347 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4348 IPW_DL_ASSOC,
4349 "authentication failed (0x%04X): %s\n",
4350 ntohs(auth->status),
4351 ipw_get_status_code(ntohs
4352 (auth->
4353 status)));
4354 }
4355 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4356 IPW_DL_ASSOC,
4357 "deauthenticated: '%s' " MAC_FMT "\n",
4358 escape_essid(priv->essid,
4359 priv->essid_len),
4360 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004361
4362 priv->status &= ~(STATUS_ASSOCIATING |
4363 STATUS_AUTH |
4364 STATUS_ASSOCIATED);
4365
James Ketrenosa613bff2005-08-24 21:43:11 -05004366 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004367 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004368
4369 case CMAS_TX_AUTH_SEQ_1:
4370 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4371 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4372 break;
4373 case CMAS_RX_AUTH_SEQ_2:
4374 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4375 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4376 break;
4377 case CMAS_AUTH_SEQ_1_PASS:
4378 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4379 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4380 break;
4381 case CMAS_AUTH_SEQ_1_FAIL:
4382 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4383 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4384 break;
4385 case CMAS_TX_AUTH_SEQ_3:
4386 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4387 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4388 break;
4389 case CMAS_RX_AUTH_SEQ_4:
4390 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4391 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4392 break;
4393 case CMAS_AUTH_SEQ_2_PASS:
4394 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4395 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4396 break;
4397 case CMAS_AUTH_SEQ_2_FAIL:
4398 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4399 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4400 break;
4401 case CMAS_TX_ASSOC:
4402 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4403 IPW_DL_ASSOC, "TX_ASSOC\n");
4404 break;
4405 case CMAS_RX_ASSOC_RESP:
4406 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4407 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004408
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004409 break;
4410 case CMAS_ASSOCIATED:
4411 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4412 IPW_DL_ASSOC, "ASSOCIATED\n");
4413 break;
4414 default:
4415 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4416 auth->state);
4417 break;
4418 }
4419 break;
4420 }
4421
4422 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4423 struct notif_channel_result *x =
4424 &notif->u.channel_result;
4425
4426 if (notif->size == sizeof(*x)) {
4427 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4428 x->channel_num);
4429 } else {
4430 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4431 "(should be %zd)\n",
4432 notif->size, sizeof(*x));
4433 }
4434 break;
4435 }
4436
4437 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4438 struct notif_scan_complete *x = &notif->u.scan_complete;
4439 if (notif->size == sizeof(*x)) {
4440 IPW_DEBUG_SCAN
4441 ("Scan completed: type %d, %d channels, "
4442 "%d status\n", x->scan_type,
4443 x->num_channels, x->status);
4444 } else {
4445 IPW_ERROR("Scan completed of wrong size %d "
4446 "(should be %zd)\n",
4447 notif->size, sizeof(*x));
4448 }
4449
4450 priv->status &=
4451 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4452
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004453 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004454 cancel_delayed_work(&priv->scan_check);
4455
James Ketrenosb095c382005-08-24 22:04:42 -05004456 if (priv->status & STATUS_EXIT_PENDING)
4457 break;
4458
4459 priv->ieee->scans++;
4460
4461#ifdef CONFIG_IPW2200_MONITOR
4462 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004463 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004464 queue_work(priv->workqueue,
4465 &priv->request_scan);
4466 break;
4467 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004468 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004469#endif /* CONFIG_IPW2200_MONITOR */
4470
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004471 if (!(priv->status & (STATUS_ASSOCIATED |
4472 STATUS_ASSOCIATING |
4473 STATUS_ROAMING |
4474 STATUS_DISASSOCIATING)))
4475 queue_work(priv->workqueue, &priv->associate);
4476 else if (priv->status & STATUS_ROAMING) {
4477 /* If a scan completed and we are in roam mode, then
4478 * the scan that completed was the one requested as a
4479 * result of entering roam... so, schedule the
4480 * roam work */
4481 queue_work(priv->workqueue, &priv->roam);
4482 } else if (priv->status & STATUS_SCAN_PENDING)
4483 queue_work(priv->workqueue,
4484 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004485 else if (priv->config & CFG_BACKGROUND_SCAN
4486 && priv->status & STATUS_ASSOCIATED)
4487 queue_delayed_work(priv->workqueue,
4488 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004489 break;
4490 }
4491
4492 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4493 struct notif_frag_length *x = &notif->u.frag_len;
4494
James Ketrenosa613bff2005-08-24 21:43:11 -05004495 if (notif->size == sizeof(*x))
4496 IPW_ERROR("Frag length: %d\n",
4497 le16_to_cpu(x->frag_length));
4498 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004499 IPW_ERROR("Frag length of wrong size %d "
4500 "(should be %zd)\n",
4501 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004502 break;
4503 }
4504
4505 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4506 struct notif_link_deterioration *x =
4507 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004508
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004509 if (notif->size == sizeof(*x)) {
4510 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4511 "link deterioration: '%s' " MAC_FMT
4512 " \n", escape_essid(priv->essid,
4513 priv->essid_len),
4514 MAC_ARG(priv->bssid));
4515 memcpy(&priv->last_link_deterioration, x,
4516 sizeof(*x));
4517 } else {
4518 IPW_ERROR("Link Deterioration of wrong size %d "
4519 "(should be %zd)\n",
4520 notif->size, sizeof(*x));
4521 }
4522 break;
4523 }
4524
4525 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4526 IPW_ERROR("Dino config\n");
4527 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004528 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004529 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004530
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004531 break;
4532 }
4533
4534 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4535 struct notif_beacon_state *x = &notif->u.beacon_state;
4536 if (notif->size != sizeof(*x)) {
4537 IPW_ERROR
4538 ("Beacon state of wrong size %d (should "
4539 "be %zd)\n", notif->size, sizeof(*x));
4540 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004541 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004542
James Ketrenosa613bff2005-08-24 21:43:11 -05004543 if (le32_to_cpu(x->state) ==
4544 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4545 ipw_handle_missed_beacon(priv,
4546 le32_to_cpu(x->
4547 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004548
James Ketrenos43f66a62005-03-25 12:31:53 -06004549 break;
4550 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004551
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004552 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4553 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4554 if (notif->size == sizeof(*x)) {
4555 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4556 "0x%02x station %d\n",
4557 x->key_state, x->security_type,
4558 x->station_index);
4559 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004560 }
4561
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004562 IPW_ERROR
4563 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4564 notif->size, sizeof(*x));
4565 break;
4566 }
4567
4568 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4569 struct notif_calibration *x = &notif->u.calibration;
4570
4571 if (notif->size == sizeof(*x)) {
4572 memcpy(&priv->calib, x, sizeof(*x));
4573 IPW_DEBUG_INFO("TODO: Calibration\n");
4574 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004575 }
4576
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004577 IPW_ERROR
4578 ("Calibration of wrong size %d (should be %zd)\n",
4579 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004580 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004581 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004582
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004583 case HOST_NOTIFICATION_NOISE_STATS:{
4584 if (notif->size == sizeof(u32)) {
4585 priv->last_noise =
James Ketrenosa613bff2005-08-24 21:43:11 -05004586 (u8) (le32_to_cpu(notif->u.noise.value) &
4587 0xff);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004588 average_add(&priv->average_noise,
4589 priv->last_noise);
4590 break;
4591 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004592
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004593 IPW_ERROR
4594 ("Noise stat is wrong size %d (should be %zd)\n",
4595 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004596 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004597 }
4598
James Ketrenos43f66a62005-03-25 12:31:53 -06004599 default:
4600 IPW_ERROR("Unknown notification: "
4601 "subtype=%d,flags=0x%2x,size=%d\n",
4602 notif->subtype, notif->flags, notif->size);
4603 }
4604}
4605
4606/**
4607 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004608 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004609 * @param priv
4610 * @return error code
4611 */
4612static int ipw_queue_reset(struct ipw_priv *priv)
4613{
4614 int rc = 0;
4615 /** @todo customize queue sizes */
4616 int nTx = 64, nTxCmd = 8;
4617 ipw_tx_queue_free(priv);
4618 /* Tx CMD queue */
4619 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004620 IPW_TX_CMD_QUEUE_READ_INDEX,
4621 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4622 IPW_TX_CMD_QUEUE_BD_BASE,
4623 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004624 if (rc) {
4625 IPW_ERROR("Tx Cmd queue init failed\n");
4626 goto error;
4627 }
4628 /* Tx queue(s) */
4629 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004630 IPW_TX_QUEUE_0_READ_INDEX,
4631 IPW_TX_QUEUE_0_WRITE_INDEX,
4632 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004633 if (rc) {
4634 IPW_ERROR("Tx 0 queue init failed\n");
4635 goto error;
4636 }
4637 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004638 IPW_TX_QUEUE_1_READ_INDEX,
4639 IPW_TX_QUEUE_1_WRITE_INDEX,
4640 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004641 if (rc) {
4642 IPW_ERROR("Tx 1 queue init failed\n");
4643 goto error;
4644 }
4645 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004646 IPW_TX_QUEUE_2_READ_INDEX,
4647 IPW_TX_QUEUE_2_WRITE_INDEX,
4648 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004649 if (rc) {
4650 IPW_ERROR("Tx 2 queue init failed\n");
4651 goto error;
4652 }
4653 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004654 IPW_TX_QUEUE_3_READ_INDEX,
4655 IPW_TX_QUEUE_3_WRITE_INDEX,
4656 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004657 if (rc) {
4658 IPW_ERROR("Tx 3 queue init failed\n");
4659 goto error;
4660 }
4661 /* statistics */
4662 priv->rx_bufs_min = 0;
4663 priv->rx_pend_max = 0;
4664 return rc;
4665
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004666 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004667 ipw_tx_queue_free(priv);
4668 return rc;
4669}
4670
4671/**
4672 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004673 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004674 * When FW adwances 'R' index, all entries between old and
4675 * new 'R' index need to be reclaimed. As result, some free space
4676 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004677 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004678 * @note Need to protect against garbage in 'R' index
4679 * @param priv
4680 * @param txq
4681 * @param qindex
4682 * @return Number of used entries remains in the queue
4683 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004684static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004685 struct clx2_tx_queue *txq, int qindex)
4686{
4687 u32 hw_tail;
4688 int used;
4689 struct clx2_queue *q = &txq->q;
4690
4691 hw_tail = ipw_read32(priv, q->reg_r);
4692 if (hw_tail >= q->n_bd) {
4693 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004694 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4695 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004696 goto done;
4697 }
4698 for (; q->last_used != hw_tail;
4699 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4700 ipw_queue_tx_free_tfd(priv, txq);
4701 priv->tx_packets++;
4702 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004703 done:
James Ketrenos9ddf84f2005-08-16 17:07:11 -05004704 if ((ipw_queue_space(q) > q->low_mark) &&
4705 (qindex >= 0) &&
4706 (priv->status & STATUS_ASSOCIATED) && netif_running(priv->net_dev))
4707 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06004708 used = q->first_empty - q->last_used;
4709 if (used < 0)
4710 used += q->n_bd;
4711
4712 return used;
4713}
4714
4715static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4716 int len, int sync)
4717{
4718 struct clx2_tx_queue *txq = &priv->txq_cmd;
4719 struct clx2_queue *q = &txq->q;
4720 struct tfd_frame *tfd;
4721
4722 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4723 IPW_ERROR("No space for Tx\n");
4724 return -EBUSY;
4725 }
4726
4727 tfd = &txq->bd[q->first_empty];
4728 txq->txb[q->first_empty] = NULL;
4729
4730 memset(tfd, 0, sizeof(*tfd));
4731 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4732 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4733 priv->hcmd_seq++;
4734 tfd->u.cmd.index = hcmd;
4735 tfd->u.cmd.length = len;
4736 memcpy(tfd->u.cmd.payload, buf, len);
4737 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4738 ipw_write32(priv, q->reg_w, q->first_empty);
4739 _ipw_read32(priv, 0x90);
4740
4741 return 0;
4742}
4743
Jeff Garzikbf794512005-07-31 13:07:26 -04004744/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004745 * Rx theory of operation
4746 *
4747 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004748 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004749 * 0 to 31
4750 *
4751 * Rx Queue Indexes
4752 * The host/firmware share two index registers for managing the Rx buffers.
4753 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004754 * The READ index maps to the first position that the firmware may be writing
4755 * to -- the driver can read up to (but not including) this position and get
4756 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004757 * The READ index is managed by the firmware once the card is enabled.
4758 *
4759 * The WRITE index maps to the last position the driver has read from -- the
4760 * position preceding WRITE is the last slot the firmware can place a packet.
4761 *
4762 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004763 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004764 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004765 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004766 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4767 *
4768 * When the firmware places a packet in a buffer it will advance the READ index
4769 * and fire the RX interrupt. The driver can then query the READ index and
4770 * process as many packets as possible, moving the WRITE index forward as it
4771 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004772 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004773 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004774 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004775 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004776 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004777 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4778 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4779 * 'processed' and 'read' driver indexes as well)
4780 * + A received packet is processed and handed to the kernel network stack,
4781 * detached from the ipw->rxq. The driver 'processed' index is updated.
4782 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004783 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4784 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004785 * were enough free buffers and RX_STALLED is set it is cleared.
4786 *
4787 *
4788 * Driver sequence:
4789 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004790 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004791 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4792 * ipw_rx_queue_restock
4793 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4794 * queue, updates firmware pointers, and updates
4795 * the WRITE index. If insufficient rx_free buffers
4796 * are available, schedules ipw_rx_queue_replenish
4797 *
4798 * -- enable interrupts --
4799 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004800 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004801 * Moves the packet buffer from queue to rx_used.
4802 * Calls ipw_rx_queue_restock to refill any empty
4803 * slots.
4804 * ...
4805 *
4806 */
4807
Jeff Garzikbf794512005-07-31 13:07:26 -04004808/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004809 * If there are slots in the RX queue that need to be restocked,
4810 * and we have free pre-allocated buffers, fill the ranks as much
4811 * as we can pulling from rx_free.
4812 *
4813 * This moves the 'write' index forward to catch up with 'processed', and
4814 * also updates the memory address in the firmware to reference the new
4815 * target buffer.
4816 */
4817static void ipw_rx_queue_restock(struct ipw_priv *priv)
4818{
4819 struct ipw_rx_queue *rxq = priv->rxq;
4820 struct list_head *element;
4821 struct ipw_rx_mem_buffer *rxb;
4822 unsigned long flags;
4823 int write;
4824
4825 spin_lock_irqsave(&rxq->lock, flags);
4826 write = rxq->write;
4827 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4828 element = rxq->rx_free.next;
4829 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4830 list_del(element);
4831
James Ketrenosb095c382005-08-24 22:04:42 -05004832 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004833 rxb->dma_addr);
4834 rxq->queue[rxq->write] = rxb;
4835 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4836 rxq->free_count--;
4837 }
4838 spin_unlock_irqrestore(&rxq->lock, flags);
4839
Jeff Garzikbf794512005-07-31 13:07:26 -04004840 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004841 * refill it */
4842 if (rxq->free_count <= RX_LOW_WATERMARK)
4843 queue_work(priv->workqueue, &priv->rx_replenish);
4844
4845 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004846 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004847 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004848}
4849
4850/*
4851 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004852 * Also restock the Rx queue via ipw_rx_queue_restock.
4853 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004854 * This is called as a scheduled work item (except for during intialization)
4855 */
4856static void ipw_rx_queue_replenish(void *data)
4857{
4858 struct ipw_priv *priv = data;
4859 struct ipw_rx_queue *rxq = priv->rxq;
4860 struct list_head *element;
4861 struct ipw_rx_mem_buffer *rxb;
4862 unsigned long flags;
4863
4864 spin_lock_irqsave(&rxq->lock, flags);
4865 while (!list_empty(&rxq->rx_used)) {
4866 element = rxq->rx_used.next;
4867 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004868 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004869 if (!rxb->skb) {
4870 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4871 priv->net_dev->name);
4872 /* We don't reschedule replenish work here -- we will
4873 * call the restock method and if it still needs
4874 * more buffers it will schedule replenish */
4875 break;
4876 }
4877 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004878
James Ketrenos43f66a62005-03-25 12:31:53 -06004879 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004880 rxb->dma_addr =
4881 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004882 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004883
James Ketrenos43f66a62005-03-25 12:31:53 -06004884 list_add_tail(&rxb->list, &rxq->rx_free);
4885 rxq->free_count++;
4886 }
4887 spin_unlock_irqrestore(&rxq->lock, flags);
4888
4889 ipw_rx_queue_restock(priv);
4890}
4891
James Ketrenosc848d0a2005-08-24 21:56:24 -05004892static void ipw_bg_rx_queue_replenish(void *data)
4893{
4894 struct ipw_priv *priv = data;
4895 down(&priv->sem);
4896 ipw_rx_queue_replenish(data);
4897 up(&priv->sem);
4898}
4899
James Ketrenos43f66a62005-03-25 12:31:53 -06004900/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4901 * If an SKB has been detached, the POOL needs to have it's SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004902 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004903 * non NULL it is unmapped and freed
4904 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004905static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004906{
4907 int i;
4908
4909 if (!rxq)
4910 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004911
James Ketrenos43f66a62005-03-25 12:31:53 -06004912 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4913 if (rxq->pool[i].skb != NULL) {
4914 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004915 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004916 dev_kfree_skb(rxq->pool[i].skb);
4917 }
4918 }
4919
4920 kfree(rxq);
4921}
4922
4923static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4924{
4925 struct ipw_rx_queue *rxq;
4926 int i;
4927
4928 rxq = (struct ipw_rx_queue *)kmalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004929 if (unlikely(!rxq)) {
4930 IPW_ERROR("memory allocation failed\n");
4931 return NULL;
4932 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004933 memset(rxq, 0, sizeof(*rxq));
4934 spin_lock_init(&rxq->lock);
4935 INIT_LIST_HEAD(&rxq->rx_free);
4936 INIT_LIST_HEAD(&rxq->rx_used);
4937
4938 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004939 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004940 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4941
4942 /* Set us so that we have processed and used all buffers, but have
4943 * not restocked the Rx queue with fresh buffers */
4944 rxq->read = rxq->write = 0;
4945 rxq->processed = RX_QUEUE_SIZE - 1;
4946 rxq->free_count = 0;
4947
4948 return rxq;
4949}
4950
4951static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4952{
4953 rate &= ~IEEE80211_BASIC_RATE_MASK;
4954 if (ieee_mode == IEEE_A) {
4955 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004956 case IEEE80211_OFDM_RATE_6MB:
4957 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004958 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004959 case IEEE80211_OFDM_RATE_9MB:
4960 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004961 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004962 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004963 return priv->
4964 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004965 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004966 return priv->
4967 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004968 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004969 return priv->
4970 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004971 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004972 return priv->
4973 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004974 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004975 return priv->
4976 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004977 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004978 return priv->
4979 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004980 default:
4981 return 0;
4982 }
4983 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004984
James Ketrenos43f66a62005-03-25 12:31:53 -06004985 /* B and G mixed */
4986 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004987 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004988 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004989 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004990 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004991 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004992 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004993 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004994 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
4995 }
4996
4997 /* If we are limited to B modulations, bail at this point */
4998 if (ieee_mode == IEEE_B)
4999 return 0;
5000
5001 /* G */
5002 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005003 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005004 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005005 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005006 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005007 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005008 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005009 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005010 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005011 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005012 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005013 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005014 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005015 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005016 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005017 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005018 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
5019 }
5020
5021 return 0;
5022}
5023
Jeff Garzikbf794512005-07-31 13:07:26 -04005024static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005025 const struct ieee80211_network *network,
5026 struct ipw_supported_rates *rates)
5027{
5028 int num_rates, i;
5029
5030 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005031 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005032 rates->num_rates = 0;
5033 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005034 if (!ipw_is_rate_in_mask(priv, network->mode,
5035 network->rates[i])) {
5036
James Ketrenosea2b26e2005-08-24 21:25:16 -05005037 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005038 IPW_DEBUG_SCAN("Adding masked mandatory "
5039 "rate %02X\n",
5040 network->rates[i]);
5041 rates->supported_rates[rates->num_rates++] =
5042 network->rates[i];
5043 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005044 }
5045
James Ketrenos43f66a62005-03-25 12:31:53 -06005046 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5047 network->rates[i], priv->rates_mask);
5048 continue;
5049 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005050
James Ketrenos43f66a62005-03-25 12:31:53 -06005051 rates->supported_rates[rates->num_rates++] = network->rates[i];
5052 }
5053
James Ketrenosa613bff2005-08-24 21:43:11 -05005054 num_rates = min(network->rates_ex_len,
5055 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005056 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005057 if (!ipw_is_rate_in_mask(priv, network->mode,
5058 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005059 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005060 IPW_DEBUG_SCAN("Adding masked mandatory "
5061 "rate %02X\n",
5062 network->rates_ex[i]);
5063 rates->supported_rates[rates->num_rates++] =
5064 network->rates[i];
5065 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005066 }
5067
James Ketrenos43f66a62005-03-25 12:31:53 -06005068 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5069 network->rates_ex[i], priv->rates_mask);
5070 continue;
5071 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005072
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005073 rates->supported_rates[rates->num_rates++] =
5074 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005075 }
5076
James Ketrenosea2b26e2005-08-24 21:25:16 -05005077 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005078}
5079
5080static inline void ipw_copy_rates(struct ipw_supported_rates *dest,
5081 const struct ipw_supported_rates *src)
5082{
5083 u8 i;
5084 for (i = 0; i < src->num_rates; i++)
5085 dest->supported_rates[i] = src->supported_rates[i];
5086 dest->num_rates = src->num_rates;
5087}
5088
5089/* TODO: Look at sniffed packets in the air to determine if the basic rate
5090 * mask should ever be used -- right now all callers to add the scan rates are
5091 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5092static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005093 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005094{
Jeff Garzikbf794512005-07-31 13:07:26 -04005095 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005096 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005097
James Ketrenos43f66a62005-03-25 12:31:53 -06005098 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005099 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005100 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005101
5102 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005103 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005104 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005105
5106 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005107 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005108 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005109
5110 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005111 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005112 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005113}
5114
5115static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005116 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005117{
Jeff Garzikbf794512005-07-31 13:07:26 -04005118 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005119 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005120
5121 if (rate_mask & IEEE80211_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005122 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005123 IEEE80211_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005124
5125 if (rate_mask & IEEE80211_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005126 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005127 IEEE80211_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005128
5129 if (rate_mask & IEEE80211_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005130 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005131 IEEE80211_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005132
5133 if (rate_mask & IEEE80211_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005134 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005135 IEEE80211_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005136
5137 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005138 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005139 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005140
5141 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005142 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005143 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005144
5145 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005146 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005147 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005148
5149 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005150 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005151 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005152}
5153
5154struct ipw_network_match {
5155 struct ieee80211_network *network;
5156 struct ipw_supported_rates rates;
5157};
5158
James Ketrenosc848d0a2005-08-24 21:56:24 -05005159static int ipw_find_adhoc_network(struct ipw_priv *priv,
5160 struct ipw_network_match *match,
5161 struct ieee80211_network *network,
5162 int roaming)
5163{
5164 struct ipw_supported_rates rates;
5165
5166 /* Verify that this network's capability is compatible with the
5167 * current mode (AdHoc or Infrastructure) */
5168 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5169 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5170 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5171 "capability mismatch.\n",
5172 escape_essid(network->ssid, network->ssid_len),
5173 MAC_ARG(network->bssid));
5174 return 0;
5175 }
5176
5177 /* If we do not have an ESSID for this AP, we can not associate with
5178 * it */
5179 if (network->flags & NETWORK_EMPTY_ESSID) {
5180 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5181 "because of hidden ESSID.\n",
5182 escape_essid(network->ssid, network->ssid_len),
5183 MAC_ARG(network->bssid));
5184 return 0;
5185 }
5186
5187 if (unlikely(roaming)) {
5188 /* If we are roaming, then ensure check if this is a valid
5189 * network to try and roam to */
5190 if ((network->ssid_len != match->network->ssid_len) ||
5191 memcmp(network->ssid, match->network->ssid,
5192 network->ssid_len)) {
5193 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5194 "because of non-network ESSID.\n",
5195 escape_essid(network->ssid,
5196 network->ssid_len),
5197 MAC_ARG(network->bssid));
5198 return 0;
5199 }
5200 } else {
5201 /* If an ESSID has been configured then compare the broadcast
5202 * ESSID to ours */
5203 if ((priv->config & CFG_STATIC_ESSID) &&
5204 ((network->ssid_len != priv->essid_len) ||
5205 memcmp(network->ssid, priv->essid,
5206 min(network->ssid_len, priv->essid_len)))) {
5207 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005208
James Ketrenosc848d0a2005-08-24 21:56:24 -05005209 strncpy(escaped,
5210 escape_essid(network->ssid, network->ssid_len),
5211 sizeof(escaped));
5212 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5213 "because of ESSID mismatch: '%s'.\n",
5214 escaped, MAC_ARG(network->bssid),
5215 escape_essid(priv->essid,
5216 priv->essid_len));
5217 return 0;
5218 }
5219 }
5220
5221 /* If the old network rate is better than this one, don't bother
5222 * testing everything else. */
5223
5224 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005225 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5226 "current network.\n",
5227 escape_essid(match->network->ssid,
5228 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005229 return 0;
5230 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005231 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5232 "current network.\n",
5233 escape_essid(match->network->ssid,
5234 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005235 return 0;
5236 }
5237
5238 /* Now go through and see if the requested network is valid... */
5239 if (priv->ieee->scan_age != 0 &&
5240 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5241 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5242 "because of age: %lums.\n",
5243 escape_essid(network->ssid, network->ssid_len),
5244 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005245 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005246 return 0;
5247 }
5248
5249 if ((priv->config & CFG_STATIC_CHANNEL) &&
5250 (network->channel != priv->channel)) {
5251 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5252 "because of channel mismatch: %d != %d.\n",
5253 escape_essid(network->ssid, network->ssid_len),
5254 MAC_ARG(network->bssid),
5255 network->channel, priv->channel);
5256 return 0;
5257 }
5258
5259 /* Verify privacy compatability */
5260 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5261 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5262 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5263 "because of privacy mismatch: %s != %s.\n",
5264 escape_essid(network->ssid, network->ssid_len),
5265 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005266 priv->
5267 capability & CAP_PRIVACY_ON ? "on" : "off",
5268 network->
5269 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5270 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005271 return 0;
5272 }
5273
5274 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5275 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5276 "because of the same BSSID match: " MAC_FMT
5277 ".\n", escape_essid(network->ssid,
5278 network->ssid_len),
5279 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5280 return 0;
5281 }
5282
5283 /* Filter out any incompatible freq / mode combinations */
5284 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5285 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5286 "because of invalid frequency/mode "
5287 "combination.\n",
5288 escape_essid(network->ssid, network->ssid_len),
5289 MAC_ARG(network->bssid));
5290 return 0;
5291 }
5292
5293 /* Ensure that the rates supported by the driver are compatible with
5294 * this AP, including verification of basic rates (mandatory) */
5295 if (!ipw_compatible_rates(priv, network, &rates)) {
5296 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5297 "because configured rate mask excludes "
5298 "AP mandatory rate.\n",
5299 escape_essid(network->ssid, network->ssid_len),
5300 MAC_ARG(network->bssid));
5301 return 0;
5302 }
5303
5304 if (rates.num_rates == 0) {
5305 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5306 "because of no compatible rates.\n",
5307 escape_essid(network->ssid, network->ssid_len),
5308 MAC_ARG(network->bssid));
5309 return 0;
5310 }
5311
5312 /* TODO: Perform any further minimal comparititive tests. We do not
5313 * want to put too much policy logic here; intelligent scan selection
5314 * should occur within a generic IEEE 802.11 user space tool. */
5315
5316 /* Set up 'new' AP to this network */
5317 ipw_copy_rates(&match->rates, &rates);
5318 match->network = network;
5319 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5320 escape_essid(network->ssid, network->ssid_len),
5321 MAC_ARG(network->bssid));
5322
5323 return 1;
5324}
5325
5326static void ipw_merge_adhoc_network(void *data)
5327{
5328 struct ipw_priv *priv = data;
5329 struct ieee80211_network *network = NULL;
5330 struct ipw_network_match match = {
5331 .network = priv->assoc_network
5332 };
5333
James Ketrenosafbf30a2005-08-25 00:05:33 -05005334 if ((priv->status & STATUS_ASSOCIATED) &&
5335 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005336 /* First pass through ROAM process -- look for a better
5337 * network */
5338 unsigned long flags;
5339
5340 spin_lock_irqsave(&priv->ieee->lock, flags);
5341 list_for_each_entry(network, &priv->ieee->network_list, list) {
5342 if (network != priv->assoc_network)
5343 ipw_find_adhoc_network(priv, &match, network,
5344 1);
5345 }
5346 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5347
5348 if (match.network == priv->assoc_network) {
5349 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5350 "merge to.\n");
5351 return;
5352 }
5353
5354 down(&priv->sem);
5355 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5356 IPW_DEBUG_MERGE("remove network %s\n",
5357 escape_essid(priv->essid,
5358 priv->essid_len));
5359 ipw_remove_current_network(priv);
5360 }
5361
5362 ipw_disassociate(priv);
5363 priv->assoc_network = match.network;
5364 up(&priv->sem);
5365 return;
5366 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005367}
5368
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005369static int ipw_best_network(struct ipw_priv *priv,
5370 struct ipw_network_match *match,
5371 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005372{
5373 struct ipw_supported_rates rates;
5374
5375 /* Verify that this network's capability is compatible with the
5376 * current mode (AdHoc or Infrastructure) */
5377 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005378 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005379 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5380 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5381 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005382 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005383 escape_essid(network->ssid, network->ssid_len),
5384 MAC_ARG(network->bssid));
5385 return 0;
5386 }
5387
5388 /* If we do not have an ESSID for this AP, we can not associate with
5389 * it */
5390 if (network->flags & NETWORK_EMPTY_ESSID) {
5391 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5392 "because of hidden ESSID.\n",
5393 escape_essid(network->ssid, network->ssid_len),
5394 MAC_ARG(network->bssid));
5395 return 0;
5396 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005397
James Ketrenos43f66a62005-03-25 12:31:53 -06005398 if (unlikely(roaming)) {
5399 /* If we are roaming, then ensure check if this is a valid
5400 * network to try and roam to */
5401 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005402 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005403 network->ssid_len)) {
5404 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5405 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005406 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005407 network->ssid_len),
5408 MAC_ARG(network->bssid));
5409 return 0;
5410 }
5411 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005412 /* If an ESSID has been configured then compare the broadcast
5413 * ESSID to ours */
5414 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005415 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005416 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005417 min(network->ssid_len, priv->essid_len)))) {
5418 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005419 strncpy(escaped,
5420 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005421 sizeof(escaped));
5422 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005423 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005424 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005425 escape_essid(priv->essid,
5426 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005427 return 0;
5428 }
5429 }
5430
5431 /* If the old network rate is better than this one, don't bother
5432 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005433 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005434 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005435 strncpy(escaped,
5436 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005437 sizeof(escaped));
5438 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5439 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5440 escaped, MAC_ARG(network->bssid),
5441 escape_essid(match->network->ssid,
5442 match->network->ssid_len),
5443 MAC_ARG(match->network->bssid));
5444 return 0;
5445 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005446
James Ketrenos43f66a62005-03-25 12:31:53 -06005447 /* If this network has already had an association attempt within the
5448 * last 3 seconds, do not try and associate again... */
5449 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005450 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005451 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
James Ketrenosafbf30a2005-08-25 00:05:33 -05005452 "because of storming (%lus since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005453 "assoc attempt).\n",
5454 escape_essid(network->ssid, network->ssid_len),
5455 MAC_ARG(network->bssid),
5456 (jiffies - network->last_associate) / HZ);
5457 return 0;
5458 }
5459
5460 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005461 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005462 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005463 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5464 "because of age: %lums.\n",
5465 escape_essid(network->ssid, network->ssid_len),
5466 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005467 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06005468 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005469 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005470
Jeff Garzikbf794512005-07-31 13:07:26 -04005471 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005472 (network->channel != priv->channel)) {
5473 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5474 "because of channel mismatch: %d != %d.\n",
5475 escape_essid(network->ssid, network->ssid_len),
5476 MAC_ARG(network->bssid),
5477 network->channel, priv->channel);
5478 return 0;
5479 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005480
James Ketrenos43f66a62005-03-25 12:31:53 -06005481 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005482 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005483 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5484 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5485 "because of privacy mismatch: %s != %s.\n",
5486 escape_essid(network->ssid, network->ssid_len),
5487 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005488 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005489 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005490 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005491 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005492 return 0;
5493 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005494
5495 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005496 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5497 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5498 "because of BSSID mismatch: " MAC_FMT ".\n",
5499 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005500 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005501 return 0;
5502 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005503
James Ketrenos43f66a62005-03-25 12:31:53 -06005504 /* Filter out any incompatible freq / mode combinations */
5505 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5506 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5507 "because of invalid frequency/mode "
5508 "combination.\n",
5509 escape_essid(network->ssid, network->ssid_len),
5510 MAC_ARG(network->bssid));
5511 return 0;
5512 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005513
Liu Hong1fe0adb2005-08-19 09:33:10 -05005514 /* Filter out invalid channel in current GEO */
5515 if (!ipw_is_valid_channel(priv->ieee, network->channel)) {
5516 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5517 "because of invalid channel in current GEO\n",
5518 escape_essid(network->ssid, network->ssid_len),
5519 MAC_ARG(network->bssid));
5520 return 0;
5521 }
5522
James Ketrenosea2b26e2005-08-24 21:25:16 -05005523 /* Ensure that the rates supported by the driver are compatible with
5524 * this AP, including verification of basic rates (mandatory) */
5525 if (!ipw_compatible_rates(priv, network, &rates)) {
5526 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5527 "because configured rate mask excludes "
5528 "AP mandatory rate.\n",
5529 escape_essid(network->ssid, network->ssid_len),
5530 MAC_ARG(network->bssid));
5531 return 0;
5532 }
5533
James Ketrenos43f66a62005-03-25 12:31:53 -06005534 if (rates.num_rates == 0) {
5535 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5536 "because of no compatible rates.\n",
5537 escape_essid(network->ssid, network->ssid_len),
5538 MAC_ARG(network->bssid));
5539 return 0;
5540 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005541
James Ketrenos43f66a62005-03-25 12:31:53 -06005542 /* TODO: Perform any further minimal comparititive tests. We do not
5543 * want to put too much policy logic here; intelligent scan selection
5544 * should occur within a generic IEEE 802.11 user space tool. */
5545
5546 /* Set up 'new' AP to this network */
5547 ipw_copy_rates(&match->rates, &rates);
5548 match->network = network;
5549
5550 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5551 escape_essid(network->ssid, network->ssid_len),
5552 MAC_ARG(network->bssid));
5553
5554 return 1;
5555}
5556
Jeff Garzikbf794512005-07-31 13:07:26 -04005557static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005558 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005559{
Liu Hong1fe0adb2005-08-19 09:33:10 -05005560 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005561 int i;
5562
James Ketrenos43f66a62005-03-25 12:31:53 -06005563 /*
5564 * For the purposes of scanning, we can set our wireless mode
5565 * to trigger scans across combinations of bands, but when it
5566 * comes to creating a new ad-hoc network, we have tell the FW
5567 * exactly which band to use.
5568 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005569 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005570 * chossen band. Attempting to create a new ad-hoc network
5571 * with an invalid channel for wireless mode will trigger a
5572 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005573 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005574 */
Liu Hong1fe0adb2005-08-19 09:33:10 -05005575 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005576 case IEEE80211_52GHZ_BAND:
5577 network->mode = IEEE_A;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005578 i = ipw_channel_to_index(priv->ieee, priv->channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005579 if (i == -1)
5580 BUG();
5581 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5582 IPW_WARNING("Overriding invalid channel\n");
5583 priv->channel = geo->a[0].channel;
5584 }
5585 break;
5586
5587 case IEEE80211_24GHZ_BAND:
5588 if (priv->ieee->mode & IEEE_G)
5589 network->mode = IEEE_G;
5590 else
5591 network->mode = IEEE_B;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005592 i = ipw_channel_to_index(priv->ieee, priv->channel);
5593 if (i == -1)
5594 BUG();
5595 if (geo->bg[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5596 IPW_WARNING("Overriding invalid channel\n");
5597 priv->channel = geo->bg[0].channel;
5598 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005599 break;
5600
5601 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005602 IPW_WARNING("Overriding invalid channel\n");
5603 if (priv->ieee->mode & IEEE_A) {
5604 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005605 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005606 } else if (priv->ieee->mode & IEEE_G) {
5607 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005608 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005609 } else {
5610 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005611 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005612 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005613 break;
5614 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005615
5616 network->channel = priv->channel;
5617 priv->config |= CFG_ADHOC_PERSIST;
5618 ipw_create_bssid(priv, network->bssid);
5619 network->ssid_len = priv->essid_len;
5620 memcpy(network->ssid, priv->essid, priv->essid_len);
5621 memset(&network->stats, 0, sizeof(network->stats));
5622 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005623 if (!(priv->config & CFG_PREAMBLE_LONG))
5624 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005625 if (priv->capability & CAP_PRIVACY_ON)
5626 network->capability |= WLAN_CAPABILITY_PRIVACY;
5627 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005628 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005629 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005630 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005631 &priv->rates.supported_rates[network->rates_len],
5632 network->rates_ex_len);
5633 network->last_scanned = 0;
5634 network->flags = 0;
5635 network->last_associate = 0;
5636 network->time_stamp[0] = 0;
5637 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005638 network->beacon_interval = 100; /* Default */
5639 network->listen_interval = 10; /* Default */
5640 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005641 network->wpa_ie_len = 0;
5642 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005643}
5644
James Ketrenosb095c382005-08-24 22:04:42 -05005645static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5646{
5647 struct ipw_tgi_tx_key *key;
5648 struct host_cmd cmd = {
5649 .cmd = IPW_CMD_TGI_TX_KEY,
5650 .len = sizeof(*key)
5651 };
5652
5653 if (!(priv->ieee->sec.flags & (1 << index)))
5654 return;
5655
5656 key = (struct ipw_tgi_tx_key *)&cmd.param;
5657 key->key_id = index;
5658 memcpy(key->key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5659 key->security_type = type;
5660 key->station_index = 0; /* always 0 for BSS */
5661 key->flags = 0;
5662 /* 0 for new key; previous value of counter (after fatal error) */
5663 key->tx_counter[0] = 0;
5664 key->tx_counter[1] = 0;
5665
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005666 ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05005667}
5668
5669static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005670{
5671 struct ipw_wep_key *key;
5672 int i;
5673 struct host_cmd cmd = {
5674 .cmd = IPW_CMD_WEP_KEY,
5675 .len = sizeof(*key)
5676 };
5677
5678 key = (struct ipw_wep_key *)&cmd.param;
5679 key->cmd_id = DINO_CMD_WEP_KEY;
5680 key->seq_num = 0;
5681
James Ketrenosb095c382005-08-24 22:04:42 -05005682 /* Note: AES keys cannot be set for multiple times.
5683 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005684 for (i = 0; i < 4; i++) {
James Ketrenosb095c382005-08-24 22:04:42 -05005685 key->key_index = i | type;
5686 if (!(priv->ieee->sec.flags & (1 << i))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005687 key->key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005688 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005689 }
5690
James Ketrenosb095c382005-08-24 22:04:42 -05005691 key->key_size = priv->ieee->sec.key_sizes[i];
5692 memcpy(key->key, priv->ieee->sec.keys[i], key->key_size);
5693
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005694 ipw_send_cmd(priv, &cmd);
Jeff Garzikbf794512005-07-31 13:07:26 -04005695 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005696}
5697
Zhu Yi1fbfea52005-08-05 17:22:56 +08005698static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5699{
5700 if (priv->ieee->host_encrypt)
5701 return;
5702
5703 switch (level) {
5704 case SEC_LEVEL_3:
5705 priv->sys_config.disable_unicast_decryption = 0;
5706 priv->ieee->host_decrypt = 0;
5707 break;
5708 case SEC_LEVEL_2:
5709 priv->sys_config.disable_unicast_decryption = 1;
5710 priv->ieee->host_decrypt = 1;
5711 break;
5712 case SEC_LEVEL_1:
5713 priv->sys_config.disable_unicast_decryption = 0;
5714 priv->ieee->host_decrypt = 0;
5715 break;
5716 case SEC_LEVEL_0:
5717 priv->sys_config.disable_unicast_decryption = 1;
5718 break;
5719 default:
5720 break;
5721 }
5722}
5723
5724static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5725{
5726 if (priv->ieee->host_encrypt)
5727 return;
5728
5729 switch (level) {
5730 case SEC_LEVEL_3:
5731 priv->sys_config.disable_multicast_decryption = 0;
5732 break;
5733 case SEC_LEVEL_2:
5734 priv->sys_config.disable_multicast_decryption = 1;
5735 break;
5736 case SEC_LEVEL_1:
5737 priv->sys_config.disable_multicast_decryption = 0;
5738 break;
5739 case SEC_LEVEL_0:
5740 priv->sys_config.disable_multicast_decryption = 1;
5741 break;
5742 default:
5743 break;
5744 }
5745}
5746
James Ketrenosb095c382005-08-24 22:04:42 -05005747static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5748{
5749 switch (priv->ieee->sec.level) {
5750 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005751 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5752 ipw_send_tgi_tx_key(priv,
5753 DCT_FLAG_EXT_SECURITY_CCM,
5754 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005755
James Ketrenosb095c382005-08-24 22:04:42 -05005756 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005757 break;
5758 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005759 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5760 ipw_send_tgi_tx_key(priv,
5761 DCT_FLAG_EXT_SECURITY_TKIP,
5762 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005763 break;
5764 case SEC_LEVEL_1:
5765 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenosb095c382005-08-24 22:04:42 -05005766 break;
5767 case SEC_LEVEL_0:
5768 default:
5769 break;
5770 }
Zhu Yi1fbfea52005-08-05 17:22:56 +08005771
5772 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
5773 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05005774}
5775
James Ketrenos43f66a62005-03-25 12:31:53 -06005776static void ipw_adhoc_check(void *data)
5777{
5778 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005779
James Ketrenosafbf30a2005-08-25 00:05:33 -05005780 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005781 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005782 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5783 IPW_DL_STATE | IPW_DL_ASSOC,
5784 "Missed beacon: %d - disassociate\n",
5785 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005786 ipw_remove_current_network(priv);
5787 ipw_disassociate(priv);
5788 return;
5789 }
5790
Jeff Garzikbf794512005-07-31 13:07:26 -04005791 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005792 priv->assoc_request.beacon_interval);
5793}
5794
James Ketrenosc848d0a2005-08-24 21:56:24 -05005795static void ipw_bg_adhoc_check(void *data)
5796{
5797 struct ipw_priv *priv = data;
5798 down(&priv->sem);
5799 ipw_adhoc_check(data);
5800 up(&priv->sem);
5801}
5802
James Ketrenos43f66a62005-03-25 12:31:53 -06005803#ifdef CONFIG_IPW_DEBUG
5804static void ipw_debug_config(struct ipw_priv *priv)
5805{
5806 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5807 "[CFG 0x%08X]\n", priv->config);
5808 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005809 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005810 else
5811 IPW_DEBUG_INFO("Channel unlocked.\n");
5812 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005813 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005814 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005815 else
5816 IPW_DEBUG_INFO("ESSID unlocked.\n");
5817 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005818 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5819 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005820 else
5821 IPW_DEBUG_INFO("BSSID unlocked.\n");
5822 if (priv->capability & CAP_PRIVACY_ON)
5823 IPW_DEBUG_INFO("PRIVACY on\n");
5824 else
5825 IPW_DEBUG_INFO("PRIVACY off\n");
5826 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5827}
5828#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005829#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005830#endif
5831
James Ketrenosb095c382005-08-24 22:04:42 -05005832static inline void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005833{
5834 /* TODO: Verify that this works... */
5835 struct ipw_fixed_rate fr = {
5836 .tx_rates = priv->rates_mask
5837 };
5838 u32 reg;
5839 u16 mask = 0;
5840
Jeff Garzikbf794512005-07-31 13:07:26 -04005841 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005842 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005843
James Ketrenos43f66a62005-03-25 12:31:53 -06005844 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005845 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005846 /* IEEE_A */
5847 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5848 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005849 IPW_DEBUG_WX
5850 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005851 fr.tx_rates = 0;
5852 break;
5853 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005854
James Ketrenos43f66a62005-03-25 12:31:53 -06005855 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5856 break;
5857
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005858 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005859 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005860 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005861 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5862 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005863 IPW_DEBUG_WX
5864 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005865 fr.tx_rates = 0;
5866 }
5867 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005868 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005869
5870 /* IEEE_G */
5871 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5872 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 }
5879
5880 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5881 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5882 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5883 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005884
James Ketrenos43f66a62005-03-25 12:31:53 -06005885 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5886 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5887 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5888 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005889
James Ketrenos43f66a62005-03-25 12:31:53 -06005890 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5891 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5892 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5893 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005894
James Ketrenos43f66a62005-03-25 12:31:53 -06005895 fr.tx_rates |= mask;
5896 break;
5897 }
5898
5899 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005900 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005901}
5902
James Ketrenosea2b26e2005-08-24 21:25:16 -05005903static void ipw_abort_scan(struct ipw_priv *priv)
5904{
5905 int err;
5906
5907 if (priv->status & STATUS_SCAN_ABORTING) {
5908 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5909 return;
5910 }
5911 priv->status |= STATUS_SCAN_ABORTING;
5912
5913 err = ipw_send_scan_abort(priv);
5914 if (err)
5915 IPW_DEBUG_HC("Request to abort scan failed.\n");
5916}
5917
James Ketrenosafbf30a2005-08-25 00:05:33 -05005918static void ipw_add_scan_channels(struct ipw_priv *priv,
5919 struct ipw_scan_request_ext *scan,
5920 int scan_type)
5921{
5922 int channel_index = 0;
5923 const struct ieee80211_geo *geo;
5924 int i;
5925
Liu Hong1fe0adb2005-08-19 09:33:10 -05005926 geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005927
5928 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5929 int start = channel_index;
5930 for (i = 0; i < geo->a_channels; i++) {
5931 if ((priv->status & STATUS_ASSOCIATED) &&
5932 geo->a[i].channel == priv->channel)
5933 continue;
5934 channel_index++;
5935 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005936 ipw_set_scan_type(scan, channel_index,
5937 geo->a[i].
5938 flags & IEEE80211_CH_PASSIVE_ONLY ?
5939 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
5940 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005941 }
5942
5943 if (start != channel_index) {
5944 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5945 (channel_index - start);
5946 channel_index++;
5947 }
5948 }
5949
5950 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5951 int start = channel_index;
5952 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005953 int index;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005954 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5955 /* nop out the list */
5956 [0] = 0
5957 };
5958
5959 u8 channel;
5960 while (channel_index < IPW_SCAN_CHANNELS) {
5961 channel =
5962 priv->speed_scan[priv->speed_scan_pos];
5963 if (channel == 0) {
5964 priv->speed_scan_pos = 0;
5965 channel = priv->speed_scan[0];
5966 }
5967 if ((priv->status & STATUS_ASSOCIATED) &&
5968 channel == priv->channel) {
5969 priv->speed_scan_pos++;
5970 continue;
5971 }
5972
5973 /* If this channel has already been
5974 * added in scan, break from loop
5975 * and this will be the first channel
5976 * in the next scan.
5977 */
5978 if (channels[channel - 1] != 0)
5979 break;
5980
5981 channels[channel - 1] = 1;
5982 priv->speed_scan_pos++;
5983 channel_index++;
5984 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005985 index =
5986 ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005987 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05005988 geo->bg[index].
5989 flags &
5990 IEEE80211_CH_PASSIVE_ONLY ?
5991 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
5992 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005993 }
5994 } else {
5995 for (i = 0; i < geo->bg_channels; i++) {
5996 if ((priv->status & STATUS_ASSOCIATED) &&
5997 geo->bg[i].channel == priv->channel)
5998 continue;
5999 channel_index++;
6000 scan->channels_list[channel_index] =
6001 geo->bg[i].channel;
6002 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006003 geo->bg[i].
6004 flags &
6005 IEEE80211_CH_PASSIVE_ONLY ?
6006 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6007 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006008 }
6009 }
6010
6011 if (start != channel_index) {
6012 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6013 (channel_index - start);
6014 }
6015 }
6016}
6017
James Ketrenosea2b26e2005-08-24 21:25:16 -05006018static int ipw_request_scan(struct ipw_priv *priv)
6019{
6020 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006021 int err = 0, scan_type;
6022
6023 if (!(priv->status & STATUS_INIT) ||
6024 (priv->status & STATUS_EXIT_PENDING))
6025 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006026
James Ketrenosb095c382005-08-24 22:04:42 -05006027 down(&priv->sem);
6028
James Ketrenosea2b26e2005-08-24 21:25:16 -05006029 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05006030 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05006031 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006032 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006033 }
6034
James Ketrenosafbf30a2005-08-25 00:05:33 -05006035 if (!(priv->status & STATUS_SCAN_FORCED) &&
6036 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006037 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6038 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006039 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006040 }
6041
6042 if (priv->status & STATUS_RF_KILL_MASK) {
6043 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6044 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006045 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006046 }
6047
6048 memset(&scan, 0, sizeof(scan));
6049
James Ketrenosb095c382005-08-24 22:04:42 -05006050 if (priv->config & CFG_SPEED_SCAN)
6051 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6052 cpu_to_le16(30);
6053 else
6054 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6055 cpu_to_le16(20);
6056
James Ketrenosa613bff2005-08-24 21:43:11 -05006057 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
6058 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05006059 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006060
James Ketrenosa613bff2005-08-24 21:43:11 -05006061 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006062
James Ketrenosb095c382005-08-24 22:04:42 -05006063#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006064 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006065 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006066 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006067
Liu Hong1fe0adb2005-08-19 09:33:10 -05006068 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006069 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006070 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006071 channel = priv->channel;
6072 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006073
James Ketrenosb095c382005-08-24 22:04:42 -05006074 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006075 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006076 channel = priv->channel;
6077 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006078
James Ketrenosb095c382005-08-24 22:04:42 -05006079 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006080 band = (u8) (IPW_B_MODE << 6) | 1;
6081 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006082 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006083 }
6084
James Ketrenosb095c382005-08-24 22:04:42 -05006085 scan.channels_list[0] = band;
6086 scan.channels_list[1] = channel;
6087 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006088
James Ketrenosb095c382005-08-24 22:04:42 -05006089 /* NOTE: The card will sit on this channel for this time
6090 * period. Scan aborts are timing sensitive and frequently
6091 * result in firmware restarts. As such, it is best to
6092 * set a small dwell_time here and just keep re-issuing
6093 * scans. Otherwise fast channel hopping will not actually
6094 * hop channels.
6095 *
6096 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006097 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6098 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006099 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006100#endif /* CONFIG_IPW2200_MONITOR */
6101 /* If we are roaming, then make this a directed scan for the
6102 * current network. Otherwise, ensure that every other scan
6103 * is a fast channel hop scan */
6104 if ((priv->status & STATUS_ROAMING)
6105 || (!(priv->status & STATUS_ASSOCIATED)
6106 && (priv->config & CFG_STATIC_ESSID)
6107 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006108 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6109 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006110 IPW_DEBUG_HC("Attempt to send SSID command "
6111 "failed.\n");
6112 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006113 }
6114
6115 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006116 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006117 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006118
James Ketrenosafbf30a2005-08-25 00:05:33 -05006119 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006120#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006121 }
6122#endif
6123
6124 err = ipw_send_scan_request_ext(priv, &scan);
6125 if (err) {
6126 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006127 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006128 }
6129
6130 priv->status |= STATUS_SCANNING;
6131 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006132 queue_delayed_work(priv->workqueue, &priv->scan_check,
6133 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05006134 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05006135 up(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05006136 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006137}
6138
6139static void ipw_bg_abort_scan(void *data)
6140{
6141 struct ipw_priv *priv = data;
6142 down(&priv->sem);
6143 ipw_abort_scan(data);
6144 up(&priv->sem);
6145}
6146
James Ketrenosafbf30a2005-08-25 00:05:33 -05006147#if WIRELESS_EXT < 18
6148/* Support for wpa_supplicant before WE-18, deprecated. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006149
6150/* following definitions must match definitions in driver_ipw.c */
6151
6152#define IPW_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
6153
6154#define IPW_CMD_SET_WPA_PARAM 1
6155#define IPW_CMD_SET_WPA_IE 2
6156#define IPW_CMD_SET_ENCRYPTION 3
6157#define IPW_CMD_MLME 4
6158
6159#define IPW_PARAM_WPA_ENABLED 1
6160#define IPW_PARAM_TKIP_COUNTERMEASURES 2
6161#define IPW_PARAM_DROP_UNENCRYPTED 3
6162#define IPW_PARAM_PRIVACY_INVOKED 4
6163#define IPW_PARAM_AUTH_ALGS 5
6164#define IPW_PARAM_IEEE_802_1X 6
6165
6166#define IPW_MLME_STA_DEAUTH 1
6167#define IPW_MLME_STA_DISASSOC 2
6168
6169#define IPW_CRYPT_ERR_UNKNOWN_ALG 2
6170#define IPW_CRYPT_ERR_UNKNOWN_ADDR 3
6171#define IPW_CRYPT_ERR_CRYPT_INIT_FAILED 4
6172#define IPW_CRYPT_ERR_KEY_SET_FAILED 5
6173#define IPW_CRYPT_ERR_TX_KEY_SET_FAILED 6
6174#define IPW_CRYPT_ERR_CARD_CONF_FAILED 7
6175
6176#define IPW_CRYPT_ALG_NAME_LEN 16
6177
6178struct ipw_param {
6179 u32 cmd;
6180 u8 sta_addr[ETH_ALEN];
6181 union {
6182 struct {
6183 u8 name;
6184 u32 value;
6185 } wpa_param;
6186 struct {
6187 u32 len;
James Ketrenosb095c382005-08-24 22:04:42 -05006188 u8 reserved[32];
6189 u8 data[0];
James Ketrenosea2b26e2005-08-24 21:25:16 -05006190 } wpa_ie;
6191 struct {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006192 u32 command;
6193 u32 reason_code;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006194 } mlme;
6195 struct {
6196 u8 alg[IPW_CRYPT_ALG_NAME_LEN];
6197 u8 set_tx;
6198 u32 err;
6199 u8 idx;
6200 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
6201 u16 key_len;
6202 u8 key[0];
6203 } crypt;
6204
6205 } u;
6206};
6207
6208/* end of driver_ipw.c code */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006209#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006210
6211static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6212{
James Ketrenosb095c382005-08-24 22:04:42 -05006213 /* This is called when wpa_supplicant loads and closes the driver
6214 * interface. */
6215 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006216}
6217
James Ketrenosafbf30a2005-08-25 00:05:33 -05006218#if WIRELESS_EXT < 18
6219#define IW_AUTH_ALG_OPEN_SYSTEM 0x1
6220#define IW_AUTH_ALG_SHARED_KEY 0x2
6221#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006222
6223static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6224{
6225 struct ieee80211_device *ieee = priv->ieee;
6226 struct ieee80211_security sec = {
6227 .flags = SEC_AUTH_MODE,
6228 };
6229 int ret = 0;
6230
James Ketrenosafbf30a2005-08-25 00:05:33 -05006231 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006232 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6233 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006234 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006235 sec.auth_mode = WLAN_AUTH_OPEN;
6236 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006237 } else
6238 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006239
6240 if (ieee->set_security)
6241 ieee->set_security(ieee->dev, &sec);
6242 else
6243 ret = -EOPNOTSUPP;
6244
6245 return ret;
6246}
6247
James Ketrenosafbf30a2005-08-25 00:05:33 -05006248void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie, int wpa_ie_len)
6249{
6250 /* make sure WPA is enabled */
6251 ipw_wpa_enable(priv, 1);
6252
6253 ipw_disassociate(priv);
6254}
6255
6256static int ipw_set_rsn_capa(struct ipw_priv *priv,
6257 char *capabilities, int length)
6258{
6259 struct host_cmd cmd = {
6260 .cmd = IPW_CMD_RSN_CAPABILITIES,
6261 .len = length,
6262 };
6263
6264 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6265
6266 memcpy(cmd.param, capabilities, length);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05006267 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006268}
6269
6270#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -05006271static int ipw_wpa_set_param(struct net_device *dev, u8 name, u32 value)
6272{
6273 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosa613bff2005-08-24 21:43:11 -05006274 struct ieee80211_crypt_data *crypt;
6275 unsigned long flags;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006276 int ret = 0;
6277
6278 switch (name) {
6279 case IPW_PARAM_WPA_ENABLED:
6280 ret = ipw_wpa_enable(priv, value);
6281 break;
6282
6283 case IPW_PARAM_TKIP_COUNTERMEASURES:
James Ketrenosa613bff2005-08-24 21:43:11 -05006284 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6285 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6286 IPW_WARNING("Can't set TKIP countermeasures: "
6287 "crypt not set!\n");
6288 break;
6289 }
6290
6291 flags = crypt->ops->get_flags(crypt->priv);
6292
6293 if (value)
6294 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6295 else
6296 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6297
6298 crypt->ops->set_flags(flags, crypt->priv);
6299
James Ketrenosea2b26e2005-08-24 21:25:16 -05006300 break;
6301
James Ketrenosb095c382005-08-24 22:04:42 -05006302 case IPW_PARAM_DROP_UNENCRYPTED:{
6303 /* HACK:
6304 *
6305 * wpa_supplicant calls set_wpa_enabled when the driver
6306 * is loaded and unloaded, regardless of if WPA is being
6307 * used. No other calls are made which can be used to
6308 * determine if encryption will be used or not prior to
6309 * association being expected. If encryption is not being
6310 * used, drop_unencrypted is set to false, else true -- we
6311 * can use this to determine if the CAP_PRIVACY_ON bit should
6312 * be set.
6313 */
6314 struct ieee80211_security sec = {
6315 .flags = SEC_ENABLED,
6316 .enabled = value,
6317 };
6318 priv->ieee->drop_unencrypted = value;
6319 /* We only change SEC_LEVEL for open mode. Others
6320 * are set by ipw_wpa_set_encryption.
6321 */
6322 if (!value) {
6323 sec.flags |= SEC_LEVEL;
6324 sec.level = SEC_LEVEL_0;
6325 } else {
6326 sec.flags |= SEC_LEVEL;
6327 sec.level = SEC_LEVEL_1;
6328 }
6329 if (priv->ieee->set_security)
6330 priv->ieee->set_security(priv->ieee->dev, &sec);
6331 break;
6332 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05006333
6334 case IPW_PARAM_PRIVACY_INVOKED:
6335 priv->ieee->privacy_invoked = value;
6336 break;
6337
6338 case IPW_PARAM_AUTH_ALGS:
6339 ret = ipw_wpa_set_auth_algs(priv, value);
6340 break;
6341
6342 case IPW_PARAM_IEEE_802_1X:
6343 priv->ieee->ieee802_1x = value;
6344 break;
6345
6346 default:
6347 IPW_ERROR("%s: Unknown WPA param: %d\n", dev->name, name);
6348 ret = -EOPNOTSUPP;
6349 }
6350
6351 return ret;
6352}
6353
6354static int ipw_wpa_mlme(struct net_device *dev, int command, int reason)
6355{
6356 struct ipw_priv *priv = ieee80211_priv(dev);
6357 int ret = 0;
6358
6359 switch (command) {
6360 case IPW_MLME_STA_DEAUTH:
6361 // silently ignore
6362 break;
6363
6364 case IPW_MLME_STA_DISASSOC:
6365 ipw_disassociate(priv);
6366 break;
6367
6368 default:
6369 IPW_ERROR("%s: Unknown MLME request: %d\n", dev->name, command);
6370 ret = -EOPNOTSUPP;
6371 }
6372
6373 return ret;
6374}
6375
Zhu Yi1fbfea52005-08-05 17:22:56 +08006376static int ipw_wpa_ie_cipher2level(u8 cipher)
6377{
6378 switch (cipher) {
6379 case 4: /* CCMP */
6380 return SEC_LEVEL_3;
6381 case 2: /* TKIP */
6382 return SEC_LEVEL_2;
6383 case 5: /* WEP104 */
6384 case 1: /* WEP40 */
6385 return SEC_LEVEL_1;
6386 case 0: /* NONE */
6387 return SEC_LEVEL_0;
6388 default:
6389 return -1;
6390 }
6391}
6392
James Ketrenosea2b26e2005-08-24 21:25:16 -05006393static int ipw_wpa_set_wpa_ie(struct net_device *dev,
6394 struct ipw_param *param, int plen)
6395{
6396 struct ipw_priv *priv = ieee80211_priv(dev);
6397 struct ieee80211_device *ieee = priv->ieee;
6398 u8 *buf;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006399 u8 *ptk, *gtk;
6400 int level;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006401
James Ketrenosea2b26e2005-08-24 21:25:16 -05006402 if (param->u.wpa_ie.len > MAX_WPA_IE_LEN ||
6403 (param->u.wpa_ie.len && param->u.wpa_ie.data == NULL))
6404 return -EINVAL;
6405
6406 if (param->u.wpa_ie.len) {
6407 buf = kmalloc(param->u.wpa_ie.len, GFP_KERNEL);
6408 if (buf == NULL)
6409 return -ENOMEM;
6410
6411 memcpy(buf, param->u.wpa_ie.data, param->u.wpa_ie.len);
6412 kfree(ieee->wpa_ie);
6413 ieee->wpa_ie = buf;
6414 ieee->wpa_ie_len = param->u.wpa_ie.len;
6415 } else {
6416 kfree(ieee->wpa_ie);
6417 ieee->wpa_ie = NULL;
6418 ieee->wpa_ie_len = 0;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006419 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006420 }
6421
Zhu Yi1fbfea52005-08-05 17:22:56 +08006422 if (priv->ieee->host_encrypt)
6423 goto done;
6424
6425 /* HACK: Parse wpa_ie here to get pairwise suite, otherwise
6426 * we need to change driver_ipw.c from wpa_supplicant. This
6427 * is OK since -Dipw is deprecated. The -Dwext driver has a
6428 * clean way to handle this. */
6429 gtk = ptk = (u8 *) ieee->wpa_ie;
6430 if (ieee->wpa_ie[0] == 0x30) { /* RSN IE */
6431 gtk += 4 + 3;
6432 ptk += 4 + 4 + 2 + 3;
6433 } else { /* WPA IE */
6434 gtk += 8 + 3;
6435 ptk += 8 + 4 + 2 + 3;
6436 }
6437
6438 if (ptk - (u8 *) ieee->wpa_ie > ieee->wpa_ie_len)
6439 return -EINVAL;
6440
6441 level = ipw_wpa_ie_cipher2level(*gtk);
6442 ipw_set_hw_decrypt_multicast(priv, level);
6443
6444 level = ipw_wpa_ie_cipher2level(*ptk);
6445 ipw_set_hw_decrypt_unicast(priv, level);
6446
6447 done:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006448 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6449 return 0;
6450}
6451
6452/* implementation borrowed from hostap driver */
6453
6454static int ipw_wpa_set_encryption(struct net_device *dev,
6455 struct ipw_param *param, int param_len)
6456{
6457 int ret = 0;
6458 struct ipw_priv *priv = ieee80211_priv(dev);
6459 struct ieee80211_device *ieee = priv->ieee;
6460 struct ieee80211_crypto_ops *ops;
6461 struct ieee80211_crypt_data **crypt;
6462
6463 struct ieee80211_security sec = {
6464 .flags = 0,
6465 };
6466
6467 param->u.crypt.err = 0;
6468 param->u.crypt.alg[IPW_CRYPT_ALG_NAME_LEN - 1] = '\0';
6469
6470 if (param_len !=
6471 (int)((char *)param->u.crypt.key - (char *)param) +
6472 param->u.crypt.key_len) {
6473 IPW_DEBUG_INFO("Len mismatch %d, %d\n", param_len,
6474 param->u.crypt.key_len);
6475 return -EINVAL;
6476 }
6477 if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff &&
6478 param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff &&
6479 param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) {
6480 if (param->u.crypt.idx >= WEP_KEYS)
6481 return -EINVAL;
6482 crypt = &ieee->crypt[param->u.crypt.idx];
6483 } else {
6484 return -EINVAL;
6485 }
6486
James Ketrenosafbf30a2005-08-25 00:05:33 -05006487 sec.flags |= SEC_ENABLED | SEC_ENCRYPT;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006488 if (strcmp(param->u.crypt.alg, "none") == 0) {
6489 if (crypt) {
6490 sec.enabled = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006491 sec.encrypt = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006492 sec.level = SEC_LEVEL_0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006493 sec.flags |= SEC_LEVEL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006494 ieee80211_crypt_delayed_deinit(ieee, crypt);
6495 }
6496 goto done;
6497 }
6498 sec.enabled = 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006499 sec.encrypt = 1;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006500
James Ketrenosb095c382005-08-24 22:04:42 -05006501 /* IPW HW cannot build TKIP MIC, host decryption still needed. */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006502 if (strcmp(param->u.crypt.alg, "TKIP") == 0)
6503 ieee->host_encrypt_msdu = 1;
6504
6505 if (!(ieee->host_encrypt || ieee->host_encrypt_msdu ||
6506 ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05006507 goto skip_host_crypt;
6508
James Ketrenosea2b26e2005-08-24 21:25:16 -05006509 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6510 if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) {
6511 request_module("ieee80211_crypt_wep");
6512 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6513 } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) {
6514 request_module("ieee80211_crypt_tkip");
6515 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6516 } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) {
6517 request_module("ieee80211_crypt_ccmp");
6518 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6519 }
6520 if (ops == NULL) {
6521 IPW_DEBUG_INFO("%s: unknown crypto alg '%s'\n",
6522 dev->name, param->u.crypt.alg);
6523 param->u.crypt.err = IPW_CRYPT_ERR_UNKNOWN_ALG;
6524 ret = -EINVAL;
6525 goto done;
6526 }
6527
6528 if (*crypt == NULL || (*crypt)->ops != ops) {
6529 struct ieee80211_crypt_data *new_crypt;
6530
6531 ieee80211_crypt_delayed_deinit(ieee, crypt);
6532
6533 new_crypt = (struct ieee80211_crypt_data *)
6534 kmalloc(sizeof(*new_crypt), GFP_KERNEL);
6535 if (new_crypt == NULL) {
6536 ret = -ENOMEM;
6537 goto done;
6538 }
6539 memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data));
6540 new_crypt->ops = ops;
6541 if (new_crypt->ops && try_module_get(new_crypt->ops->owner))
6542 new_crypt->priv =
6543 new_crypt->ops->init(param->u.crypt.idx);
6544
6545 if (new_crypt->priv == NULL) {
6546 kfree(new_crypt);
6547 param->u.crypt.err = IPW_CRYPT_ERR_CRYPT_INIT_FAILED;
6548 ret = -EINVAL;
6549 goto done;
6550 }
6551
6552 *crypt = new_crypt;
6553 }
6554
6555 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
6556 (*crypt)->ops->set_key(param->u.crypt.key,
6557 param->u.crypt.key_len, param->u.crypt.seq,
6558 (*crypt)->priv) < 0) {
6559 IPW_DEBUG_INFO("%s: key setting failed\n", dev->name);
6560 param->u.crypt.err = IPW_CRYPT_ERR_KEY_SET_FAILED;
6561 ret = -EINVAL;
6562 goto done;
6563 }
6564
James Ketrenosb095c382005-08-24 22:04:42 -05006565 skip_host_crypt:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006566 if (param->u.crypt.set_tx) {
6567 ieee->tx_keyidx = param->u.crypt.idx;
6568 sec.active_key = param->u.crypt.idx;
6569 sec.flags |= SEC_ACTIVE_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05006570 } else
6571 sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006572
James Ketrenosb095c382005-08-24 22:04:42 -05006573 if (param->u.crypt.alg != NULL) {
6574 memcpy(sec.keys[param->u.crypt.idx],
6575 param->u.crypt.key, param->u.crypt.key_len);
6576 sec.key_sizes[param->u.crypt.idx] = param->u.crypt.key_len;
6577 sec.flags |= (1 << param->u.crypt.idx);
6578
6579 if (strcmp(param->u.crypt.alg, "WEP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006580 sec.flags |= SEC_LEVEL;
6581 sec.level = SEC_LEVEL_1;
James Ketrenosb095c382005-08-24 22:04:42 -05006582 } else if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006583 sec.flags |= SEC_LEVEL;
6584 sec.level = SEC_LEVEL_2;
James Ketrenosb095c382005-08-24 22:04:42 -05006585 } else if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006586 sec.flags |= SEC_LEVEL;
6587 sec.level = SEC_LEVEL_3;
6588 }
6589 }
6590 done:
6591 if (ieee->set_security)
6592 ieee->set_security(ieee->dev, &sec);
6593
6594 /* Do not reset port if card is in Managed mode since resetting will
6595 * generate new IEEE 802.11 authentication which may end up in looping
6596 * with IEEE 802.1X. If your hardware requires a reset after WEP
6597 * configuration (for example... Prism2), implement the reset_port in
6598 * the callbacks structures used to initialize the 802.11 stack. */
6599 if (ieee->reset_on_keychange &&
6600 ieee->iw_mode != IW_MODE_INFRA &&
6601 ieee->reset_port && ieee->reset_port(dev)) {
6602 IPW_DEBUG_INFO("%s: reset_port failed\n", dev->name);
6603 param->u.crypt.err = IPW_CRYPT_ERR_CARD_CONF_FAILED;
6604 return -EINVAL;
6605 }
6606
6607 return ret;
6608}
6609
6610static int ipw_wpa_supplicant(struct net_device *dev, struct iw_point *p)
6611{
6612 struct ipw_param *param;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006613 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006614 int ret = 0;
6615
6616 IPW_DEBUG_INFO("wpa_supplicant: len=%d\n", p->length);
6617
6618 if (p->length < sizeof(struct ipw_param) || !p->pointer)
6619 return -EINVAL;
6620
6621 param = (struct ipw_param *)kmalloc(p->length, GFP_KERNEL);
6622 if (param == NULL)
6623 return -ENOMEM;
6624
6625 if (copy_from_user(param, p->pointer, p->length)) {
6626 kfree(param);
6627 return -EFAULT;
6628 }
6629
James Ketrenosafbf30a2005-08-25 00:05:33 -05006630 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006631 switch (param->cmd) {
6632
6633 case IPW_CMD_SET_WPA_PARAM:
6634 ret = ipw_wpa_set_param(dev, param->u.wpa_param.name,
6635 param->u.wpa_param.value);
6636 break;
6637
6638 case IPW_CMD_SET_WPA_IE:
6639 ret = ipw_wpa_set_wpa_ie(dev, param, p->length);
6640 break;
6641
6642 case IPW_CMD_SET_ENCRYPTION:
6643 ret = ipw_wpa_set_encryption(dev, param, p->length);
6644 break;
6645
6646 case IPW_CMD_MLME:
6647 ret = ipw_wpa_mlme(dev, param->u.mlme.command,
6648 param->u.mlme.reason_code);
6649 break;
6650
6651 default:
6652 IPW_ERROR("%s: Unknown WPA supplicant request: %d\n",
6653 dev->name, param->cmd);
6654 ret = -EOPNOTSUPP;
6655 }
6656
James Ketrenosafbf30a2005-08-25 00:05:33 -05006657 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006658 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
6659 ret = -EFAULT;
6660
6661 kfree(param);
6662 return ret;
6663}
James Ketrenosafbf30a2005-08-25 00:05:33 -05006664#else
6665/*
6666 * WE-18 support
6667 */
6668
6669/* SIOCSIWGENIE */
6670static int ipw_wx_set_genie(struct net_device *dev,
6671 struct iw_request_info *info,
6672 union iwreq_data *wrqu, char *extra)
6673{
6674 struct ipw_priv *priv = ieee80211_priv(dev);
6675 struct ieee80211_device *ieee = priv->ieee;
6676 u8 *buf;
6677 int err = 0;
6678
6679 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6680 (wrqu->data.length && extra == NULL))
6681 return -EINVAL;
6682
6683 //down(&priv->sem);
6684
6685 //if (!ieee->wpa_enabled) {
6686 // err = -EOPNOTSUPP;
6687 // goto out;
6688 //}
6689
6690 if (wrqu->data.length) {
6691 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6692 if (buf == NULL) {
6693 err = -ENOMEM;
6694 goto out;
6695 }
6696
6697 memcpy(buf, extra, wrqu->data.length);
6698 kfree(ieee->wpa_ie);
6699 ieee->wpa_ie = buf;
6700 ieee->wpa_ie_len = wrqu->data.length;
6701 } else {
6702 kfree(ieee->wpa_ie);
6703 ieee->wpa_ie = NULL;
6704 ieee->wpa_ie_len = 0;
6705 }
6706
6707 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6708 out:
6709 //up(&priv->sem);
6710 return err;
6711}
6712
6713/* SIOCGIWGENIE */
6714static int ipw_wx_get_genie(struct net_device *dev,
6715 struct iw_request_info *info,
6716 union iwreq_data *wrqu, char *extra)
6717{
6718 struct ipw_priv *priv = ieee80211_priv(dev);
6719 struct ieee80211_device *ieee = priv->ieee;
6720 int err = 0;
6721
6722 //down(&priv->sem);
6723
6724 //if (!ieee->wpa_enabled) {
6725 // err = -EOPNOTSUPP;
6726 // goto out;
6727 //}
6728
6729 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6730 wrqu->data.length = 0;
6731 goto out;
6732 }
6733
6734 if (wrqu->data.length < ieee->wpa_ie_len) {
6735 err = -E2BIG;
6736 goto out;
6737 }
6738
6739 wrqu->data.length = ieee->wpa_ie_len;
6740 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6741
6742 out:
6743 //up(&priv->sem);
6744 return err;
6745}
6746
Zhu Yi1fbfea52005-08-05 17:22:56 +08006747static int wext_cipher2level(int cipher)
6748{
6749 switch (cipher) {
6750 case IW_AUTH_CIPHER_NONE:
6751 return SEC_LEVEL_0;
6752 case IW_AUTH_CIPHER_WEP40:
6753 case IW_AUTH_CIPHER_WEP104:
6754 return SEC_LEVEL_1;
6755 case IW_AUTH_CIPHER_TKIP:
6756 return SEC_LEVEL_2;
6757 case IW_AUTH_CIPHER_CCMP:
6758 return SEC_LEVEL_3;
6759 default:
6760 return -1;
6761 }
6762}
6763
James Ketrenosafbf30a2005-08-25 00:05:33 -05006764/* SIOCSIWAUTH */
6765static int ipw_wx_set_auth(struct net_device *dev,
6766 struct iw_request_info *info,
6767 union iwreq_data *wrqu, char *extra)
6768{
6769 struct ipw_priv *priv = ieee80211_priv(dev);
6770 struct ieee80211_device *ieee = priv->ieee;
6771 struct iw_param *param = &wrqu->param;
6772 struct ieee80211_crypt_data *crypt;
6773 unsigned long flags;
6774 int ret = 0;
6775
6776 switch (param->flags & IW_AUTH_INDEX) {
6777 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006778 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006779 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006780 ipw_set_hw_decrypt_unicast(priv,
6781 wext_cipher2level(param->value));
6782 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006783 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006784 ipw_set_hw_decrypt_multicast(priv,
6785 wext_cipher2level(param->value));
6786 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006787 case IW_AUTH_KEY_MGMT:
6788 /*
6789 * ipw2200 does not use these parameters
6790 */
6791 break;
6792
6793 case IW_AUTH_TKIP_COUNTERMEASURES:
6794 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6795 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6796 IPW_WARNING("Can't set TKIP countermeasures: "
6797 "crypt not set!\n");
6798 break;
6799 }
6800
6801 flags = crypt->ops->get_flags(crypt->priv);
6802
6803 if (param->value)
6804 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6805 else
6806 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6807
6808 crypt->ops->set_flags(flags, crypt->priv);
6809
6810 break;
6811
6812 case IW_AUTH_DROP_UNENCRYPTED:{
6813 /* HACK:
6814 *
6815 * wpa_supplicant calls set_wpa_enabled when the driver
6816 * is loaded and unloaded, regardless of if WPA is being
6817 * used. No other calls are made which can be used to
6818 * determine if encryption will be used or not prior to
6819 * association being expected. If encryption is not being
6820 * used, drop_unencrypted is set to false, else true -- we
6821 * can use this to determine if the CAP_PRIVACY_ON bit should
6822 * be set.
6823 */
6824 struct ieee80211_security sec = {
6825 .flags = SEC_ENABLED,
6826 .enabled = param->value,
6827 };
6828 priv->ieee->drop_unencrypted = param->value;
6829 /* We only change SEC_LEVEL for open mode. Others
6830 * are set by ipw_wpa_set_encryption.
6831 */
6832 if (!param->value) {
6833 sec.flags |= SEC_LEVEL;
6834 sec.level = SEC_LEVEL_0;
6835 } else {
6836 sec.flags |= SEC_LEVEL;
6837 sec.level = SEC_LEVEL_1;
6838 }
6839 if (priv->ieee->set_security)
6840 priv->ieee->set_security(priv->ieee->dev, &sec);
6841 break;
6842 }
6843
6844 case IW_AUTH_80211_AUTH_ALG:
6845 ret = ipw_wpa_set_auth_algs(priv, param->value);
6846 break;
6847
6848 case IW_AUTH_WPA_ENABLED:
6849 ret = ipw_wpa_enable(priv, param->value);
6850 break;
6851
6852 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6853 ieee->ieee802_1x = param->value;
6854 break;
6855
6856 //case IW_AUTH_ROAMING_CONTROL:
6857 case IW_AUTH_PRIVACY_INVOKED:
6858 ieee->privacy_invoked = param->value;
6859 break;
6860
6861 default:
6862 return -EOPNOTSUPP;
6863 }
6864 return ret;
6865}
6866
6867/* SIOCGIWAUTH */
6868static int ipw_wx_get_auth(struct net_device *dev,
6869 struct iw_request_info *info,
6870 union iwreq_data *wrqu, char *extra)
6871{
6872 struct ipw_priv *priv = ieee80211_priv(dev);
6873 struct ieee80211_device *ieee = priv->ieee;
6874 struct ieee80211_crypt_data *crypt;
6875 struct iw_param *param = &wrqu->param;
6876 int ret = 0;
6877
6878 switch (param->flags & IW_AUTH_INDEX) {
6879 case IW_AUTH_WPA_VERSION:
6880 case IW_AUTH_CIPHER_PAIRWISE:
6881 case IW_AUTH_CIPHER_GROUP:
6882 case IW_AUTH_KEY_MGMT:
6883 /*
6884 * wpa_supplicant will control these internally
6885 */
6886 ret = -EOPNOTSUPP;
6887 break;
6888
6889 case IW_AUTH_TKIP_COUNTERMEASURES:
6890 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6891 if (!crypt || !crypt->ops->get_flags) {
6892 IPW_WARNING("Can't get TKIP countermeasures: "
6893 "crypt not set!\n");
6894 break;
6895 }
6896
6897 param->value = (crypt->ops->get_flags(crypt->priv) &
6898 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6899
6900 break;
6901
6902 case IW_AUTH_DROP_UNENCRYPTED:
6903 param->value = ieee->drop_unencrypted;
6904 break;
6905
6906 case IW_AUTH_80211_AUTH_ALG:
6907 param->value = ieee->sec.auth_mode;
6908 break;
6909
6910 case IW_AUTH_WPA_ENABLED:
6911 param->value = ieee->wpa_enabled;
6912 break;
6913
6914 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6915 param->value = ieee->ieee802_1x;
6916 break;
6917
6918 case IW_AUTH_ROAMING_CONTROL:
6919 case IW_AUTH_PRIVACY_INVOKED:
6920 param->value = ieee->privacy_invoked;
6921 break;
6922
6923 default:
6924 return -EOPNOTSUPP;
6925 }
6926 return 0;
6927}
6928
6929/* SIOCSIWENCODEEXT */
6930static int ipw_wx_set_encodeext(struct net_device *dev,
6931 struct iw_request_info *info,
6932 union iwreq_data *wrqu, char *extra)
6933{
6934 struct ipw_priv *priv = ieee80211_priv(dev);
6935 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6936
6937 if (hwcrypto) {
6938 /* IPW HW can't build TKIP MIC, host decryption still needed */
6939 if (ext->alg == IW_ENCODE_ALG_TKIP) {
6940 priv->ieee->host_encrypt = 0;
6941 priv->ieee->host_encrypt_msdu = 1;
6942 priv->ieee->host_decrypt = 1;
6943 } else {
6944 priv->ieee->host_encrypt = 0;
6945 priv->ieee->host_encrypt_msdu = 0;
6946 priv->ieee->host_decrypt = 0;
6947 }
6948 }
6949
6950 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6951}
6952
6953/* SIOCGIWENCODEEXT */
6954static int ipw_wx_get_encodeext(struct net_device *dev,
6955 struct iw_request_info *info,
6956 union iwreq_data *wrqu, char *extra)
6957{
6958 struct ipw_priv *priv = ieee80211_priv(dev);
6959 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
6960}
6961
6962/* SIOCSIWMLME */
6963static int ipw_wx_set_mlme(struct net_device *dev,
6964 struct iw_request_info *info,
6965 union iwreq_data *wrqu, char *extra)
6966{
6967 struct ipw_priv *priv = ieee80211_priv(dev);
6968 struct iw_mlme *mlme = (struct iw_mlme *)extra;
6969 u16 reason;
6970
6971 reason = cpu_to_le16(mlme->reason_code);
6972
6973 switch (mlme->cmd) {
6974 case IW_MLME_DEAUTH:
6975 // silently ignore
6976 break;
6977
6978 case IW_MLME_DISASSOC:
6979 ipw_disassociate(priv);
6980 break;
6981
6982 default:
6983 return -EOPNOTSUPP;
6984 }
6985 return 0;
6986}
6987#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006988
James Ketrenosb095c382005-08-24 22:04:42 -05006989#ifdef CONFIG_IPW_QOS
6990
6991/* QoS */
6992/*
6993* get the modulation type of the current network or
6994* the card current mode
6995*/
6996u8 ipw_qos_current_mode(struct ipw_priv * priv)
6997{
6998 u8 mode = 0;
6999
7000 if (priv->status & STATUS_ASSOCIATED) {
7001 unsigned long flags;
7002
7003 spin_lock_irqsave(&priv->ieee->lock, flags);
7004 mode = priv->assoc_network->mode;
7005 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7006 } else {
7007 mode = priv->ieee->mode;
7008 }
7009 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
7010 return mode;
7011}
7012
7013/*
7014* Handle management frame beacon and probe response
7015*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05007016static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
7017 int active_network,
7018 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007019{
7020 u32 size = sizeof(struct ieee80211_qos_parameters);
7021
James Ketrenosafbf30a2005-08-25 00:05:33 -05007022 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05007023 network->qos_data.active = network->qos_data.supported;
7024
7025 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007026 if (active_network &&
7027 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05007028 network->qos_data.active = network->qos_data.supported;
7029
7030 if ((network->qos_data.active == 1) && (active_network == 1) &&
7031 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
7032 (network->qos_data.old_param_count !=
7033 network->qos_data.param_count)) {
7034 network->qos_data.old_param_count =
7035 network->qos_data.param_count;
7036 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007037 IPW_DEBUG_QOS("QoS parameters change call "
7038 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05007039 }
7040 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007041 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
7042 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007043 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007044 else
7045 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007046 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007047
James Ketrenosb095c382005-08-24 22:04:42 -05007048 if ((network->qos_data.active == 1) && (active_network == 1)) {
7049 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
7050 schedule_work(&priv->qos_activate);
7051 }
7052
7053 network->qos_data.active = 0;
7054 network->qos_data.supported = 0;
7055 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007056 if ((priv->status & STATUS_ASSOCIATED) &&
7057 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
7058 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
7059 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
7060 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05007061 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05007062 priv->assoc_network->ssid_len) &&
7063 !memcmp(network->ssid,
7064 priv->assoc_network->ssid,
7065 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05007066 queue_work(priv->workqueue,
7067 &priv->merge_networks);
7068 }
James Ketrenosb095c382005-08-24 22:04:42 -05007069 }
7070
7071 return 0;
7072}
7073
7074/*
7075* This function set up the firmware to support QoS. It sends
7076* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
7077*/
7078static int ipw_qos_activate(struct ipw_priv *priv,
7079 struct ieee80211_qos_data *qos_network_data)
7080{
7081 int err;
7082 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
7083 struct ieee80211_qos_parameters *active_one = NULL;
7084 u32 size = sizeof(struct ieee80211_qos_parameters);
7085 u32 burst_duration;
7086 int i;
7087 u8 type;
7088
7089 type = ipw_qos_current_mode(priv);
7090
7091 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
7092 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
7093 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
7094 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
7095
7096 if (qos_network_data == NULL) {
7097 if (type == IEEE_B) {
7098 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
7099 active_one = &def_parameters_CCK;
7100 } else
7101 active_one = &def_parameters_OFDM;
7102
James Ketrenosafbf30a2005-08-25 00:05:33 -05007103 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007104 burst_duration = ipw_qos_get_burst_duration(priv);
7105 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007106 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
7107 (u16) burst_duration;
7108 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05007109 if (type == IEEE_B) {
7110 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
7111 type);
7112 if (priv->qos_data.qos_enable == 0)
7113 active_one = &def_parameters_CCK;
7114 else
7115 active_one = priv->qos_data.def_qos_parm_CCK;
7116 } else {
7117 if (priv->qos_data.qos_enable == 0)
7118 active_one = &def_parameters_OFDM;
7119 else
7120 active_one = priv->qos_data.def_qos_parm_OFDM;
7121 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007122 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007123 } else {
7124 unsigned long flags;
7125 int active;
7126
7127 spin_lock_irqsave(&priv->ieee->lock, flags);
7128 active_one = &(qos_network_data->parameters);
7129 qos_network_data->old_param_count =
7130 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007131 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007132 active = qos_network_data->supported;
7133 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7134
7135 if (active == 0) {
7136 burst_duration = ipw_qos_get_burst_duration(priv);
7137 for (i = 0; i < QOS_QUEUE_NUM; i++)
7138 qos_parameters[QOS_PARAM_SET_ACTIVE].
7139 tx_op_limit[i] = (u16) burst_duration;
7140 }
7141 }
7142
7143 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05007144 err = ipw_send_qos_params_command(priv,
7145 (struct ieee80211_qos_parameters *)
7146 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05007147 if (err)
7148 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
7149
7150 return err;
7151}
7152
7153/*
7154* send IPW_CMD_WME_INFO to the firmware
7155*/
7156static int ipw_qos_set_info_element(struct ipw_priv *priv)
7157{
7158 int ret = 0;
7159 struct ieee80211_qos_information_element qos_info;
7160
7161 if (priv == NULL)
7162 return -1;
7163
7164 qos_info.elementID = QOS_ELEMENT_ID;
7165 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
7166
7167 qos_info.version = QOS_VERSION_1;
7168 qos_info.ac_info = 0;
7169
7170 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7171 qos_info.qui_type = QOS_OUI_TYPE;
7172 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7173
7174 ret = ipw_send_qos_info_command(priv, &qos_info);
7175 if (ret != 0) {
7176 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7177 }
7178 return ret;
7179}
7180
7181/*
7182* Set the QoS parameter with the association request structure
7183*/
7184static int ipw_qos_association(struct ipw_priv *priv,
7185 struct ieee80211_network *network)
7186{
7187 int err = 0;
7188 struct ieee80211_qos_data *qos_data = NULL;
7189 struct ieee80211_qos_data ibss_data = {
7190 .supported = 1,
7191 .active = 1,
7192 };
7193
7194 switch (priv->ieee->iw_mode) {
7195 case IW_MODE_ADHOC:
7196 if (!(network->capability & WLAN_CAPABILITY_IBSS))
7197 BUG();
7198
7199 qos_data = &ibss_data;
7200 break;
7201
7202 case IW_MODE_INFRA:
7203 qos_data = &network->qos_data;
7204 break;
7205
7206 default:
7207 BUG();
7208 break;
7209 }
7210
7211 err = ipw_qos_activate(priv, qos_data);
7212 if (err) {
7213 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7214 return err;
7215 }
7216
7217 if (priv->qos_data.qos_enable && qos_data->supported) {
7218 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7219 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7220 return ipw_qos_set_info_element(priv);
7221 }
7222
7223 return 0;
7224}
7225
7226/*
7227* handling the beaconing responces. if we get different QoS setting
7228* of the network from the the associated setting adjust the QoS
7229* setting
7230*/
7231static int ipw_qos_association_resp(struct ipw_priv *priv,
7232 struct ieee80211_network *network)
7233{
7234 int ret = 0;
7235 unsigned long flags;
7236 u32 size = sizeof(struct ieee80211_qos_parameters);
7237 int set_qos_param = 0;
7238
James Ketrenosafbf30a2005-08-25 00:05:33 -05007239 if ((priv == NULL) || (network == NULL) ||
7240 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007241 return ret;
7242
7243 if (!(priv->status & STATUS_ASSOCIATED))
7244 return ret;
7245
James Ketrenosafbf30a2005-08-25 00:05:33 -05007246 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007247 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007248
7249 spin_lock_irqsave(&priv->ieee->lock, flags);
7250 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007251 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05007252 sizeof(struct ieee80211_qos_data));
7253 priv->assoc_network->qos_data.active = 1;
7254 if ((network->qos_data.old_param_count !=
7255 network->qos_data.param_count)) {
7256 set_qos_param = 1;
7257 network->qos_data.old_param_count =
7258 network->qos_data.param_count;
7259 }
7260
7261 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007262 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7263 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007264 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007265 else
7266 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007267 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007268 priv->assoc_network->qos_data.active = 0;
7269 priv->assoc_network->qos_data.supported = 0;
7270 set_qos_param = 1;
7271 }
7272
7273 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7274
7275 if (set_qos_param == 1)
7276 schedule_work(&priv->qos_activate);
7277
7278 return ret;
7279}
7280
7281static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7282{
7283 u32 ret = 0;
7284
7285 if ((priv == NULL))
7286 return 0;
7287
James Ketrenosafbf30a2005-08-25 00:05:33 -05007288 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007289 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007290 else
James Ketrenosb095c382005-08-24 22:04:42 -05007291 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007292
James Ketrenosb095c382005-08-24 22:04:42 -05007293 return ret;
7294}
7295
7296/*
7297* Initialize the setting of QoS global
7298*/
7299static void ipw_qos_init(struct ipw_priv *priv, int enable,
7300 int burst_enable, u32 burst_duration_CCK,
7301 u32 burst_duration_OFDM)
7302{
7303 priv->qos_data.qos_enable = enable;
7304
7305 if (priv->qos_data.qos_enable) {
7306 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7307 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7308 IPW_DEBUG_QOS("QoS is enabled\n");
7309 } else {
7310 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7311 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7312 IPW_DEBUG_QOS("QoS is not enabled\n");
7313 }
7314
7315 priv->qos_data.burst_enable = burst_enable;
7316
7317 if (burst_enable) {
7318 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7319 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7320 } else {
7321 priv->qos_data.burst_duration_CCK = 0;
7322 priv->qos_data.burst_duration_OFDM = 0;
7323 }
7324}
7325
7326/*
7327* map the packet priority to the right TX Queue
7328*/
7329static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7330{
7331 if (priority > 7 || !priv->qos_data.qos_enable)
7332 priority = 0;
7333
7334 return from_priority_to_tx_queue[priority] - 1;
7335}
7336
7337/*
7338* add QoS parameter to the TX command
7339*/
7340static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7341 u16 priority,
7342 struct tfd_data *tfd, u8 unicast)
7343{
7344 int ret = 0;
7345 int tx_queue_id = 0;
7346 struct ieee80211_qos_data *qos_data = NULL;
7347 int active, supported;
7348 unsigned long flags;
7349
7350 if (!(priv->status & STATUS_ASSOCIATED))
7351 return 0;
7352
7353 qos_data = &priv->assoc_network->qos_data;
7354
7355 spin_lock_irqsave(&priv->ieee->lock, flags);
7356
7357 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7358 if (unicast == 0)
7359 qos_data->active = 0;
7360 else
7361 qos_data->active = qos_data->supported;
7362 }
7363
7364 active = qos_data->active;
7365 supported = qos_data->supported;
7366
7367 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7368
James Ketrenosafbf30a2005-08-25 00:05:33 -05007369 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7370 "unicast %d\n",
7371 priv->qos_data.qos_enable, active, supported, unicast);
James Ketrenosb095c382005-08-24 22:04:42 -05007372 if (active && priv->qos_data.qos_enable) {
7373 ret = from_priority_to_tx_queue[priority];
7374 tx_queue_id = ret - 1;
7375 IPW_DEBUG_QOS("QoS packet priority is %d \n", priority);
7376 if (priority <= 7) {
7377 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7378 tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
7379 tfd->tfd.tfd_26.mchdr.frame_ctl |=
7380 IEEE80211_STYPE_QOS_DATA;
7381
7382 if (priv->qos_data.qos_no_ack_mask &
7383 (1UL << tx_queue_id)) {
7384 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
7385 tfd->tfd.tfd_26.mchdr.qos_ctrl |=
7386 CTRL_QOS_NO_ACK;
7387 }
7388 }
7389 }
7390
7391 return ret;
7392}
7393
7394/*
7395* background support to run QoS activate functionality
7396*/
7397static void ipw_bg_qos_activate(void *data)
7398{
7399 struct ipw_priv *priv = data;
7400
7401 if (priv == NULL)
7402 return;
7403
7404 down(&priv->sem);
7405
7406 if (priv->status & STATUS_ASSOCIATED)
7407 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7408
7409 up(&priv->sem);
7410}
7411
James Ketrenos3b9990c2005-08-19 13:18:55 -05007412static int ipw_handle_probe_response(struct net_device *dev,
7413 struct ieee80211_probe_response *resp,
7414 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007415{
7416 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007417 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7418 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007419
James Ketrenos3b9990c2005-08-19 13:18:55 -05007420 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007421
James Ketrenos3b9990c2005-08-19 13:18:55 -05007422 return 0;
7423}
James Ketrenosb095c382005-08-24 22:04:42 -05007424
James Ketrenos3b9990c2005-08-19 13:18:55 -05007425static int ipw_handle_beacon(struct net_device *dev,
7426 struct ieee80211_beacon *resp,
7427 struct ieee80211_network *network)
7428{
7429 struct ipw_priv *priv = ieee80211_priv(dev);
7430 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7431 (network == priv->assoc_network));
7432
7433 ipw_qos_handle_probe_response(priv, active_network, network);
7434
7435 return 0;
7436}
7437
7438static int ipw_handle_assoc_response(struct net_device *dev,
7439 struct ieee80211_assoc_response *resp,
7440 struct ieee80211_network *network)
7441{
7442 struct ipw_priv *priv = ieee80211_priv(dev);
7443 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007444 return 0;
7445}
7446
7447static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
7448 *qos_param)
7449{
7450 struct host_cmd cmd = {
7451 .cmd = IPW_CMD_QOS_PARAMETERS,
7452 .len = (sizeof(struct ieee80211_qos_parameters) * 3)
7453 };
7454
James Ketrenosafbf30a2005-08-25 00:05:33 -05007455 memcpy(cmd.param, qos_param, sizeof(*qos_param) * 3);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007456 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007457}
7458
7459static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
7460 *qos_param)
7461{
7462 struct host_cmd cmd = {
7463 .cmd = IPW_CMD_WME_INFO,
7464 .len = sizeof(*qos_param)
7465 };
7466
James Ketrenosafbf30a2005-08-25 00:05:33 -05007467 memcpy(cmd.param, qos_param, sizeof(*qos_param));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007468 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007469}
7470
7471#endif /* CONFIG_IPW_QOS */
7472
James Ketrenos43f66a62005-03-25 12:31:53 -06007473static int ipw_associate_network(struct ipw_priv *priv,
7474 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007475 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007476{
7477 int err;
7478
7479 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007480 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007481
7482 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007483 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007484 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007485 memcpy(priv->essid, network->ssid, priv->essid_len);
7486 }
7487
7488 network->last_associate = jiffies;
7489
7490 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7491 priv->assoc_request.channel = network->channel;
7492 if ((priv->capability & CAP_PRIVACY_ON) &&
7493 (priv->capability & CAP_SHARED_KEY)) {
7494 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007495 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7496
7497 if ((priv->capability & CAP_PRIVACY_ON) &&
7498 (priv->ieee->sec.level == SEC_LEVEL_1) &&
7499 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
7500 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenos43f66a62005-03-25 12:31:53 -06007501 } else {
7502 priv->assoc_request.auth_type = AUTH_OPEN;
7503 priv->assoc_request.auth_key = 0;
7504 }
7505
James Ketrenosa613bff2005-08-24 21:43:11 -05007506 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007507 priv->assoc_request.policy_support = 0x02; /* RSN active */
7508 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7509 priv->ieee->wpa_ie_len);
7510 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05007511
Jeff Garzikbf794512005-07-31 13:07:26 -04007512 /*
7513 * It is valid for our ieee device to support multiple modes, but
7514 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007515 * just one mode.
7516 */
7517 if (network->mode & priv->ieee->mode & IEEE_A)
7518 priv->assoc_request.ieee_mode = IPW_A_MODE;
7519 else if (network->mode & priv->ieee->mode & IEEE_G)
7520 priv->assoc_request.ieee_mode = IPW_G_MODE;
7521 else if (network->mode & priv->ieee->mode & IEEE_B)
7522 priv->assoc_request.ieee_mode = IPW_B_MODE;
7523
James Ketrenosea2b26e2005-08-24 21:25:16 -05007524 priv->assoc_request.capability = network->capability;
7525 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7526 && !(priv->config & CFG_PREAMBLE_LONG)) {
7527 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7528 } else {
7529 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7530
7531 /* Clear the short preamble if we won't be supporting it */
7532 priv->assoc_request.capability &=
7533 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7534 }
7535
James Ketrenosafbf30a2005-08-25 00:05:33 -05007536 /* Clear capability bits that aren't used in Ad Hoc */
7537 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7538 priv->assoc_request.capability &=
7539 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7540
James Ketrenos43f66a62005-03-25 12:31:53 -06007541 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007542 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007543 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007544 escape_essid(priv->essid, priv->essid_len),
7545 network->channel,
7546 ipw_modes[priv->assoc_request.ieee_mode],
7547 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007548 (priv->assoc_request.preamble_length ==
7549 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7550 network->capability &
7551 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007552 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007553 priv->capability & CAP_PRIVACY_ON ?
7554 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007555 "(open)") : "",
7556 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007557 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007558 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007559 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007560
7561 priv->assoc_request.beacon_interval = network->beacon_interval;
7562 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007563 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007564 priv->assoc_request.assoc_type = HC_IBSS_START;
7565 priv->assoc_request.assoc_tsf_msw = 0;
7566 priv->assoc_request.assoc_tsf_lsw = 0;
7567 } else {
7568 if (unlikely(roaming))
7569 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7570 else
7571 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7572 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7573 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7574 }
7575
James Ketrenosafbf30a2005-08-25 00:05:33 -05007576 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007577
7578 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7579 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7580 priv->assoc_request.atim_window = network->atim_window;
7581 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007582 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007583 priv->assoc_request.atim_window = 0;
7584 }
7585
James Ketrenos43f66a62005-03-25 12:31:53 -06007586 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007587
James Ketrenos43f66a62005-03-25 12:31:53 -06007588 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7589 if (err) {
7590 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7591 return err;
7592 }
7593
7594 rates->ieee_mode = priv->assoc_request.ieee_mode;
7595 rates->purpose = IPW_RATE_CONNECT;
7596 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007597
James Ketrenos43f66a62005-03-25 12:31:53 -06007598 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7599 priv->sys_config.dot11g_auto_detection = 1;
7600 else
7601 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007602
7603 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7604 priv->sys_config.answer_broadcast_ssid_probe = 1;
7605 else
7606 priv->sys_config.answer_broadcast_ssid_probe = 0;
7607
James Ketrenos43f66a62005-03-25 12:31:53 -06007608 err = ipw_send_system_config(priv, &priv->sys_config);
7609 if (err) {
7610 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7611 return err;
7612 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007613
James Ketrenos43f66a62005-03-25 12:31:53 -06007614 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007615 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007616 if (err) {
7617 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7618 return err;
7619 }
7620
7621 /*
7622 * If preemption is enabled, it is possible for the association
7623 * to complete before we return from ipw_send_associate. Therefore
7624 * we have to be sure and update our priviate data first.
7625 */
7626 priv->channel = network->channel;
7627 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007628 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007629 priv->status &= ~STATUS_SECURITY_UPDATED;
7630
7631 priv->assoc_network = network;
7632
James Ketrenosb095c382005-08-24 22:04:42 -05007633#ifdef CONFIG_IPW_QOS
7634 ipw_qos_association(priv, network);
7635#endif
7636
James Ketrenos43f66a62005-03-25 12:31:53 -06007637 err = ipw_send_associate(priv, &priv->assoc_request);
7638 if (err) {
7639 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7640 return err;
7641 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007642
7643 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007644 escape_essid(priv->essid, priv->essid_len),
7645 MAC_ARG(priv->bssid));
7646
7647 return 0;
7648}
7649
7650static void ipw_roam(void *data)
7651{
7652 struct ipw_priv *priv = data;
7653 struct ieee80211_network *network = NULL;
7654 struct ipw_network_match match = {
7655 .network = priv->assoc_network
7656 };
7657
7658 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007659 *
7660 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007661 * setting the status ROAM bit and requesting a scan.
7662 * 2. When the scan completes, it schedules the ROAM work
7663 * 3. The ROAM work looks at all of the known networks for one that
7664 * is a better network than the currently associated. If none
7665 * found, the ROAM process is over (ROAM bit cleared)
7666 * 4. If a better network is found, a disassociation request is
7667 * sent.
7668 * 5. When the disassociation completes, the roam work is again
7669 * scheduled. The second time through, the driver is no longer
7670 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007671 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007672 * 6. At this point ,the roaming process is complete and the ROAM
7673 * status bit is cleared.
7674 */
7675
7676 /* If we are no longer associated, and the roaming bit is no longer
7677 * set, then we are not actively roaming, so just return */
7678 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7679 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007680
James Ketrenos43f66a62005-03-25 12:31:53 -06007681 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007682 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007683 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007684 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007685 u8 rssi = priv->assoc_network->stats.rssi;
7686 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007687 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007688 list_for_each_entry(network, &priv->ieee->network_list, list) {
7689 if (network != priv->assoc_network)
7690 ipw_best_network(priv, &match, network, 1);
7691 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007692 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007693 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007694
James Ketrenos43f66a62005-03-25 12:31:53 -06007695 if (match.network == priv->assoc_network) {
7696 IPW_DEBUG_ASSOC("No better APs in this network to "
7697 "roam to.\n");
7698 priv->status &= ~STATUS_ROAMING;
7699 ipw_debug_config(priv);
7700 return;
7701 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007702
James Ketrenos43f66a62005-03-25 12:31:53 -06007703 ipw_send_disassociate(priv, 1);
7704 priv->assoc_network = match.network;
7705
7706 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007707 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007708
7709 /* Second pass through ROAM process -- request association */
7710 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7711 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7712 priv->status &= ~STATUS_ROAMING;
7713}
7714
James Ketrenosc848d0a2005-08-24 21:56:24 -05007715static void ipw_bg_roam(void *data)
7716{
7717 struct ipw_priv *priv = data;
7718 down(&priv->sem);
7719 ipw_roam(data);
7720 up(&priv->sem);
7721}
7722
7723static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007724{
7725 struct ipw_priv *priv = data;
7726
7727 struct ieee80211_network *network = NULL;
7728 struct ipw_network_match match = {
7729 .network = NULL
7730 };
7731 struct ipw_supported_rates *rates;
7732 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007733 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007734
James Ketrenosb095c382005-08-24 22:04:42 -05007735 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7736 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7737 return 0;
7738 }
7739
James Ketrenosc848d0a2005-08-24 21:56:24 -05007740 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007741 IPW_DEBUG_ASSOC("Not attempting association (already in "
7742 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007743 return 0;
7744 }
7745
7746 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007747 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7748 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007749 return 0;
7750 }
7751
James Ketrenos43f66a62005-03-25 12:31:53 -06007752 if (!(priv->config & CFG_ASSOCIATE) &&
7753 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007754 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007755 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007756 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007757 }
7758
James Ketrenosa613bff2005-08-24 21:43:11 -05007759 /* Protect our use of the network_list */
7760 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007761 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007762 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007763
7764 network = match.network;
7765 rates = &match.rates;
7766
7767 if (network == NULL &&
7768 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7769 priv->config & CFG_ADHOC_CREATE &&
7770 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007771 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007772 !list_empty(&priv->ieee->network_free_list)) {
7773 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007774 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007775 ipw_adhoc_create(priv, network);
7776 rates = &priv->rates;
7777 list_del(element);
7778 list_add_tail(&network->list, &priv->ieee->network_list);
7779 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007780 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007781
James Ketrenos43f66a62005-03-25 12:31:53 -06007782 /* If we reached the end of the list, then we don't have any valid
7783 * matching APs */
7784 if (!network) {
7785 ipw_debug_config(priv);
7786
James Ketrenosb095c382005-08-24 22:04:42 -05007787 if (!(priv->status & STATUS_SCANNING)) {
7788 if (!(priv->config & CFG_SPEED_SCAN))
7789 queue_delayed_work(priv->workqueue,
7790 &priv->request_scan,
7791 SCAN_INTERVAL);
7792 else
7793 queue_work(priv->workqueue,
7794 &priv->request_scan);
7795 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007796
James Ketrenosc848d0a2005-08-24 21:56:24 -05007797 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007798 }
7799
7800 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007801
7802 return 1;
7803}
7804
7805static void ipw_bg_associate(void *data)
7806{
7807 struct ipw_priv *priv = data;
7808 down(&priv->sem);
7809 ipw_associate(data);
7810 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06007811}
Jeff Garzikbf794512005-07-31 13:07:26 -04007812
James Ketrenosb095c382005-08-24 22:04:42 -05007813static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7814 struct sk_buff *skb)
7815{
7816 struct ieee80211_hdr *hdr;
7817 u16 fc;
7818
7819 hdr = (struct ieee80211_hdr *)skb->data;
7820 fc = le16_to_cpu(hdr->frame_ctl);
7821 if (!(fc & IEEE80211_FCTL_PROTECTED))
7822 return;
7823
7824 fc &= ~IEEE80211_FCTL_PROTECTED;
7825 hdr->frame_ctl = cpu_to_le16(fc);
7826 switch (priv->ieee->sec.level) {
7827 case SEC_LEVEL_3:
7828 /* Remove CCMP HDR */
7829 memmove(skb->data + IEEE80211_3ADDR_LEN,
7830 skb->data + IEEE80211_3ADDR_LEN + 8,
7831 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yia2d73e62005-07-13 12:24:51 -05007832 if (fc & IEEE80211_FCTL_MOREFRAGS)
7833 skb_trim(skb, skb->len - 16); /* 2*MIC */
7834 else
7835 skb_trim(skb, skb->len - 8); /* MIC */
James Ketrenosb095c382005-08-24 22:04:42 -05007836 break;
7837 case SEC_LEVEL_2:
7838 break;
7839 case SEC_LEVEL_1:
7840 /* Remove IV */
7841 memmove(skb->data + IEEE80211_3ADDR_LEN,
7842 skb->data + IEEE80211_3ADDR_LEN + 4,
7843 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yia2d73e62005-07-13 12:24:51 -05007844 if (fc & IEEE80211_FCTL_MOREFRAGS)
7845 skb_trim(skb, skb->len - 8); /* 2*ICV */
7846 else
7847 skb_trim(skb, skb->len - 4); /* ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007848 break;
7849 case SEC_LEVEL_0:
7850 break;
7851 default:
7852 printk(KERN_ERR "Unknow security level %d\n",
7853 priv->ieee->sec.level);
7854 break;
7855 }
7856}
7857
7858static void ipw_handle_data_packet(struct ipw_priv *priv,
7859 struct ipw_rx_mem_buffer *rxb,
7860 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007861{
7862 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7863
7864 /* We received data from the HW, so stop the watchdog */
7865 priv->net_dev->trans_start = jiffies;
7866
Jeff Garzikbf794512005-07-31 13:07:26 -04007867 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007868 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007869 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007870 skb_tailroom(rxb->skb))) {
7871 priv->ieee->stats.rx_errors++;
7872 priv->wstats.discard.misc++;
7873 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7874 return;
7875 } else if (unlikely(!netif_running(priv->net_dev))) {
7876 priv->ieee->stats.rx_dropped++;
7877 priv->wstats.discard.misc++;
7878 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7879 return;
7880 }
7881
7882 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007883 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007884
7885 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007886 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007887
7888 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7889
James Ketrenosb095c382005-08-24 22:04:42 -05007890 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
7891 if (!priv->ieee->host_decrypt)
7892 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7893
Jeff Garzikbf794512005-07-31 13:07:26 -04007894 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007895 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007896 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007897 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007898 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007899 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007900}
7901
James Ketrenosea2b26e2005-08-24 21:25:16 -05007902static inline int is_network_packet(struct ipw_priv *priv,
7903 struct ieee80211_hdr_4addr *header)
7904{
7905 /* Filter incoming packets to determine if they are targetted toward
7906 * this network, discarding packets coming from ourselves */
7907 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05007908 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007909 /* packets from our adapter are dropped (echo) */
7910 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
7911 return 0;
7912
James Ketrenosafbf30a2005-08-25 00:05:33 -05007913 /* multicast packets to our IBSS go through */
7914 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05007915 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007916
7917 /* packets to our adapter go through */
7918 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7919 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007920
7921 case IW_MODE_INFRA: /* Header: Dest. | AP{BSSID} | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007922 /* packets from our adapter are dropped (echo) */
7923 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
7924 return 0;
7925
James Ketrenosa613bff2005-08-24 21:43:11 -05007926 /* {broad,multi}cast packets to our IBSS go through */
James Ketrenosafbf30a2005-08-25 00:05:33 -05007927 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05007928 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
7929
7930 /* packets to our adapter go through */
7931 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7932 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007933 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007934
James Ketrenosea2b26e2005-08-24 21:25:16 -05007935 return 1;
7936}
7937
James Ketrenosafbf30a2005-08-25 00:05:33 -05007938#define IPW_PACKET_RETRY_TIME HZ
7939
7940static inline int is_duplicate_packet(struct ipw_priv *priv,
7941 struct ieee80211_hdr_4addr *header)
7942{
James Ketrenosafbf30a2005-08-25 00:05:33 -05007943 u16 sc = le16_to_cpu(header->seq_ctl);
7944 u16 seq = WLAN_GET_SEQ_SEQ(sc);
7945 u16 frag = WLAN_GET_SEQ_FRAG(sc);
7946 u16 *last_seq, *last_frag;
7947 unsigned long *last_time;
7948
7949 switch (priv->ieee->iw_mode) {
7950 case IW_MODE_ADHOC:
7951 {
7952 struct list_head *p;
7953 struct ipw_ibss_seq *entry = NULL;
7954 u8 *mac = header->addr2;
7955 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
7956
7957 __list_for_each(p, &priv->ibss_mac_hash[index]) {
7958 entry =
7959 list_entry(p, struct ipw_ibss_seq, list);
7960 if (!memcmp(entry->mac, mac, ETH_ALEN))
7961 break;
7962 }
7963 if (p == &priv->ibss_mac_hash[index]) {
7964 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
7965 if (!entry) {
7966 IPW_ERROR
7967 ("Cannot malloc new mac entry\n");
7968 return 0;
7969 }
7970 memcpy(entry->mac, mac, ETH_ALEN);
7971 entry->seq_num = seq;
7972 entry->frag_num = frag;
7973 entry->packet_time = jiffies;
7974 list_add(&entry->list,
7975 &priv->ibss_mac_hash[index]);
7976 return 0;
7977 }
7978 last_seq = &entry->seq_num;
7979 last_frag = &entry->frag_num;
7980 last_time = &entry->packet_time;
7981 break;
7982 }
7983 case IW_MODE_INFRA:
7984 last_seq = &priv->last_seq_num;
7985 last_frag = &priv->last_frag_num;
7986 last_time = &priv->last_packet_time;
7987 break;
7988 default:
7989 return 0;
7990 }
7991 if ((*last_seq == seq) &&
7992 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
7993 if (*last_frag == frag)
7994 goto drop;
7995 if (*last_frag + 1 != frag)
7996 /* out-of-order fragment */
7997 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007998 } else
7999 *last_seq = seq;
8000
Zhu Yif57ce7c2005-07-13 12:22:15 -05008001 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008002 *last_time = jiffies;
8003 return 0;
8004
8005 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008006 /* Comment this line now since we observed the card receives
8007 * duplicate packets but the FCTL_RETRY bit is not set in the
8008 * IBSS mode with fragmentation enabled.
8009 BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008010 return 1;
8011}
8012
James Ketrenosb095c382005-08-24 22:04:42 -05008013static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8014 struct ipw_rx_mem_buffer *rxb,
8015 struct ieee80211_rx_stats *stats)
8016{
8017 struct sk_buff *skb = rxb->skb;
8018 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
8019 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
8020 (skb->data + IPW_RX_FRAME_SIZE);
8021
8022 ieee80211_rx_mgt(priv->ieee, header, stats);
8023
8024 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8025 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8026 IEEE80211_STYPE_PROBE_RESP) ||
8027 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8028 IEEE80211_STYPE_BEACON))) {
8029 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
8030 ipw_add_station(priv, header->addr2);
8031 }
8032
8033 if (priv->config & CFG_NET_STATS) {
8034 IPW_DEBUG_HC("sending stat packet\n");
8035
8036 /* Set the size of the skb to the size of the full
8037 * ipw header and 802.11 frame */
8038 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8039 IPW_RX_FRAME_SIZE);
8040
8041 /* Advance past the ipw packet header to the 802.11 frame */
8042 skb_pull(skb, IPW_RX_FRAME_SIZE);
8043
8044 /* Push the ieee80211_rx_stats before the 802.11 frame */
8045 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8046
8047 skb->dev = priv->ieee->dev;
8048
8049 /* Point raw at the ieee80211_stats */
8050 skb->mac.raw = skb->data;
8051
8052 skb->pkt_type = PACKET_OTHERHOST;
8053 skb->protocol = __constant_htons(ETH_P_80211_STATS);
8054 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8055 netif_rx(skb);
8056 rxb->skb = NULL;
8057 }
8058}
8059
James Ketrenos43f66a62005-03-25 12:31:53 -06008060/*
8061 * Main entry function for recieving a packet with 80211 headers. This
8062 * should be called when ever the FW has notified us that there is a new
8063 * skb in the recieve queue.
8064 */
8065static void ipw_rx(struct ipw_priv *priv)
8066{
8067 struct ipw_rx_mem_buffer *rxb;
8068 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05008069 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008070 u32 r, w, i;
8071 u8 network_packet;
8072
James Ketrenosb095c382005-08-24 22:04:42 -05008073 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8074 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06008075 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
8076
8077 while (i != r) {
8078 rxb = priv->rxq->queue[i];
8079#ifdef CONFIG_IPW_DEBUG
8080 if (unlikely(rxb == NULL)) {
8081 printk(KERN_CRIT "Queue not allocated!\n");
8082 break;
8083 }
8084#endif
8085 priv->rxq->queue[i] = NULL;
8086
8087 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008088 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008089 PCI_DMA_FROMDEVICE);
8090
8091 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8092 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8093 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008094 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008095
8096 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008097 case RX_FRAME_TYPE: /* 802.11 frame */ {
8098 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05008099 .rssi =
8100 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008101 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008102 .signal =
8103 le16_to_cpu(pkt->u.frame.signal),
8104 .noise =
8105 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008106 .rate = pkt->u.frame.rate,
8107 .mac_time = jiffies,
8108 .received_channel =
8109 pkt->u.frame.received_channel,
8110 .freq =
8111 (pkt->u.frame.
8112 control & (1 << 0)) ?
8113 IEEE80211_24GHZ_BAND :
8114 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008115 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008116 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008117
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008118 if (stats.rssi != 0)
8119 stats.mask |= IEEE80211_STATMASK_RSSI;
8120 if (stats.signal != 0)
8121 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008122 if (stats.noise != 0)
8123 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008124 if (stats.rate != 0)
8125 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008126
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008127 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008128
James Ketrenosb095c382005-08-24 22:04:42 -05008129#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008130 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
8131 ipw_handle_data_packet(priv, rxb,
8132 &stats);
8133 break;
8134 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008135#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008136
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008137 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05008138 (struct ieee80211_hdr_4addr *)(rxb->skb->
8139 data +
8140 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008141 /* TODO: Check Ad-Hoc dest/source and make sure
8142 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008143 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008144 * frame control of the packet and disregard
8145 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008146
James Ketrenosea2b26e2005-08-24 21:25:16 -05008147 network_packet =
8148 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008149 if (network_packet && priv->assoc_network) {
8150 priv->assoc_network->stats.rssi =
8151 stats.rssi;
8152 average_add(&priv->average_rssi,
8153 stats.rssi);
8154 priv->last_rx_rssi = stats.rssi;
8155 }
8156
8157 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008158 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008159
James Ketrenosa613bff2005-08-24 21:43:11 -05008160 if (le16_to_cpu(pkt->u.frame.length) <
8161 frame_hdr_len(header)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008162 IPW_DEBUG_DROP
8163 ("Received packet is too small. "
8164 "Dropping.\n");
8165 priv->ieee->stats.rx_errors++;
8166 priv->wstats.discard.misc++;
8167 break;
8168 }
8169
James Ketrenosa613bff2005-08-24 21:43:11 -05008170 switch (WLAN_FC_GET_TYPE
8171 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008172
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008173 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008174 ipw_handle_mgmt_packet(priv, rxb,
8175 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008176 break;
8177
8178 case IEEE80211_FTYPE_CTL:
8179 break;
8180
8181 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008182 if (unlikely(!network_packet ||
8183 is_duplicate_packet(priv,
8184 header)))
8185 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008186 IPW_DEBUG_DROP("Dropping: "
8187 MAC_FMT ", "
8188 MAC_FMT ", "
8189 MAC_FMT "\n",
8190 MAC_ARG(header->
8191 addr1),
8192 MAC_ARG(header->
8193 addr2),
8194 MAC_ARG(header->
8195 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05008196 break;
8197 }
8198
8199 ipw_handle_data_packet(priv, rxb,
8200 &stats);
8201
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008202 break;
8203 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008204 break;
8205 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008206
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008207 case RX_HOST_NOTIFICATION_TYPE:{
8208 IPW_DEBUG_RX
8209 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008210 pkt->u.notification.subtype,
8211 pkt->u.notification.flags,
8212 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008213 ipw_rx_notification(priv, &pkt->u.notification);
8214 break;
8215 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008216
8217 default:
8218 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8219 pkt->header.message_type);
8220 break;
8221 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008222
8223 /* For now we just don't re-use anything. We can tweak this
8224 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008225 * fail to Rx correctly */
8226 if (rxb->skb != NULL) {
8227 dev_kfree_skb_any(rxb->skb);
8228 rxb->skb = NULL;
8229 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008230
James Ketrenos43f66a62005-03-25 12:31:53 -06008231 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008232 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008233 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008234
James Ketrenos43f66a62005-03-25 12:31:53 -06008235 i = (i + 1) % RX_QUEUE_SIZE;
8236 }
8237
8238 /* Backtrack one entry */
8239 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
8240
8241 ipw_rx_queue_restock(priv);
8242}
8243
James Ketrenosafbf30a2005-08-25 00:05:33 -05008244#define DEFAULT_RTS_THRESHOLD 2304U
8245#define MIN_RTS_THRESHOLD 1U
8246#define MAX_RTS_THRESHOLD 2304U
8247#define DEFAULT_BEACON_INTERVAL 100U
8248#define DEFAULT_SHORT_RETRY_LIMIT 7U
8249#define DEFAULT_LONG_RETRY_LIMIT 4U
8250
8251static int ipw_sw_reset(struct ipw_priv *priv, int init)
8252{
8253 int band, modulation;
8254 int old_mode = priv->ieee->iw_mode;
8255
8256 /* Initialize module parameter values here */
8257 priv->config = 0;
8258
8259 /* We default to disabling the LED code as right now it causes
8260 * too many systems to lock up... */
8261 if (!led)
8262 priv->config |= CFG_NO_LED;
8263
8264 if (associate)
8265 priv->config |= CFG_ASSOCIATE;
8266 else
8267 IPW_DEBUG_INFO("Auto associate disabled.\n");
8268
8269 if (auto_create)
8270 priv->config |= CFG_ADHOC_CREATE;
8271 else
8272 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8273
8274 if (disable) {
8275 priv->status |= STATUS_RF_KILL_SW;
8276 IPW_DEBUG_INFO("Radio disabled.\n");
8277 }
8278
8279 if (channel != 0) {
8280 priv->config |= CFG_STATIC_CHANNEL;
8281 priv->channel = channel;
8282 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
8283 /* TODO: Validate that provided channel is in range */
8284 }
8285#ifdef CONFIG_IPW_QOS
8286 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8287 burst_duration_CCK, burst_duration_OFDM);
8288#endif /* CONFIG_IPW_QOS */
8289
8290 switch (mode) {
8291 case 1:
8292 priv->ieee->iw_mode = IW_MODE_ADHOC;
8293 priv->net_dev->type = ARPHRD_ETHER;
8294
8295 break;
8296#ifdef CONFIG_IPW2200_MONITOR
8297 case 2:
8298 priv->ieee->iw_mode = IW_MODE_MONITOR;
8299 priv->net_dev->type = ARPHRD_IEEE80211;
8300 break;
8301#endif
8302 default:
8303 case 0:
8304 priv->net_dev->type = ARPHRD_ETHER;
8305 priv->ieee->iw_mode = IW_MODE_INFRA;
8306 break;
8307 }
8308
8309 if (hwcrypto) {
8310 priv->ieee->host_encrypt = 0;
8311 priv->ieee->host_encrypt_msdu = 0;
8312 priv->ieee->host_decrypt = 0;
8313 }
8314 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
8315
Zhu Yie402c932005-08-05 17:20:40 +08008316 /* IPW2200/2915 is abled to do hardware fragmentation. */
8317 priv->ieee->host_open_frag = 0;
8318
James Ketrenosafbf30a2005-08-25 00:05:33 -05008319 if ((priv->pci_dev->device == 0x4223) ||
8320 (priv->pci_dev->device == 0x4224)) {
8321 if (init)
8322 printk(KERN_INFO DRV_NAME
8323 ": Detected Intel PRO/Wireless 2915ABG Network "
8324 "Connection\n");
8325 priv->ieee->abg_true = 1;
8326 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8327 modulation = IEEE80211_OFDM_MODULATION |
8328 IEEE80211_CCK_MODULATION;
8329 priv->adapter = IPW_2915ABG;
8330 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
8331 } else {
8332 if (init)
8333 printk(KERN_INFO DRV_NAME
8334 ": Detected Intel PRO/Wireless 2200BG Network "
8335 "Connection\n");
8336
8337 priv->ieee->abg_true = 0;
8338 band = IEEE80211_24GHZ_BAND;
8339 modulation = IEEE80211_OFDM_MODULATION |
8340 IEEE80211_CCK_MODULATION;
8341 priv->adapter = IPW_2200BG;
8342 priv->ieee->mode = IEEE_G | IEEE_B;
8343 }
8344
8345 priv->ieee->freq_band = band;
8346 priv->ieee->modulation = modulation;
8347
8348 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
8349
8350 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8351 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
8352
8353 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8354 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8355 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
8356
8357 /* If power management is turned on, default to AC mode */
8358 priv->power_mode = IPW_POWER_AC;
8359 priv->tx_power = IPW_TX_POWER_DEFAULT;
8360
Zhu Yi0ece35b2005-08-05 17:26:51 +08008361 return old_mode == priv->ieee->iw_mode;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008362}
8363
James Ketrenos43f66a62005-03-25 12:31:53 -06008364/*
8365 * This file defines the Wireless Extension handlers. It does not
8366 * define any methods of hardware manipulation and relies on the
8367 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008368 *
8369 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008370 * function used to poll the hardware vs. making unecessary calls.
8371 *
8372 */
8373
Jeff Garzikbf794512005-07-31 13:07:26 -04008374static int ipw_wx_get_name(struct net_device *dev,
8375 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008376 union iwreq_data *wrqu, char *extra)
8377{
8378 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008379 down(&priv->sem);
8380 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008381 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008382 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008383 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008384 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008385 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8386 ipw_modes[priv->assoc_request.ieee_mode]);
8387 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008388 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008389 return 0;
8390}
8391
8392static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8393{
8394 if (channel == 0) {
8395 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8396 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008397 IPW_DEBUG_ASSOC("Attempting to associate with new "
8398 "parameters.\n");
8399 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008400 return 0;
8401 }
8402
8403 priv->config |= CFG_STATIC_CHANNEL;
8404
8405 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008406 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8407 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008408 return 0;
8409 }
8410
8411 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8412 priv->channel = channel;
8413
James Ketrenosb095c382005-08-24 22:04:42 -05008414#ifdef CONFIG_IPW2200_MONITOR
8415 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008416 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008417 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008418 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008419 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008420 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008421 }
8422
8423 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8424 udelay(10);
8425
8426 if (priv->status & STATUS_SCANNING)
8427 IPW_DEBUG_SCAN("Still scanning...\n");
8428 else
8429 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8430 1000 - i);
8431
8432 return 0;
8433 }
8434#endif /* CONFIG_IPW2200_MONITOR */
8435
James Ketrenosc848d0a2005-08-24 21:56:24 -05008436 /* Network configuration changed -- force [re]association */
8437 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8438 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008439 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008440
8441 return 0;
8442}
8443
Jeff Garzikbf794512005-07-31 13:07:26 -04008444static int ipw_wx_set_freq(struct net_device *dev,
8445 struct iw_request_info *info,
8446 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008447{
8448 struct ipw_priv *priv = ieee80211_priv(dev);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008449 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008450 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008451 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008452 u8 channel, flags;
8453 int band;
James Ketrenosb095c382005-08-24 22:04:42 -05008454
8455 if (fwrq->m == 0) {
8456 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
8457 down(&priv->sem);
8458 ret = ipw_set_channel(priv, 0);
8459 up(&priv->sem);
8460 return ret;
8461 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008462 /* if setting by freq convert to channel */
8463 if (fwrq->e == 1) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05008464 channel = ipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008465 if (channel == 0)
8466 return -EINVAL;
8467 } else
8468 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008469
Liu Hong1fe0adb2005-08-19 09:33:10 -05008470 if (!(band = ipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008471 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008472
Liu Hong1fe0adb2005-08-19 09:33:10 -05008473 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
8474 i = ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008475 if (i == -1)
8476 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008477
8478 flags = (band == IEEE80211_24GHZ_BAND) ?
8479 geo->bg[i].flags : geo->a[i].flags;
8480 if (flags & IEEE80211_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008481 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8482 return -EINVAL;
8483 }
8484 }
8485
James Ketrenos43f66a62005-03-25 12:31:53 -06008486 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008487 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008488 ret = ipw_set_channel(priv, channel);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008489 up(&priv->sem);
8490 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008491}
8492
Jeff Garzikbf794512005-07-31 13:07:26 -04008493static int ipw_wx_get_freq(struct net_device *dev,
8494 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008495 union iwreq_data *wrqu, char *extra)
8496{
8497 struct ipw_priv *priv = ieee80211_priv(dev);
8498
8499 wrqu->freq.e = 0;
8500
8501 /* If we are associated, trying to associate, or have a statically
8502 * configured CHANNEL then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008503 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008504 if (priv->config & CFG_STATIC_CHANNEL ||
8505 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8506 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008507 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008508 wrqu->freq.m = 0;
8509
James Ketrenosc848d0a2005-08-24 21:56:24 -05008510 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008511 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8512 return 0;
8513}
8514
Jeff Garzikbf794512005-07-31 13:07:26 -04008515static int ipw_wx_set_mode(struct net_device *dev,
8516 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008517 union iwreq_data *wrqu, char *extra)
8518{
8519 struct ipw_priv *priv = ieee80211_priv(dev);
8520 int err = 0;
8521
8522 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06008523
8524 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008525#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008526 case IW_MODE_MONITOR:
8527#endif
8528 case IW_MODE_ADHOC:
8529 case IW_MODE_INFRA:
8530 break;
8531 case IW_MODE_AUTO:
8532 wrqu->mode = IW_MODE_INFRA;
8533 break;
8534 default:
8535 return -EINVAL;
8536 }
James Ketrenosb095c382005-08-24 22:04:42 -05008537 if (wrqu->mode == priv->ieee->iw_mode)
8538 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008539
James Ketrenosb095c382005-08-24 22:04:42 -05008540 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008541
8542 ipw_sw_reset(priv, 0);
8543
James Ketrenosb095c382005-08-24 22:04:42 -05008544#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008545 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008546 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008547
8548 if (wrqu->mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008549 priv->net_dev->type = ARPHRD_IEEE80211;
James Ketrenosb095c382005-08-24 22:04:42 -05008550#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008551
Jeff Garzikbf794512005-07-31 13:07:26 -04008552 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008553 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008554 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008555
8556 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008557
James Ketrenosc848d0a2005-08-24 21:56:24 -05008558 queue_work(priv->workqueue, &priv->adapter_restart);
8559 up(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008560 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008561}
8562
Jeff Garzikbf794512005-07-31 13:07:26 -04008563static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008564 struct iw_request_info *info,
8565 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008566{
8567 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008568 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008569 wrqu->mode = priv->ieee->iw_mode;
8570 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008571 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008572 return 0;
8573}
8574
James Ketrenos43f66a62005-03-25 12:31:53 -06008575/* Values are in microsecond */
8576static const s32 timeout_duration[] = {
8577 350000,
8578 250000,
8579 75000,
8580 37000,
8581 25000,
8582};
8583
8584static const s32 period_duration[] = {
8585 400000,
8586 700000,
8587 1000000,
8588 1000000,
8589 1000000
8590};
8591
Jeff Garzikbf794512005-07-31 13:07:26 -04008592static int ipw_wx_get_range(struct net_device *dev,
8593 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008594 union iwreq_data *wrqu, char *extra)
8595{
8596 struct ipw_priv *priv = ieee80211_priv(dev);
8597 struct iw_range *range = (struct iw_range *)extra;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008598 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008599 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008600
8601 wrqu->data.length = sizeof(*range);
8602 memset(range, 0, sizeof(*range));
8603
8604 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008605 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008606
8607 range->max_qual.qual = 100;
8608 /* TODO: Find real max RSSI and stick here */
8609 range->max_qual.level = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008610 range->max_qual.noise = priv->ieee->worst_rssi + 0x100;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008611 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008612
8613 range->avg_qual.qual = 70;
8614 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008615 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008616 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008617 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008618 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008619 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008620
Jeff Garzikbf794512005-07-31 13:07:26 -04008621 for (i = 0; i < range->num_bitrates; i++)
8622 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008623 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008624
James Ketrenos43f66a62005-03-25 12:31:53 -06008625 range->max_rts = DEFAULT_RTS_THRESHOLD;
8626 range->min_frag = MIN_FRAG_THRESHOLD;
8627 range->max_frag = MAX_FRAG_THRESHOLD;
8628
8629 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008630 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008631 range->num_encoding_sizes = 2;
8632 range->max_encoding_tokens = WEP_KEYS;
8633
8634 /* Set the Wireless Extension versions */
8635 range->we_version_compiled = WIRELESS_EXT;
8636 range->we_version_source = 16;
8637
James Ketrenosb095c382005-08-24 22:04:42 -05008638 i = 0;
8639 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
8640 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES;
8641 i++, j++) {
8642 range->freq[i].i = geo->bg[j].channel;
8643 range->freq[i].m = geo->bg[j].freq * 100000;
8644 range->freq[i].e = 1;
8645 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008646 }
James Ketrenosb095c382005-08-24 22:04:42 -05008647
8648 if (priv->ieee->mode & IEEE_A) {
8649 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES;
8650 i++, j++) {
8651 range->freq[i].i = geo->a[j].channel;
8652 range->freq[i].m = geo->a[j].freq * 100000;
8653 range->freq[i].e = 1;
8654 }
8655 }
8656
8657 range->num_channels = i;
8658 range->num_frequency = i;
8659
James Ketrenosc848d0a2005-08-24 21:56:24 -05008660 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008661 IPW_DEBUG_WX("GET Range\n");
8662 return 0;
8663}
8664
Jeff Garzikbf794512005-07-31 13:07:26 -04008665static int ipw_wx_set_wap(struct net_device *dev,
8666 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008667 union iwreq_data *wrqu, char *extra)
8668{
8669 struct ipw_priv *priv = ieee80211_priv(dev);
8670
8671 static const unsigned char any[] = {
8672 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8673 };
8674 static const unsigned char off[] = {
8675 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8676 };
8677
Jeff Garzikbf794512005-07-31 13:07:26 -04008678 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008679 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008680 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008681 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8682 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8683 /* we disable mandatory BSSID association */
8684 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8685 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008686 IPW_DEBUG_ASSOC("Attempting to associate with new "
8687 "parameters.\n");
8688 ipw_associate(priv);
8689 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008690 return 0;
8691 }
8692
8693 priv->config |= CFG_STATIC_BSSID;
8694 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8695 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008696 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008697 return 0;
8698 }
8699
8700 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8701 MAC_ARG(wrqu->ap_addr.sa_data));
8702
8703 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8704
James Ketrenosc848d0a2005-08-24 21:56:24 -05008705 /* Network configuration changed -- force [re]association */
8706 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8707 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008708 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008709
James Ketrenosc848d0a2005-08-24 21:56:24 -05008710 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008711 return 0;
8712}
8713
Jeff Garzikbf794512005-07-31 13:07:26 -04008714static int ipw_wx_get_wap(struct net_device *dev,
8715 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008716 union iwreq_data *wrqu, char *extra)
8717{
8718 struct ipw_priv *priv = ieee80211_priv(dev);
8719 /* If we are associated, trying to associate, or have a statically
8720 * configured BSSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008721 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04008722 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008723 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8724 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008725 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008726 } else
8727 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8728
8729 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8730 MAC_ARG(wrqu->ap_addr.sa_data));
James Ketrenosc848d0a2005-08-24 21:56:24 -05008731 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008732 return 0;
8733}
8734
Jeff Garzikbf794512005-07-31 13:07:26 -04008735static int ipw_wx_set_essid(struct net_device *dev,
8736 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008737 union iwreq_data *wrqu, char *extra)
8738{
8739 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008740 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008741 int length = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008742 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008743 if (wrqu->essid.flags && wrqu->essid.length) {
8744 length = wrqu->essid.length - 1;
8745 essid = extra;
8746 }
8747 if (length == 0) {
8748 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008749 if ((priv->config & CFG_STATIC_ESSID) &&
8750 !(priv->status & (STATUS_ASSOCIATED |
8751 STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008752 IPW_DEBUG_ASSOC("Attempting to associate with new "
8753 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008754 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008755 ipw_associate(priv);
8756 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008757 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008758 return 0;
8759 }
8760
8761 length = min(length, IW_ESSID_MAX_SIZE);
8762
8763 priv->config |= CFG_STATIC_ESSID;
8764
8765 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
8766 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008767 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008768 return 0;
8769 }
8770
8771 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
8772 length);
8773
8774 priv->essid_len = length;
8775 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04008776
James Ketrenosc848d0a2005-08-24 21:56:24 -05008777 /* Network configuration changed -- force [re]association */
8778 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
8779 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008780 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008781
James Ketrenosc848d0a2005-08-24 21:56:24 -05008782 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008783 return 0;
8784}
8785
Jeff Garzikbf794512005-07-31 13:07:26 -04008786static int ipw_wx_get_essid(struct net_device *dev,
8787 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008788 union iwreq_data *wrqu, char *extra)
8789{
8790 struct ipw_priv *priv = ieee80211_priv(dev);
8791
8792 /* If we are associated, trying to associate, or have a statically
8793 * configured ESSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008794 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008795 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04008796 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8797 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008798 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04008799 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06008800 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008801 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008802 } else {
8803 IPW_DEBUG_WX("Getting essid: ANY\n");
8804 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008805 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008806 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008807 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008808 return 0;
8809}
8810
Jeff Garzikbf794512005-07-31 13:07:26 -04008811static int ipw_wx_set_nick(struct net_device *dev,
8812 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008813 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008814{
James Ketrenos43f66a62005-03-25 12:31:53 -06008815 struct ipw_priv *priv = ieee80211_priv(dev);
8816
8817 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
8818 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
8819 return -E2BIG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008820 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008821 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06008822 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008823 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06008824 IPW_DEBUG_TRACE("<<\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008825 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008826 return 0;
8827
8828}
8829
Jeff Garzikbf794512005-07-31 13:07:26 -04008830static int ipw_wx_get_nick(struct net_device *dev,
8831 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008832 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008833{
James Ketrenos43f66a62005-03-25 12:31:53 -06008834 struct ipw_priv *priv = ieee80211_priv(dev);
8835 IPW_DEBUG_WX("Getting nick\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008836 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008837 wrqu->data.length = strlen(priv->nick) + 1;
8838 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008839 wrqu->data.flags = 1; /* active */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008840 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008841 return 0;
8842}
8843
James Ketrenos43f66a62005-03-25 12:31:53 -06008844static int ipw_wx_set_rate(struct net_device *dev,
8845 struct iw_request_info *info,
8846 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008847{
James Ketrenosea2b26e2005-08-24 21:25:16 -05008848 /* TODO: We should use semaphores or locks for access to priv */
8849 struct ipw_priv *priv = ieee80211_priv(dev);
8850 u32 target_rate = wrqu->bitrate.value;
8851 u32 fixed, mask;
8852
8853 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
8854 /* value = X, fixed = 1 means only rate X */
8855 /* value = X, fixed = 0 means all rates lower equal X */
8856
8857 if (target_rate == -1) {
8858 fixed = 0;
8859 mask = IEEE80211_DEFAULT_RATES_MASK;
8860 /* Now we should reassociate */
8861 goto apply;
8862 }
8863
8864 mask = 0;
8865 fixed = wrqu->bitrate.fixed;
8866
8867 if (target_rate == 1000000 || !fixed)
8868 mask |= IEEE80211_CCK_RATE_1MB_MASK;
8869 if (target_rate == 1000000)
8870 goto apply;
8871
8872 if (target_rate == 2000000 || !fixed)
8873 mask |= IEEE80211_CCK_RATE_2MB_MASK;
8874 if (target_rate == 2000000)
8875 goto apply;
8876
8877 if (target_rate == 5500000 || !fixed)
8878 mask |= IEEE80211_CCK_RATE_5MB_MASK;
8879 if (target_rate == 5500000)
8880 goto apply;
8881
8882 if (target_rate == 6000000 || !fixed)
8883 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
8884 if (target_rate == 6000000)
8885 goto apply;
8886
8887 if (target_rate == 9000000 || !fixed)
8888 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
8889 if (target_rate == 9000000)
8890 goto apply;
8891
8892 if (target_rate == 11000000 || !fixed)
8893 mask |= IEEE80211_CCK_RATE_11MB_MASK;
8894 if (target_rate == 11000000)
8895 goto apply;
8896
8897 if (target_rate == 12000000 || !fixed)
8898 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
8899 if (target_rate == 12000000)
8900 goto apply;
8901
8902 if (target_rate == 18000000 || !fixed)
8903 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
8904 if (target_rate == 18000000)
8905 goto apply;
8906
8907 if (target_rate == 24000000 || !fixed)
8908 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
8909 if (target_rate == 24000000)
8910 goto apply;
8911
8912 if (target_rate == 36000000 || !fixed)
8913 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
8914 if (target_rate == 36000000)
8915 goto apply;
8916
8917 if (target_rate == 48000000 || !fixed)
8918 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
8919 if (target_rate == 48000000)
8920 goto apply;
8921
8922 if (target_rate == 54000000 || !fixed)
8923 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
8924 if (target_rate == 54000000)
8925 goto apply;
8926
8927 IPW_DEBUG_WX("invalid rate specified, returning error\n");
8928 return -EINVAL;
8929
8930 apply:
8931 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
8932 mask, fixed ? "fixed" : "sub-rates");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008933 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008934 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05008935 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05008936 ipw_set_fixed_rate(priv, priv->ieee->mode);
8937 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05008938 priv->config |= CFG_FIXED_RATE;
8939
James Ketrenosc848d0a2005-08-24 21:56:24 -05008940 if (priv->rates_mask == mask) {
8941 IPW_DEBUG_WX("Mask set to current mask.\n");
8942 up(&priv->sem);
8943 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05008944 }
8945
James Ketrenosc848d0a2005-08-24 21:56:24 -05008946 priv->rates_mask = mask;
8947
8948 /* Network configuration changed -- force [re]association */
8949 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
8950 if (!ipw_disassociate(priv))
8951 ipw_associate(priv);
8952
8953 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008954 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008955}
8956
Jeff Garzikbf794512005-07-31 13:07:26 -04008957static int ipw_wx_get_rate(struct net_device *dev,
8958 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008959 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008960{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008961 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008962 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008963 wrqu->bitrate.value = priv->last_rate;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008964 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008965 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
8966 return 0;
8967}
8968
Jeff Garzikbf794512005-07-31 13:07:26 -04008969static int ipw_wx_set_rts(struct net_device *dev,
8970 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008971 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008972{
James Ketrenos43f66a62005-03-25 12:31:53 -06008973 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008974 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008975 if (wrqu->rts.disabled)
8976 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8977 else {
8978 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05008979 wrqu->rts.value > MAX_RTS_THRESHOLD) {
8980 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008981 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008982 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008983 priv->rts_threshold = wrqu->rts.value;
8984 }
8985
8986 ipw_send_rts_threshold(priv, priv->rts_threshold);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008987 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008988 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
8989 return 0;
8990}
8991
Jeff Garzikbf794512005-07-31 13:07:26 -04008992static int ipw_wx_get_rts(struct net_device *dev,
8993 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008994 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008995{
James Ketrenos43f66a62005-03-25 12:31:53 -06008996 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008997 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008998 wrqu->rts.value = priv->rts_threshold;
8999 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009000 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009001 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009002 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
9003 return 0;
9004}
9005
Jeff Garzikbf794512005-07-31 13:07:26 -04009006static int ipw_wx_set_txpow(struct net_device *dev,
9007 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009008 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009009{
James Ketrenos43f66a62005-03-25 12:31:53 -06009010 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009011 int err = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05009012
James Ketrenosc848d0a2005-08-24 21:56:24 -05009013 down(&priv->sem);
9014 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009015 err = -EINPROGRESS;
9016 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009017 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009018
James Ketrenosb095c382005-08-24 22:04:42 -05009019 if (!wrqu->power.fixed)
9020 wrqu->power.value = IPW_TX_POWER_DEFAULT;
9021
James Ketrenosc848d0a2005-08-24 21:56:24 -05009022 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009023 err = -EINVAL;
9024 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009025 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009026
James Ketrenosb095c382005-08-24 22:04:42 -05009027 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009028 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009029 err = -EINVAL;
9030 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009031 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009032
9033 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009034 err = ipw_set_tx_power(priv);
9035 out:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009036 up(&priv->sem);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009037 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009038}
9039
Jeff Garzikbf794512005-07-31 13:07:26 -04009040static int ipw_wx_get_txpow(struct net_device *dev,
9041 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009042 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009043{
James Ketrenos43f66a62005-03-25 12:31:53 -06009044 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009045 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009046 wrqu->power.value = priv->tx_power;
9047 wrqu->power.fixed = 1;
9048 wrqu->power.flags = IW_TXPOW_DBM;
9049 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009050 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009051
Jeff Garzikbf794512005-07-31 13:07:26 -04009052 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08009053 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009054
9055 return 0;
9056}
9057
Jeff Garzikbf794512005-07-31 13:07:26 -04009058static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009059 struct iw_request_info *info,
9060 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009061{
9062 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009063 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009064 if (wrqu->frag.disabled)
9065 priv->ieee->fts = DEFAULT_FTS;
9066 else {
9067 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009068 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
9069 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009070 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009071 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009072
James Ketrenos43f66a62005-03-25 12:31:53 -06009073 priv->ieee->fts = wrqu->frag.value & ~0x1;
9074 }
9075
9076 ipw_send_frag_threshold(priv, wrqu->frag.value);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009077 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009078 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
9079 return 0;
9080}
9081
Jeff Garzikbf794512005-07-31 13:07:26 -04009082static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009083 struct iw_request_info *info,
9084 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009085{
9086 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009087 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009088 wrqu->frag.value = priv->ieee->fts;
9089 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009090 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009091 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009092 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
9093
9094 return 0;
9095}
9096
Jeff Garzikbf794512005-07-31 13:07:26 -04009097static int ipw_wx_set_retry(struct net_device *dev,
9098 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009099 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009100{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009101 struct ipw_priv *priv = ieee80211_priv(dev);
9102
9103 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9104 return -EINVAL;
9105
9106 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9107 return 0;
9108
9109 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
9110 return -EINVAL;
9111
9112 down(&priv->sem);
9113 if (wrqu->retry.flags & IW_RETRY_MIN)
9114 priv->short_retry_limit = (u8) wrqu->retry.value;
9115 else if (wrqu->retry.flags & IW_RETRY_MAX)
9116 priv->long_retry_limit = (u8) wrqu->retry.value;
9117 else {
9118 priv->short_retry_limit = (u8) wrqu->retry.value;
9119 priv->long_retry_limit = (u8) wrqu->retry.value;
9120 }
9121
9122 ipw_send_retry_limit(priv, priv->short_retry_limit,
9123 priv->long_retry_limit);
9124 up(&priv->sem);
9125 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9126 priv->short_retry_limit, priv->long_retry_limit);
9127 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009128}
9129
Jeff Garzikbf794512005-07-31 13:07:26 -04009130static int ipw_wx_get_retry(struct net_device *dev,
9131 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009132 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009133{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009134 struct ipw_priv *priv = ieee80211_priv(dev);
9135
9136 down(&priv->sem);
9137 wrqu->retry.disabled = 0;
9138
9139 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
9140 up(&priv->sem);
9141 return -EINVAL;
9142 }
9143
9144 if (wrqu->retry.flags & IW_RETRY_MAX) {
9145 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
9146 wrqu->retry.value = priv->long_retry_limit;
9147 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
9148 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
9149 wrqu->retry.value = priv->short_retry_limit;
9150 } else {
9151 wrqu->retry.flags = IW_RETRY_LIMIT;
9152 wrqu->retry.value = priv->short_retry_limit;
9153 }
9154 up(&priv->sem);
9155
9156 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
9157
9158 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009159}
9160
James Ketrenosafbf30a2005-08-25 00:05:33 -05009161#if WIRELESS_EXT > 17
9162static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
9163 int essid_len)
9164{
9165 struct ipw_scan_request_ext scan;
9166 int err = 0, scan_type;
9167
9168 down(&priv->sem);
9169
9170 if (priv->status & STATUS_RF_KILL_MASK) {
9171 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
9172 priv->status |= STATUS_SCAN_PENDING;
9173 goto done;
9174 }
9175
9176 IPW_DEBUG_HC("starting request direct scan!\n");
9177
9178 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
9179 err = wait_event_interruptible(priv->wait_state,
9180 !(priv->
9181 status & (STATUS_SCANNING |
9182 STATUS_SCAN_ABORTING)));
9183 if (err) {
9184 IPW_DEBUG_HC("aborting direct scan");
9185 goto done;
9186 }
9187 }
9188 memset(&scan, 0, sizeof(scan));
9189
9190 if (priv->config & CFG_SPEED_SCAN)
9191 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9192 cpu_to_le16(30);
9193 else
9194 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9195 cpu_to_le16(20);
9196
9197 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
9198 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05009199 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009200 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
9201
9202 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
9203
9204 err = ipw_send_ssid(priv, essid, essid_len);
9205 if (err) {
9206 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
9207 goto done;
9208 }
9209 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
9210
9211 ipw_add_scan_channels(priv, &scan, scan_type);
9212
9213 err = ipw_send_scan_request_ext(priv, &scan);
9214 if (err) {
9215 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
9216 goto done;
9217 }
9218
9219 priv->status |= STATUS_SCANNING;
9220
9221 done:
9222 up(&priv->sem);
9223 return err;
9224}
9225#endif /* WIRELESS_EXT > 17 */
9226
Jeff Garzikbf794512005-07-31 13:07:26 -04009227static int ipw_wx_set_scan(struct net_device *dev,
9228 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009229 union iwreq_data *wrqu, char *extra)
9230{
9231 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009232#if WIRELESS_EXT > 17
9233 struct iw_scan_req *req = NULL;
9234 if (wrqu->data.length
9235 && wrqu->data.length == sizeof(struct iw_scan_req)) {
9236 req = (struct iw_scan_req *)extra;
9237 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
9238 ipw_request_direct_scan(priv, req->essid,
9239 req->essid_len);
9240 return 0;
9241 }
9242 }
9243#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009244 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009245
9246 queue_work(priv->workqueue, &priv->request_scan);
9247
James Ketrenos43f66a62005-03-25 12:31:53 -06009248 return 0;
9249}
9250
Jeff Garzikbf794512005-07-31 13:07:26 -04009251static int ipw_wx_get_scan(struct net_device *dev,
9252 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009253 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009254{
James Ketrenos43f66a62005-03-25 12:31:53 -06009255 struct ipw_priv *priv = ieee80211_priv(dev);
9256 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9257}
9258
Jeff Garzikbf794512005-07-31 13:07:26 -04009259static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009260 struct iw_request_info *info,
9261 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009262{
9263 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009264 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009265 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009266
9267 down(&priv->sem);
9268 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009269
Hong Liucaeff812005-08-05 17:25:50 +08009270 /* In IBSS mode, we need to notify the firmware to update
9271 * the beacon info after we changed the capability. */
9272 if (cap != priv->capability &&
9273 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9274 priv->status & STATUS_ASSOCIATED)
9275 ipw_disassociate(priv);
9276
9277 up(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009278 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009279}
9280
Jeff Garzikbf794512005-07-31 13:07:26 -04009281static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009282 struct iw_request_info *info,
9283 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009284{
9285 struct ipw_priv *priv = ieee80211_priv(dev);
9286 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9287}
9288
Jeff Garzikbf794512005-07-31 13:07:26 -04009289static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009290 struct iw_request_info *info,
9291 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009292{
9293 struct ipw_priv *priv = ieee80211_priv(dev);
9294 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009295 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009296 if (wrqu->power.disabled) {
9297 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9298 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9299 if (err) {
9300 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009301 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009302 return err;
9303 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009304 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009305 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009306 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009307 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009308
9309 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009310 case IW_POWER_ON: /* If not specified */
9311 case IW_POWER_MODE: /* If set all mask */
9312 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009313 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009314 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009315 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9316 wrqu->power.flags);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009317 up(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009318 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009319 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009320
James Ketrenos43f66a62005-03-25 12:31:53 -06009321 /* If the user hasn't specified a power management mode yet, default
9322 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009323 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009324 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009325 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009326 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9327 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9328 if (err) {
9329 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009330 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009331 return err;
9332 }
9333
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009334 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009335 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009336 return 0;
9337}
9338
Jeff Garzikbf794512005-07-31 13:07:26 -04009339static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009340 struct iw_request_info *info,
9341 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009342{
9343 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009344 down(&priv->sem);
James Ketrenosa613bff2005-08-24 21:43:11 -05009345 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009346 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009347 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009348 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009349
James Ketrenosc848d0a2005-08-24 21:56:24 -05009350 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009351 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009352
James Ketrenos43f66a62005-03-25 12:31:53 -06009353 return 0;
9354}
9355
Jeff Garzikbf794512005-07-31 13:07:26 -04009356static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009357 struct iw_request_info *info,
9358 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009359{
9360 struct ipw_priv *priv = ieee80211_priv(dev);
9361 int mode = *(int *)extra;
9362 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009363 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009364 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9365 mode = IPW_POWER_AC;
9366 priv->power_mode = mode;
9367 } else {
9368 priv->power_mode = IPW_POWER_ENABLED | mode;
9369 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009370
James Ketrenos43f66a62005-03-25 12:31:53 -06009371 if (priv->power_mode != mode) {
9372 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009373
James Ketrenos43f66a62005-03-25 12:31:53 -06009374 if (err) {
9375 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009376 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009377 return err;
9378 }
9379 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009380 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009381 return 0;
9382}
9383
9384#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009385static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009386 struct iw_request_info *info,
9387 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009388{
9389 struct ipw_priv *priv = ieee80211_priv(dev);
9390 int level = IPW_POWER_LEVEL(priv->power_mode);
9391 char *p = extra;
9392
9393 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9394
9395 switch (level) {
9396 case IPW_POWER_AC:
9397 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9398 break;
9399 case IPW_POWER_BATTERY:
9400 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9401 break;
9402 default:
9403 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009404 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009405 timeout_duration[level - 1] / 1000,
9406 period_duration[level - 1] / 1000);
9407 }
9408
9409 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009410 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009411
9412 wrqu->data.length = p - extra + 1;
9413
9414 return 0;
9415}
9416
9417static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009418 struct iw_request_info *info,
9419 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009420{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009421 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009422 int mode = *(int *)extra;
9423 u8 band = 0, modulation = 0;
9424
9425 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009426 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009427 return -EINVAL;
9428 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009429 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009430 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009431 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009432 if (mode & IEEE_A) {
9433 band |= IEEE80211_52GHZ_BAND;
9434 modulation |= IEEE80211_OFDM_MODULATION;
9435 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009436 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009437 } else {
9438 if (mode & IEEE_A) {
9439 IPW_WARNING("Attempt to set 2200BG into "
9440 "802.11a mode\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009441 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009442 return -EINVAL;
9443 }
9444
James Ketrenosa33a1982005-09-14 14:28:59 -05009445 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009446 }
9447
9448 if (mode & IEEE_B) {
9449 band |= IEEE80211_24GHZ_BAND;
9450 modulation |= IEEE80211_CCK_MODULATION;
9451 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009452 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009453
James Ketrenos43f66a62005-03-25 12:31:53 -06009454 if (mode & IEEE_G) {
9455 band |= IEEE80211_24GHZ_BAND;
9456 modulation |= IEEE80211_OFDM_MODULATION;
9457 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009458 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009459
9460 priv->ieee->mode = mode;
9461 priv->ieee->freq_band = band;
9462 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009463 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009464
James Ketrenosc848d0a2005-08-24 21:56:24 -05009465 /* Network configuration changed -- force [re]association */
9466 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9467 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009468 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009469 ipw_associate(priv);
9470 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009471
James Ketrenosa613bff2005-08-24 21:43:11 -05009472 /* Update the band LEDs */
9473 ipw_led_band_on(priv);
9474
Jeff Garzikbf794512005-07-31 13:07:26 -04009475 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009476 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009477 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
James Ketrenosc848d0a2005-08-24 21:56:24 -05009478 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009479 return 0;
9480}
9481
9482static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009483 struct iw_request_info *info,
9484 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009485{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009486 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009487 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009488 switch (priv->ieee->mode) {
9489 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009490 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9491 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009492 case IEEE_B:
9493 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9494 break;
9495 case IEEE_A | IEEE_B:
9496 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9497 break;
9498 case IEEE_G:
9499 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9500 break;
9501 case IEEE_A | IEEE_G:
9502 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9503 break;
9504 case IEEE_B | IEEE_G:
9505 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9506 break;
9507 case IEEE_A | IEEE_B | IEEE_G:
9508 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9509 break;
9510 default:
9511 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009512 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009513 }
9514
James Ketrenos43f66a62005-03-25 12:31:53 -06009515 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9516
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009517 wrqu->data.length = strlen(extra) + 1;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009518 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009519
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009520 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009521}
9522
James Ketrenosea2b26e2005-08-24 21:25:16 -05009523static int ipw_wx_set_preamble(struct net_device *dev,
9524 struct iw_request_info *info,
9525 union iwreq_data *wrqu, char *extra)
9526{
9527 struct ipw_priv *priv = ieee80211_priv(dev);
9528 int mode = *(int *)extra;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009529 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009530 /* Switching from SHORT -> LONG requires a disassociation */
9531 if (mode == 1) {
9532 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9533 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009534
9535 /* Network configuration changed -- force [re]association */
9536 IPW_DEBUG_ASSOC
9537 ("[re]association triggered due to preamble change.\n");
9538 if (!ipw_disassociate(priv))
9539 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009540 }
9541 goto done;
9542 }
9543
9544 if (mode == 0) {
9545 priv->config &= ~CFG_PREAMBLE_LONG;
9546 goto done;
9547 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009548 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009549 return -EINVAL;
9550
9551 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009552 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009553 return 0;
9554}
9555
9556static int ipw_wx_get_preamble(struct net_device *dev,
9557 struct iw_request_info *info,
9558 union iwreq_data *wrqu, char *extra)
9559{
9560 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009561 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009562 if (priv->config & CFG_PREAMBLE_LONG)
9563 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9564 else
9565 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009566 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009567 return 0;
9568}
9569
James Ketrenosb095c382005-08-24 22:04:42 -05009570#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009571static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009572 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009573 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009574{
James Ketrenos43f66a62005-03-25 12:31:53 -06009575 struct ipw_priv *priv = ieee80211_priv(dev);
9576 int *parms = (int *)extra;
9577 int enable = (parms[0] > 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009578 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009579 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009580 if (enable) {
9581 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9582 priv->net_dev->type = ARPHRD_IEEE80211;
James Ketrenosa613bff2005-08-24 21:43:11 -05009583 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009584 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009585
James Ketrenos43f66a62005-03-25 12:31:53 -06009586 ipw_set_channel(priv, parms[1]);
9587 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009588 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9589 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009590 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009591 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009592 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009593 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009594 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009595 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009596 return 0;
9597}
9598
James Ketrenosb095c382005-08-24 22:04:42 -05009599#endif // CONFIG_IPW2200_MONITOR
9600
Jeff Garzikbf794512005-07-31 13:07:26 -04009601static int ipw_wx_reset(struct net_device *dev,
9602 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009603 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009604{
James Ketrenos43f66a62005-03-25 12:31:53 -06009605 struct ipw_priv *priv = ieee80211_priv(dev);
9606 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009607 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009608 return 0;
9609}
James Ketrenosb095c382005-08-24 22:04:42 -05009610
James Ketrenosb095c382005-08-24 22:04:42 -05009611static int ipw_wx_sw_reset(struct net_device *dev,
9612 struct iw_request_info *info,
9613 union iwreq_data *wrqu, char *extra)
9614{
9615 struct ipw_priv *priv = ieee80211_priv(dev);
9616 union iwreq_data wrqu_sec = {
9617 .encoding = {
9618 .flags = IW_ENCODE_DISABLED,
9619 },
9620 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009621 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009622
9623 IPW_DEBUG_WX("SW_RESET\n");
9624
9625 down(&priv->sem);
9626
James Ketrenosafbf30a2005-08-25 00:05:33 -05009627 ret = ipw_sw_reset(priv, 0);
9628 if (!ret) {
9629 free_firmware();
9630 ipw_adapter_restart(priv);
9631 }
James Ketrenosb095c382005-08-24 22:04:42 -05009632
9633 /* The SW reset bit might have been toggled on by the 'disable'
9634 * module parameter, so take appropriate action */
9635 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9636
9637 up(&priv->sem);
9638 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
9639 down(&priv->sem);
9640
9641 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9642 /* Configuration likely changed -- force [re]association */
9643 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9644 "reset.\n");
9645 if (!ipw_disassociate(priv))
9646 ipw_associate(priv);
9647 }
9648
9649 up(&priv->sem);
9650
9651 return 0;
9652}
James Ketrenos43f66a62005-03-25 12:31:53 -06009653
9654/* Rebase the WE IOCTLs to zero for the handler array */
9655#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009656static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009657 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9658 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9659 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9660 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9661 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
9662 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9663 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9664 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9665 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9666 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9667 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9668 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9669 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9670 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9671 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9672 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9673 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9674 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9675 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9676 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9677 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9678 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9679 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9680 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9681 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9682 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9683 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9684 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009685 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9686 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9687 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9688 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009689#if WIRELESS_EXT > 17
9690 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9691 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9692 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9693 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9694 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9695 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9696 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
9697#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009698};
9699
James Ketrenosb095c382005-08-24 22:04:42 -05009700enum {
9701 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9702 IPW_PRIV_GET_POWER,
9703 IPW_PRIV_SET_MODE,
9704 IPW_PRIV_GET_MODE,
9705 IPW_PRIV_SET_PREAMBLE,
9706 IPW_PRIV_GET_PREAMBLE,
9707 IPW_PRIV_RESET,
9708 IPW_PRIV_SW_RESET,
9709#ifdef CONFIG_IPW2200_MONITOR
9710 IPW_PRIV_SET_MONITOR,
9711#endif
9712};
James Ketrenos43f66a62005-03-25 12:31:53 -06009713
Jeff Garzikbf794512005-07-31 13:07:26 -04009714static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009715 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009716 .cmd = IPW_PRIV_SET_POWER,
9717 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9718 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009719 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009720 .cmd = IPW_PRIV_GET_POWER,
9721 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9722 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009723 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009724 .cmd = IPW_PRIV_SET_MODE,
9725 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9726 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009727 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009728 .cmd = IPW_PRIV_GET_MODE,
9729 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9730 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009731 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009732 .cmd = IPW_PRIV_SET_PREAMBLE,
9733 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9734 .name = "set_preamble"},
9735 {
9736 .cmd = IPW_PRIV_GET_PREAMBLE,
9737 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9738 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009739 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009740 IPW_PRIV_RESET,
9741 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009742 {
9743 IPW_PRIV_SW_RESET,
9744 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9745#ifdef CONFIG_IPW2200_MONITOR
9746 {
9747 IPW_PRIV_SET_MONITOR,
9748 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9749#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009750};
9751
9752static iw_handler ipw_priv_handler[] = {
9753 ipw_wx_set_powermode,
9754 ipw_wx_get_powermode,
9755 ipw_wx_set_wireless_mode,
9756 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009757 ipw_wx_set_preamble,
9758 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009759 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -05009760 ipw_wx_sw_reset,
9761#ifdef CONFIG_IPW2200_MONITOR
9762 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -06009763#endif
9764};
9765
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009766static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009767 .standard = ipw_wx_handlers,
9768 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
9769 .num_private = ARRAY_SIZE(ipw_priv_handler),
9770 .num_private_args = ARRAY_SIZE(ipw_priv_args),
9771 .private = ipw_priv_handler,
9772 .private_args = ipw_priv_args,
James Ketrenos43f66a62005-03-25 12:31:53 -06009773};
9774
James Ketrenosa613bff2005-08-24 21:43:11 -05009775static struct iw_public_data ipw_wx_data;
9776
James Ketrenos43f66a62005-03-25 12:31:53 -06009777/*
9778 * Get wireless statistics.
9779 * Called by /proc/net/wireless
9780 * Also called by SIOCGIWSTATS
9781 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009782static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -06009783{
9784 struct ipw_priv *priv = ieee80211_priv(dev);
9785 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009786
James Ketrenos43f66a62005-03-25 12:31:53 -06009787 wstats = &priv->wstats;
9788
James Ketrenosea2b26e2005-08-24 21:25:16 -05009789 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -05009790 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -06009791 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
9792 * and associated; if not associcated, the values are all meaningless
9793 * anyway, so set them all to NULL and INVALID */
9794 if (!(priv->status & STATUS_ASSOCIATED)) {
9795 wstats->miss.beacon = 0;
9796 wstats->discard.retries = 0;
9797 wstats->qual.qual = 0;
9798 wstats->qual.level = 0;
9799 wstats->qual.noise = 0;
9800 wstats->qual.updated = 7;
9801 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009802 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -06009803 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009804 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009805
9806 wstats->qual.qual = priv->quality;
9807 wstats->qual.level = average_value(&priv->average_rssi);
9808 wstats->qual.noise = average_value(&priv->average_noise);
9809 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009810 IW_QUAL_NOISE_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -06009811
9812 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
9813 wstats->discard.retries = priv->last_tx_failures;
9814 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -04009815
James Ketrenos43f66a62005-03-25 12:31:53 -06009816/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
9817 goto fail_get_ordinal;
9818 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -04009819
James Ketrenos43f66a62005-03-25 12:31:53 -06009820 return wstats;
9821}
9822
James Ketrenos43f66a62005-03-25 12:31:53 -06009823/* net device stuff */
9824
9825static inline void init_sys_config(struct ipw_sys_config *sys_config)
9826{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009827 memset(sys_config, 0, sizeof(struct ipw_sys_config));
9828 sys_config->bt_coexistence = 1; /* We may need to look into prvStaBtConfig */
James Ketrenos43f66a62005-03-25 12:31:53 -06009829 sys_config->answer_broadcast_ssid_probe = 0;
9830 sys_config->accept_all_data_frames = 0;
9831 sys_config->accept_non_directed_frames = 1;
9832 sys_config->exclude_unicast_unencrypted = 0;
9833 sys_config->disable_unicast_decryption = 1;
9834 sys_config->exclude_multicast_unencrypted = 0;
9835 sys_config->disable_multicast_decryption = 1;
9836 sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009837 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -06009838 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009839 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009840 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009841 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
James Ketrenos43f66a62005-03-25 12:31:53 -06009842}
9843
9844static int ipw_net_open(struct net_device *dev)
9845{
9846 struct ipw_priv *priv = ieee80211_priv(dev);
9847 IPW_DEBUG_INFO("dev->open\n");
9848 /* we should be verifying the device is ready to be opened */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009849 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009850 if (!(priv->status & STATUS_RF_KILL_MASK) &&
9851 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009852 netif_start_queue(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009853 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009854 return 0;
9855}
9856
9857static int ipw_net_stop(struct net_device *dev)
9858{
9859 IPW_DEBUG_INFO("dev->close\n");
9860 netif_stop_queue(dev);
9861 return 0;
9862}
9863
9864/*
9865todo:
9866
9867modify to send one tfd per fragment instead of using chunking. otherwise
9868we need to heavily modify the ieee80211_skb_to_txb.
9869*/
9870
James Ketrenos227d2dc2005-07-28 16:25:55 -05009871static inline int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
9872 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009873{
James Ketrenos0dacca12005-09-21 12:23:41 -05009874 struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009875 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -06009876 int i = 0;
9877 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -05009878#ifdef CONFIG_IPW_QOS
9879 int tx_id = ipw_get_tx_queue_number(priv, pri);
9880 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9881#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009882 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -05009883#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009884 struct clx2_queue *q = &txq->q;
9885 u8 id, hdr_len, unicast;
9886 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009887 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -06009888
James Ketrenos227d2dc2005-07-28 16:25:55 -05009889 /* If there isn't room in the queue, we return busy and let the
9890 * network stack requeue the packet for us */
9891 if (ipw_queue_space(q) < q->high_mark)
9892 return NETDEV_TX_BUSY;
9893
James Ketrenos43f66a62005-03-25 12:31:53 -06009894 switch (priv->ieee->iw_mode) {
9895 case IW_MODE_ADHOC:
9896 hdr_len = IEEE80211_3ADDR_LEN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009897 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -06009898 id = ipw_find_station(priv, hdr->addr1);
9899 if (id == IPW_INVALID_STATION) {
9900 id = ipw_add_station(priv, hdr->addr1);
9901 if (id == IPW_INVALID_STATION) {
9902 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -04009903 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009904 MAC_ARG(hdr->addr1));
9905 goto drop;
9906 }
9907 }
9908 break;
9909
9910 case IW_MODE_INFRA:
9911 default:
James Ketrenosafbf30a2005-08-25 00:05:33 -05009912 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -06009913 hdr_len = IEEE80211_3ADDR_LEN;
9914 id = 0;
9915 break;
9916 }
9917
9918 tfd = &txq->bd[q->first_empty];
9919 txq->txb[q->first_empty] = txb;
9920 memset(tfd, 0, sizeof(*tfd));
9921 tfd->u.data.station_number = id;
9922
9923 tfd->control_flags.message_type = TX_FRAME_TYPE;
9924 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
9925
9926 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -05009927 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009928 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -04009929
James Ketrenos43f66a62005-03-25 12:31:53 -06009930 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -05009931 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009932 else
James Ketrenosb095c382005-08-24 22:04:42 -05009933 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -06009934
James Ketrenosea2b26e2005-08-24 21:25:16 -05009935 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
9936 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009937
James Ketrenosc848d0a2005-08-24 21:56:24 -05009938 fc = le16_to_cpu(hdr->frame_ctl);
9939 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
9940
James Ketrenos43f66a62005-03-25 12:31:53 -06009941 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
9942
James Ketrenosb095c382005-08-24 22:04:42 -05009943 if (likely(unicast))
9944 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9945
9946 if (txb->encrypted && !priv->ieee->host_encrypt) {
9947 switch (priv->ieee->sec.level) {
9948 case SEC_LEVEL_3:
9949 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9950 IEEE80211_FCTL_PROTECTED;
9951 /* XXX: ACK flag must be set for CCMP even if it
9952 * is a multicast/broadcast packet, because CCMP
9953 * group communication encrypted by GTK is
9954 * actually done by the AP. */
9955 if (!unicast)
9956 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9957
9958 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9959 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
9960 tfd->u.data.key_index = 0;
9961 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
9962 break;
9963 case SEC_LEVEL_2:
9964 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9965 IEEE80211_FCTL_PROTECTED;
9966 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9967 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
9968 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
9969 break;
9970 case SEC_LEVEL_1:
9971 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9972 IEEE80211_FCTL_PROTECTED;
9973 tfd->u.data.key_index = priv->ieee->tx_keyidx;
9974 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
9975 40)
9976 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
9977 else
9978 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
9979 break;
9980 case SEC_LEVEL_0:
9981 break;
9982 default:
9983 printk(KERN_ERR "Unknow security level %d\n",
9984 priv->ieee->sec.level);
9985 break;
9986 }
9987 } else
9988 /* No hardware encryption */
9989 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
9990
9991#ifdef CONFIG_IPW_QOS
9992 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast);
9993#endif /* CONFIG_IPW_QOS */
9994
James Ketrenos43f66a62005-03-25 12:31:53 -06009995 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -05009996 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
9997 txb->nr_frags));
9998 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
9999 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10000 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10001 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10002 i, le32_to_cpu(tfd->u.data.num_chunks),
10003 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010004 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010005 i, tfd->u.data.num_chunks,
10006 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010007 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010008 txb->fragments[i]->len - hdr_len);
10009
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010010 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010011 cpu_to_le32(pci_map_single
10012 (priv->pci_dev,
10013 txb->fragments[i]->data + hdr_len,
10014 txb->fragments[i]->len - hdr_len,
10015 PCI_DMA_TODEVICE));
10016 tfd->u.data.chunk_len[i] =
10017 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010018 }
10019
10020 if (i != txb->nr_frags) {
10021 struct sk_buff *skb;
10022 u16 remaining_bytes = 0;
10023 int j;
10024
10025 for (j = i; j < txb->nr_frags; j++)
10026 remaining_bytes += txb->fragments[j]->len - hdr_len;
10027
10028 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10029 remaining_bytes);
10030 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10031 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010032 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010033 for (j = i; j < txb->nr_frags; j++) {
10034 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010035
James Ketrenos43f66a62005-03-25 12:31:53 -060010036 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010037 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010038 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010039 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010040 }
10041 dev_kfree_skb_any(txb->fragments[i]);
10042 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010043 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010044 cpu_to_le32(pci_map_single
10045 (priv->pci_dev, skb->data,
10046 tfd->u.data.chunk_len[i],
10047 PCI_DMA_TODEVICE));
10048
10049 tfd->u.data.num_chunks =
10050 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
10051 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010052 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010053 }
10054
10055 /* kick DMA */
10056 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10057 ipw_write32(priv, q->reg_w, q->first_empty);
10058
James Ketrenos227d2dc2005-07-28 16:25:55 -050010059 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010060
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010061 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010062 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
10063 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010064 return NETDEV_TX_OK;
10065}
10066
10067static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10068{
10069 struct ipw_priv *priv = ieee80211_priv(dev);
10070#ifdef CONFIG_IPW_QOS
10071 int tx_id = ipw_get_tx_queue_number(priv, pri);
10072 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10073#else
10074 struct clx2_tx_queue *txq = &priv->txq[0];
10075#endif /* CONFIG_IPW_QOS */
10076
10077 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
10078 return 1;
10079
10080 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010081}
10082
10083static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -050010084 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010085{
10086 struct ipw_priv *priv = ieee80211_priv(dev);
10087 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -050010088 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010089
10090 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010091 spin_lock_irqsave(&priv->lock, flags);
10092
10093 if (!(priv->status & STATUS_ASSOCIATED)) {
10094 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
10095 priv->ieee->stats.tx_carrier_errors++;
10096 netif_stop_queue(dev);
10097 goto fail_unlock;
10098 }
10099
James Ketrenos227d2dc2005-07-28 16:25:55 -050010100 ret = ipw_tx_skb(priv, txb, pri);
10101 if (ret == NETDEV_TX_OK)
10102 __ipw_led_activity_on(priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010103 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010104
James Ketrenos227d2dc2005-07-28 16:25:55 -050010105 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010106
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010107 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010108 spin_unlock_irqrestore(&priv->lock, flags);
10109 return 1;
10110}
10111
10112static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
10113{
10114 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -040010115
James Ketrenos43f66a62005-03-25 12:31:53 -060010116 priv->ieee->stats.tx_packets = priv->tx_packets;
10117 priv->ieee->stats.rx_packets = priv->rx_packets;
10118 return &priv->ieee->stats;
10119}
10120
10121static void ipw_net_set_multicast_list(struct net_device *dev)
10122{
10123
10124}
10125
10126static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10127{
10128 struct ipw_priv *priv = ieee80211_priv(dev);
10129 struct sockaddr *addr = p;
10130 if (!is_valid_ether_addr(addr->sa_data))
10131 return -EADDRNOTAVAIL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010132 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010133 priv->config |= CFG_CUSTOM_MAC;
10134 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
10135 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
10136 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -050010137 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010138 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010139 return 0;
10140}
10141
Jeff Garzikbf794512005-07-31 13:07:26 -040010142static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010143 struct ethtool_drvinfo *info)
10144{
10145 struct ipw_priv *p = ieee80211_priv(dev);
10146 char vers[64];
10147 char date[32];
10148 u32 len;
10149
10150 strcpy(info->driver, DRV_NAME);
10151 strcpy(info->version, DRV_VERSION);
10152
10153 len = sizeof(vers);
10154 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10155 len = sizeof(date);
10156 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10157
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010158 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010159 vers, date);
10160 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -050010161 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010162}
10163
10164static u32 ipw_ethtool_get_link(struct net_device *dev)
10165{
10166 struct ipw_priv *priv = ieee80211_priv(dev);
10167 return (priv->status & STATUS_ASSOCIATED) != 0;
10168}
10169
10170static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10171{
James Ketrenosb095c382005-08-24 22:04:42 -050010172 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010173}
10174
10175static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010176 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010177{
10178 struct ipw_priv *p = ieee80211_priv(dev);
10179
James Ketrenosb095c382005-08-24 22:04:42 -050010180 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010181 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010182 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010183 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010184 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010185 return 0;
10186}
10187
10188static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010189 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010190{
10191 struct ipw_priv *p = ieee80211_priv(dev);
10192 int i;
10193
James Ketrenosb095c382005-08-24 22:04:42 -050010194 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010195 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010196 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010197 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010198 for (i = IPW_EEPROM_DATA;
James Ketrenosb095c382005-08-24 22:04:42 -050010199 i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -060010200 ipw_write8(p, i, p->eeprom[i]);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010201 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010202 return 0;
10203}
10204
10205static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010206 .get_link = ipw_ethtool_get_link,
10207 .get_drvinfo = ipw_ethtool_get_drvinfo,
10208 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10209 .get_eeprom = ipw_ethtool_get_eeprom,
10210 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010211};
10212
10213static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
10214{
10215 struct ipw_priv *priv = data;
10216 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010217
James Ketrenos43f66a62005-03-25 12:31:53 -060010218 if (!priv)
10219 return IRQ_NONE;
10220
10221 spin_lock(&priv->lock);
10222
10223 if (!(priv->status & STATUS_INT_ENABLED)) {
10224 /* Shared IRQ */
10225 goto none;
10226 }
10227
James Ketrenosb095c382005-08-24 22:04:42 -050010228 inta = ipw_read32(priv, IPW_INTA_RW);
10229 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010230
James Ketrenos43f66a62005-03-25 12:31:53 -060010231 if (inta == 0xFFFFFFFF) {
10232 /* Hardware disappeared */
10233 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10234 goto none;
10235 }
10236
James Ketrenosb095c382005-08-24 22:04:42 -050010237 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010238 /* Shared interrupt */
10239 goto none;
10240 }
10241
10242 /* tell the device to stop sending interrupts */
10243 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010244
James Ketrenos43f66a62005-03-25 12:31:53 -060010245 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010246 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10247 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010248
James Ketrenos43f66a62005-03-25 12:31:53 -060010249 /* Cache INTA value for our tasklet */
10250 priv->isr_inta = inta;
10251
10252 tasklet_schedule(&priv->irq_tasklet);
10253
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010254 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010255
10256 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010257 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010258 spin_unlock(&priv->lock);
10259 return IRQ_NONE;
10260}
10261
10262static void ipw_rf_kill(void *adapter)
10263{
10264 struct ipw_priv *priv = adapter;
10265 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010266
James Ketrenos43f66a62005-03-25 12:31:53 -060010267 spin_lock_irqsave(&priv->lock, flags);
10268
10269 if (rf_kill_active(priv)) {
10270 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10271 if (priv->workqueue)
10272 queue_delayed_work(priv->workqueue,
10273 &priv->rf_kill, 2 * HZ);
10274 goto exit_unlock;
10275 }
10276
10277 /* RF Kill is now disabled, so bring the device back up */
10278
10279 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10280 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10281 "device\n");
10282
10283 /* we can not do an adapter restart while inside an irq lock */
10284 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010285 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010286 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10287 "enabled\n");
10288
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010289 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010290 spin_unlock_irqrestore(&priv->lock, flags);
10291}
10292
James Ketrenosc848d0a2005-08-24 21:56:24 -050010293static void ipw_bg_rf_kill(void *data)
10294{
10295 struct ipw_priv *priv = data;
10296 down(&priv->sem);
10297 ipw_rf_kill(data);
10298 up(&priv->sem);
10299}
10300
James Ketrenosa613bff2005-08-24 21:43:11 -050010301void ipw_link_up(struct ipw_priv *priv)
10302{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010303 priv->last_seq_num = -1;
10304 priv->last_frag_num = -1;
10305 priv->last_packet_time = 0;
10306
James Ketrenosa613bff2005-08-24 21:43:11 -050010307 netif_carrier_on(priv->net_dev);
10308 if (netif_queue_stopped(priv->net_dev)) {
10309 IPW_DEBUG_NOTIF("waking queue\n");
10310 netif_wake_queue(priv->net_dev);
10311 } else {
10312 IPW_DEBUG_NOTIF("starting queue\n");
10313 netif_start_queue(priv->net_dev);
10314 }
10315
James Ketrenosc848d0a2005-08-24 21:56:24 -050010316 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010317 ipw_reset_stats(priv);
10318 /* Ensure the rate is updated immediately */
10319 priv->last_rate = ipw_get_current_rate(priv);
10320 ipw_gather_stats(priv);
10321 ipw_led_link_up(priv);
10322 notify_wx_assoc_event(priv);
10323
10324 if (priv->config & CFG_BACKGROUND_SCAN)
10325 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10326}
10327
James Ketrenosc848d0a2005-08-24 21:56:24 -050010328static void ipw_bg_link_up(void *data)
10329{
10330 struct ipw_priv *priv = data;
10331 down(&priv->sem);
10332 ipw_link_up(data);
10333 up(&priv->sem);
10334}
10335
James Ketrenosa613bff2005-08-24 21:43:11 -050010336void ipw_link_down(struct ipw_priv *priv)
10337{
10338 ipw_led_link_down(priv);
10339 netif_carrier_off(priv->net_dev);
10340 netif_stop_queue(priv->net_dev);
10341 notify_wx_assoc_event(priv);
10342
10343 /* Cancel any queued work ... */
10344 cancel_delayed_work(&priv->request_scan);
10345 cancel_delayed_work(&priv->adhoc_check);
10346 cancel_delayed_work(&priv->gather_stats);
10347
10348 ipw_reset_stats(priv);
10349
James Ketrenosafbf30a2005-08-25 00:05:33 -050010350 if (!(priv->status & STATUS_EXIT_PENDING)) {
10351 /* Queue up another scan... */
10352 queue_work(priv->workqueue, &priv->request_scan);
10353 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010354}
10355
James Ketrenosc848d0a2005-08-24 21:56:24 -050010356static void ipw_bg_link_down(void *data)
10357{
10358 struct ipw_priv *priv = data;
10359 down(&priv->sem);
10360 ipw_link_down(data);
10361 up(&priv->sem);
10362}
10363
James Ketrenos43f66a62005-03-25 12:31:53 -060010364static int ipw_setup_deferred_work(struct ipw_priv *priv)
10365{
10366 int ret = 0;
10367
James Ketrenos43f66a62005-03-25 12:31:53 -060010368 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010369 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010370 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010371
James Ketrenosc848d0a2005-08-24 21:56:24 -050010372 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10373 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10374 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010375 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010376 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10377 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10378 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10379 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10380 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010381 INIT_WORK(&priv->request_scan,
James Ketrenosb095c382005-08-24 22:04:42 -050010382 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010383 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010384 (void (*)(void *))ipw_bg_gather_stats, priv);
10385 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10386 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10387 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10388 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10389 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10390 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010391 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010392 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010393 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010394 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10395 priv);
10396 INIT_WORK(&priv->merge_networks,
10397 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010398
James Ketrenosb095c382005-08-24 22:04:42 -050010399#ifdef CONFIG_IPW_QOS
10400 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10401 priv);
10402#endif /* CONFIG_IPW_QOS */
10403
James Ketrenos43f66a62005-03-25 12:31:53 -060010404 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10405 ipw_irq_tasklet, (unsigned long)priv);
10406
10407 return ret;
10408}
10409
James Ketrenos43f66a62005-03-25 12:31:53 -060010410static void shim__set_security(struct net_device *dev,
10411 struct ieee80211_security *sec)
10412{
10413 struct ipw_priv *priv = ieee80211_priv(dev);
10414 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010415 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010416 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010417 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010418 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010419 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010420 priv->ieee->sec.flags &= ~(1 << i);
10421 else {
10422 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010423 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010424 priv->ieee->sec.flags |= (1 << i);
10425 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010426 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010427 } else if (sec->level != SEC_LEVEL_1)
10428 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010429 }
10430
James Ketrenosb095c382005-08-24 22:04:42 -050010431 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010432 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010433 priv->ieee->sec.active_key = sec->active_key;
10434 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010435 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010436 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010437 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010438 } else
10439 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010440
10441 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010442 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10443 priv->ieee->sec.auth_mode = sec->auth_mode;
10444 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010445 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10446 priv->capability |= CAP_SHARED_KEY;
10447 else
10448 priv->capability &= ~CAP_SHARED_KEY;
10449 priv->status |= STATUS_SECURITY_UPDATED;
10450 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010451
James Ketrenosb095c382005-08-24 22:04:42 -050010452 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10453 priv->ieee->sec.flags |= SEC_ENABLED;
10454 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010455 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010456 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010457 priv->capability |= CAP_PRIVACY_ON;
10458 else
10459 priv->capability &= ~CAP_PRIVACY_ON;
10460 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010461
10462 if (sec->flags & SEC_ENCRYPT)
10463 priv->ieee->sec.encrypt = sec->encrypt;
Jeff Garzikbf794512005-07-31 13:07:26 -040010464
James Ketrenosb095c382005-08-24 22:04:42 -050010465 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10466 priv->ieee->sec.level = sec->level;
10467 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010468 priv->status |= STATUS_SECURITY_UPDATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -050010469 }
James Ketrenosb095c382005-08-24 22:04:42 -050010470
Zhu Yi1fbfea52005-08-05 17:22:56 +080010471 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10472 ipw_set_hwcrypto_keys(priv);
10473
Jeff Garzikbf794512005-07-31 13:07:26 -040010474 /* To match current functionality of ipw2100 (which works well w/
10475 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010476 * privacy capability changes ... */
10477#if 0
10478 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010479 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010480 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010481 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010482 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010483 IPW_DEBUG_ASSOC("Disassociating due to capability "
10484 "change.\n");
10485 ipw_disassociate(priv);
10486 }
10487#endif
10488}
10489
Jeff Garzikbf794512005-07-31 13:07:26 -040010490static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010491 struct ipw_supported_rates *rates)
10492{
10493 /* TODO: Mask out rates based on priv->rates_mask */
10494
10495 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010496 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010497 switch (priv->ieee->freq_band) {
10498 case IEEE80211_52GHZ_BAND:
10499 rates->ieee_mode = IPW_A_MODE;
10500 rates->purpose = IPW_RATE_CAPABILITIES;
10501 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10502 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10503 break;
10504
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010505 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010506 rates->ieee_mode = IPW_G_MODE;
10507 rates->purpose = IPW_RATE_CAPABILITIES;
10508 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10509 IEEE80211_CCK_DEFAULT_RATES_MASK);
10510 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10511 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10512 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10513 }
10514 break;
10515 }
10516
10517 return 0;
10518}
10519
Jeff Garzikbf794512005-07-31 13:07:26 -040010520static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010521{
James Ketrenos43f66a62005-03-25 12:31:53 -060010522 /* This is only called from ipw_up, which resets/reloads the firmware
10523 so, we don't need to first disable the card before we configure
10524 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010525 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010526 goto error;
10527
10528 /* initialize adapter address */
10529 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10530 goto error;
10531
10532 /* set basic system config settings */
10533 init_sys_config(&priv->sys_config);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010534 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10535 priv->sys_config.answer_broadcast_ssid_probe = 1;
10536 else
10537 priv->sys_config.answer_broadcast_ssid_probe = 0;
10538
James Ketrenos43f66a62005-03-25 12:31:53 -060010539 if (ipw_send_system_config(priv, &priv->sys_config))
10540 goto error;
10541
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010542 init_supported_rates(priv, &priv->rates);
10543 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010544 goto error;
10545
10546 /* Set request-to-send threshold */
10547 if (priv->rts_threshold) {
10548 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10549 goto error;
10550 }
James Ketrenosb095c382005-08-24 22:04:42 -050010551#ifdef CONFIG_IPW_QOS
10552 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10553 ipw_qos_activate(priv, NULL);
10554#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010555
10556 if (ipw_set_random_seed(priv))
10557 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010558
James Ketrenos43f66a62005-03-25 12:31:53 -060010559 /* final state transition to the RUN state */
10560 if (ipw_send_host_complete(priv))
10561 goto error;
10562
James Ketrenose6666192005-08-12 09:17:04 -050010563 priv->status |= STATUS_INIT;
10564
10565 ipw_led_init(priv);
10566 ipw_led_radio_on(priv);
10567 priv->notif_missed_beacons = 0;
10568
10569 /* Set hardware WEP key if it is configured. */
10570 if ((priv->capability & CAP_PRIVACY_ON) &&
10571 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10572 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10573 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010574
10575 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010576
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010577 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010578 return -EIO;
10579}
10580
James Ketrenos4f36f802005-08-03 20:36:56 -050010581/*
10582 * NOTE:
10583 *
10584 * These tables have been tested in conjunction with the
10585 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10586 *
10587 * Altering this values, using it on other hardware, or in geographies
10588 * not intended for resale of the above mentioned Intel adapters has
10589 * not been tested.
10590 *
10591 */
10592static const struct ieee80211_geo ipw_geos[] = {
10593 { /* Restricted */
10594 "---",
10595 .bg_channels = 11,
10596 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10597 {2427, 4}, {2432, 5}, {2437, 6},
10598 {2442, 7}, {2447, 8}, {2452, 9},
10599 {2457, 10}, {2462, 11}},
10600 },
10601
10602 { /* Custom US/Canada */
10603 "ZZF",
10604 .bg_channels = 11,
10605 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10606 {2427, 4}, {2432, 5}, {2437, 6},
10607 {2442, 7}, {2447, 8}, {2452, 9},
10608 {2457, 10}, {2462, 11}},
10609 .a_channels = 8,
10610 .a = {{5180, 36},
10611 {5200, 40},
10612 {5220, 44},
10613 {5240, 48},
10614 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10615 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10616 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10617 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10618 },
10619
10620 { /* Rest of World */
10621 "ZZD",
10622 .bg_channels = 13,
10623 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10624 {2427, 4}, {2432, 5}, {2437, 6},
10625 {2442, 7}, {2447, 8}, {2452, 9},
10626 {2457, 10}, {2462, 11}, {2467, 12},
10627 {2472, 13}},
10628 },
10629
10630 { /* Custom USA & Europe & High */
10631 "ZZA",
10632 .bg_channels = 11,
10633 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10634 {2427, 4}, {2432, 5}, {2437, 6},
10635 {2442, 7}, {2447, 8}, {2452, 9},
10636 {2457, 10}, {2462, 11}},
10637 .a_channels = 13,
10638 .a = {{5180, 36},
10639 {5200, 40},
10640 {5220, 44},
10641 {5240, 48},
10642 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10643 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10644 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10645 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10646 {5745, 149},
10647 {5765, 153},
10648 {5785, 157},
10649 {5805, 161},
10650 {5825, 165}},
10651 },
10652
10653 { /* Custom NA & Europe */
10654 "ZZB",
10655 .bg_channels = 11,
10656 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10657 {2427, 4}, {2432, 5}, {2437, 6},
10658 {2442, 7}, {2447, 8}, {2452, 9},
10659 {2457, 10}, {2462, 11}},
10660 .a_channels = 13,
10661 .a = {{5180, 36},
10662 {5200, 40},
10663 {5220, 44},
10664 {5240, 48},
10665 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10666 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10667 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10668 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10669 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10670 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10671 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10672 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10673 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10674 },
10675
10676 { /* Custom Japan */
10677 "ZZC",
10678 .bg_channels = 11,
10679 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10680 {2427, 4}, {2432, 5}, {2437, 6},
10681 {2442, 7}, {2447, 8}, {2452, 9},
10682 {2457, 10}, {2462, 11}},
10683 .a_channels = 4,
10684 .a = {{5170, 34}, {5190, 38},
10685 {5210, 42}, {5230, 46}},
10686 },
10687
10688 { /* Custom */
10689 "ZZM",
10690 .bg_channels = 11,
10691 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10692 {2427, 4}, {2432, 5}, {2437, 6},
10693 {2442, 7}, {2447, 8}, {2452, 9},
10694 {2457, 10}, {2462, 11}},
10695 },
10696
10697 { /* Europe */
10698 "ZZE",
10699 .bg_channels = 13,
10700 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10701 {2427, 4}, {2432, 5}, {2437, 6},
10702 {2442, 7}, {2447, 8}, {2452, 9},
10703 {2457, 10}, {2462, 11}, {2467, 12},
10704 {2472, 13}},
10705 .a_channels = 19,
10706 .a = {{5180, 36},
10707 {5200, 40},
10708 {5220, 44},
10709 {5240, 48},
10710 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10711 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10712 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10713 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10714 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10715 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10716 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10717 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10718 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10719 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10720 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10721 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10722 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10723 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10724 {5700, 140, IEEE80211_CH_PASSIVE_ONLY}},
10725 },
10726
10727 { /* Custom Japan */
10728 "ZZJ",
10729 .bg_channels = 14,
10730 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10731 {2427, 4}, {2432, 5}, {2437, 6},
10732 {2442, 7}, {2447, 8}, {2452, 9},
10733 {2457, 10}, {2462, 11}, {2467, 12},
10734 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY}},
10735 .a_channels = 4,
10736 .a = {{5170, 34}, {5190, 38},
10737 {5210, 42}, {5230, 46}},
10738 },
10739
10740 { /* High Band */
10741 "ZZH",
10742 .bg_channels = 13,
10743 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10744 {2427, 4}, {2432, 5}, {2437, 6},
10745 {2442, 7}, {2447, 8}, {2452, 9},
10746 {2457, 10}, {2462, 11},
10747 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10748 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10749 .a_channels = 4,
10750 .a = {{5745, 149}, {5765, 153},
10751 {5785, 157}, {5805, 161}},
10752 },
10753
10754 { /* Custom Europe */
10755 "ZZG",
10756 .bg_channels = 13,
10757 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10758 {2427, 4}, {2432, 5}, {2437, 6},
10759 {2442, 7}, {2447, 8}, {2452, 9},
10760 {2457, 10}, {2462, 11},
10761 {2467, 12}, {2472, 13}},
10762 .a_channels = 4,
10763 .a = {{5180, 36}, {5200, 40},
10764 {5220, 44}, {5240, 48}},
10765 },
10766
10767 { /* Europe */
10768 "ZZK",
10769 .bg_channels = 13,
10770 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10771 {2427, 4}, {2432, 5}, {2437, 6},
10772 {2442, 7}, {2447, 8}, {2452, 9},
10773 {2457, 10}, {2462, 11},
10774 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10775 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10776 .a_channels = 24,
10777 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10778 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10779 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10780 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10781 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10782 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10783 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10784 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10785 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10786 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10787 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10788 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10789 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10790 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10791 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10792 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10793 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10794 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10795 {5700, 140, IEEE80211_CH_PASSIVE_ONLY},
10796 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10797 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10798 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10799 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10800 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10801 },
10802
10803 { /* Europe */
10804 "ZZL",
10805 .bg_channels = 11,
10806 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10807 {2427, 4}, {2432, 5}, {2437, 6},
10808 {2442, 7}, {2447, 8}, {2452, 9},
10809 {2457, 10}, {2462, 11}},
10810 .a_channels = 13,
10811 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
10812 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
10813 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
10814 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
10815 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10816 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10817 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10818 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10819 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10820 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10821 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10822 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10823 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10824 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010825};
10826
Liu Hong1fe0adb2005-08-19 09:33:10 -050010827/* GEO code borrowed from ieee80211_geo.c */
10828static int ipw_is_valid_channel(struct ieee80211_device *ieee, u8 channel)
10829{
10830 int i;
10831
10832 /* Driver needs to initialize the geography map before using
10833 * these helper functions */
10834 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10835
10836 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10837 for (i = 0; i < ieee->geo.bg_channels; i++)
10838 /* NOTE: If G mode is currently supported but
10839 * this is a B only channel, we don't see it
10840 * as valid. */
10841 if ((ieee->geo.bg[i].channel == channel) &&
10842 (!(ieee->mode & IEEE_G) ||
10843 !(ieee->geo.bg[i].flags & IEEE80211_CH_B_ONLY)))
10844 return IEEE80211_24GHZ_BAND;
10845
10846 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10847 for (i = 0; i < ieee->geo.a_channels; i++)
10848 if (ieee->geo.a[i].channel == channel)
10849 return IEEE80211_52GHZ_BAND;
10850
10851 return 0;
10852}
10853
10854static int ipw_channel_to_index(struct ieee80211_device *ieee, u8 channel)
10855{
10856 int i;
10857
10858 /* Driver needs to initialize the geography map before using
10859 * these helper functions */
10860 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10861
10862 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10863 for (i = 0; i < ieee->geo.bg_channels; i++)
10864 if (ieee->geo.bg[i].channel == channel)
10865 return i;
10866
10867 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10868 for (i = 0; i < ieee->geo.a_channels; i++)
10869 if (ieee->geo.a[i].channel == channel)
10870 return i;
10871
10872 return -1;
10873}
10874
10875static u8 ipw_freq_to_channel(struct ieee80211_device *ieee, u32 freq)
10876{
10877 int i;
10878
10879 /* Driver needs to initialize the geography map before using
10880 * these helper functions */
10881 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
10882
10883 freq /= 100000;
10884
10885 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
10886 for (i = 0; i < ieee->geo.bg_channels; i++)
10887 if (ieee->geo.bg[i].freq == freq)
10888 return ieee->geo.bg[i].channel;
10889
10890 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
10891 for (i = 0; i < ieee->geo.a_channels; i++)
10892 if (ieee->geo.a[i].freq == freq)
10893 return ieee->geo.a[i].channel;
10894
10895 return 0;
10896}
10897
10898static int ipw_set_geo(struct ieee80211_device *ieee,
10899 const struct ieee80211_geo *geo)
10900{
10901 memcpy(ieee->geo.name, geo->name, 3);
10902 ieee->geo.name[3] = '\0';
10903 ieee->geo.bg_channels = geo->bg_channels;
10904 ieee->geo.a_channels = geo->a_channels;
10905 memcpy(ieee->geo.bg, geo->bg, geo->bg_channels *
10906 sizeof(struct ieee80211_channel));
10907 memcpy(ieee->geo.a, geo->a, ieee->geo.a_channels *
10908 sizeof(struct ieee80211_channel));
10909 return 0;
10910}
10911
10912static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *ieee)
10913{
10914 return &ieee->geo;
10915}
10916
James Ketrenos43f66a62005-03-25 12:31:53 -060010917#define MAX_HW_RESTARTS 5
10918static int ipw_up(struct ipw_priv *priv)
10919{
James Ketrenos4f36f802005-08-03 20:36:56 -050010920 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060010921
10922 if (priv->status & STATUS_EXIT_PENDING)
10923 return -EIO;
10924
James Ketrenosf6c5cb72005-08-25 00:39:09 -050010925 if (cmdlog && !priv->cmdlog) {
10926 priv->cmdlog = kmalloc(sizeof(*priv->cmdlog) * cmdlog,
10927 GFP_KERNEL);
10928 if (priv->cmdlog == NULL) {
10929 IPW_ERROR("Error allocating %d command log entries.\n",
10930 cmdlog);
10931 } else {
10932 memset(priv->cmdlog, 0, sizeof(*priv->cmdlog) * cmdlog);
10933 priv->cmdlog_len = cmdlog;
10934 }
10935 }
10936
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010937 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040010938 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060010939 * Also start the clocks. */
10940 rc = ipw_load(priv);
10941 if (rc) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010942 IPW_ERROR("Unable to load firmware: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010943 return rc;
10944 }
10945
10946 ipw_init_ordinals(priv);
10947 if (!(priv->config & CFG_CUSTOM_MAC))
10948 eeprom_parse_mac(priv, priv->mac_addr);
10949 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
10950
James Ketrenos4f36f802005-08-03 20:36:56 -050010951 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
10952 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
10953 ipw_geos[j].name, 3))
10954 break;
10955 }
10956 if (j == ARRAY_SIZE(ipw_geos))
10957 j = 0;
Liu Hong1fe0adb2005-08-19 09:33:10 -050010958 if (ipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050010959 IPW_WARNING("Could not set geography.");
10960 return 0;
10961 }
10962
10963 IPW_DEBUG_INFO("Geography %03d [%s] detected.\n",
10964 j, priv->ieee->geo.name);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010965
James Ketrenosb095c382005-08-24 22:04:42 -050010966 if (priv->status & STATUS_RF_KILL_SW) {
10967 IPW_WARNING("Radio disabled by module parameter.\n");
10968 return 0;
10969 } else if (rf_kill_active(priv)) {
10970 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
10971 "Kill switch must be turned off for "
10972 "wireless networking to work.\n");
10973 queue_delayed_work(priv->workqueue, &priv->rf_kill,
10974 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010975 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010976 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010977
10978 rc = ipw_config(priv);
10979 if (!rc) {
10980 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010981
James Ketrenose6666192005-08-12 09:17:04 -050010982 /* If configure to try and auto-associate, kick
10983 * off a scan. */
10984 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010985
James Ketrenos43f66a62005-03-25 12:31:53 -060010986 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010987 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010988
James Ketrenosc848d0a2005-08-24 21:56:24 -050010989 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010990 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
10991 i, MAX_HW_RESTARTS);
10992
10993 /* We had an error bringing up the hardware, so take it
10994 * all the way back down so we can try again */
10995 ipw_down(priv);
10996 }
10997
Jeff Garzikbf794512005-07-31 13:07:26 -040010998 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060010999 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011000 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011001
James Ketrenos43f66a62005-03-25 12:31:53 -060011002 return -EIO;
11003}
11004
James Ketrenosc848d0a2005-08-24 21:56:24 -050011005static void ipw_bg_up(void *data)
11006{
11007 struct ipw_priv *priv = data;
11008 down(&priv->sem);
11009 ipw_up(data);
11010 up(&priv->sem);
11011}
11012
James Ketrenosb095c382005-08-24 22:04:42 -050011013static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011014{
James Ketrenosb095c382005-08-24 22:04:42 -050011015 int i;
11016
11017 if (priv->status & STATUS_SCANNING) {
11018 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11019 ipw_abort_scan(priv);
11020 }
11021
11022 if (priv->status & STATUS_ASSOCIATED) {
11023 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11024 ipw_disassociate(priv);
11025 }
11026
11027 ipw_led_shutdown(priv);
11028
11029 /* Wait up to 1s for status to change to not scanning and not
11030 * associated (disassociation can take a while for a ful 802.11
11031 * exchange */
11032 for (i = 1000; i && (priv->status &
11033 (STATUS_DISASSOCIATING |
11034 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11035 udelay(10);
11036
11037 if (priv->status & (STATUS_DISASSOCIATING |
11038 STATUS_ASSOCIATED | STATUS_SCANNING))
11039 IPW_DEBUG_INFO("Still associated or scanning...\n");
11040 else
11041 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11042
James Ketrenosc848d0a2005-08-24 21:56:24 -050011043 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011044 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011045
11046 priv->status &= ~STATUS_INIT;
11047}
11048
11049static void ipw_down(struct ipw_priv *priv)
11050{
11051 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11052
11053 priv->status |= STATUS_EXIT_PENDING;
11054
11055 if (ipw_is_init(priv))
11056 ipw_deinit(priv);
11057
11058 /* Wipe out the EXIT_PENDING status bit if we are not actually
11059 * exiting the module */
11060 if (!exit_pending)
11061 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011062
11063 /* tell the device to stop sending interrupts */
11064 ipw_disable_interrupts(priv);
11065
11066 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011067 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011068 netif_carrier_off(priv->net_dev);
11069 netif_stop_queue(priv->net_dev);
11070
11071 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011072
11073 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011074}
11075
James Ketrenosc848d0a2005-08-24 21:56:24 -050011076static void ipw_bg_down(void *data)
11077{
11078 struct ipw_priv *priv = data;
11079 down(&priv->sem);
11080 ipw_down(data);
11081 up(&priv->sem);
11082}
11083
James Ketrenosafbf30a2005-08-25 00:05:33 -050011084#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011085static int ipw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
11086{
James Ketrenosea2b26e2005-08-24 21:25:16 -050011087 struct iwreq *wrq = (struct iwreq *)rq;
11088 int ret = -1;
11089 switch (cmd) {
11090 case IPW_IOCTL_WPA_SUPPLICANT:
11091 ret = ipw_wpa_supplicant(dev, &wrq->u.data);
11092 return ret;
11093
11094 default:
11095 return -EOPNOTSUPP;
11096 }
11097
James Ketrenosea2b26e2005-08-24 21:25:16 -050011098 return -EOPNOTSUPP;
11099}
James Ketrenosafbf30a2005-08-25 00:05:33 -050011100#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -050011101
James Ketrenos43f66a62005-03-25 12:31:53 -060011102/* Called by register_netdev() */
11103static int ipw_net_init(struct net_device *dev)
11104{
11105 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011106 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011107
James Ketrenosc848d0a2005-08-24 21:56:24 -050011108 if (ipw_up(priv)) {
11109 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011110 return -EIO;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011111 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011112
James Ketrenosc848d0a2005-08-24 21:56:24 -050011113 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011114 return 0;
11115}
11116
11117/* PCI driver stuff */
11118static struct pci_device_id card_ids[] = {
11119 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11120 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11121 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11122 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11123 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11124 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11125 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11126 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11127 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11128 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11129 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11130 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11131 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11132 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11133 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11134 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11135 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
11136 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011137 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050011138 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011139 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
11140 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011141
James Ketrenos43f66a62005-03-25 12:31:53 -060011142 /* required last entry */
11143 {0,}
11144};
11145
11146MODULE_DEVICE_TABLE(pci, card_ids);
11147
11148static struct attribute *ipw_sysfs_entries[] = {
11149 &dev_attr_rf_kill.attr,
11150 &dev_attr_direct_dword.attr,
11151 &dev_attr_indirect_byte.attr,
11152 &dev_attr_indirect_dword.attr,
11153 &dev_attr_mem_gpio_reg.attr,
11154 &dev_attr_command_event_reg.attr,
11155 &dev_attr_nic_type.attr,
11156 &dev_attr_status.attr,
11157 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011158 &dev_attr_error.attr,
11159 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011160 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011161 &dev_attr_eeprom_delay.attr,
11162 &dev_attr_ucode_version.attr,
11163 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011164 &dev_attr_scan_age.attr,
11165 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011166 &dev_attr_speed_scan.attr,
11167 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011168 NULL
11169};
11170
11171static struct attribute_group ipw_attribute_group = {
11172 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011173 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011174};
11175
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011176static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011177{
11178 int err = 0;
11179 struct net_device *net_dev;
11180 void __iomem *base;
11181 u32 length, val;
11182 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011183 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011184
11185 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
11186 if (net_dev == NULL) {
11187 err = -ENOMEM;
11188 goto out;
11189 }
11190
11191 priv = ieee80211_priv(net_dev);
11192 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011193
James Ketrenos43f66a62005-03-25 12:31:53 -060011194 priv->net_dev = net_dev;
11195 priv->pci_dev = pdev;
11196#ifdef CONFIG_IPW_DEBUG
11197 ipw_debug_level = debug;
11198#endif
11199 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011200 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11201 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011202
James Ketrenosc848d0a2005-08-24 21:56:24 -050011203 init_MUTEX(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011204 if (pci_enable_device(pdev)) {
11205 err = -ENODEV;
11206 goto out_free_ieee80211;
11207 }
11208
11209 pci_set_master(pdev);
11210
Tobias Klauser0e08b442005-06-20 14:28:41 -070011211 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040011212 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070011213 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060011214 if (err) {
11215 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11216 goto out_pci_disable_device;
11217 }
11218
11219 pci_set_drvdata(pdev, priv);
11220
11221 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011222 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011223 goto out_pci_disable_device;
11224
Jeff Garzikbf794512005-07-31 13:07:26 -040011225 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011226 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011227 pci_read_config_dword(pdev, 0x40, &val);
11228 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011229 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011230
James Ketrenos43f66a62005-03-25 12:31:53 -060011231 length = pci_resource_len(pdev, 0);
11232 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011233
James Ketrenos43f66a62005-03-25 12:31:53 -060011234 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
11235 if (!base) {
11236 err = -ENODEV;
11237 goto out_pci_release_regions;
11238 }
11239
11240 priv->hw_base = base;
11241 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11242 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11243
11244 err = ipw_setup_deferred_work(priv);
11245 if (err) {
11246 IPW_ERROR("Unable to setup deferred work\n");
11247 goto out_iounmap;
11248 }
11249
James Ketrenosb095c382005-08-24 22:04:42 -050011250 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011251
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011252 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011253 if (err) {
11254 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11255 goto out_destroy_workqueue;
11256 }
11257
11258 SET_MODULE_OWNER(net_dev);
11259 SET_NETDEV_DEV(net_dev, &pdev->dev);
11260
James Ketrenosa613bff2005-08-24 21:43:11 -050011261 ipw_wx_data.spy_data = &priv->ieee->spy_data;
11262 ipw_wx_data.ieee80211 = priv->ieee;
11263
James Ketrenosc848d0a2005-08-24 21:56:24 -050011264 down(&priv->sem);
11265
James Ketrenos43f66a62005-03-25 12:31:53 -060011266 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11267 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011268 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011269
James Ketrenosb095c382005-08-24 22:04:42 -050011270#ifdef CONFIG_IPW_QOS
James Ketrenos3b9990c2005-08-19 13:18:55 -050011271 priv->ieee->handle_probe_response = ipw_handle_beacon;
11272 priv->ieee->handle_beacon = ipw_handle_probe_response;
11273 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
James Ketrenosb095c382005-08-24 22:04:42 -050011274#endif /* CONFIG_IPW_QOS */
11275
James Ketrenosc848d0a2005-08-24 21:56:24 -050011276 priv->ieee->perfect_rssi = -20;
11277 priv->ieee->worst_rssi = -85;
11278
James Ketrenos43f66a62005-03-25 12:31:53 -060011279 net_dev->open = ipw_net_open;
11280 net_dev->stop = ipw_net_stop;
11281 net_dev->init = ipw_net_init;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011282#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011283 net_dev->do_ioctl = ipw_ioctl;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011284#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011285 net_dev->get_stats = ipw_net_get_stats;
11286 net_dev->set_multicast_list = ipw_net_set_multicast_list;
11287 net_dev->set_mac_address = ipw_net_set_mac_address;
11288 net_dev->get_wireless_stats = ipw_get_wireless_stats;
James Ketrenosa613bff2005-08-24 21:43:11 -050011289 net_dev->wireless_data = &ipw_wx_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011290 net_dev->wireless_handlers = &ipw_wx_handler_def;
11291 net_dev->ethtool_ops = &ipw_ethtool_ops;
11292 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011293 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011294 net_dev->mem_start = pci_resource_start(pdev, 0);
11295 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11296
11297 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11298 if (err) {
11299 IPW_ERROR("failed to create sysfs device attributes\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -050011300 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011301 goto out_release_irq;
11302 }
11303
James Ketrenosc848d0a2005-08-24 21:56:24 -050011304 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011305 err = register_netdev(net_dev);
11306 if (err) {
11307 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011308 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011309 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011310 return 0;
11311
James Ketrenosa613bff2005-08-24 21:43:11 -050011312 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011313 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011314 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011315 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011316 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011317 destroy_workqueue(priv->workqueue);
11318 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011319 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011320 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011321 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011322 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011323 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011324 pci_disable_device(pdev);
11325 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011326 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060011327 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011328 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011329 return err;
11330}
11331
11332static void ipw_pci_remove(struct pci_dev *pdev)
11333{
11334 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011335 struct list_head *p, *q;
11336 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011337
James Ketrenos43f66a62005-03-25 12:31:53 -060011338 if (!priv)
11339 return;
11340
James Ketrenosb095c382005-08-24 22:04:42 -050011341 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011342
11343 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011344 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -050011345 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011346
James Ketrenosb095c382005-08-24 22:04:42 -050011347 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011348
11349 unregister_netdev(priv->net_dev);
11350
11351 if (priv->rxq) {
11352 ipw_rx_queue_free(priv, priv->rxq);
11353 priv->rxq = NULL;
11354 }
11355 ipw_tx_queue_free(priv);
11356
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011357 if (priv->cmdlog) {
11358 kfree(priv->cmdlog);
11359 priv->cmdlog = NULL;
11360 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011361 /* ipw_down will ensure that there is no more pending work
11362 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011363 cancel_delayed_work(&priv->adhoc_check);
11364 cancel_delayed_work(&priv->gather_stats);
11365 cancel_delayed_work(&priv->request_scan);
11366 cancel_delayed_work(&priv->rf_kill);
11367 cancel_delayed_work(&priv->scan_check);
11368 destroy_workqueue(priv->workqueue);
11369 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011370
James Ketrenosafbf30a2005-08-25 00:05:33 -050011371 /* Free MAC hash list for ADHOC */
11372 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11373 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
11374 kfree(list_entry(p, struct ipw_ibss_seq, list));
11375 list_del(p);
11376 }
11377 }
11378
James Ketrenosb39860c2005-08-12 09:36:32 -050011379 if (priv->error) {
11380 ipw_free_error_log(priv->error);
11381 priv->error = NULL;
11382 }
11383
James Ketrenos43f66a62005-03-25 12:31:53 -060011384 free_irq(pdev->irq, priv);
11385 iounmap(priv->hw_base);
11386 pci_release_regions(pdev);
11387 pci_disable_device(pdev);
11388 pci_set_drvdata(pdev, NULL);
11389 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011390 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011391}
11392
James Ketrenos43f66a62005-03-25 12:31:53 -060011393#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011394static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011395{
11396 struct ipw_priv *priv = pci_get_drvdata(pdev);
11397 struct net_device *dev = priv->net_dev;
11398
11399 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11400
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011401 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011402 ipw_down(priv);
11403
11404 /* Remove the PRESENT state of the device */
11405 netif_device_detach(dev);
11406
James Ketrenos43f66a62005-03-25 12:31:53 -060011407 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011408 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011409 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011410
James Ketrenos43f66a62005-03-25 12:31:53 -060011411 return 0;
11412}
11413
11414static int ipw_pci_resume(struct pci_dev *pdev)
11415{
11416 struct ipw_priv *priv = pci_get_drvdata(pdev);
11417 struct net_device *dev = priv->net_dev;
11418 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011419
James Ketrenos43f66a62005-03-25 12:31:53 -060011420 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11421
James Ketrenosea2b26e2005-08-24 21:25:16 -050011422 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011423 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011424 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011425
James Ketrenos43f66a62005-03-25 12:31:53 -060011426 /*
11427 * Suspend/Resume resets the PCI configuration space, so we have to
11428 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11429 * from interfering with C3 CPU state. pci_restore_state won't help
11430 * here since it only restores the first 64 bytes pci config header.
11431 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011432 pci_read_config_dword(pdev, 0x40, &val);
11433 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011434 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11435
11436 /* Set the device back into the PRESENT state; this will also wake
11437 * the queue of needed */
11438 netif_device_attach(dev);
11439
11440 /* Bring the device back up */
11441 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011442
James Ketrenos43f66a62005-03-25 12:31:53 -060011443 return 0;
11444}
11445#endif
11446
11447/* driver initialization stuff */
11448static struct pci_driver ipw_driver = {
11449 .name = DRV_NAME,
11450 .id_table = card_ids,
11451 .probe = ipw_pci_probe,
11452 .remove = __devexit_p(ipw_pci_remove),
11453#ifdef CONFIG_PM
11454 .suspend = ipw_pci_suspend,
11455 .resume = ipw_pci_resume,
11456#endif
11457};
11458
11459static int __init ipw_init(void)
11460{
11461 int ret;
11462
11463 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11464 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11465
11466 ret = pci_module_init(&ipw_driver);
11467 if (ret) {
11468 IPW_ERROR("Unable to initialize PCI module\n");
11469 return ret;
11470 }
11471
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011472 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011473 if (ret) {
11474 IPW_ERROR("Unable to create driver sysfs file\n");
11475 pci_unregister_driver(&ipw_driver);
11476 return ret;
11477 }
11478
11479 return ret;
11480}
11481
11482static void __exit ipw_exit(void)
11483{
11484 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11485 pci_unregister_driver(&ipw_driver);
11486}
11487
11488module_param(disable, int, 0444);
11489MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11490
11491module_param(associate, int, 0444);
11492MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
11493
11494module_param(auto_create, int, 0444);
11495MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11496
James Ketrenosa613bff2005-08-24 21:43:11 -050011497module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011498MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011499
James Ketrenos43f66a62005-03-25 12:31:53 -060011500module_param(debug, int, 0444);
11501MODULE_PARM_DESC(debug, "debug output mask");
11502
11503module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011504MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011505
James Ketrenosb095c382005-08-24 22:04:42 -050011506#ifdef CONFIG_IPW_QOS
11507module_param(qos_enable, int, 0444);
11508MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
11509
11510module_param(qos_burst_enable, int, 0444);
11511MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11512
11513module_param(qos_no_ack_mask, int, 0444);
11514MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11515
11516module_param(burst_duration_CCK, int, 0444);
11517MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11518
11519module_param(burst_duration_OFDM, int, 0444);
11520MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
11521#endif /* CONFIG_IPW_QOS */
11522
11523#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060011524module_param(mode, int, 0444);
11525MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
11526#else
11527module_param(mode, int, 0444);
11528MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
11529#endif
11530
James Ketrenosb095c382005-08-24 22:04:42 -050011531module_param(hwcrypto, int, 0444);
11532MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)");
11533
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011534module_param(cmdlog, int, 0444);
11535MODULE_PARM_DESC(cmdlog,
11536 "allocate a ring buffer for logging firmware commands");
11537
James Ketrenos43f66a62005-03-25 12:31:53 -060011538module_exit(ipw_exit);
11539module_init(ipw_init);