blob: 43dab7a5cc91189a41776436c754a0410d1cb5b9 [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#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
1813static char *get_cmd_string(u8 cmd)
1814{
1815 switch (cmd) {
1816 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04001817 IPW_CMD(POWER_DOWN);
1818 IPW_CMD(SYSTEM_CONFIG);
1819 IPW_CMD(MULTICAST_ADDRESS);
1820 IPW_CMD(SSID);
1821 IPW_CMD(ADAPTER_ADDRESS);
1822 IPW_CMD(PORT_TYPE);
1823 IPW_CMD(RTS_THRESHOLD);
1824 IPW_CMD(FRAG_THRESHOLD);
1825 IPW_CMD(POWER_MODE);
1826 IPW_CMD(WEP_KEY);
1827 IPW_CMD(TGI_TX_KEY);
1828 IPW_CMD(SCAN_REQUEST);
1829 IPW_CMD(SCAN_REQUEST_EXT);
1830 IPW_CMD(ASSOCIATE);
1831 IPW_CMD(SUPPORTED_RATES);
1832 IPW_CMD(SCAN_ABORT);
1833 IPW_CMD(TX_FLUSH);
1834 IPW_CMD(QOS_PARAMETERS);
1835 IPW_CMD(DINO_CONFIG);
1836 IPW_CMD(RSN_CAPABILITIES);
1837 IPW_CMD(RX_KEY);
1838 IPW_CMD(CARD_DISABLE);
1839 IPW_CMD(SEED_NUMBER);
1840 IPW_CMD(TX_POWER);
1841 IPW_CMD(COUNTRY_INFO);
1842 IPW_CMD(AIRONET_INFO);
1843 IPW_CMD(AP_TX_POWER);
1844 IPW_CMD(CCKM_INFO);
1845 IPW_CMD(CCX_VER_INFO);
1846 IPW_CMD(SET_CALIBRATION);
1847 IPW_CMD(SENSITIVITY_CALIB);
1848 IPW_CMD(RETRY_LIMIT);
1849 IPW_CMD(IPW_PRE_POWER_DOWN);
1850 IPW_CMD(VAP_BEACON_TEMPLATE);
1851 IPW_CMD(VAP_DTIM_PERIOD);
1852 IPW_CMD(EXT_SUPPORTED_RATES);
1853 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
1854 IPW_CMD(VAP_QUIET_INTERVALS);
1855 IPW_CMD(VAP_CHANNEL_SWITCH);
1856 IPW_CMD(VAP_MANDATORY_CHANNELS);
1857 IPW_CMD(VAP_CELL_PWR_LIMIT);
1858 IPW_CMD(VAP_CF_PARAM_SET);
1859 IPW_CMD(VAP_SET_BEACONING_STATE);
1860 IPW_CMD(MEASUREMENT);
1861 IPW_CMD(POWER_CAPABILITY);
1862 IPW_CMD(SUPPORTED_CHANNELS);
1863 IPW_CMD(TPC_REPORT);
1864 IPW_CMD(WME_INFO);
1865 IPW_CMD(PRODUCTION_COMMAND);
1866 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06001867 return "UNKNOWN";
1868 }
1869}
James Ketrenos43f66a62005-03-25 12:31:53 -06001870
1871#define HOST_COMPLETE_TIMEOUT HZ
1872static int ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
1873{
1874 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001875 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06001876
James Ketrenosa613bff2005-08-24 21:43:11 -05001877 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001878 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001879 IPW_ERROR("Failed to send %s: Already sending a command.\n",
1880 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001881 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001882 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06001883 }
1884
Hong Liu7b996592005-08-25 17:36:13 +08001885 if (priv->status & STATUS_ASSOCIATING) {
1886 IPW_DEBUG_HC("abandon a command while associating\n");
1887 spin_unlock_irqrestore(&priv->lock, flags);
1888 return -1;
1889 }
1890
1891 if (priv->status & STATUS_DISASSOCIATING) {
1892 IPW_DEBUG_HC("abandon a command while disassociating\n");
1893 spin_unlock_irqrestore(&priv->lock, flags);
1894 return -1;
1895 }
1896
James Ketrenos43f66a62005-03-25 12:31:53 -06001897 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001898
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001899 if (priv->cmdlog) {
1900 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
1901 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
1902 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
1903 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
1904 cmd->len);
1905 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
1906 }
1907
James Ketrenosb095c382005-08-24 22:04:42 -05001908 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1909 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1910 priv->status);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001911 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001912
1913 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, &cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001914 if (rc) {
1915 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001916 IPW_ERROR("Failed to send %s: Reason %d\n",
1917 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05001918 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001919 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001920 }
1921 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001922
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001923 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1924 !(priv->
1925 status & STATUS_HCMD_ACTIVE),
1926 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001927 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001928 spin_lock_irqsave(&priv->lock, flags);
1929 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001930 IPW_ERROR("Failed to send %s: Command timed out.\n",
1931 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05001932 priv->status &= ~STATUS_HCMD_ACTIVE;
1933 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001934 rc = -EIO;
1935 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05001936 }
1937 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05001938 } else
1939 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001940
James Ketrenosb095c382005-08-24 22:04:42 -05001941 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001942 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
1943 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001944 rc = -EIO;
1945 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06001946 }
1947
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001948 exit:
1949 if (priv->cmdlog) {
1950 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
1951 priv->cmdlog_pos %= priv->cmdlog_len;
1952 }
1953 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06001954}
1955
1956static int ipw_send_host_complete(struct ipw_priv *priv)
1957{
1958 struct host_cmd cmd = {
1959 .cmd = IPW_CMD_HOST_COMPLETE,
1960 .len = 0
1961 };
1962
1963 if (!priv) {
1964 IPW_ERROR("Invalid args\n");
1965 return -1;
1966 }
1967
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001968 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001969}
1970
Jeff Garzikbf794512005-07-31 13:07:26 -04001971static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06001972 struct ipw_sys_config *config)
1973{
1974 struct host_cmd cmd = {
1975 .cmd = IPW_CMD_SYSTEM_CONFIG,
1976 .len = sizeof(*config)
1977 };
1978
1979 if (!priv || !config) {
1980 IPW_ERROR("Invalid args\n");
1981 return -1;
1982 }
1983
James Ketrenosafbf30a2005-08-25 00:05:33 -05001984 memcpy(cmd.param, config, sizeof(*config));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05001985 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06001986}
1987
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001988static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06001989{
1990 struct host_cmd cmd = {
1991 .cmd = IPW_CMD_SSID,
1992 .len = min(len, IW_ESSID_MAX_SIZE)
1993 };
1994
1995 if (!priv || !ssid) {
1996 IPW_ERROR("Invalid args\n");
1997 return -1;
1998 }
1999
James Ketrenosafbf30a2005-08-25 00:05:33 -05002000 memcpy(cmd.param, ssid, cmd.len);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002001 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002002}
2003
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002004static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002005{
2006 struct host_cmd cmd = {
2007 .cmd = IPW_CMD_ADAPTER_ADDRESS,
2008 .len = ETH_ALEN
2009 };
2010
2011 if (!priv || !mac) {
2012 IPW_ERROR("Invalid args\n");
2013 return -1;
2014 }
2015
2016 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
2017 priv->net_dev->name, MAC_ARG(mac));
2018
James Ketrenosafbf30a2005-08-25 00:05:33 -05002019 memcpy(cmd.param, mac, ETH_ALEN);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002020 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002021}
2022
James Ketrenosa613bff2005-08-24 21:43:11 -05002023/*
2024 * NOTE: This must be executed from our workqueue as it results in udelay
2025 * being called which may corrupt the keyboard if executed on default
2026 * workqueue
2027 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002028static void ipw_adapter_restart(void *adapter)
2029{
2030 struct ipw_priv *priv = adapter;
2031
2032 if (priv->status & STATUS_RF_KILL_MASK)
2033 return;
2034
2035 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002036
2037 if (priv->assoc_network &&
2038 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2039 ipw_remove_current_network(priv);
2040
James Ketrenos43f66a62005-03-25 12:31:53 -06002041 if (ipw_up(priv)) {
2042 IPW_ERROR("Failed to up device\n");
2043 return;
2044 }
2045}
2046
James Ketrenosc848d0a2005-08-24 21:56:24 -05002047static void ipw_bg_adapter_restart(void *data)
2048{
2049 struct ipw_priv *priv = data;
2050 down(&priv->sem);
2051 ipw_adapter_restart(data);
2052 up(&priv->sem);
2053}
2054
James Ketrenos43f66a62005-03-25 12:31:53 -06002055#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2056
2057static void ipw_scan_check(void *data)
2058{
2059 struct ipw_priv *priv = data;
2060 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2061 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Jeff Garzikbf794512005-07-31 13:07:26 -04002062 "adapter (%dms).\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002063 IPW_SCAN_CHECK_WATCHDOG / 100);
James Ketrenosa613bff2005-08-24 21:43:11 -05002064 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002065 }
2066}
2067
James Ketrenosc848d0a2005-08-24 21:56:24 -05002068static void ipw_bg_scan_check(void *data)
2069{
2070 struct ipw_priv *priv = data;
2071 down(&priv->sem);
2072 ipw_scan_check(data);
2073 up(&priv->sem);
2074}
2075
James Ketrenos43f66a62005-03-25 12:31:53 -06002076static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2077 struct ipw_scan_request_ext *request)
2078{
2079 struct host_cmd cmd = {
2080 .cmd = IPW_CMD_SCAN_REQUEST_EXT,
2081 .len = sizeof(*request)
2082 };
2083
James Ketrenosafbf30a2005-08-25 00:05:33 -05002084 memcpy(cmd.param, request, sizeof(*request));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002085 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002086}
2087
2088static int ipw_send_scan_abort(struct ipw_priv *priv)
2089{
2090 struct host_cmd cmd = {
2091 .cmd = IPW_CMD_SCAN_ABORT,
2092 .len = 0
2093 };
2094
2095 if (!priv) {
2096 IPW_ERROR("Invalid args\n");
2097 return -1;
2098 }
2099
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002100 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002101}
2102
2103static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2104{
2105 struct host_cmd cmd = {
2106 .cmd = IPW_CMD_SENSITIVITY_CALIB,
2107 .len = sizeof(struct ipw_sensitivity_calib)
2108 };
2109 struct ipw_sensitivity_calib *calib = (struct ipw_sensitivity_calib *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002110 &cmd.param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002111 calib->beacon_rssi_raw = sens;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002112 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002113}
2114
2115static int ipw_send_associate(struct ipw_priv *priv,
2116 struct ipw_associate *associate)
2117{
2118 struct host_cmd cmd = {
2119 .cmd = IPW_CMD_ASSOCIATE,
2120 .len = sizeof(*associate)
2121 };
2122
James Ketrenosa613bff2005-08-24 21:43:11 -05002123 struct ipw_associate tmp_associate;
2124 memcpy(&tmp_associate, associate, sizeof(*associate));
2125 tmp_associate.policy_support =
2126 cpu_to_le16(tmp_associate.policy_support);
2127 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
2128 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
2129 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
2130 tmp_associate.listen_interval =
2131 cpu_to_le16(tmp_associate.listen_interval);
2132 tmp_associate.beacon_interval =
2133 cpu_to_le16(tmp_associate.beacon_interval);
2134 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
2135
James Ketrenos43f66a62005-03-25 12:31:53 -06002136 if (!priv || !associate) {
2137 IPW_ERROR("Invalid args\n");
2138 return -1;
2139 }
2140
James Ketrenosafbf30a2005-08-25 00:05:33 -05002141 memcpy(cmd.param, &tmp_associate, sizeof(*associate));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002142 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002143}
2144
2145static int ipw_send_supported_rates(struct ipw_priv *priv,
2146 struct ipw_supported_rates *rates)
2147{
2148 struct host_cmd cmd = {
2149 .cmd = IPW_CMD_SUPPORTED_RATES,
2150 .len = sizeof(*rates)
2151 };
2152
2153 if (!priv || !rates) {
2154 IPW_ERROR("Invalid args\n");
2155 return -1;
2156 }
2157
James Ketrenosafbf30a2005-08-25 00:05:33 -05002158 memcpy(cmd.param, rates, sizeof(*rates));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002159 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002160}
2161
2162static int ipw_set_random_seed(struct ipw_priv *priv)
2163{
2164 struct host_cmd cmd = {
2165 .cmd = IPW_CMD_SEED_NUMBER,
2166 .len = sizeof(u32)
2167 };
2168
2169 if (!priv) {
2170 IPW_ERROR("Invalid args\n");
2171 return -1;
2172 }
2173
2174 get_random_bytes(&cmd.param, sizeof(u32));
2175
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002176 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002177}
2178
James Ketrenos43f66a62005-03-25 12:31:53 -06002179static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2180{
2181 struct host_cmd cmd = {
2182 .cmd = IPW_CMD_CARD_DISABLE,
2183 .len = sizeof(u32)
2184 };
2185
2186 if (!priv) {
2187 IPW_ERROR("Invalid args\n");
2188 return -1;
2189 }
2190
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002191 *((u32 *) & cmd.param) = phy_off;
James Ketrenos43f66a62005-03-25 12:31:53 -06002192
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002193 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002194}
James Ketrenos43f66a62005-03-25 12:31:53 -06002195
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002196static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002197{
2198 struct host_cmd cmd = {
2199 .cmd = IPW_CMD_TX_POWER,
2200 .len = sizeof(*power)
2201 };
2202
2203 if (!priv || !power) {
2204 IPW_ERROR("Invalid args\n");
2205 return -1;
2206 }
2207
James Ketrenosafbf30a2005-08-25 00:05:33 -05002208 memcpy(cmd.param, power, sizeof(*power));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002209 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002210}
2211
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002212static int ipw_set_tx_power(struct ipw_priv *priv)
2213{
Liu Hong1fe0adb2005-08-19 09:33:10 -05002214 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002215 struct ipw_tx_power tx_power;
2216 s8 max_power;
2217 int i;
2218
2219 memset(&tx_power, 0, sizeof(tx_power));
2220
2221 /* configure device for 'G' band */
2222 tx_power.ieee_mode = IPW_G_MODE;
2223 tx_power.num_channels = geo->bg_channels;
2224 for (i = 0; i < geo->bg_channels; i++) {
2225 max_power = geo->bg[i].max_power;
2226 tx_power.channels_tx_power[i].channel_number =
2227 geo->bg[i].channel;
2228 tx_power.channels_tx_power[i].tx_power = max_power ?
2229 min(max_power, priv->tx_power) : priv->tx_power;
2230 }
2231 if (ipw_send_tx_power(priv, &tx_power))
2232 return -EIO;
2233
2234 /* configure device to also handle 'B' band */
2235 tx_power.ieee_mode = IPW_B_MODE;
2236 if (ipw_send_tx_power(priv, &tx_power))
2237 return -EIO;
2238
2239 /* configure device to also handle 'A' band */
2240 if (priv->ieee->abg_true) {
2241 tx_power.ieee_mode = IPW_A_MODE;
2242 tx_power.num_channels = geo->a_channels;
2243 for (i = 0; i < tx_power.num_channels; i++) {
2244 max_power = geo->a[i].max_power;
2245 tx_power.channels_tx_power[i].channel_number =
2246 geo->a[i].channel;
2247 tx_power.channels_tx_power[i].tx_power = max_power ?
2248 min(max_power, priv->tx_power) : priv->tx_power;
2249 }
2250 if (ipw_send_tx_power(priv, &tx_power))
2251 return -EIO;
2252 }
2253 return 0;
2254}
2255
James Ketrenos43f66a62005-03-25 12:31:53 -06002256static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2257{
2258 struct ipw_rts_threshold rts_threshold = {
2259 .rts_threshold = rts,
2260 };
2261 struct host_cmd cmd = {
2262 .cmd = IPW_CMD_RTS_THRESHOLD,
2263 .len = sizeof(rts_threshold)
2264 };
2265
2266 if (!priv) {
2267 IPW_ERROR("Invalid args\n");
2268 return -1;
2269 }
2270
James Ketrenosafbf30a2005-08-25 00:05:33 -05002271 memcpy(cmd.param, &rts_threshold, sizeof(rts_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002272 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002273}
2274
2275static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2276{
2277 struct ipw_frag_threshold frag_threshold = {
2278 .frag_threshold = frag,
2279 };
2280 struct host_cmd cmd = {
2281 .cmd = IPW_CMD_FRAG_THRESHOLD,
2282 .len = sizeof(frag_threshold)
2283 };
2284
2285 if (!priv) {
2286 IPW_ERROR("Invalid args\n");
2287 return -1;
2288 }
2289
James Ketrenosafbf30a2005-08-25 00:05:33 -05002290 memcpy(cmd.param, &frag_threshold, sizeof(frag_threshold));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002291 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002292}
2293
2294static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2295{
2296 struct host_cmd cmd = {
2297 .cmd = IPW_CMD_POWER_MODE,
2298 .len = sizeof(u32)
2299 };
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002300 u32 *param = (u32 *) (&cmd.param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002301
2302 if (!priv) {
2303 IPW_ERROR("Invalid args\n");
2304 return -1;
2305 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002306
James Ketrenos43f66a62005-03-25 12:31:53 -06002307 /* If on battery, set to 3, if AC set to CAM, else user
2308 * level */
2309 switch (mode) {
2310 case IPW_POWER_BATTERY:
2311 *param = IPW_POWER_INDEX_3;
2312 break;
2313 case IPW_POWER_AC:
2314 *param = IPW_POWER_MODE_CAM;
2315 break;
2316 default:
2317 *param = mode;
2318 break;
2319 }
2320
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002321 return ipw_send_cmd(priv, &cmd);
James Ketrenos43f66a62005-03-25 12:31:53 -06002322}
2323
James Ketrenosafbf30a2005-08-25 00:05:33 -05002324static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2325{
2326 struct ipw_retry_limit retry_limit = {
2327 .short_retry_limit = slimit,
2328 .long_retry_limit = llimit
2329 };
2330 struct host_cmd cmd = {
2331 .cmd = IPW_CMD_RETRY_LIMIT,
2332 .len = sizeof(retry_limit)
2333 };
2334
2335 if (!priv) {
2336 IPW_ERROR("Invalid args\n");
2337 return -1;
2338 }
2339
2340 memcpy(cmd.param, &retry_limit, sizeof(retry_limit));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002341 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05002342}
2343
James Ketrenos43f66a62005-03-25 12:31:53 -06002344/*
2345 * The IPW device contains a Microwire compatible EEPROM that stores
2346 * various data like the MAC address. Usually the firmware has exclusive
2347 * access to the eeprom, but during device initialization (before the
2348 * device driver has sent the HostComplete command to the firmware) the
2349 * device driver has read access to the EEPROM by way of indirect addressing
2350 * through a couple of memory mapped registers.
2351 *
2352 * The following is a simplified implementation for pulling data out of the
2353 * the eeprom, along with some helper functions to find information in
2354 * the per device private data's copy of the eeprom.
2355 *
2356 * NOTE: To better understand how these functions work (i.e what is a chip
2357 * select and why do have to keep driving the eeprom clock?), read
2358 * just about any data sheet for a Microwire compatible EEPROM.
2359 */
2360
2361/* write a 32 bit value into the indirect accessor register */
2362static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2363{
2364 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002365
James Ketrenos43f66a62005-03-25 12:31:53 -06002366 /* the eeprom requires some time to complete the operation */
2367 udelay(p->eeprom_delay);
2368
2369 return;
2370}
2371
2372/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002373static inline void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002374{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002375 eeprom_write_reg(priv, 0);
2376 eeprom_write_reg(priv, EEPROM_BIT_CS);
2377 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2378 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002379}
2380
2381/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002382static inline void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002383{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002384 eeprom_write_reg(priv, EEPROM_BIT_CS);
2385 eeprom_write_reg(priv, 0);
2386 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002387}
2388
2389/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002390static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002391{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002392 int d = (bit ? EEPROM_BIT_DI : 0);
2393 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2394 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002395}
2396
2397/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002398static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002399{
2400 int i;
2401
2402 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002403 eeprom_write_bit(priv, 1);
2404 eeprom_write_bit(priv, op & 2);
2405 eeprom_write_bit(priv, op & 1);
2406 for (i = 7; i >= 0; i--) {
2407 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002408 }
2409}
2410
2411/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002412static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002413{
2414 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002415 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002416
James Ketrenos43f66a62005-03-25 12:31:53 -06002417 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002418 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002419
2420 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002421 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002422
2423 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002424 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002425 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002426 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2427 eeprom_write_reg(priv, EEPROM_BIT_CS);
2428 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2429 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002430 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002431
James Ketrenos43f66a62005-03-25 12:31:53 -06002432 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002433 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002434 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002435
James Ketrenos43f66a62005-03-25 12:31:53 -06002436 return r;
2437}
2438
2439/* helper function for pulling the mac address out of the private */
2440/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002441static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002442{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002443 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002444}
2445
2446/*
2447 * Either the device driver (i.e. the host) or the firmware can
2448 * load eeprom data into the designated region in SRAM. If neither
2449 * happens then the FW will shutdown with a fatal error.
2450 *
2451 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2452 * bit needs region of shared SRAM needs to be non-zero.
2453 */
2454static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2455{
2456 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002457 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002458
James Ketrenos43f66a62005-03-25 12:31:53 -06002459 IPW_DEBUG_TRACE(">>\n");
2460
2461 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002462 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002463 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002464
Jeff Garzikbf794512005-07-31 13:07:26 -04002465 /*
2466 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002467 copy. Otherwise let the firmware know to perform the operation
2468 on it's own
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002469 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002470 if ((priv->eeprom + EEPROM_VERSION) != 0) {
2471 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2472
2473 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002474 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002475 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002476
2477 /* Do not load eeprom data on fatal error or suspend */
2478 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2479 } else {
2480 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2481
2482 /* Load eeprom data on fatal error or suspend */
2483 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2484 }
2485
2486 IPW_DEBUG_TRACE("<<\n");
2487}
2488
James Ketrenos43f66a62005-03-25 12:31:53 -06002489static inline void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
2490{
2491 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002492 if (!count)
2493 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002494 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002495 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002496 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002497}
2498
2499static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2500{
James Ketrenosb095c382005-08-24 22:04:42 -05002501 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002502 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002503 sizeof(struct command_block));
2504}
2505
2506static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002507{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002508
2509 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002510
James Ketrenos43f66a62005-03-25 12:31:53 -06002511 /* Start the dma */
2512 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002513
James Ketrenos43f66a62005-03-25 12:31:53 -06002514 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002515 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002516
2517 IPW_DEBUG_FW("<< : \n");
2518 return 0;
2519}
2520
2521static void ipw_fw_dma_abort(struct ipw_priv *priv)
2522{
2523 u32 control = 0;
2524
2525 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002526
2527 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002528 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002529 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002530 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002531
James Ketrenos43f66a62005-03-25 12:31:53 -06002532 IPW_DEBUG_FW("<< \n");
2533}
2534
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002535static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2536 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002537{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002538 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002539 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002540 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002541 IPW_DEBUG_FW(">> :\n");
2542
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002543 ipw_write_indirect(priv, address, (u8 *) cb,
2544 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002545
2546 IPW_DEBUG_FW("<< :\n");
2547 return 0;
2548
2549}
2550
2551static int ipw_fw_dma_kick(struct ipw_priv *priv)
2552{
2553 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002554 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002555
2556 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002557
James Ketrenos43f66a62005-03-25 12:31:53 -06002558 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002559 ipw_fw_dma_write_command_block(priv, index,
2560 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002561
2562 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002563 ipw_clear_bit(priv, IPW_RESET_REG,
2564 IPW_RESET_REG_MASTER_DISABLED |
2565 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002566
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002567 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002568 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002569 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002570
2571 IPW_DEBUG_FW("<< :\n");
2572 return 0;
2573}
2574
2575static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2576{
2577 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002578 u32 register_value = 0;
2579 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002580
2581 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002582 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002583 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002584
2585 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002586 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2587 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002588
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002589 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002590 cb_fields_address = address;
2591 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002592 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002593
2594 cb_fields_address += sizeof(u32);
2595 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002596 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002597
2598 cb_fields_address += sizeof(u32);
2599 register_value = ipw_read_reg32(priv, cb_fields_address);
2600 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2601 register_value);
2602
2603 cb_fields_address += sizeof(u32);
2604 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002605 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002606
2607 IPW_DEBUG_FW(">> :\n");
2608}
2609
2610static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2611{
2612 u32 current_cb_address = 0;
2613 u32 current_cb_index = 0;
2614
2615 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002616 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002617
James Ketrenosb095c382005-08-24 22:04:42 -05002618 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002619 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002620
James Ketrenos43f66a62005-03-25 12:31:53 -06002621 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002622 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002623
2624 IPW_DEBUG_FW(">> :\n");
2625 return current_cb_index;
2626
2627}
2628
2629static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2630 u32 src_address,
2631 u32 dest_address,
2632 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002633 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002634{
2635
Jeff Garzikbf794512005-07-31 13:07:26 -04002636 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002637 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2638 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002639 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002640 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002641
2642 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2643 src_address, dest_address, length);
2644
2645 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2646 return -1;
2647
2648 last_cb_element = priv->sram_desc.last_cb_index;
2649 cb = &priv->sram_desc.cb_list[last_cb_element];
2650 priv->sram_desc.last_cb_index++;
2651
2652 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002653 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002654 control |= CB_INT_ENABLED;
2655
2656 if (is_last)
2657 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002658
James Ketrenos43f66a62005-03-25 12:31:53 -06002659 control |= length;
2660
2661 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002662 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002663
2664 /* Copy the Source and Destination addresses */
2665 cb->dest_addr = dest_address;
2666 cb->source_addr = src_address;
2667
2668 /* Copy the Control Word last */
2669 cb->control = control;
2670
2671 return 0;
2672}
2673
2674static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002675 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002676{
2677 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002678 u32 src_offset = 0;
2679 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002680 int status = 0;
2681 IPW_DEBUG_FW(">> \n");
2682 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2683 src_phys, dest_address, length);
2684 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002685 status = ipw_fw_dma_add_command_block(priv,
2686 src_phys + src_offset,
2687 dest_address +
2688 dest_offset,
2689 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002690 if (status) {
2691 IPW_DEBUG_FW_INFO(": Failed\n");
2692 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002693 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002694 IPW_DEBUG_FW_INFO(": Added new cb\n");
2695
2696 src_offset += CB_MAX_LENGTH;
2697 dest_offset += CB_MAX_LENGTH;
2698 bytes_left -= CB_MAX_LENGTH;
2699 }
2700
2701 /* add the buffer tail */
2702 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002703 status =
2704 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2705 dest_address + dest_offset,
2706 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002707 if (status) {
2708 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2709 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002710 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002711 IPW_DEBUG_FW_INFO
2712 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002713 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002714
James Ketrenos43f66a62005-03-25 12:31:53 -06002715 IPW_DEBUG_FW("<< \n");
2716 return 0;
2717}
2718
2719static int ipw_fw_dma_wait(struct ipw_priv *priv)
2720{
2721 u32 current_index = 0;
2722 u32 watchdog = 0;
2723
2724 IPW_DEBUG_FW(">> : \n");
2725
2726 current_index = ipw_fw_dma_command_block_index(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002727 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%8X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002728 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002729
2730 while (current_index < priv->sram_desc.last_cb_index) {
2731 udelay(50);
2732 current_index = ipw_fw_dma_command_block_index(priv);
2733
2734 watchdog++;
2735
2736 if (watchdog > 400) {
2737 IPW_DEBUG_FW_INFO("Timeout\n");
2738 ipw_fw_dma_dump_command_block(priv);
2739 ipw_fw_dma_abort(priv);
2740 return -1;
2741 }
2742 }
2743
2744 ipw_fw_dma_abort(priv);
2745
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002746 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002747 ipw_set_bit(priv, IPW_RESET_REG,
2748 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002749
2750 IPW_DEBUG_FW("<< dmaWaitSync \n");
2751 return 0;
2752}
2753
Jeff Garzikbf794512005-07-31 13:07:26 -04002754static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002755{
2756 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002757 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002758 unsigned long flags;
2759
2760 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002761 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2762 network = list_entry(element, struct ieee80211_network, list);
2763 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2764 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002765 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002766 &priv->ieee->network_free_list);
2767 }
2768 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002769 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002770}
2771
2772/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002773 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002774 * Reads debug register from domain0.
2775 * If card is present, pre-defined value should
2776 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002777 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002778 * @param priv
2779 * @return 1 if card is present, 0 otherwise
2780 */
2781static inline int ipw_alive(struct ipw_priv *priv)
2782{
2783 return ipw_read32(priv, 0x90) == 0xd55555d5;
2784}
2785
2786static inline int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
2787 int timeout)
2788{
2789 int i = 0;
2790
2791 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002792 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002793 return i;
2794 mdelay(10);
2795 i += 10;
2796 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002797
James Ketrenos43f66a62005-03-25 12:31:53 -06002798 return -ETIME;
2799}
2800
Jeff Garzikbf794512005-07-31 13:07:26 -04002801/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002802 * the ipw hardware. It assumes the buffer has all the bits for the
2803 * image and the caller is handling the memory allocation and clean up.
2804 */
2805
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002806static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002807{
2808 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002809
James Ketrenos43f66a62005-03-25 12:31:53 -06002810 IPW_DEBUG_TRACE(">> \n");
2811 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002812 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002813
James Ketrenosb095c382005-08-24 22:04:42 -05002814 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2815 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002816 if (rc < 0) {
2817 IPW_ERROR("stop master failed in 10ms\n");
2818 return -1;
2819 }
2820
2821 IPW_DEBUG_INFO("stop master %dms\n", rc);
2822
2823 return rc;
2824}
2825
2826static void ipw_arc_release(struct ipw_priv *priv)
2827{
2828 IPW_DEBUG_TRACE(">> \n");
2829 mdelay(5);
2830
James Ketrenosb095c382005-08-24 22:04:42 -05002831 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002832
2833 /* no one knows timing, for safety add some delay */
2834 mdelay(5);
2835}
2836
2837struct fw_header {
2838 u32 version;
2839 u32 mode;
2840};
2841
2842struct fw_chunk {
2843 u32 address;
2844 u32 length;
2845};
2846
2847#define IPW_FW_MAJOR_VERSION 2
James Ketrenosb095c382005-08-24 22:04:42 -05002848#define IPW_FW_MINOR_VERSION 3
James Ketrenos43f66a62005-03-25 12:31:53 -06002849
2850#define IPW_FW_MINOR(x) ((x & 0xff) >> 8)
2851#define IPW_FW_MAJOR(x) (x & 0xff)
2852
James Ketrenosafbf30a2005-08-25 00:05:33 -05002853#define IPW_FW_VERSION ((IPW_FW_MINOR_VERSION << 8) | IPW_FW_MAJOR_VERSION)
James Ketrenos43f66a62005-03-25 12:31:53 -06002854
2855#define IPW_FW_PREFIX "ipw-" __stringify(IPW_FW_MAJOR_VERSION) \
2856"." __stringify(IPW_FW_MINOR_VERSION) "-"
2857
2858#if IPW_FW_MAJOR_VERSION >= 2 && IPW_FW_MINOR_VERSION > 0
2859#define IPW_FW_NAME(x) IPW_FW_PREFIX "" x ".fw"
2860#else
2861#define IPW_FW_NAME(x) "ipw2200_" x ".fw"
2862#endif
2863
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002864static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002865{
2866 int rc = 0, i, addr;
2867 u8 cr = 0;
2868 u16 *image;
2869
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002870 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002871
James Ketrenos43f66a62005-03-25 12:31:53 -06002872 IPW_DEBUG_TRACE(">> \n");
2873
2874 rc = ipw_stop_master(priv);
2875
2876 if (rc < 0)
2877 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002878
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002879// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002880
James Ketrenosb095c382005-08-24 22:04:42 -05002881 for (addr = IPW_SHARED_LOWER_BOUND;
2882 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002883 ipw_write32(priv, addr, 0);
2884 }
2885
2886 /* no ucode (yet) */
2887 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2888 /* destroy DMA queues */
2889 /* reset sequence */
2890
James Ketrenosb095c382005-08-24 22:04:42 -05002891 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002892 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002893 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002894 mdelay(1);
2895
2896 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002897 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002898 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002899
James Ketrenosb095c382005-08-24 22:04:42 -05002900 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002901 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002902
James Ketrenos43f66a62005-03-25 12:31:53 -06002903 /* enable ucode store */
2904 ipw_write_reg8(priv, DINO_CONTROL_REG, 0x0);
2905 ipw_write_reg8(priv, DINO_CONTROL_REG, DINO_ENABLE_CS);
2906 mdelay(1);
2907
2908 /* write ucode */
2909 /**
2910 * @bug
2911 * Do NOT set indirect address register once and then
2912 * store data to indirect data register in the loop.
2913 * It seems very reasonable, but in this case DINO do not
2914 * accept ucode. It is essential to set address each time.
2915 */
2916 /* load new ipw uCode */
2917 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002918 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002919 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002920
James Ketrenos43f66a62005-03-25 12:31:53 -06002921 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002922 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2923 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002924
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002925 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002926
2927 /* wait for alive response */
2928 for (i = 0; i < 100; i++) {
2929 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002930 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002931 if (cr & DINO_RXFIFO_DATA)
2932 break;
2933 mdelay(1);
2934 }
2935
2936 if (cr & DINO_RXFIFO_DATA) {
2937 /* alive_command_responce size is NOT multiple of 4 */
2938 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002939
2940 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002941 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002942 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002943 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002944 memcpy(&priv->dino_alive, response_buffer,
2945 sizeof(priv->dino_alive));
2946 if (priv->dino_alive.alive_command == 1
2947 && priv->dino_alive.ucode_valid == 1) {
2948 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002949 IPW_DEBUG_INFO
2950 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2951 "of %02d/%02d/%02d %02d:%02d\n",
2952 priv->dino_alive.software_revision,
2953 priv->dino_alive.software_revision,
2954 priv->dino_alive.device_identifier,
2955 priv->dino_alive.device_identifier,
2956 priv->dino_alive.time_stamp[0],
2957 priv->dino_alive.time_stamp[1],
2958 priv->dino_alive.time_stamp[2],
2959 priv->dino_alive.time_stamp[3],
2960 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002961 } else {
2962 IPW_DEBUG_INFO("Microcode is not alive\n");
2963 rc = -EINVAL;
2964 }
2965 } else {
2966 IPW_DEBUG_INFO("No alive response from DINO\n");
2967 rc = -ETIME;
2968 }
2969
2970 /* disable DINO, otherwise for some reason
2971 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002972 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002973
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002974// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002975
2976 return rc;
2977}
2978
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002979static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002980{
2981 int rc = -1;
2982 int offset = 0;
2983 struct fw_chunk *chunk;
2984 dma_addr_t shared_phys;
2985 u8 *shared_virt;
2986
2987 IPW_DEBUG_TRACE("<< : \n");
2988 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2989
2990 if (!shared_virt)
2991 return -ENOMEM;
2992
2993 memmove(shared_virt, data, len);
2994
2995 /* Start the Dma */
2996 rc = ipw_fw_dma_enable(priv);
2997
2998 if (priv->sram_desc.last_cb_index > 0) {
2999 /* the DMA is already ready this would be a bug. */
3000 BUG();
3001 goto out;
3002 }
3003
3004 do {
3005 chunk = (struct fw_chunk *)(data + offset);
3006 offset += sizeof(struct fw_chunk);
3007 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04003008 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06003009 * offeset*/
3010 /* Dma loading */
3011 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05003012 le32_to_cpu(chunk->address),
3013 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06003014 if (rc) {
3015 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3016 goto out;
3017 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003018
James Ketrenosa613bff2005-08-24 21:43:11 -05003019 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06003020 } while (offset < len);
3021
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003022 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06003023 rc = ipw_fw_dma_kick(priv);
3024 if (rc) {
3025 IPW_ERROR("dmaKick Failed\n");
3026 goto out;
3027 }
3028
3029 rc = ipw_fw_dma_wait(priv);
3030 if (rc) {
3031 IPW_ERROR("dmaWaitSync Failed\n");
3032 goto out;
3033 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003034 out:
3035 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06003036 return rc;
3037}
3038
3039/* stop nic */
3040static int ipw_stop_nic(struct ipw_priv *priv)
3041{
3042 int rc = 0;
3043
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003044 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003045 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003046
James Ketrenosb095c382005-08-24 22:04:42 -05003047 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3048 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003049 if (rc < 0) {
3050 IPW_ERROR("wait for reg master disabled failed\n");
3051 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003052 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003053
James Ketrenosb095c382005-08-24 22:04:42 -05003054 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003055
James Ketrenos43f66a62005-03-25 12:31:53 -06003056 return rc;
3057}
3058
3059static void ipw_start_nic(struct ipw_priv *priv)
3060{
3061 IPW_DEBUG_TRACE(">>\n");
3062
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003063 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003064 ipw_clear_bit(priv, IPW_RESET_REG,
3065 IPW_RESET_REG_MASTER_DISABLED |
3066 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003067 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003068
James Ketrenos43f66a62005-03-25 12:31:53 -06003069 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003070 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3071 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003072
3073 IPW_DEBUG_TRACE("<<\n");
3074}
Jeff Garzikbf794512005-07-31 13:07:26 -04003075
James Ketrenos43f66a62005-03-25 12:31:53 -06003076static int ipw_init_nic(struct ipw_priv *priv)
3077{
3078 int rc;
3079
3080 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003081 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003082 /*prvHwInitNic */
3083 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003084 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003085
3086 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003087 ipw_write32(priv, IPW_READ_INT_REGISTER,
3088 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003089
3090 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003091 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3092 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003093 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003094 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3095
3096 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003097 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003098
3099 udelay(10);
3100
3101 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003102 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003103
3104 IPW_DEBUG_TRACE(">>\n");
3105 return 0;
3106}
3107
Jeff Garzikbf794512005-07-31 13:07:26 -04003108/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003109 * Probe is an ok place to call this from.
3110 */
3111static int ipw_reset_nic(struct ipw_priv *priv)
3112{
3113 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003114 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003115
3116 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003117
James Ketrenos43f66a62005-03-25 12:31:53 -06003118 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003119
James Ketrenosa613bff2005-08-24 21:43:11 -05003120 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003121 /* Clear the 'host command active' bit... */
3122 priv->status &= ~STATUS_HCMD_ACTIVE;
3123 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003124 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3125 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003126 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003127
3128 IPW_DEBUG_TRACE("<<\n");
3129 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003130}
James Ketrenos43f66a62005-03-25 12:31:53 -06003131
Jeff Garzikbf794512005-07-31 13:07:26 -04003132static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003133 const struct firmware **fw, const char *name)
3134{
3135 struct fw_header *header;
3136 int rc;
3137
3138 /* ask firmware_class module to get the boot firmware off disk */
3139 rc = request_firmware(fw, name, &priv->pci_dev->dev);
3140 if (rc < 0) {
3141 IPW_ERROR("%s load failed: Reason %d\n", name, rc);
3142 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003143 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003144
3145 header = (struct fw_header *)(*fw)->data;
James Ketrenosa613bff2005-08-24 21:43:11 -05003146 if (IPW_FW_MAJOR(le32_to_cpu(header->version)) != IPW_FW_MAJOR_VERSION) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003147 IPW_ERROR("'%s' firmware version not compatible (%d != %d)\n",
3148 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003149 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3150 IPW_FW_MAJOR_VERSION);
James Ketrenos43f66a62005-03-25 12:31:53 -06003151 return -EINVAL;
3152 }
3153
Jiri Bencaaa4d302005-06-07 14:58:41 +02003154 IPW_DEBUG_INFO("Loading firmware '%s' file v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003155 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003156 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3157 IPW_FW_MINOR(le32_to_cpu(header->version)),
James Ketrenos43f66a62005-03-25 12:31:53 -06003158 (*fw)->size - sizeof(struct fw_header));
3159 return 0;
3160}
3161
James Ketrenosb095c382005-08-24 22:04:42 -05003162#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003163
3164static inline void ipw_rx_queue_reset(struct ipw_priv *priv,
3165 struct ipw_rx_queue *rxq)
3166{
3167 unsigned long flags;
3168 int i;
3169
3170 spin_lock_irqsave(&rxq->lock, flags);
3171
3172 INIT_LIST_HEAD(&rxq->rx_free);
3173 INIT_LIST_HEAD(&rxq->rx_used);
3174
3175 /* Fill the rx_used queue with _all_ of the Rx buffers */
3176 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3177 /* In the reset function, these buffers may have been allocated
3178 * to an SKB, so we need to unmap and free potential storage */
3179 if (rxq->pool[i].skb != NULL) {
3180 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003181 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003182 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003183 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003184 }
3185 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3186 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003187
James Ketrenos43f66a62005-03-25 12:31:53 -06003188 /* Set us so that we have processed and used all buffers, but have
3189 * not restocked the Rx queue with fresh buffers */
3190 rxq->read = rxq->write = 0;
3191 rxq->processed = RX_QUEUE_SIZE - 1;
3192 rxq->free_count = 0;
3193 spin_unlock_irqrestore(&rxq->lock, flags);
3194}
3195
3196#ifdef CONFIG_PM
3197static int fw_loaded = 0;
3198static const struct firmware *bootfw = NULL;
3199static const struct firmware *firmware = NULL;
3200static const struct firmware *ucode = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003201
3202static void free_firmware(void)
3203{
3204 if (fw_loaded) {
3205 release_firmware(bootfw);
3206 release_firmware(ucode);
3207 release_firmware(firmware);
3208 bootfw = ucode = firmware = NULL;
3209 fw_loaded = 0;
3210 }
3211}
3212#else
3213#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003214#endif
3215
3216static int ipw_load(struct ipw_priv *priv)
3217{
3218#ifndef CONFIG_PM
3219 const struct firmware *bootfw = NULL;
3220 const struct firmware *firmware = NULL;
3221 const struct firmware *ucode = NULL;
3222#endif
3223 int rc = 0, retries = 3;
3224
3225#ifdef CONFIG_PM
3226 if (!fw_loaded) {
3227#endif
3228 rc = ipw_get_fw(priv, &bootfw, IPW_FW_NAME("boot"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003229 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003230 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003231
James Ketrenos43f66a62005-03-25 12:31:53 -06003232 switch (priv->ieee->iw_mode) {
3233 case IW_MODE_ADHOC:
Jeff Garzikbf794512005-07-31 13:07:26 -04003234 rc = ipw_get_fw(priv, &ucode,
James Ketrenos43f66a62005-03-25 12:31:53 -06003235 IPW_FW_NAME("ibss_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
James Ketrenos43f66a62005-03-25 12:31:53 -06003239 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("ibss"));
3240 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003241
James Ketrenosb095c382005-08-24 22:04:42 -05003242#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06003243 case IW_MODE_MONITOR:
Jeff Garzikbf794512005-07-31 13:07:26 -04003244 rc = ipw_get_fw(priv, &ucode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003245 IPW_FW_NAME("sniffer_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003246 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003247 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003248
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003249 rc = ipw_get_fw(priv, &firmware,
3250 IPW_FW_NAME("sniffer"));
James Ketrenos43f66a62005-03-25 12:31:53 -06003251 break;
3252#endif
3253 case IW_MODE_INFRA:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003254 rc = ipw_get_fw(priv, &ucode, IPW_FW_NAME("bss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003255 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003256 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003257
James Ketrenos43f66a62005-03-25 12:31:53 -06003258 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("bss"));
3259 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003260
James Ketrenos43f66a62005-03-25 12:31:53 -06003261 default:
3262 rc = -EINVAL;
3263 }
3264
Jeff Garzikbf794512005-07-31 13:07:26 -04003265 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003266 goto error;
3267
3268#ifdef CONFIG_PM
3269 fw_loaded = 1;
3270 }
3271#endif
3272
3273 if (!priv->rxq)
3274 priv->rxq = ipw_rx_queue_alloc(priv);
3275 else
3276 ipw_rx_queue_reset(priv, priv->rxq);
3277 if (!priv->rxq) {
3278 IPW_ERROR("Unable to initialize Rx queue\n");
3279 goto error;
3280 }
3281
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003282 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003283 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003284 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003285 priv->status &= ~STATUS_INT_ENABLED;
3286
3287 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003288 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003289
James Ketrenos43f66a62005-03-25 12:31:53 -06003290 ipw_stop_nic(priv);
3291
3292 rc = ipw_reset_nic(priv);
3293 if (rc) {
3294 IPW_ERROR("Unable to reset NIC\n");
3295 goto error;
3296 }
3297
James Ketrenosb095c382005-08-24 22:04:42 -05003298 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3299 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003300
3301 /* DMA the initial boot firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003302 rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003303 bootfw->size - sizeof(struct fw_header));
3304 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003305 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003306 goto error;
3307 }
3308
3309 /* kick start the device */
3310 ipw_start_nic(priv);
3311
3312 /* wait for the device to finish it's initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003313 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3314 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003315 if (rc < 0) {
3316 IPW_ERROR("device failed to boot initial fw image\n");
3317 goto error;
3318 }
3319 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3320
Jeff Garzikbf794512005-07-31 13:07:26 -04003321 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003322 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003323
3324 /* DMA the ucode into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003325 rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003326 ucode->size - sizeof(struct fw_header));
3327 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003328 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003329 goto error;
3330 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003331
James Ketrenos43f66a62005-03-25 12:31:53 -06003332 /* stop nic */
3333 ipw_stop_nic(priv);
3334
3335 /* DMA bss firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003336 rc = ipw_load_firmware(priv, firmware->data +
3337 sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003338 firmware->size - sizeof(struct fw_header));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003339 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003340 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003341 goto error;
3342 }
3343
3344 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3345
3346 rc = ipw_queue_reset(priv);
3347 if (rc) {
3348 IPW_ERROR("Unable to initialize queues\n");
3349 goto error;
3350 }
3351
3352 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003353 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003354 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003355 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003356
James Ketrenos43f66a62005-03-25 12:31:53 -06003357 /* kick start the device */
3358 ipw_start_nic(priv);
3359
James Ketrenosb095c382005-08-24 22:04:42 -05003360 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003361 if (retries > 0) {
3362 IPW_WARNING("Parity error. Retrying init.\n");
3363 retries--;
3364 goto retry;
3365 }
3366
3367 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3368 rc = -EIO;
3369 goto error;
3370 }
3371
3372 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003373 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3374 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003375 if (rc < 0) {
3376 IPW_ERROR("device failed to start after 500ms\n");
3377 goto error;
3378 }
3379 IPW_DEBUG_INFO("device response after %dms\n", rc);
3380
3381 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003382 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003383
3384 /* read eeprom data and initialize the eeprom region of sram */
3385 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003386 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003387
3388 /* enable interrupts */
3389 ipw_enable_interrupts(priv);
3390
3391 /* Ensure our queue has valid packets */
3392 ipw_rx_queue_replenish(priv);
3393
James Ketrenosb095c382005-08-24 22:04:42 -05003394 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003395
3396 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003397 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003398
3399#ifndef CONFIG_PM
3400 release_firmware(bootfw);
3401 release_firmware(ucode);
3402 release_firmware(firmware);
3403#endif
3404 return 0;
3405
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003406 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003407 if (priv->rxq) {
3408 ipw_rx_queue_free(priv, priv->rxq);
3409 priv->rxq = NULL;
3410 }
3411 ipw_tx_queue_free(priv);
3412 if (bootfw)
3413 release_firmware(bootfw);
3414 if (ucode)
3415 release_firmware(ucode);
3416 if (firmware)
3417 release_firmware(firmware);
3418#ifdef CONFIG_PM
3419 fw_loaded = 0;
3420 bootfw = ucode = firmware = NULL;
3421#endif
3422
3423 return rc;
3424}
3425
Jeff Garzikbf794512005-07-31 13:07:26 -04003426/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003427 * DMA services
3428 *
3429 * Theory of operation
3430 *
3431 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3432 * 2 empty entries always kept in the buffer to protect from overflow.
3433 *
3434 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003435 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3436 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003437 * Tx queue resumed.
3438 *
3439 * The IPW operates with six queues, one receive queue in the device's
3440 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003441 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003442 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003443 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003444 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003445 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003446 * we only utilize the first data transmit queue (queue1).
3447 */
3448
3449/**
3450 * Driver allocates buffers of this size for Rx
3451 */
3452
3453static inline int ipw_queue_space(const struct clx2_queue *q)
3454{
3455 int s = q->last_used - q->first_empty;
3456 if (s <= 0)
3457 s += q->n_bd;
3458 s -= 2; /* keep some reserve to not confuse empty and full situations */
3459 if (s < 0)
3460 s = 0;
3461 return s;
3462}
3463
3464static inline int ipw_queue_inc_wrap(int index, int n_bd)
3465{
3466 return (++index == n_bd) ? 0 : index;
3467}
3468
3469/**
3470 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003471 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003472 * @param q queue to init
3473 * @param count Number of BD's to allocate. Should be power of 2
3474 * @param read_register Address for 'read' register
3475 * (not offset within BAR, full address)
3476 * @param write_register Address for 'write' register
3477 * (not offset within BAR, full address)
3478 * @param base_register Address for 'base' register
3479 * (not offset within BAR, full address)
3480 * @param size Address for 'size' register
3481 * (not offset within BAR, full address)
3482 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003483static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003484 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003485{
3486 q->n_bd = count;
3487
3488 q->low_mark = q->n_bd / 4;
3489 if (q->low_mark < 4)
3490 q->low_mark = 4;
3491
3492 q->high_mark = q->n_bd / 8;
3493 if (q->high_mark < 2)
3494 q->high_mark = 2;
3495
3496 q->first_empty = q->last_used = 0;
3497 q->reg_r = read;
3498 q->reg_w = write;
3499
3500 ipw_write32(priv, base, q->dma_addr);
3501 ipw_write32(priv, size, count);
3502 ipw_write32(priv, read, 0);
3503 ipw_write32(priv, write, 0);
3504
3505 _ipw_read32(priv, 0x90);
3506}
3507
Jeff Garzikbf794512005-07-31 13:07:26 -04003508static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003509 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003510 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003511{
3512 struct pci_dev *dev = priv->pci_dev;
3513
3514 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3515 if (!q->txb) {
3516 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3517 return -ENOMEM;
3518 }
3519
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003520 q->bd =
3521 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003522 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003523 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003524 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003525 kfree(q->txb);
3526 q->txb = NULL;
3527 return -ENOMEM;
3528 }
3529
3530 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3531 return 0;
3532}
3533
3534/**
3535 * Free one TFD, those at index [txq->q.last_used].
3536 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003537 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003538 * @param dev
3539 * @param txq
3540 */
3541static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3542 struct clx2_tx_queue *txq)
3543{
3544 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3545 struct pci_dev *dev = priv->pci_dev;
3546 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003547
James Ketrenos43f66a62005-03-25 12:31:53 -06003548 /* classify bd */
3549 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3550 /* nothing to cleanup after for host commands */
3551 return;
3552
3553 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003554 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3555 IPW_ERROR("Too many chunks: %i\n",
3556 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003557 /** @todo issue fatal error, it is quite serious situation */
3558 return;
3559 }
3560
3561 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003562 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3563 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3564 le16_to_cpu(bd->u.data.chunk_len[i]),
3565 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003566 if (txq->txb[txq->q.last_used]) {
3567 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3568 txq->txb[txq->q.last_used] = NULL;
3569 }
3570 }
3571}
3572
3573/**
3574 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003575 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003576 * Empty queue by removing and destroying all BD's.
3577 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003578 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003579 * @param dev
3580 * @param q
3581 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003582static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003583{
3584 struct clx2_queue *q = &txq->q;
3585 struct pci_dev *dev = priv->pci_dev;
3586
Jeff Garzikbf794512005-07-31 13:07:26 -04003587 if (q->n_bd == 0)
3588 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003589
3590 /* first, empty all BD's */
3591 for (; q->first_empty != q->last_used;
3592 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3593 ipw_queue_tx_free_tfd(priv, txq);
3594 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003595
James Ketrenos43f66a62005-03-25 12:31:53 -06003596 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003597 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003598 q->dma_addr);
3599 kfree(txq->txb);
3600
3601 /* 0 fill whole structure */
3602 memset(txq, 0, sizeof(*txq));
3603}
3604
James Ketrenos43f66a62005-03-25 12:31:53 -06003605/**
3606 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003607 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003608 * @param priv
3609 */
3610static void ipw_tx_queue_free(struct ipw_priv *priv)
3611{
3612 /* Tx CMD queue */
3613 ipw_queue_tx_free(priv, &priv->txq_cmd);
3614
3615 /* Tx queues */
3616 ipw_queue_tx_free(priv, &priv->txq[0]);
3617 ipw_queue_tx_free(priv, &priv->txq[1]);
3618 ipw_queue_tx_free(priv, &priv->txq[2]);
3619 ipw_queue_tx_free(priv, &priv->txq[3]);
3620}
3621
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003622static inline void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003623{
3624 /* First 3 bytes are manufacturer */
3625 bssid[0] = priv->mac_addr[0];
3626 bssid[1] = priv->mac_addr[1];
3627 bssid[2] = priv->mac_addr[2];
3628
3629 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003630 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003631
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003632 bssid[0] &= 0xfe; /* clear multicast bit */
3633 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003634}
3635
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003636static inline u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003637{
3638 struct ipw_station_entry entry;
3639 int i;
3640
3641 for (i = 0; i < priv->num_stations; i++) {
3642 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3643 /* Another node is active in network */
3644 priv->missed_adhoc_beacons = 0;
3645 if (!(priv->config & CFG_STATIC_CHANNEL))
3646 /* when other nodes drop out, we drop out */
3647 priv->config &= ~CFG_ADHOC_PERSIST;
3648
3649 return i;
3650 }
3651 }
3652
3653 if (i == MAX_STATIONS)
3654 return IPW_INVALID_STATION;
3655
3656 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3657
3658 entry.reserved = 0;
3659 entry.support_mode = 0;
3660 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3661 memcpy(priv->stations[i], bssid, ETH_ALEN);
3662 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003663 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003664 priv->num_stations++;
3665
3666 return i;
3667}
3668
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003669static inline u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003670{
3671 int i;
3672
Jeff Garzikbf794512005-07-31 13:07:26 -04003673 for (i = 0; i < priv->num_stations; i++)
3674 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003675 return i;
3676
3677 return IPW_INVALID_STATION;
3678}
3679
3680static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3681{
3682 int err;
3683
Hong Liu7b996592005-08-25 17:36:13 +08003684 if (priv->status & STATUS_ASSOCIATING) {
3685 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3686 queue_work(priv->workqueue, &priv->disassociate);
3687 return;
3688 }
3689
3690 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003691 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3692 return;
3693 }
3694
3695 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3696 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003697 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003698 priv->assoc_request.channel);
3699
James Ketrenos43f66a62005-03-25 12:31:53 -06003700 if (quiet)
3701 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3702 else
3703 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
3704 err = ipw_send_associate(priv, &priv->assoc_request);
3705 if (err) {
3706 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3707 "failed.\n");
3708 return;
3709 }
3710
Hong Liu7b996592005-08-25 17:36:13 +08003711 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3712 priv->status |= STATUS_DISASSOCIATING;
3713
James Ketrenos43f66a62005-03-25 12:31:53 -06003714}
3715
James Ketrenosc848d0a2005-08-24 21:56:24 -05003716static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003717{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003718 struct ipw_priv *priv = data;
3719 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3720 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003721 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003722 return 1;
3723}
3724
3725static void ipw_bg_disassociate(void *data)
3726{
3727 struct ipw_priv *priv = data;
3728 down(&priv->sem);
3729 ipw_disassociate(data);
3730 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06003731}
3732
Zhu Yid8bad6d2005-07-13 12:25:38 -05003733static void ipw_system_config(void *data)
3734{
3735 struct ipw_priv *priv = data;
3736 ipw_send_system_config(priv, &priv->sys_config);
3737}
3738
James Ketrenos43f66a62005-03-25 12:31:53 -06003739struct ipw_status_code {
3740 u16 status;
3741 const char *reason;
3742};
3743
3744static const struct ipw_status_code ipw_status_codes[] = {
3745 {0x00, "Successful"},
3746 {0x01, "Unspecified failure"},
3747 {0x0A, "Cannot support all requested capabilities in the "
3748 "Capability information field"},
3749 {0x0B, "Reassociation denied due to inability to confirm that "
3750 "association exists"},
3751 {0x0C, "Association denied due to reason outside the scope of this "
3752 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003753 {0x0D,
3754 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003755 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003756 {0x0E,
3757 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003758 "transaction sequence number out of expected sequence"},
3759 {0x0F, "Authentication rejected because of challenge failure"},
3760 {0x10, "Authentication rejected due to timeout waiting for next "
3761 "frame in sequence"},
3762 {0x11, "Association denied because AP is unable to handle additional "
3763 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003764 {0x12,
3765 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003766 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003767 {0x13,
3768 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003769 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003770 {0x14,
3771 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003772 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003773 {0x15,
3774 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003775 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003776 {0x19,
3777 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003778 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003779 {0x1A,
3780 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003781 "DSSS-OFDM operation"},
3782 {0x28, "Invalid Information Element"},
3783 {0x29, "Group Cipher is not valid"},
3784 {0x2A, "Pairwise Cipher is not valid"},
3785 {0x2B, "AKMP is not valid"},
3786 {0x2C, "Unsupported RSN IE version"},
3787 {0x2D, "Invalid RSN IE Capabilities"},
3788 {0x2E, "Cipher suite is rejected per security policy"},
3789};
3790
3791#ifdef CONFIG_IPW_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003792static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003793{
3794 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003795 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003796 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003797 return ipw_status_codes[i].reason;
3798 return "Unknown status value.";
3799}
3800#endif
3801
3802static void inline average_init(struct average *avg)
3803{
3804 memset(avg, 0, sizeof(*avg));
3805}
3806
3807static void inline average_add(struct average *avg, s16 val)
3808{
3809 avg->sum -= avg->entries[avg->pos];
3810 avg->sum += val;
3811 avg->entries[avg->pos++] = val;
3812 if (unlikely(avg->pos == AVG_ENTRIES)) {
3813 avg->init = 1;
3814 avg->pos = 0;
3815 }
3816}
3817
3818static s16 inline average_value(struct average *avg)
3819{
3820 if (!unlikely(avg->init)) {
3821 if (avg->pos)
3822 return avg->sum / avg->pos;
3823 return 0;
3824 }
3825
3826 return avg->sum / AVG_ENTRIES;
3827}
3828
3829static void ipw_reset_stats(struct ipw_priv *priv)
3830{
3831 u32 len = sizeof(u32);
3832
3833 priv->quality = 0;
3834
3835 average_init(&priv->average_missed_beacons);
3836 average_init(&priv->average_rssi);
3837 average_init(&priv->average_noise);
3838
3839 priv->last_rate = 0;
3840 priv->last_missed_beacons = 0;
3841 priv->last_rx_packets = 0;
3842 priv->last_tx_packets = 0;
3843 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003844
James Ketrenos43f66a62005-03-25 12:31:53 -06003845 /* Firmware managed, reset only when NIC is restarted, so we have to
3846 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003847 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003848 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003849 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003850 &priv->last_tx_failures, &len);
3851
3852 /* Driver managed, reset with each association */
3853 priv->missed_adhoc_beacons = 0;
3854 priv->missed_beacons = 0;
3855 priv->tx_packets = 0;
3856 priv->rx_packets = 0;
3857
3858}
3859
James Ketrenos43f66a62005-03-25 12:31:53 -06003860static inline u32 ipw_get_max_rate(struct ipw_priv *priv)
3861{
3862 u32 i = 0x80000000;
3863 u32 mask = priv->rates_mask;
3864 /* If currently associated in B mode, restrict the maximum
3865 * rate match to B rates */
3866 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3867 mask &= IEEE80211_CCK_RATES_MASK;
3868
3869 /* TODO: Verify that the rate is supported by the current rates
3870 * list. */
3871
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003872 while (i && !(mask & i))
3873 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003874 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003875 case IEEE80211_CCK_RATE_1MB_MASK:
3876 return 1000000;
3877 case IEEE80211_CCK_RATE_2MB_MASK:
3878 return 2000000;
3879 case IEEE80211_CCK_RATE_5MB_MASK:
3880 return 5500000;
3881 case IEEE80211_OFDM_RATE_6MB_MASK:
3882 return 6000000;
3883 case IEEE80211_OFDM_RATE_9MB_MASK:
3884 return 9000000;
3885 case IEEE80211_CCK_RATE_11MB_MASK:
3886 return 11000000;
3887 case IEEE80211_OFDM_RATE_12MB_MASK:
3888 return 12000000;
3889 case IEEE80211_OFDM_RATE_18MB_MASK:
3890 return 18000000;
3891 case IEEE80211_OFDM_RATE_24MB_MASK:
3892 return 24000000;
3893 case IEEE80211_OFDM_RATE_36MB_MASK:
3894 return 36000000;
3895 case IEEE80211_OFDM_RATE_48MB_MASK:
3896 return 48000000;
3897 case IEEE80211_OFDM_RATE_54MB_MASK:
3898 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003899 }
3900
Jeff Garzikbf794512005-07-31 13:07:26 -04003901 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003902 return 11000000;
3903 else
3904 return 54000000;
3905}
3906
3907static u32 ipw_get_current_rate(struct ipw_priv *priv)
3908{
3909 u32 rate, len = sizeof(rate);
3910 int err;
3911
Jeff Garzikbf794512005-07-31 13:07:26 -04003912 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003913 return 0;
3914
3915 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003916 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003917 &len);
3918 if (err) {
3919 IPW_DEBUG_INFO("failed querying ordinals.\n");
3920 return 0;
3921 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003922 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003923 return ipw_get_max_rate(priv);
3924
3925 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003926 case IPW_TX_RATE_1MB:
3927 return 1000000;
3928 case IPW_TX_RATE_2MB:
3929 return 2000000;
3930 case IPW_TX_RATE_5MB:
3931 return 5500000;
3932 case IPW_TX_RATE_6MB:
3933 return 6000000;
3934 case IPW_TX_RATE_9MB:
3935 return 9000000;
3936 case IPW_TX_RATE_11MB:
3937 return 11000000;
3938 case IPW_TX_RATE_12MB:
3939 return 12000000;
3940 case IPW_TX_RATE_18MB:
3941 return 18000000;
3942 case IPW_TX_RATE_24MB:
3943 return 24000000;
3944 case IPW_TX_RATE_36MB:
3945 return 36000000;
3946 case IPW_TX_RATE_48MB:
3947 return 48000000;
3948 case IPW_TX_RATE_54MB:
3949 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003950 }
3951
3952 return 0;
3953}
3954
James Ketrenos43f66a62005-03-25 12:31:53 -06003955#define IPW_STATS_INTERVAL (2 * HZ)
3956static void ipw_gather_stats(struct ipw_priv *priv)
3957{
3958 u32 rx_err, rx_err_delta, rx_packets_delta;
3959 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3960 u32 missed_beacons_percent, missed_beacons_delta;
3961 u32 quality = 0;
3962 u32 len = sizeof(u32);
3963 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003964 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003965 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003966 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003967
3968 if (!(priv->status & STATUS_ASSOCIATED)) {
3969 priv->quality = 0;
3970 return;
3971 }
3972
3973 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003974 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003975 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003976 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003977 priv->last_missed_beacons = priv->missed_beacons;
3978 if (priv->assoc_request.beacon_interval) {
3979 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003980 (HZ * priv->assoc_request.beacon_interval) /
3981 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003982 } else {
3983 missed_beacons_percent = 0;
3984 }
3985 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3986
3987 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3988 rx_err_delta = rx_err - priv->last_rx_err;
3989 priv->last_rx_err = rx_err;
3990
3991 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3992 tx_failures_delta = tx_failures - priv->last_tx_failures;
3993 priv->last_tx_failures = tx_failures;
3994
3995 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3996 priv->last_rx_packets = priv->rx_packets;
3997
3998 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
3999 priv->last_tx_packets = priv->tx_packets;
4000
4001 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04004002 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004003 * Missed beacon: 100% = 0, 0% = 70% missed
4004 * Rate: 60% = 1Mbs, 100% = Max
4005 * Rx and Tx errors represent a straight % of total Rx/Tx
4006 * RSSI: 100% = > -50, 0% = < -80
4007 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04004008 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004009 * The lowest computed quality is used.
4010 *
4011 */
4012#define BEACON_THRESHOLD 5
4013 beacon_quality = 100 - missed_beacons_percent;
4014 if (beacon_quality < BEACON_THRESHOLD)
4015 beacon_quality = 0;
4016 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004017 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004018 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004019 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004020 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004021
James Ketrenos43f66a62005-03-25 12:31:53 -06004022 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004023 max_rate = ipw_get_max_rate(priv);
4024 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004025 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4026 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004027
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004028 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004029 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004030 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004031 else
4032 rx_quality = 100;
4033 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4034 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004035
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004036 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004037 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004038 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004039 else
4040 tx_quality = 100;
4041 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4042 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004043
James Ketrenos43f66a62005-03-25 12:31:53 -06004044 rssi = average_value(&priv->average_rssi);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004045 signal_quality =
4046 (100 *
4047 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4048 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4049 (priv->ieee->perfect_rssi - rssi) *
4050 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4051 62 * (priv->ieee->perfect_rssi - rssi))) /
4052 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4053 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4054 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004055 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004056 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004057 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004058
James Ketrenos43f66a62005-03-25 12:31:53 -06004059 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
4060 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004061
4062 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06004063 min(rate_quality,
4064 min(tx_quality, min(rx_quality, signal_quality))));
4065 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004066 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4067 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004068 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004069 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4070 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004071 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004072 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4073 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004074 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004075 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4076 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004077 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004078 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4079 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004080
4081 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004082
4083 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004084 IPW_STATS_INTERVAL);
4085}
4086
James Ketrenosc848d0a2005-08-24 21:56:24 -05004087static void ipw_bg_gather_stats(void *data)
4088{
4089 struct ipw_priv *priv = data;
4090 down(&priv->sem);
4091 ipw_gather_stats(data);
4092 up(&priv->sem);
4093}
4094
James Ketrenosea2b26e2005-08-24 21:25:16 -05004095static inline void ipw_handle_missed_beacon(struct ipw_priv *priv,
4096 int missed_count)
4097{
4098 priv->notif_missed_beacons = missed_count;
4099
James Ketrenosafbf30a2005-08-25 00:05:33 -05004100 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004101 priv->status & STATUS_ASSOCIATED) {
4102 /* If associated and we've hit the missed
4103 * beacon threshold, disassociate, turn
4104 * off roaming, and abort any active scans */
4105 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004106 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004107 "Missed beacon: %d - disassociate\n", missed_count);
4108 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004109 if (priv->status & STATUS_SCANNING) {
4110 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4111 IPW_DL_STATE,
4112 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004113 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004114 }
4115
James Ketrenosea2b26e2005-08-24 21:25:16 -05004116 queue_work(priv->workqueue, &priv->disassociate);
4117 return;
4118 }
4119
4120 if (priv->status & STATUS_ROAMING) {
4121 /* If we are currently roaming, then just
4122 * print a debug statement... */
4123 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4124 "Missed beacon: %d - roam in progress\n",
4125 missed_count);
4126 return;
4127 }
4128
4129 if (missed_count > priv->roaming_threshold) {
4130 /* If we are not already roaming, set the ROAM
4131 * bit in the status and kick off a scan */
4132 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4133 "Missed beacon: %d - initiate "
4134 "roaming\n", missed_count);
4135 if (!(priv->status & STATUS_ROAMING)) {
4136 priv->status |= STATUS_ROAMING;
4137 if (!(priv->status & STATUS_SCANNING))
4138 queue_work(priv->workqueue,
4139 &priv->request_scan);
4140 }
4141 return;
4142 }
4143
4144 if (priv->status & STATUS_SCANNING) {
4145 /* Stop scan to keep fw from getting
4146 * stuck (only if we aren't roaming --
4147 * otherwise we'll never scan more than 2 or 3
4148 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004149 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4150 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004151 queue_work(priv->workqueue, &priv->abort_scan);
4152 }
4153
4154 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
4155
4156}
4157
James Ketrenos43f66a62005-03-25 12:31:53 -06004158/**
4159 * Handle host notification packet.
4160 * Called from interrupt routine
4161 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004162static inline void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004163 struct ipw_rx_notification *notif)
4164{
James Ketrenosa613bff2005-08-24 21:43:11 -05004165 notif->size = le16_to_cpu(notif->size);
4166
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004167 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004168
James Ketrenos43f66a62005-03-25 12:31:53 -06004169 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004170 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4171 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004172
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004173 switch (assoc->state) {
4174 case CMAS_ASSOCIATED:{
4175 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4176 IPW_DL_ASSOC,
4177 "associated: '%s' " MAC_FMT
4178 " \n",
4179 escape_essid(priv->essid,
4180 priv->essid_len),
4181 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004182
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004183 switch (priv->ieee->iw_mode) {
4184 case IW_MODE_INFRA:
4185 memcpy(priv->ieee->bssid,
4186 priv->bssid, ETH_ALEN);
4187 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004188
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004189 case IW_MODE_ADHOC:
4190 memcpy(priv->ieee->bssid,
4191 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004192
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004193 /* clear out the station table */
4194 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004195
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004196 IPW_DEBUG_ASSOC
4197 ("queueing adhoc check\n");
4198 queue_delayed_work(priv->
4199 workqueue,
4200 &priv->
4201 adhoc_check,
4202 priv->
4203 assoc_request.
4204 beacon_interval);
4205 break;
4206 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004207
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004208 priv->status &= ~STATUS_ASSOCIATING;
4209 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004210 queue_work(priv->workqueue,
4211 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004212
James Ketrenosb095c382005-08-24 22:04:42 -05004213#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004214#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4215 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4216 if ((priv->status & STATUS_AUTH) &&
4217 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4218 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004219 if ((sizeof
4220 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004221 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004222 <= notif->size)
4223 && (notif->size <= 2314)) {
4224 struct
4225 ieee80211_rx_stats
4226 stats = {
4227 .len =
4228 notif->
4229 size - 1,
4230 };
4231
4232 IPW_DEBUG_QOS
4233 ("QoS Associate "
4234 "size %d\n",
4235 notif->size);
4236 ieee80211_rx_mgt(priv->
4237 ieee,
4238 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004239 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004240 *)
4241 &notif->u.raw, &stats);
4242 }
4243 }
4244#endif
4245
James Ketrenosa613bff2005-08-24 21:43:11 -05004246 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004247
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004248 break;
4249 }
4250
4251 case CMAS_AUTHENTICATED:{
4252 if (priv->
4253 status & (STATUS_ASSOCIATED |
4254 STATUS_AUTH)) {
4255#ifdef CONFIG_IPW_DEBUG
4256 struct notif_authenticate *auth
4257 = &notif->u.auth;
4258 IPW_DEBUG(IPW_DL_NOTIF |
4259 IPW_DL_STATE |
4260 IPW_DL_ASSOC,
4261 "deauthenticated: '%s' "
4262 MAC_FMT
4263 ": (0x%04X) - %s \n",
4264 escape_essid(priv->
4265 essid,
4266 priv->
4267 essid_len),
4268 MAC_ARG(priv->bssid),
4269 ntohs(auth->status),
4270 ipw_get_status_code
4271 (ntohs
4272 (auth->status)));
4273#endif
4274
4275 priv->status &=
4276 ~(STATUS_ASSOCIATING |
4277 STATUS_AUTH |
4278 STATUS_ASSOCIATED);
4279
James Ketrenosa613bff2005-08-24 21:43:11 -05004280 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004281 break;
4282 }
4283
4284 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4285 IPW_DL_ASSOC,
4286 "authenticated: '%s' " MAC_FMT
4287 "\n",
4288 escape_essid(priv->essid,
4289 priv->essid_len),
4290 MAC_ARG(priv->bssid));
4291 break;
4292 }
4293
4294 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004295 if (priv->status & STATUS_AUTH) {
4296 struct
4297 ieee80211_assoc_response
4298 *resp;
4299 resp =
4300 (struct
4301 ieee80211_assoc_response
4302 *)&notif->u.raw;
4303 IPW_DEBUG(IPW_DL_NOTIF |
4304 IPW_DL_STATE |
4305 IPW_DL_ASSOC,
4306 "association failed (0x%04X): %s\n",
4307 ntohs(resp->status),
4308 ipw_get_status_code
4309 (ntohs
4310 (resp->status)));
4311 }
4312
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004313 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4314 IPW_DL_ASSOC,
4315 "disassociated: '%s' " MAC_FMT
4316 " \n",
4317 escape_essid(priv->essid,
4318 priv->essid_len),
4319 MAC_ARG(priv->bssid));
4320
4321 priv->status &=
4322 ~(STATUS_DISASSOCIATING |
4323 STATUS_ASSOCIATING |
4324 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004325 if (priv->assoc_network
4326 && (priv->assoc_network->
4327 capability &
4328 WLAN_CAPABILITY_IBSS))
4329 ipw_remove_current_network
4330 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004331
James Ketrenosa613bff2005-08-24 21:43:11 -05004332 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004333
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004334 break;
4335 }
4336
James Ketrenosb095c382005-08-24 22:04:42 -05004337 case CMAS_RX_ASSOC_RESP:
4338 break;
4339
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004340 default:
4341 IPW_ERROR("assoc: unknown (%d)\n",
4342 assoc->state);
4343 break;
4344 }
4345
James Ketrenos43f66a62005-03-25 12:31:53 -06004346 break;
4347 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004348
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004349 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4350 struct notif_authenticate *auth = &notif->u.auth;
4351 switch (auth->state) {
4352 case CMAS_AUTHENTICATED:
4353 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4354 "authenticated: '%s' " MAC_FMT " \n",
4355 escape_essid(priv->essid,
4356 priv->essid_len),
4357 MAC_ARG(priv->bssid));
4358 priv->status |= STATUS_AUTH;
4359 break;
4360
4361 case CMAS_INIT:
4362 if (priv->status & STATUS_AUTH) {
4363 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4364 IPW_DL_ASSOC,
4365 "authentication failed (0x%04X): %s\n",
4366 ntohs(auth->status),
4367 ipw_get_status_code(ntohs
4368 (auth->
4369 status)));
4370 }
4371 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4372 IPW_DL_ASSOC,
4373 "deauthenticated: '%s' " MAC_FMT "\n",
4374 escape_essid(priv->essid,
4375 priv->essid_len),
4376 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004377
4378 priv->status &= ~(STATUS_ASSOCIATING |
4379 STATUS_AUTH |
4380 STATUS_ASSOCIATED);
4381
James Ketrenosa613bff2005-08-24 21:43:11 -05004382 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004383 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004384
4385 case CMAS_TX_AUTH_SEQ_1:
4386 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4387 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4388 break;
4389 case CMAS_RX_AUTH_SEQ_2:
4390 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4391 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4392 break;
4393 case CMAS_AUTH_SEQ_1_PASS:
4394 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4395 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4396 break;
4397 case CMAS_AUTH_SEQ_1_FAIL:
4398 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4399 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4400 break;
4401 case CMAS_TX_AUTH_SEQ_3:
4402 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4403 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4404 break;
4405 case CMAS_RX_AUTH_SEQ_4:
4406 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4407 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4408 break;
4409 case CMAS_AUTH_SEQ_2_PASS:
4410 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4411 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4412 break;
4413 case CMAS_AUTH_SEQ_2_FAIL:
4414 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4415 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4416 break;
4417 case CMAS_TX_ASSOC:
4418 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4419 IPW_DL_ASSOC, "TX_ASSOC\n");
4420 break;
4421 case CMAS_RX_ASSOC_RESP:
4422 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4423 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004424
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004425 break;
4426 case CMAS_ASSOCIATED:
4427 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4428 IPW_DL_ASSOC, "ASSOCIATED\n");
4429 break;
4430 default:
4431 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4432 auth->state);
4433 break;
4434 }
4435 break;
4436 }
4437
4438 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4439 struct notif_channel_result *x =
4440 &notif->u.channel_result;
4441
4442 if (notif->size == sizeof(*x)) {
4443 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4444 x->channel_num);
4445 } else {
4446 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4447 "(should be %zd)\n",
4448 notif->size, sizeof(*x));
4449 }
4450 break;
4451 }
4452
4453 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4454 struct notif_scan_complete *x = &notif->u.scan_complete;
4455 if (notif->size == sizeof(*x)) {
4456 IPW_DEBUG_SCAN
4457 ("Scan completed: type %d, %d channels, "
4458 "%d status\n", x->scan_type,
4459 x->num_channels, x->status);
4460 } else {
4461 IPW_ERROR("Scan completed of wrong size %d "
4462 "(should be %zd)\n",
4463 notif->size, sizeof(*x));
4464 }
4465
4466 priv->status &=
4467 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4468
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004469 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004470 cancel_delayed_work(&priv->scan_check);
4471
James Ketrenosb095c382005-08-24 22:04:42 -05004472 if (priv->status & STATUS_EXIT_PENDING)
4473 break;
4474
4475 priv->ieee->scans++;
4476
4477#ifdef CONFIG_IPW2200_MONITOR
4478 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004479 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004480 queue_work(priv->workqueue,
4481 &priv->request_scan);
4482 break;
4483 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004484 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004485#endif /* CONFIG_IPW2200_MONITOR */
4486
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004487 if (!(priv->status & (STATUS_ASSOCIATED |
4488 STATUS_ASSOCIATING |
4489 STATUS_ROAMING |
4490 STATUS_DISASSOCIATING)))
4491 queue_work(priv->workqueue, &priv->associate);
4492 else if (priv->status & STATUS_ROAMING) {
4493 /* If a scan completed and we are in roam mode, then
4494 * the scan that completed was the one requested as a
4495 * result of entering roam... so, schedule the
4496 * roam work */
4497 queue_work(priv->workqueue, &priv->roam);
4498 } else if (priv->status & STATUS_SCAN_PENDING)
4499 queue_work(priv->workqueue,
4500 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004501 else if (priv->config & CFG_BACKGROUND_SCAN
4502 && priv->status & STATUS_ASSOCIATED)
4503 queue_delayed_work(priv->workqueue,
4504 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004505 break;
4506 }
4507
4508 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4509 struct notif_frag_length *x = &notif->u.frag_len;
4510
James Ketrenosa613bff2005-08-24 21:43:11 -05004511 if (notif->size == sizeof(*x))
4512 IPW_ERROR("Frag length: %d\n",
4513 le16_to_cpu(x->frag_length));
4514 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004515 IPW_ERROR("Frag length of wrong size %d "
4516 "(should be %zd)\n",
4517 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004518 break;
4519 }
4520
4521 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4522 struct notif_link_deterioration *x =
4523 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004524
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004525 if (notif->size == sizeof(*x)) {
4526 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4527 "link deterioration: '%s' " MAC_FMT
4528 " \n", escape_essid(priv->essid,
4529 priv->essid_len),
4530 MAC_ARG(priv->bssid));
4531 memcpy(&priv->last_link_deterioration, x,
4532 sizeof(*x));
4533 } else {
4534 IPW_ERROR("Link Deterioration of wrong size %d "
4535 "(should be %zd)\n",
4536 notif->size, sizeof(*x));
4537 }
4538 break;
4539 }
4540
4541 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4542 IPW_ERROR("Dino config\n");
4543 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004544 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004545 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004546
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004547 break;
4548 }
4549
4550 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4551 struct notif_beacon_state *x = &notif->u.beacon_state;
4552 if (notif->size != sizeof(*x)) {
4553 IPW_ERROR
4554 ("Beacon state of wrong size %d (should "
4555 "be %zd)\n", notif->size, sizeof(*x));
4556 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004557 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004558
James Ketrenosa613bff2005-08-24 21:43:11 -05004559 if (le32_to_cpu(x->state) ==
4560 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4561 ipw_handle_missed_beacon(priv,
4562 le32_to_cpu(x->
4563 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004564
James Ketrenos43f66a62005-03-25 12:31:53 -06004565 break;
4566 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004567
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004568 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4569 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4570 if (notif->size == sizeof(*x)) {
4571 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4572 "0x%02x station %d\n",
4573 x->key_state, x->security_type,
4574 x->station_index);
4575 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004576 }
4577
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004578 IPW_ERROR
4579 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4580 notif->size, sizeof(*x));
4581 break;
4582 }
4583
4584 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4585 struct notif_calibration *x = &notif->u.calibration;
4586
4587 if (notif->size == sizeof(*x)) {
4588 memcpy(&priv->calib, x, sizeof(*x));
4589 IPW_DEBUG_INFO("TODO: Calibration\n");
4590 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004591 }
4592
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004593 IPW_ERROR
4594 ("Calibration of wrong size %d (should be %zd)\n",
4595 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004596 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004597 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004598
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004599 case HOST_NOTIFICATION_NOISE_STATS:{
4600 if (notif->size == sizeof(u32)) {
4601 priv->last_noise =
James Ketrenosa613bff2005-08-24 21:43:11 -05004602 (u8) (le32_to_cpu(notif->u.noise.value) &
4603 0xff);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004604 average_add(&priv->average_noise,
4605 priv->last_noise);
4606 break;
4607 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004608
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004609 IPW_ERROR
4610 ("Noise stat is wrong size %d (should be %zd)\n",
4611 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004612 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004613 }
4614
James Ketrenos43f66a62005-03-25 12:31:53 -06004615 default:
4616 IPW_ERROR("Unknown notification: "
4617 "subtype=%d,flags=0x%2x,size=%d\n",
4618 notif->subtype, notif->flags, notif->size);
4619 }
4620}
4621
4622/**
4623 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004624 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004625 * @param priv
4626 * @return error code
4627 */
4628static int ipw_queue_reset(struct ipw_priv *priv)
4629{
4630 int rc = 0;
4631 /** @todo customize queue sizes */
4632 int nTx = 64, nTxCmd = 8;
4633 ipw_tx_queue_free(priv);
4634 /* Tx CMD queue */
4635 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004636 IPW_TX_CMD_QUEUE_READ_INDEX,
4637 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4638 IPW_TX_CMD_QUEUE_BD_BASE,
4639 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004640 if (rc) {
4641 IPW_ERROR("Tx Cmd queue init failed\n");
4642 goto error;
4643 }
4644 /* Tx queue(s) */
4645 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004646 IPW_TX_QUEUE_0_READ_INDEX,
4647 IPW_TX_QUEUE_0_WRITE_INDEX,
4648 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004649 if (rc) {
4650 IPW_ERROR("Tx 0 queue init failed\n");
4651 goto error;
4652 }
4653 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004654 IPW_TX_QUEUE_1_READ_INDEX,
4655 IPW_TX_QUEUE_1_WRITE_INDEX,
4656 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004657 if (rc) {
4658 IPW_ERROR("Tx 1 queue init failed\n");
4659 goto error;
4660 }
4661 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004662 IPW_TX_QUEUE_2_READ_INDEX,
4663 IPW_TX_QUEUE_2_WRITE_INDEX,
4664 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004665 if (rc) {
4666 IPW_ERROR("Tx 2 queue init failed\n");
4667 goto error;
4668 }
4669 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004670 IPW_TX_QUEUE_3_READ_INDEX,
4671 IPW_TX_QUEUE_3_WRITE_INDEX,
4672 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004673 if (rc) {
4674 IPW_ERROR("Tx 3 queue init failed\n");
4675 goto error;
4676 }
4677 /* statistics */
4678 priv->rx_bufs_min = 0;
4679 priv->rx_pend_max = 0;
4680 return rc;
4681
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004682 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004683 ipw_tx_queue_free(priv);
4684 return rc;
4685}
4686
4687/**
4688 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004689 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004690 * When FW adwances 'R' index, all entries between old and
4691 * new 'R' index need to be reclaimed. As result, some free space
4692 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004693 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004694 * @note Need to protect against garbage in 'R' index
4695 * @param priv
4696 * @param txq
4697 * @param qindex
4698 * @return Number of used entries remains in the queue
4699 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004700static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004701 struct clx2_tx_queue *txq, int qindex)
4702{
4703 u32 hw_tail;
4704 int used;
4705 struct clx2_queue *q = &txq->q;
4706
4707 hw_tail = ipw_read32(priv, q->reg_r);
4708 if (hw_tail >= q->n_bd) {
4709 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004710 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4711 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004712 goto done;
4713 }
4714 for (; q->last_used != hw_tail;
4715 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4716 ipw_queue_tx_free_tfd(priv, txq);
4717 priv->tx_packets++;
4718 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004719 done:
James Ketrenos9ddf84f2005-08-16 17:07:11 -05004720 if ((ipw_queue_space(q) > q->low_mark) &&
4721 (qindex >= 0) &&
4722 (priv->status & STATUS_ASSOCIATED) && netif_running(priv->net_dev))
4723 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06004724 used = q->first_empty - q->last_used;
4725 if (used < 0)
4726 used += q->n_bd;
4727
4728 return used;
4729}
4730
4731static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4732 int len, int sync)
4733{
4734 struct clx2_tx_queue *txq = &priv->txq_cmd;
4735 struct clx2_queue *q = &txq->q;
4736 struct tfd_frame *tfd;
4737
4738 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4739 IPW_ERROR("No space for Tx\n");
4740 return -EBUSY;
4741 }
4742
4743 tfd = &txq->bd[q->first_empty];
4744 txq->txb[q->first_empty] = NULL;
4745
4746 memset(tfd, 0, sizeof(*tfd));
4747 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4748 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4749 priv->hcmd_seq++;
4750 tfd->u.cmd.index = hcmd;
4751 tfd->u.cmd.length = len;
4752 memcpy(tfd->u.cmd.payload, buf, len);
4753 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4754 ipw_write32(priv, q->reg_w, q->first_empty);
4755 _ipw_read32(priv, 0x90);
4756
4757 return 0;
4758}
4759
Jeff Garzikbf794512005-07-31 13:07:26 -04004760/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004761 * Rx theory of operation
4762 *
4763 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004764 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004765 * 0 to 31
4766 *
4767 * Rx Queue Indexes
4768 * The host/firmware share two index registers for managing the Rx buffers.
4769 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004770 * The READ index maps to the first position that the firmware may be writing
4771 * to -- the driver can read up to (but not including) this position and get
4772 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004773 * The READ index is managed by the firmware once the card is enabled.
4774 *
4775 * The WRITE index maps to the last position the driver has read from -- the
4776 * position preceding WRITE is the last slot the firmware can place a packet.
4777 *
4778 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004779 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004780 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004781 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004782 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4783 *
4784 * When the firmware places a packet in a buffer it will advance the READ index
4785 * and fire the RX interrupt. The driver can then query the READ index and
4786 * process as many packets as possible, moving the WRITE index forward as it
4787 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004788 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004789 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004790 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004791 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004792 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004793 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4794 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4795 * 'processed' and 'read' driver indexes as well)
4796 * + A received packet is processed and handed to the kernel network stack,
4797 * detached from the ipw->rxq. The driver 'processed' index is updated.
4798 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004799 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4800 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004801 * were enough free buffers and RX_STALLED is set it is cleared.
4802 *
4803 *
4804 * Driver sequence:
4805 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004806 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004807 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4808 * ipw_rx_queue_restock
4809 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4810 * queue, updates firmware pointers, and updates
4811 * the WRITE index. If insufficient rx_free buffers
4812 * are available, schedules ipw_rx_queue_replenish
4813 *
4814 * -- enable interrupts --
4815 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004816 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004817 * Moves the packet buffer from queue to rx_used.
4818 * Calls ipw_rx_queue_restock to refill any empty
4819 * slots.
4820 * ...
4821 *
4822 */
4823
Jeff Garzikbf794512005-07-31 13:07:26 -04004824/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004825 * If there are slots in the RX queue that need to be restocked,
4826 * and we have free pre-allocated buffers, fill the ranks as much
4827 * as we can pulling from rx_free.
4828 *
4829 * This moves the 'write' index forward to catch up with 'processed', and
4830 * also updates the memory address in the firmware to reference the new
4831 * target buffer.
4832 */
4833static void ipw_rx_queue_restock(struct ipw_priv *priv)
4834{
4835 struct ipw_rx_queue *rxq = priv->rxq;
4836 struct list_head *element;
4837 struct ipw_rx_mem_buffer *rxb;
4838 unsigned long flags;
4839 int write;
4840
4841 spin_lock_irqsave(&rxq->lock, flags);
4842 write = rxq->write;
4843 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4844 element = rxq->rx_free.next;
4845 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4846 list_del(element);
4847
James Ketrenosb095c382005-08-24 22:04:42 -05004848 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004849 rxb->dma_addr);
4850 rxq->queue[rxq->write] = rxb;
4851 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4852 rxq->free_count--;
4853 }
4854 spin_unlock_irqrestore(&rxq->lock, flags);
4855
Jeff Garzikbf794512005-07-31 13:07:26 -04004856 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004857 * refill it */
4858 if (rxq->free_count <= RX_LOW_WATERMARK)
4859 queue_work(priv->workqueue, &priv->rx_replenish);
4860
4861 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004862 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004863 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004864}
4865
4866/*
4867 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004868 * Also restock the Rx queue via ipw_rx_queue_restock.
4869 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004870 * This is called as a scheduled work item (except for during intialization)
4871 */
4872static void ipw_rx_queue_replenish(void *data)
4873{
4874 struct ipw_priv *priv = data;
4875 struct ipw_rx_queue *rxq = priv->rxq;
4876 struct list_head *element;
4877 struct ipw_rx_mem_buffer *rxb;
4878 unsigned long flags;
4879
4880 spin_lock_irqsave(&rxq->lock, flags);
4881 while (!list_empty(&rxq->rx_used)) {
4882 element = rxq->rx_used.next;
4883 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004884 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004885 if (!rxb->skb) {
4886 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4887 priv->net_dev->name);
4888 /* We don't reschedule replenish work here -- we will
4889 * call the restock method and if it still needs
4890 * more buffers it will schedule replenish */
4891 break;
4892 }
4893 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004894
James Ketrenos43f66a62005-03-25 12:31:53 -06004895 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004896 rxb->dma_addr =
4897 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004898 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004899
James Ketrenos43f66a62005-03-25 12:31:53 -06004900 list_add_tail(&rxb->list, &rxq->rx_free);
4901 rxq->free_count++;
4902 }
4903 spin_unlock_irqrestore(&rxq->lock, flags);
4904
4905 ipw_rx_queue_restock(priv);
4906}
4907
James Ketrenosc848d0a2005-08-24 21:56:24 -05004908static void ipw_bg_rx_queue_replenish(void *data)
4909{
4910 struct ipw_priv *priv = data;
4911 down(&priv->sem);
4912 ipw_rx_queue_replenish(data);
4913 up(&priv->sem);
4914}
4915
James Ketrenos43f66a62005-03-25 12:31:53 -06004916/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4917 * If an SKB has been detached, the POOL needs to have it's SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004918 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004919 * non NULL it is unmapped and freed
4920 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004921static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004922{
4923 int i;
4924
4925 if (!rxq)
4926 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004927
James Ketrenos43f66a62005-03-25 12:31:53 -06004928 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4929 if (rxq->pool[i].skb != NULL) {
4930 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004931 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004932 dev_kfree_skb(rxq->pool[i].skb);
4933 }
4934 }
4935
4936 kfree(rxq);
4937}
4938
4939static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4940{
4941 struct ipw_rx_queue *rxq;
4942 int i;
4943
4944 rxq = (struct ipw_rx_queue *)kmalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004945 if (unlikely(!rxq)) {
4946 IPW_ERROR("memory allocation failed\n");
4947 return NULL;
4948 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004949 memset(rxq, 0, sizeof(*rxq));
4950 spin_lock_init(&rxq->lock);
4951 INIT_LIST_HEAD(&rxq->rx_free);
4952 INIT_LIST_HEAD(&rxq->rx_used);
4953
4954 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004955 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004956 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4957
4958 /* Set us so that we have processed and used all buffers, but have
4959 * not restocked the Rx queue with fresh buffers */
4960 rxq->read = rxq->write = 0;
4961 rxq->processed = RX_QUEUE_SIZE - 1;
4962 rxq->free_count = 0;
4963
4964 return rxq;
4965}
4966
4967static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4968{
4969 rate &= ~IEEE80211_BASIC_RATE_MASK;
4970 if (ieee_mode == IEEE_A) {
4971 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004972 case IEEE80211_OFDM_RATE_6MB:
4973 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004974 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004975 case IEEE80211_OFDM_RATE_9MB:
4976 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004977 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004978 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004979 return priv->
4980 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004981 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004982 return priv->
4983 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004984 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004985 return priv->
4986 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004987 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004988 return priv->
4989 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004990 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004991 return priv->
4992 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004993 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004994 return priv->
4995 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004996 default:
4997 return 0;
4998 }
4999 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005000
James Ketrenos43f66a62005-03-25 12:31:53 -06005001 /* B and G mixed */
5002 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005003 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005004 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005005 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005006 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005007 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005008 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005009 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005010 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
5011 }
5012
5013 /* If we are limited to B modulations, bail at this point */
5014 if (ieee_mode == IEEE_B)
5015 return 0;
5016
5017 /* G */
5018 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04005019 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005020 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005021 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005022 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005023 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005024 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005025 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005026 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005027 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005028 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005029 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005030 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005031 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005032 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005033 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06005034 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
5035 }
5036
5037 return 0;
5038}
5039
Jeff Garzikbf794512005-07-31 13:07:26 -04005040static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005041 const struct ieee80211_network *network,
5042 struct ipw_supported_rates *rates)
5043{
5044 int num_rates, i;
5045
5046 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005047 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005048 rates->num_rates = 0;
5049 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005050 if (!ipw_is_rate_in_mask(priv, network->mode,
5051 network->rates[i])) {
5052
James Ketrenosea2b26e2005-08-24 21:25:16 -05005053 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005054 IPW_DEBUG_SCAN("Adding masked mandatory "
5055 "rate %02X\n",
5056 network->rates[i]);
5057 rates->supported_rates[rates->num_rates++] =
5058 network->rates[i];
5059 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005060 }
5061
James Ketrenos43f66a62005-03-25 12:31:53 -06005062 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5063 network->rates[i], priv->rates_mask);
5064 continue;
5065 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005066
James Ketrenos43f66a62005-03-25 12:31:53 -06005067 rates->supported_rates[rates->num_rates++] = network->rates[i];
5068 }
5069
James Ketrenosa613bff2005-08-24 21:43:11 -05005070 num_rates = min(network->rates_ex_len,
5071 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005072 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005073 if (!ipw_is_rate_in_mask(priv, network->mode,
5074 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005075 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005076 IPW_DEBUG_SCAN("Adding masked mandatory "
5077 "rate %02X\n",
5078 network->rates_ex[i]);
5079 rates->supported_rates[rates->num_rates++] =
5080 network->rates[i];
5081 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005082 }
5083
James Ketrenos43f66a62005-03-25 12:31:53 -06005084 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5085 network->rates_ex[i], priv->rates_mask);
5086 continue;
5087 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005088
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005089 rates->supported_rates[rates->num_rates++] =
5090 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005091 }
5092
James Ketrenosea2b26e2005-08-24 21:25:16 -05005093 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005094}
5095
5096static inline void ipw_copy_rates(struct ipw_supported_rates *dest,
5097 const struct ipw_supported_rates *src)
5098{
5099 u8 i;
5100 for (i = 0; i < src->num_rates; i++)
5101 dest->supported_rates[i] = src->supported_rates[i];
5102 dest->num_rates = src->num_rates;
5103}
5104
5105/* TODO: Look at sniffed packets in the air to determine if the basic rate
5106 * mask should ever be used -- right now all callers to add the scan rates are
5107 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5108static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005109 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005110{
Jeff Garzikbf794512005-07-31 13:07:26 -04005111 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005112 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005113
James Ketrenos43f66a62005-03-25 12:31:53 -06005114 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005115 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005116 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005117
5118 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005119 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005120 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005121
5122 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005123 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005124 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005125
5126 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005127 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005128 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005129}
5130
5131static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005132 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005133{
Jeff Garzikbf794512005-07-31 13:07:26 -04005134 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005135 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005136
5137 if (rate_mask & IEEE80211_OFDM_RATE_6MB_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_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005140
5141 if (rate_mask & IEEE80211_OFDM_RATE_9MB_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_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005144
5145 if (rate_mask & IEEE80211_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005146 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005147 IEEE80211_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005148
5149 if (rate_mask & IEEE80211_OFDM_RATE_18MB_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_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005152
5153 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005154 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005155 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005156
5157 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005158 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005159 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005160
5161 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005162 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005163 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005164
5165 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005166 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005167 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005168}
5169
5170struct ipw_network_match {
5171 struct ieee80211_network *network;
5172 struct ipw_supported_rates rates;
5173};
5174
James Ketrenosc848d0a2005-08-24 21:56:24 -05005175static int ipw_find_adhoc_network(struct ipw_priv *priv,
5176 struct ipw_network_match *match,
5177 struct ieee80211_network *network,
5178 int roaming)
5179{
5180 struct ipw_supported_rates rates;
5181
5182 /* Verify that this network's capability is compatible with the
5183 * current mode (AdHoc or Infrastructure) */
5184 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5185 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5186 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5187 "capability mismatch.\n",
5188 escape_essid(network->ssid, network->ssid_len),
5189 MAC_ARG(network->bssid));
5190 return 0;
5191 }
5192
5193 /* If we do not have an ESSID for this AP, we can not associate with
5194 * it */
5195 if (network->flags & NETWORK_EMPTY_ESSID) {
5196 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5197 "because of hidden ESSID.\n",
5198 escape_essid(network->ssid, network->ssid_len),
5199 MAC_ARG(network->bssid));
5200 return 0;
5201 }
5202
5203 if (unlikely(roaming)) {
5204 /* If we are roaming, then ensure check if this is a valid
5205 * network to try and roam to */
5206 if ((network->ssid_len != match->network->ssid_len) ||
5207 memcmp(network->ssid, match->network->ssid,
5208 network->ssid_len)) {
5209 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5210 "because of non-network ESSID.\n",
5211 escape_essid(network->ssid,
5212 network->ssid_len),
5213 MAC_ARG(network->bssid));
5214 return 0;
5215 }
5216 } else {
5217 /* If an ESSID has been configured then compare the broadcast
5218 * ESSID to ours */
5219 if ((priv->config & CFG_STATIC_ESSID) &&
5220 ((network->ssid_len != priv->essid_len) ||
5221 memcmp(network->ssid, priv->essid,
5222 min(network->ssid_len, priv->essid_len)))) {
5223 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005224
James Ketrenosc848d0a2005-08-24 21:56:24 -05005225 strncpy(escaped,
5226 escape_essid(network->ssid, network->ssid_len),
5227 sizeof(escaped));
5228 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5229 "because of ESSID mismatch: '%s'.\n",
5230 escaped, MAC_ARG(network->bssid),
5231 escape_essid(priv->essid,
5232 priv->essid_len));
5233 return 0;
5234 }
5235 }
5236
5237 /* If the old network rate is better than this one, don't bother
5238 * testing everything else. */
5239
5240 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005241 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5242 "current network.\n",
5243 escape_essid(match->network->ssid,
5244 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005245 return 0;
5246 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005247 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5248 "current network.\n",
5249 escape_essid(match->network->ssid,
5250 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005251 return 0;
5252 }
5253
5254 /* Now go through and see if the requested network is valid... */
5255 if (priv->ieee->scan_age != 0 &&
5256 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5257 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5258 "because of age: %lums.\n",
5259 escape_essid(network->ssid, network->ssid_len),
5260 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005261 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005262 return 0;
5263 }
5264
5265 if ((priv->config & CFG_STATIC_CHANNEL) &&
5266 (network->channel != priv->channel)) {
5267 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5268 "because of channel mismatch: %d != %d.\n",
5269 escape_essid(network->ssid, network->ssid_len),
5270 MAC_ARG(network->bssid),
5271 network->channel, priv->channel);
5272 return 0;
5273 }
5274
5275 /* Verify privacy compatability */
5276 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5277 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5278 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5279 "because of privacy mismatch: %s != %s.\n",
5280 escape_essid(network->ssid, network->ssid_len),
5281 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005282 priv->
5283 capability & CAP_PRIVACY_ON ? "on" : "off",
5284 network->
5285 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5286 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005287 return 0;
5288 }
5289
5290 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5291 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5292 "because of the same BSSID match: " MAC_FMT
5293 ".\n", escape_essid(network->ssid,
5294 network->ssid_len),
5295 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5296 return 0;
5297 }
5298
5299 /* Filter out any incompatible freq / mode combinations */
5300 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5301 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5302 "because of invalid frequency/mode "
5303 "combination.\n",
5304 escape_essid(network->ssid, network->ssid_len),
5305 MAC_ARG(network->bssid));
5306 return 0;
5307 }
5308
5309 /* Ensure that the rates supported by the driver are compatible with
5310 * this AP, including verification of basic rates (mandatory) */
5311 if (!ipw_compatible_rates(priv, network, &rates)) {
5312 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5313 "because configured rate mask excludes "
5314 "AP mandatory rate.\n",
5315 escape_essid(network->ssid, network->ssid_len),
5316 MAC_ARG(network->bssid));
5317 return 0;
5318 }
5319
5320 if (rates.num_rates == 0) {
5321 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5322 "because of no compatible rates.\n",
5323 escape_essid(network->ssid, network->ssid_len),
5324 MAC_ARG(network->bssid));
5325 return 0;
5326 }
5327
5328 /* TODO: Perform any further minimal comparititive tests. We do not
5329 * want to put too much policy logic here; intelligent scan selection
5330 * should occur within a generic IEEE 802.11 user space tool. */
5331
5332 /* Set up 'new' AP to this network */
5333 ipw_copy_rates(&match->rates, &rates);
5334 match->network = network;
5335 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5336 escape_essid(network->ssid, network->ssid_len),
5337 MAC_ARG(network->bssid));
5338
5339 return 1;
5340}
5341
5342static void ipw_merge_adhoc_network(void *data)
5343{
5344 struct ipw_priv *priv = data;
5345 struct ieee80211_network *network = NULL;
5346 struct ipw_network_match match = {
5347 .network = priv->assoc_network
5348 };
5349
James Ketrenosafbf30a2005-08-25 00:05:33 -05005350 if ((priv->status & STATUS_ASSOCIATED) &&
5351 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005352 /* First pass through ROAM process -- look for a better
5353 * network */
5354 unsigned long flags;
5355
5356 spin_lock_irqsave(&priv->ieee->lock, flags);
5357 list_for_each_entry(network, &priv->ieee->network_list, list) {
5358 if (network != priv->assoc_network)
5359 ipw_find_adhoc_network(priv, &match, network,
5360 1);
5361 }
5362 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5363
5364 if (match.network == priv->assoc_network) {
5365 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5366 "merge to.\n");
5367 return;
5368 }
5369
5370 down(&priv->sem);
5371 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5372 IPW_DEBUG_MERGE("remove network %s\n",
5373 escape_essid(priv->essid,
5374 priv->essid_len));
5375 ipw_remove_current_network(priv);
5376 }
5377
5378 ipw_disassociate(priv);
5379 priv->assoc_network = match.network;
5380 up(&priv->sem);
5381 return;
5382 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005383}
5384
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005385static int ipw_best_network(struct ipw_priv *priv,
5386 struct ipw_network_match *match,
5387 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005388{
5389 struct ipw_supported_rates rates;
5390
5391 /* Verify that this network's capability is compatible with the
5392 * current mode (AdHoc or Infrastructure) */
5393 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005394 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005395 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5396 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5397 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005398 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005399 escape_essid(network->ssid, network->ssid_len),
5400 MAC_ARG(network->bssid));
5401 return 0;
5402 }
5403
5404 /* If we do not have an ESSID for this AP, we can not associate with
5405 * it */
5406 if (network->flags & NETWORK_EMPTY_ESSID) {
5407 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5408 "because of hidden ESSID.\n",
5409 escape_essid(network->ssid, network->ssid_len),
5410 MAC_ARG(network->bssid));
5411 return 0;
5412 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005413
James Ketrenos43f66a62005-03-25 12:31:53 -06005414 if (unlikely(roaming)) {
5415 /* If we are roaming, then ensure check if this is a valid
5416 * network to try and roam to */
5417 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005418 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005419 network->ssid_len)) {
5420 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5421 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005422 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005423 network->ssid_len),
5424 MAC_ARG(network->bssid));
5425 return 0;
5426 }
5427 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005428 /* If an ESSID has been configured then compare the broadcast
5429 * ESSID to ours */
5430 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005431 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005432 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005433 min(network->ssid_len, priv->essid_len)))) {
5434 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -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 "
Jeff Garzikbf794512005-07-31 13:07:26 -04005439 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005440 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005441 escape_essid(priv->essid,
5442 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005443 return 0;
5444 }
5445 }
5446
5447 /* If the old network rate is better than this one, don't bother
5448 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005449 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005450 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005451 strncpy(escaped,
5452 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005453 sizeof(escaped));
5454 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5455 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5456 escaped, MAC_ARG(network->bssid),
5457 escape_essid(match->network->ssid,
5458 match->network->ssid_len),
5459 MAC_ARG(match->network->bssid));
5460 return 0;
5461 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005462
James Ketrenos43f66a62005-03-25 12:31:53 -06005463 /* If this network has already had an association attempt within the
5464 * last 3 seconds, do not try and associate again... */
5465 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005466 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005467 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
James Ketrenosafbf30a2005-08-25 00:05:33 -05005468 "because of storming (%lus since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005469 "assoc attempt).\n",
5470 escape_essid(network->ssid, network->ssid_len),
5471 MAC_ARG(network->bssid),
5472 (jiffies - network->last_associate) / HZ);
5473 return 0;
5474 }
5475
5476 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005477 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005478 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005479 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5480 "because of age: %lums.\n",
5481 escape_essid(network->ssid, network->ssid_len),
5482 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005483 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06005484 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005485 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005486
Jeff Garzikbf794512005-07-31 13:07:26 -04005487 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005488 (network->channel != priv->channel)) {
5489 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5490 "because of channel mismatch: %d != %d.\n",
5491 escape_essid(network->ssid, network->ssid_len),
5492 MAC_ARG(network->bssid),
5493 network->channel, priv->channel);
5494 return 0;
5495 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005496
James Ketrenos43f66a62005-03-25 12:31:53 -06005497 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005498 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005499 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5500 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5501 "because of privacy mismatch: %s != %s.\n",
5502 escape_essid(network->ssid, network->ssid_len),
5503 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005504 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005505 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005506 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005507 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005508 return 0;
5509 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005510
Hong Liucdd1fa12005-08-31 18:14:27 +08005511 if (!priv->ieee->wpa_enabled && (network->wpa_ie_len > 0 ||
5512 network->rsn_ie_len > 0)) {
5513 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5514 "because of WPA capability mismatch.\n",
5515 escape_essid(network->ssid, network->ssid_len),
5516 MAC_ARG(network->bssid));
5517 return 0;
5518 }
5519
Jeff Garzikbf794512005-07-31 13:07:26 -04005520 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005521 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5522 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5523 "because of BSSID mismatch: " MAC_FMT ".\n",
5524 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005525 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005526 return 0;
5527 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005528
James Ketrenos43f66a62005-03-25 12:31:53 -06005529 /* Filter out any incompatible freq / mode combinations */
5530 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5531 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5532 "because of invalid frequency/mode "
5533 "combination.\n",
5534 escape_essid(network->ssid, network->ssid_len),
5535 MAC_ARG(network->bssid));
5536 return 0;
5537 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005538
Liu Hong1fe0adb2005-08-19 09:33:10 -05005539 /* Filter out invalid channel in current GEO */
5540 if (!ipw_is_valid_channel(priv->ieee, network->channel)) {
5541 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5542 "because of invalid channel in current GEO\n",
5543 escape_essid(network->ssid, network->ssid_len),
5544 MAC_ARG(network->bssid));
5545 return 0;
5546 }
5547
James Ketrenosea2b26e2005-08-24 21:25:16 -05005548 /* Ensure that the rates supported by the driver are compatible with
5549 * this AP, including verification of basic rates (mandatory) */
5550 if (!ipw_compatible_rates(priv, network, &rates)) {
5551 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5552 "because configured rate mask excludes "
5553 "AP mandatory rate.\n",
5554 escape_essid(network->ssid, network->ssid_len),
5555 MAC_ARG(network->bssid));
5556 return 0;
5557 }
5558
James Ketrenos43f66a62005-03-25 12:31:53 -06005559 if (rates.num_rates == 0) {
5560 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5561 "because of no compatible rates.\n",
5562 escape_essid(network->ssid, network->ssid_len),
5563 MAC_ARG(network->bssid));
5564 return 0;
5565 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005566
James Ketrenos43f66a62005-03-25 12:31:53 -06005567 /* TODO: Perform any further minimal comparititive tests. We do not
5568 * want to put too much policy logic here; intelligent scan selection
5569 * should occur within a generic IEEE 802.11 user space tool. */
5570
5571 /* Set up 'new' AP to this network */
5572 ipw_copy_rates(&match->rates, &rates);
5573 match->network = network;
5574
5575 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5576 escape_essid(network->ssid, network->ssid_len),
5577 MAC_ARG(network->bssid));
5578
5579 return 1;
5580}
5581
Jeff Garzikbf794512005-07-31 13:07:26 -04005582static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005583 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005584{
Liu Hong1fe0adb2005-08-19 09:33:10 -05005585 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005586 int i;
5587
James Ketrenos43f66a62005-03-25 12:31:53 -06005588 /*
5589 * For the purposes of scanning, we can set our wireless mode
5590 * to trigger scans across combinations of bands, but when it
5591 * comes to creating a new ad-hoc network, we have tell the FW
5592 * exactly which band to use.
5593 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005594 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005595 * chossen band. Attempting to create a new ad-hoc network
5596 * with an invalid channel for wireless mode will trigger a
5597 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005598 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005599 */
Liu Hong1fe0adb2005-08-19 09:33:10 -05005600 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005601 case IEEE80211_52GHZ_BAND:
5602 network->mode = IEEE_A;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005603 i = ipw_channel_to_index(priv->ieee, priv->channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005604 if (i == -1)
5605 BUG();
5606 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5607 IPW_WARNING("Overriding invalid channel\n");
5608 priv->channel = geo->a[0].channel;
5609 }
5610 break;
5611
5612 case IEEE80211_24GHZ_BAND:
5613 if (priv->ieee->mode & IEEE_G)
5614 network->mode = IEEE_G;
5615 else
5616 network->mode = IEEE_B;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005617 i = ipw_channel_to_index(priv->ieee, priv->channel);
5618 if (i == -1)
5619 BUG();
5620 if (geo->bg[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5621 IPW_WARNING("Overriding invalid channel\n");
5622 priv->channel = geo->bg[0].channel;
5623 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005624 break;
5625
5626 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005627 IPW_WARNING("Overriding invalid channel\n");
5628 if (priv->ieee->mode & IEEE_A) {
5629 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005630 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005631 } else if (priv->ieee->mode & IEEE_G) {
5632 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005633 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005634 } else {
5635 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005636 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005637 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005638 break;
5639 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005640
5641 network->channel = priv->channel;
5642 priv->config |= CFG_ADHOC_PERSIST;
5643 ipw_create_bssid(priv, network->bssid);
5644 network->ssid_len = priv->essid_len;
5645 memcpy(network->ssid, priv->essid, priv->essid_len);
5646 memset(&network->stats, 0, sizeof(network->stats));
5647 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005648 if (!(priv->config & CFG_PREAMBLE_LONG))
5649 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005650 if (priv->capability & CAP_PRIVACY_ON)
5651 network->capability |= WLAN_CAPABILITY_PRIVACY;
5652 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005653 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005654 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005655 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005656 &priv->rates.supported_rates[network->rates_len],
5657 network->rates_ex_len);
5658 network->last_scanned = 0;
5659 network->flags = 0;
5660 network->last_associate = 0;
5661 network->time_stamp[0] = 0;
5662 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005663 network->beacon_interval = 100; /* Default */
5664 network->listen_interval = 10; /* Default */
5665 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005666 network->wpa_ie_len = 0;
5667 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005668}
5669
James Ketrenosb095c382005-08-24 22:04:42 -05005670static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5671{
5672 struct ipw_tgi_tx_key *key;
5673 struct host_cmd cmd = {
5674 .cmd = IPW_CMD_TGI_TX_KEY,
5675 .len = sizeof(*key)
5676 };
5677
5678 if (!(priv->ieee->sec.flags & (1 << index)))
5679 return;
5680
5681 key = (struct ipw_tgi_tx_key *)&cmd.param;
5682 key->key_id = index;
5683 memcpy(key->key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5684 key->security_type = type;
5685 key->station_index = 0; /* always 0 for BSS */
5686 key->flags = 0;
5687 /* 0 for new key; previous value of counter (after fatal error) */
5688 key->tx_counter[0] = 0;
5689 key->tx_counter[1] = 0;
5690
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005691 ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05005692}
5693
5694static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005695{
5696 struct ipw_wep_key *key;
5697 int i;
5698 struct host_cmd cmd = {
5699 .cmd = IPW_CMD_WEP_KEY,
5700 .len = sizeof(*key)
5701 };
5702
5703 key = (struct ipw_wep_key *)&cmd.param;
5704 key->cmd_id = DINO_CMD_WEP_KEY;
5705 key->seq_num = 0;
5706
James Ketrenosb095c382005-08-24 22:04:42 -05005707 /* Note: AES keys cannot be set for multiple times.
5708 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005709 for (i = 0; i < 4; i++) {
James Ketrenosb095c382005-08-24 22:04:42 -05005710 key->key_index = i | type;
5711 if (!(priv->ieee->sec.flags & (1 << i))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005712 key->key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005713 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005714 }
5715
James Ketrenosb095c382005-08-24 22:04:42 -05005716 key->key_size = priv->ieee->sec.key_sizes[i];
5717 memcpy(key->key, priv->ieee->sec.keys[i], key->key_size);
5718
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005719 ipw_send_cmd(priv, &cmd);
Jeff Garzikbf794512005-07-31 13:07:26 -04005720 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005721}
5722
Zhu Yi1fbfea52005-08-05 17:22:56 +08005723static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5724{
5725 if (priv->ieee->host_encrypt)
5726 return;
5727
5728 switch (level) {
5729 case SEC_LEVEL_3:
5730 priv->sys_config.disable_unicast_decryption = 0;
5731 priv->ieee->host_decrypt = 0;
5732 break;
5733 case SEC_LEVEL_2:
5734 priv->sys_config.disable_unicast_decryption = 1;
5735 priv->ieee->host_decrypt = 1;
5736 break;
5737 case SEC_LEVEL_1:
5738 priv->sys_config.disable_unicast_decryption = 0;
5739 priv->ieee->host_decrypt = 0;
5740 break;
5741 case SEC_LEVEL_0:
5742 priv->sys_config.disable_unicast_decryption = 1;
5743 break;
5744 default:
5745 break;
5746 }
5747}
5748
5749static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5750{
5751 if (priv->ieee->host_encrypt)
5752 return;
5753
5754 switch (level) {
5755 case SEC_LEVEL_3:
5756 priv->sys_config.disable_multicast_decryption = 0;
5757 break;
5758 case SEC_LEVEL_2:
5759 priv->sys_config.disable_multicast_decryption = 1;
5760 break;
5761 case SEC_LEVEL_1:
5762 priv->sys_config.disable_multicast_decryption = 0;
5763 break;
5764 case SEC_LEVEL_0:
5765 priv->sys_config.disable_multicast_decryption = 1;
5766 break;
5767 default:
5768 break;
5769 }
5770}
5771
James Ketrenosb095c382005-08-24 22:04:42 -05005772static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5773{
5774 switch (priv->ieee->sec.level) {
5775 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005776 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5777 ipw_send_tgi_tx_key(priv,
5778 DCT_FLAG_EXT_SECURITY_CCM,
5779 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005780
Hong Liu567deaf2005-08-31 18:07:22 +08005781 if (!priv->ieee->host_mc_decrypt)
5782 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005783 break;
5784 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005785 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5786 ipw_send_tgi_tx_key(priv,
5787 DCT_FLAG_EXT_SECURITY_TKIP,
5788 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005789 break;
5790 case SEC_LEVEL_1:
5791 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenosb095c382005-08-24 22:04:42 -05005792 break;
5793 case SEC_LEVEL_0:
5794 default:
5795 break;
5796 }
5797}
5798
James Ketrenos43f66a62005-03-25 12:31:53 -06005799static void ipw_adhoc_check(void *data)
5800{
5801 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005802
James Ketrenosafbf30a2005-08-25 00:05:33 -05005803 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005804 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005805 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5806 IPW_DL_STATE | IPW_DL_ASSOC,
5807 "Missed beacon: %d - disassociate\n",
5808 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005809 ipw_remove_current_network(priv);
5810 ipw_disassociate(priv);
5811 return;
5812 }
5813
Jeff Garzikbf794512005-07-31 13:07:26 -04005814 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005815 priv->assoc_request.beacon_interval);
5816}
5817
James Ketrenosc848d0a2005-08-24 21:56:24 -05005818static void ipw_bg_adhoc_check(void *data)
5819{
5820 struct ipw_priv *priv = data;
5821 down(&priv->sem);
5822 ipw_adhoc_check(data);
5823 up(&priv->sem);
5824}
5825
James Ketrenos43f66a62005-03-25 12:31:53 -06005826#ifdef CONFIG_IPW_DEBUG
5827static void ipw_debug_config(struct ipw_priv *priv)
5828{
5829 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5830 "[CFG 0x%08X]\n", priv->config);
5831 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005832 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005833 else
5834 IPW_DEBUG_INFO("Channel unlocked.\n");
5835 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005836 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005837 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005838 else
5839 IPW_DEBUG_INFO("ESSID unlocked.\n");
5840 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005841 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5842 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005843 else
5844 IPW_DEBUG_INFO("BSSID unlocked.\n");
5845 if (priv->capability & CAP_PRIVACY_ON)
5846 IPW_DEBUG_INFO("PRIVACY on\n");
5847 else
5848 IPW_DEBUG_INFO("PRIVACY off\n");
5849 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5850}
5851#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005852#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005853#endif
5854
James Ketrenosb095c382005-08-24 22:04:42 -05005855static inline void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005856{
5857 /* TODO: Verify that this works... */
5858 struct ipw_fixed_rate fr = {
5859 .tx_rates = priv->rates_mask
5860 };
5861 u32 reg;
5862 u16 mask = 0;
5863
Jeff Garzikbf794512005-07-31 13:07:26 -04005864 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005865 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005866
James Ketrenos43f66a62005-03-25 12:31:53 -06005867 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005868 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005869 /* IEEE_A */
5870 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5871 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005872 IPW_DEBUG_WX
5873 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005874 fr.tx_rates = 0;
5875 break;
5876 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005877
James Ketrenos43f66a62005-03-25 12:31:53 -06005878 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5879 break;
5880
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005881 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005882 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005883 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005884 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5885 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005886 IPW_DEBUG_WX
5887 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005888 fr.tx_rates = 0;
5889 }
5890 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005891 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005892
5893 /* IEEE_G */
5894 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5895 IEEE80211_OFDM_RATES_MASK)) {
5896 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005897 IPW_DEBUG_WX
5898 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005899 fr.tx_rates = 0;
5900 break;
5901 }
5902
5903 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5904 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5905 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5906 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005907
James Ketrenos43f66a62005-03-25 12:31:53 -06005908 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5909 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5910 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5911 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005912
James Ketrenos43f66a62005-03-25 12:31:53 -06005913 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5914 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5915 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5916 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005917
James Ketrenos43f66a62005-03-25 12:31:53 -06005918 fr.tx_rates |= mask;
5919 break;
5920 }
5921
5922 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005923 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005924}
5925
James Ketrenosea2b26e2005-08-24 21:25:16 -05005926static void ipw_abort_scan(struct ipw_priv *priv)
5927{
5928 int err;
5929
5930 if (priv->status & STATUS_SCAN_ABORTING) {
5931 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5932 return;
5933 }
5934 priv->status |= STATUS_SCAN_ABORTING;
5935
5936 err = ipw_send_scan_abort(priv);
5937 if (err)
5938 IPW_DEBUG_HC("Request to abort scan failed.\n");
5939}
5940
James Ketrenosafbf30a2005-08-25 00:05:33 -05005941static void ipw_add_scan_channels(struct ipw_priv *priv,
5942 struct ipw_scan_request_ext *scan,
5943 int scan_type)
5944{
5945 int channel_index = 0;
5946 const struct ieee80211_geo *geo;
5947 int i;
5948
Liu Hong1fe0adb2005-08-19 09:33:10 -05005949 geo = ipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005950
5951 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5952 int start = channel_index;
5953 for (i = 0; i < geo->a_channels; i++) {
5954 if ((priv->status & STATUS_ASSOCIATED) &&
5955 geo->a[i].channel == priv->channel)
5956 continue;
5957 channel_index++;
5958 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05005959 ipw_set_scan_type(scan, channel_index,
5960 geo->a[i].
5961 flags & IEEE80211_CH_PASSIVE_ONLY ?
5962 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
5963 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005964 }
5965
5966 if (start != channel_index) {
5967 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5968 (channel_index - start);
5969 channel_index++;
5970 }
5971 }
5972
5973 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5974 int start = channel_index;
5975 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005976 int index;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005977 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5978 /* nop out the list */
5979 [0] = 0
5980 };
5981
5982 u8 channel;
5983 while (channel_index < IPW_SCAN_CHANNELS) {
5984 channel =
5985 priv->speed_scan[priv->speed_scan_pos];
5986 if (channel == 0) {
5987 priv->speed_scan_pos = 0;
5988 channel = priv->speed_scan[0];
5989 }
5990 if ((priv->status & STATUS_ASSOCIATED) &&
5991 channel == priv->channel) {
5992 priv->speed_scan_pos++;
5993 continue;
5994 }
5995
5996 /* If this channel has already been
5997 * added in scan, break from loop
5998 * and this will be the first channel
5999 * in the next scan.
6000 */
6001 if (channels[channel - 1] != 0)
6002 break;
6003
6004 channels[channel - 1] = 1;
6005 priv->speed_scan_pos++;
6006 channel_index++;
6007 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006008 index =
6009 ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006010 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006011 geo->bg[index].
6012 flags &
6013 IEEE80211_CH_PASSIVE_ONLY ?
6014 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6015 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006016 }
6017 } else {
6018 for (i = 0; i < geo->bg_channels; i++) {
6019 if ((priv->status & STATUS_ASSOCIATED) &&
6020 geo->bg[i].channel == priv->channel)
6021 continue;
6022 channel_index++;
6023 scan->channels_list[channel_index] =
6024 geo->bg[i].channel;
6025 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006026 geo->bg[i].
6027 flags &
6028 IEEE80211_CH_PASSIVE_ONLY ?
6029 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6030 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006031 }
6032 }
6033
6034 if (start != channel_index) {
6035 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6036 (channel_index - start);
6037 }
6038 }
6039}
6040
James Ketrenosea2b26e2005-08-24 21:25:16 -05006041static int ipw_request_scan(struct ipw_priv *priv)
6042{
6043 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006044 int err = 0, scan_type;
6045
6046 if (!(priv->status & STATUS_INIT) ||
6047 (priv->status & STATUS_EXIT_PENDING))
6048 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006049
James Ketrenosb095c382005-08-24 22:04:42 -05006050 down(&priv->sem);
6051
James Ketrenosea2b26e2005-08-24 21:25:16 -05006052 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05006053 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05006054 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006055 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006056 }
6057
James Ketrenosafbf30a2005-08-25 00:05:33 -05006058 if (!(priv->status & STATUS_SCAN_FORCED) &&
6059 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006060 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6061 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006062 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006063 }
6064
6065 if (priv->status & STATUS_RF_KILL_MASK) {
6066 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6067 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006068 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006069 }
6070
6071 memset(&scan, 0, sizeof(scan));
6072
James Ketrenosb095c382005-08-24 22:04:42 -05006073 if (priv->config & CFG_SPEED_SCAN)
6074 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6075 cpu_to_le16(30);
6076 else
6077 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
6078 cpu_to_le16(20);
6079
James Ketrenosa613bff2005-08-24 21:43:11 -05006080 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
6081 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05006082 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006083
James Ketrenosa613bff2005-08-24 21:43:11 -05006084 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006085
James Ketrenosb095c382005-08-24 22:04:42 -05006086#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006087 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006088 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006089 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006090
Liu Hong1fe0adb2005-08-19 09:33:10 -05006091 switch (ipw_is_valid_channel(priv->ieee, priv->channel)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006092 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006093 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006094 channel = priv->channel;
6095 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006096
James Ketrenosb095c382005-08-24 22:04:42 -05006097 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006098 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006099 channel = priv->channel;
6100 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006101
James Ketrenosb095c382005-08-24 22:04:42 -05006102 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006103 band = (u8) (IPW_B_MODE << 6) | 1;
6104 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006105 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006106 }
6107
James Ketrenosb095c382005-08-24 22:04:42 -05006108 scan.channels_list[0] = band;
6109 scan.channels_list[1] = channel;
6110 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006111
James Ketrenosb095c382005-08-24 22:04:42 -05006112 /* NOTE: The card will sit on this channel for this time
6113 * period. Scan aborts are timing sensitive and frequently
6114 * result in firmware restarts. As such, it is best to
6115 * set a small dwell_time here and just keep re-issuing
6116 * scans. Otherwise fast channel hopping will not actually
6117 * hop channels.
6118 *
6119 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006120 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6121 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006122 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006123#endif /* CONFIG_IPW2200_MONITOR */
6124 /* If we are roaming, then make this a directed scan for the
6125 * current network. Otherwise, ensure that every other scan
6126 * is a fast channel hop scan */
6127 if ((priv->status & STATUS_ROAMING)
6128 || (!(priv->status & STATUS_ASSOCIATED)
6129 && (priv->config & CFG_STATIC_ESSID)
6130 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006131 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6132 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006133 IPW_DEBUG_HC("Attempt to send SSID command "
6134 "failed.\n");
6135 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006136 }
6137
6138 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006139 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006140 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006141
James Ketrenosafbf30a2005-08-25 00:05:33 -05006142 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006143#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006144 }
6145#endif
6146
6147 err = ipw_send_scan_request_ext(priv, &scan);
6148 if (err) {
6149 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006150 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006151 }
6152
6153 priv->status |= STATUS_SCANNING;
6154 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006155 queue_delayed_work(priv->workqueue, &priv->scan_check,
6156 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05006157 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05006158 up(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05006159 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006160}
6161
6162static void ipw_bg_abort_scan(void *data)
6163{
6164 struct ipw_priv *priv = data;
6165 down(&priv->sem);
6166 ipw_abort_scan(data);
6167 up(&priv->sem);
6168}
6169
James Ketrenosafbf30a2005-08-25 00:05:33 -05006170#if WIRELESS_EXT < 18
6171/* Support for wpa_supplicant before WE-18, deprecated. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006172
6173/* following definitions must match definitions in driver_ipw.c */
6174
6175#define IPW_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
6176
6177#define IPW_CMD_SET_WPA_PARAM 1
6178#define IPW_CMD_SET_WPA_IE 2
6179#define IPW_CMD_SET_ENCRYPTION 3
6180#define IPW_CMD_MLME 4
6181
6182#define IPW_PARAM_WPA_ENABLED 1
6183#define IPW_PARAM_TKIP_COUNTERMEASURES 2
6184#define IPW_PARAM_DROP_UNENCRYPTED 3
6185#define IPW_PARAM_PRIVACY_INVOKED 4
6186#define IPW_PARAM_AUTH_ALGS 5
6187#define IPW_PARAM_IEEE_802_1X 6
6188
6189#define IPW_MLME_STA_DEAUTH 1
6190#define IPW_MLME_STA_DISASSOC 2
6191
6192#define IPW_CRYPT_ERR_UNKNOWN_ALG 2
6193#define IPW_CRYPT_ERR_UNKNOWN_ADDR 3
6194#define IPW_CRYPT_ERR_CRYPT_INIT_FAILED 4
6195#define IPW_CRYPT_ERR_KEY_SET_FAILED 5
6196#define IPW_CRYPT_ERR_TX_KEY_SET_FAILED 6
6197#define IPW_CRYPT_ERR_CARD_CONF_FAILED 7
6198
6199#define IPW_CRYPT_ALG_NAME_LEN 16
6200
6201struct ipw_param {
6202 u32 cmd;
6203 u8 sta_addr[ETH_ALEN];
6204 union {
6205 struct {
6206 u8 name;
6207 u32 value;
6208 } wpa_param;
6209 struct {
6210 u32 len;
James Ketrenosb095c382005-08-24 22:04:42 -05006211 u8 reserved[32];
6212 u8 data[0];
James Ketrenosea2b26e2005-08-24 21:25:16 -05006213 } wpa_ie;
6214 struct {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006215 u32 command;
6216 u32 reason_code;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006217 } mlme;
6218 struct {
6219 u8 alg[IPW_CRYPT_ALG_NAME_LEN];
6220 u8 set_tx;
6221 u32 err;
6222 u8 idx;
6223 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
6224 u16 key_len;
6225 u8 key[0];
6226 } crypt;
6227
6228 } u;
6229};
6230
6231/* end of driver_ipw.c code */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006232#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006233
6234static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6235{
James Ketrenosb095c382005-08-24 22:04:42 -05006236 /* This is called when wpa_supplicant loads and closes the driver
6237 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006238 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006239 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006240}
6241
James Ketrenosafbf30a2005-08-25 00:05:33 -05006242#if WIRELESS_EXT < 18
6243#define IW_AUTH_ALG_OPEN_SYSTEM 0x1
6244#define IW_AUTH_ALG_SHARED_KEY 0x2
6245#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006246
6247static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6248{
6249 struct ieee80211_device *ieee = priv->ieee;
6250 struct ieee80211_security sec = {
6251 .flags = SEC_AUTH_MODE,
6252 };
6253 int ret = 0;
6254
James Ketrenosafbf30a2005-08-25 00:05:33 -05006255 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006256 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6257 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006258 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006259 sec.auth_mode = WLAN_AUTH_OPEN;
6260 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006261 } else
6262 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006263
6264 if (ieee->set_security)
6265 ieee->set_security(ieee->dev, &sec);
6266 else
6267 ret = -EOPNOTSUPP;
6268
6269 return ret;
6270}
6271
James Ketrenosafbf30a2005-08-25 00:05:33 -05006272void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie, int wpa_ie_len)
6273{
6274 /* make sure WPA is enabled */
6275 ipw_wpa_enable(priv, 1);
6276
6277 ipw_disassociate(priv);
6278}
6279
6280static int ipw_set_rsn_capa(struct ipw_priv *priv,
6281 char *capabilities, int length)
6282{
6283 struct host_cmd cmd = {
6284 .cmd = IPW_CMD_RSN_CAPABILITIES,
6285 .len = length,
6286 };
6287
6288 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6289
6290 memcpy(cmd.param, capabilities, length);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05006291 return ipw_send_cmd(priv, &cmd);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006292}
6293
6294#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -05006295static int ipw_wpa_set_param(struct net_device *dev, u8 name, u32 value)
6296{
6297 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosa613bff2005-08-24 21:43:11 -05006298 struct ieee80211_crypt_data *crypt;
6299 unsigned long flags;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006300 int ret = 0;
6301
6302 switch (name) {
6303 case IPW_PARAM_WPA_ENABLED:
6304 ret = ipw_wpa_enable(priv, value);
6305 break;
6306
6307 case IPW_PARAM_TKIP_COUNTERMEASURES:
James Ketrenosa613bff2005-08-24 21:43:11 -05006308 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6309 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6310 IPW_WARNING("Can't set TKIP countermeasures: "
6311 "crypt not set!\n");
6312 break;
6313 }
6314
6315 flags = crypt->ops->get_flags(crypt->priv);
6316
6317 if (value)
6318 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6319 else
6320 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6321
6322 crypt->ops->set_flags(flags, crypt->priv);
6323
James Ketrenosea2b26e2005-08-24 21:25:16 -05006324 break;
6325
James Ketrenosb095c382005-08-24 22:04:42 -05006326 case IPW_PARAM_DROP_UNENCRYPTED:{
6327 /* HACK:
6328 *
6329 * wpa_supplicant calls set_wpa_enabled when the driver
6330 * is loaded and unloaded, regardless of if WPA is being
6331 * used. No other calls are made which can be used to
6332 * determine if encryption will be used or not prior to
6333 * association being expected. If encryption is not being
6334 * used, drop_unencrypted is set to false, else true -- we
6335 * can use this to determine if the CAP_PRIVACY_ON bit should
6336 * be set.
6337 */
6338 struct ieee80211_security sec = {
6339 .flags = SEC_ENABLED,
6340 .enabled = value,
6341 };
6342 priv->ieee->drop_unencrypted = value;
6343 /* We only change SEC_LEVEL for open mode. Others
6344 * are set by ipw_wpa_set_encryption.
6345 */
6346 if (!value) {
6347 sec.flags |= SEC_LEVEL;
6348 sec.level = SEC_LEVEL_0;
6349 } else {
6350 sec.flags |= SEC_LEVEL;
6351 sec.level = SEC_LEVEL_1;
6352 }
6353 if (priv->ieee->set_security)
6354 priv->ieee->set_security(priv->ieee->dev, &sec);
6355 break;
6356 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05006357
6358 case IPW_PARAM_PRIVACY_INVOKED:
6359 priv->ieee->privacy_invoked = value;
6360 break;
6361
6362 case IPW_PARAM_AUTH_ALGS:
6363 ret = ipw_wpa_set_auth_algs(priv, value);
6364 break;
6365
6366 case IPW_PARAM_IEEE_802_1X:
6367 priv->ieee->ieee802_1x = value;
6368 break;
6369
6370 default:
6371 IPW_ERROR("%s: Unknown WPA param: %d\n", dev->name, name);
6372 ret = -EOPNOTSUPP;
6373 }
6374
6375 return ret;
6376}
6377
6378static int ipw_wpa_mlme(struct net_device *dev, int command, int reason)
6379{
6380 struct ipw_priv *priv = ieee80211_priv(dev);
6381 int ret = 0;
6382
6383 switch (command) {
6384 case IPW_MLME_STA_DEAUTH:
6385 // silently ignore
6386 break;
6387
6388 case IPW_MLME_STA_DISASSOC:
6389 ipw_disassociate(priv);
6390 break;
6391
6392 default:
6393 IPW_ERROR("%s: Unknown MLME request: %d\n", dev->name, command);
6394 ret = -EOPNOTSUPP;
6395 }
6396
6397 return ret;
6398}
6399
Zhu Yi1fbfea52005-08-05 17:22:56 +08006400static int ipw_wpa_ie_cipher2level(u8 cipher)
6401{
6402 switch (cipher) {
6403 case 4: /* CCMP */
6404 return SEC_LEVEL_3;
6405 case 2: /* TKIP */
6406 return SEC_LEVEL_2;
6407 case 5: /* WEP104 */
6408 case 1: /* WEP40 */
6409 return SEC_LEVEL_1;
6410 case 0: /* NONE */
6411 return SEC_LEVEL_0;
6412 default:
6413 return -1;
6414 }
6415}
6416
James Ketrenosea2b26e2005-08-24 21:25:16 -05006417static int ipw_wpa_set_wpa_ie(struct net_device *dev,
6418 struct ipw_param *param, int plen)
6419{
6420 struct ipw_priv *priv = ieee80211_priv(dev);
6421 struct ieee80211_device *ieee = priv->ieee;
6422 u8 *buf;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006423 u8 *ptk, *gtk;
6424 int level;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006425
James Ketrenosea2b26e2005-08-24 21:25:16 -05006426 if (param->u.wpa_ie.len > MAX_WPA_IE_LEN ||
6427 (param->u.wpa_ie.len && param->u.wpa_ie.data == NULL))
6428 return -EINVAL;
6429
6430 if (param->u.wpa_ie.len) {
6431 buf = kmalloc(param->u.wpa_ie.len, GFP_KERNEL);
6432 if (buf == NULL)
6433 return -ENOMEM;
6434
6435 memcpy(buf, param->u.wpa_ie.data, param->u.wpa_ie.len);
6436 kfree(ieee->wpa_ie);
6437 ieee->wpa_ie = buf;
6438 ieee->wpa_ie_len = param->u.wpa_ie.len;
6439 } else {
6440 kfree(ieee->wpa_ie);
6441 ieee->wpa_ie = NULL;
6442 ieee->wpa_ie_len = 0;
Zhu Yi1fbfea52005-08-05 17:22:56 +08006443 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006444 }
6445
Zhu Yi1fbfea52005-08-05 17:22:56 +08006446 if (priv->ieee->host_encrypt)
6447 goto done;
6448
6449 /* HACK: Parse wpa_ie here to get pairwise suite, otherwise
6450 * we need to change driver_ipw.c from wpa_supplicant. This
6451 * is OK since -Dipw is deprecated. The -Dwext driver has a
6452 * clean way to handle this. */
6453 gtk = ptk = (u8 *) ieee->wpa_ie;
6454 if (ieee->wpa_ie[0] == 0x30) { /* RSN IE */
6455 gtk += 4 + 3;
6456 ptk += 4 + 4 + 2 + 3;
6457 } else { /* WPA IE */
6458 gtk += 8 + 3;
6459 ptk += 8 + 4 + 2 + 3;
6460 }
6461
6462 if (ptk - (u8 *) ieee->wpa_ie > ieee->wpa_ie_len)
6463 return -EINVAL;
6464
6465 level = ipw_wpa_ie_cipher2level(*gtk);
6466 ipw_set_hw_decrypt_multicast(priv, level);
6467
6468 level = ipw_wpa_ie_cipher2level(*ptk);
6469 ipw_set_hw_decrypt_unicast(priv, level);
6470
6471 done:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006472 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6473 return 0;
6474}
6475
6476/* implementation borrowed from hostap driver */
6477
6478static int ipw_wpa_set_encryption(struct net_device *dev,
6479 struct ipw_param *param, int param_len)
6480{
6481 int ret = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006482 int group_key = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006483 struct ipw_priv *priv = ieee80211_priv(dev);
6484 struct ieee80211_device *ieee = priv->ieee;
6485 struct ieee80211_crypto_ops *ops;
6486 struct ieee80211_crypt_data **crypt;
6487
6488 struct ieee80211_security sec = {
6489 .flags = 0,
6490 };
6491
6492 param->u.crypt.err = 0;
6493 param->u.crypt.alg[IPW_CRYPT_ALG_NAME_LEN - 1] = '\0';
6494
6495 if (param_len !=
6496 (int)((char *)param->u.crypt.key - (char *)param) +
6497 param->u.crypt.key_len) {
6498 IPW_DEBUG_INFO("Len mismatch %d, %d\n", param_len,
6499 param->u.crypt.key_len);
6500 return -EINVAL;
6501 }
6502 if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff &&
6503 param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff &&
6504 param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) {
6505 if (param->u.crypt.idx >= WEP_KEYS)
6506 return -EINVAL;
6507 crypt = &ieee->crypt[param->u.crypt.idx];
6508 } else {
6509 return -EINVAL;
6510 }
6511
Hong Liu567deaf2005-08-31 18:07:22 +08006512 if (param->u.crypt.idx != 0)
6513 group_key = 1;
6514
James Ketrenosafbf30a2005-08-25 00:05:33 -05006515 sec.flags |= SEC_ENABLED | SEC_ENCRYPT;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006516 if (strcmp(param->u.crypt.alg, "none") == 0) {
6517 if (crypt) {
6518 sec.enabled = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006519 sec.encrypt = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006520 sec.level = SEC_LEVEL_0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006521 sec.flags |= SEC_LEVEL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006522 ieee80211_crypt_delayed_deinit(ieee, crypt);
6523 }
6524 goto done;
6525 }
6526 sec.enabled = 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006527 sec.encrypt = 1;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006528
James Ketrenosb095c382005-08-24 22:04:42 -05006529 /* IPW HW cannot build TKIP MIC, host decryption still needed. */
Hong Liu567deaf2005-08-31 18:07:22 +08006530 if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
6531 if (group_key)
6532 ieee->host_mc_decrypt = 1;
6533 else
6534 ieee->host_encrypt_msdu = 1;
6535 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006536
Hong Liu567deaf2005-08-31 18:07:22 +08006537 /*if (!(ieee->host_encrypt || ieee->host_encrypt_msdu ||
6538 ieee->host_decrypt))
6539 goto skip_host_crypt; */
6540 if (group_key ? !ieee->host_mc_decrypt :
6541 !(ieee->host_encrypt || ieee->host_decrypt ||
6542 ieee->host_encrypt_msdu))
James Ketrenosb095c382005-08-24 22:04:42 -05006543 goto skip_host_crypt;
6544
James Ketrenosea2b26e2005-08-24 21:25:16 -05006545 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6546 if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) {
6547 request_module("ieee80211_crypt_wep");
6548 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6549 } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) {
6550 request_module("ieee80211_crypt_tkip");
6551 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6552 } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) {
6553 request_module("ieee80211_crypt_ccmp");
6554 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6555 }
6556 if (ops == NULL) {
6557 IPW_DEBUG_INFO("%s: unknown crypto alg '%s'\n",
6558 dev->name, param->u.crypt.alg);
6559 param->u.crypt.err = IPW_CRYPT_ERR_UNKNOWN_ALG;
6560 ret = -EINVAL;
6561 goto done;
6562 }
6563
6564 if (*crypt == NULL || (*crypt)->ops != ops) {
6565 struct ieee80211_crypt_data *new_crypt;
6566
6567 ieee80211_crypt_delayed_deinit(ieee, crypt);
6568
6569 new_crypt = (struct ieee80211_crypt_data *)
6570 kmalloc(sizeof(*new_crypt), GFP_KERNEL);
6571 if (new_crypt == NULL) {
6572 ret = -ENOMEM;
6573 goto done;
6574 }
6575 memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data));
6576 new_crypt->ops = ops;
6577 if (new_crypt->ops && try_module_get(new_crypt->ops->owner))
6578 new_crypt->priv =
6579 new_crypt->ops->init(param->u.crypt.idx);
6580
6581 if (new_crypt->priv == NULL) {
6582 kfree(new_crypt);
6583 param->u.crypt.err = IPW_CRYPT_ERR_CRYPT_INIT_FAILED;
6584 ret = -EINVAL;
6585 goto done;
6586 }
6587
6588 *crypt = new_crypt;
6589 }
6590
6591 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
6592 (*crypt)->ops->set_key(param->u.crypt.key,
6593 param->u.crypt.key_len, param->u.crypt.seq,
6594 (*crypt)->priv) < 0) {
6595 IPW_DEBUG_INFO("%s: key setting failed\n", dev->name);
6596 param->u.crypt.err = IPW_CRYPT_ERR_KEY_SET_FAILED;
6597 ret = -EINVAL;
6598 goto done;
6599 }
6600
James Ketrenosb095c382005-08-24 22:04:42 -05006601 skip_host_crypt:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006602 if (param->u.crypt.set_tx) {
6603 ieee->tx_keyidx = param->u.crypt.idx;
6604 sec.active_key = param->u.crypt.idx;
6605 sec.flags |= SEC_ACTIVE_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05006606 } else
6607 sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006608
James Ketrenosb095c382005-08-24 22:04:42 -05006609 if (param->u.crypt.alg != NULL) {
6610 memcpy(sec.keys[param->u.crypt.idx],
6611 param->u.crypt.key, param->u.crypt.key_len);
6612 sec.key_sizes[param->u.crypt.idx] = param->u.crypt.key_len;
6613 sec.flags |= (1 << param->u.crypt.idx);
6614
6615 if (strcmp(param->u.crypt.alg, "WEP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006616 sec.flags |= SEC_LEVEL;
6617 sec.level = SEC_LEVEL_1;
James Ketrenosb095c382005-08-24 22:04:42 -05006618 } else if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006619 sec.flags |= SEC_LEVEL;
6620 sec.level = SEC_LEVEL_2;
James Ketrenosb095c382005-08-24 22:04:42 -05006621 } else if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006622 sec.flags |= SEC_LEVEL;
6623 sec.level = SEC_LEVEL_3;
6624 }
Hong Liu567deaf2005-08-31 18:07:22 +08006625 /* Don't set sec level for group keys. */
6626 if (group_key)
6627 sec.flags &= ~SEC_LEVEL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006628 }
6629 done:
6630 if (ieee->set_security)
6631 ieee->set_security(ieee->dev, &sec);
6632
6633 /* Do not reset port if card is in Managed mode since resetting will
6634 * generate new IEEE 802.11 authentication which may end up in looping
6635 * with IEEE 802.1X. If your hardware requires a reset after WEP
6636 * configuration (for example... Prism2), implement the reset_port in
6637 * the callbacks structures used to initialize the 802.11 stack. */
6638 if (ieee->reset_on_keychange &&
6639 ieee->iw_mode != IW_MODE_INFRA &&
6640 ieee->reset_port && ieee->reset_port(dev)) {
6641 IPW_DEBUG_INFO("%s: reset_port failed\n", dev->name);
6642 param->u.crypt.err = IPW_CRYPT_ERR_CARD_CONF_FAILED;
6643 return -EINVAL;
6644 }
6645
6646 return ret;
6647}
6648
6649static int ipw_wpa_supplicant(struct net_device *dev, struct iw_point *p)
6650{
6651 struct ipw_param *param;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006652 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006653 int ret = 0;
6654
6655 IPW_DEBUG_INFO("wpa_supplicant: len=%d\n", p->length);
6656
6657 if (p->length < sizeof(struct ipw_param) || !p->pointer)
6658 return -EINVAL;
6659
6660 param = (struct ipw_param *)kmalloc(p->length, GFP_KERNEL);
6661 if (param == NULL)
6662 return -ENOMEM;
6663
6664 if (copy_from_user(param, p->pointer, p->length)) {
6665 kfree(param);
6666 return -EFAULT;
6667 }
6668
James Ketrenosafbf30a2005-08-25 00:05:33 -05006669 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006670 switch (param->cmd) {
6671
6672 case IPW_CMD_SET_WPA_PARAM:
6673 ret = ipw_wpa_set_param(dev, param->u.wpa_param.name,
6674 param->u.wpa_param.value);
6675 break;
6676
6677 case IPW_CMD_SET_WPA_IE:
6678 ret = ipw_wpa_set_wpa_ie(dev, param, p->length);
6679 break;
6680
6681 case IPW_CMD_SET_ENCRYPTION:
6682 ret = ipw_wpa_set_encryption(dev, param, p->length);
6683 break;
6684
6685 case IPW_CMD_MLME:
6686 ret = ipw_wpa_mlme(dev, param->u.mlme.command,
6687 param->u.mlme.reason_code);
6688 break;
6689
6690 default:
6691 IPW_ERROR("%s: Unknown WPA supplicant request: %d\n",
6692 dev->name, param->cmd);
6693 ret = -EOPNOTSUPP;
6694 }
6695
James Ketrenosafbf30a2005-08-25 00:05:33 -05006696 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006697 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
6698 ret = -EFAULT;
6699
6700 kfree(param);
6701 return ret;
6702}
James Ketrenosafbf30a2005-08-25 00:05:33 -05006703#else
6704/*
6705 * WE-18 support
6706 */
6707
6708/* SIOCSIWGENIE */
6709static int ipw_wx_set_genie(struct net_device *dev,
6710 struct iw_request_info *info,
6711 union iwreq_data *wrqu, char *extra)
6712{
6713 struct ipw_priv *priv = ieee80211_priv(dev);
6714 struct ieee80211_device *ieee = priv->ieee;
6715 u8 *buf;
6716 int err = 0;
6717
6718 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6719 (wrqu->data.length && extra == NULL))
6720 return -EINVAL;
6721
6722 //down(&priv->sem);
6723
6724 //if (!ieee->wpa_enabled) {
6725 // err = -EOPNOTSUPP;
6726 // goto out;
6727 //}
6728
6729 if (wrqu->data.length) {
6730 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6731 if (buf == NULL) {
6732 err = -ENOMEM;
6733 goto out;
6734 }
6735
6736 memcpy(buf, extra, wrqu->data.length);
6737 kfree(ieee->wpa_ie);
6738 ieee->wpa_ie = buf;
6739 ieee->wpa_ie_len = wrqu->data.length;
6740 } else {
6741 kfree(ieee->wpa_ie);
6742 ieee->wpa_ie = NULL;
6743 ieee->wpa_ie_len = 0;
6744 }
6745
6746 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6747 out:
6748 //up(&priv->sem);
6749 return err;
6750}
6751
6752/* SIOCGIWGENIE */
6753static int ipw_wx_get_genie(struct net_device *dev,
6754 struct iw_request_info *info,
6755 union iwreq_data *wrqu, char *extra)
6756{
6757 struct ipw_priv *priv = ieee80211_priv(dev);
6758 struct ieee80211_device *ieee = priv->ieee;
6759 int err = 0;
6760
6761 //down(&priv->sem);
6762
6763 //if (!ieee->wpa_enabled) {
6764 // err = -EOPNOTSUPP;
6765 // goto out;
6766 //}
6767
6768 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6769 wrqu->data.length = 0;
6770 goto out;
6771 }
6772
6773 if (wrqu->data.length < ieee->wpa_ie_len) {
6774 err = -E2BIG;
6775 goto out;
6776 }
6777
6778 wrqu->data.length = ieee->wpa_ie_len;
6779 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6780
6781 out:
6782 //up(&priv->sem);
6783 return err;
6784}
6785
Zhu Yi1fbfea52005-08-05 17:22:56 +08006786static int wext_cipher2level(int cipher)
6787{
6788 switch (cipher) {
6789 case IW_AUTH_CIPHER_NONE:
6790 return SEC_LEVEL_0;
6791 case IW_AUTH_CIPHER_WEP40:
6792 case IW_AUTH_CIPHER_WEP104:
6793 return SEC_LEVEL_1;
6794 case IW_AUTH_CIPHER_TKIP:
6795 return SEC_LEVEL_2;
6796 case IW_AUTH_CIPHER_CCMP:
6797 return SEC_LEVEL_3;
6798 default:
6799 return -1;
6800 }
6801}
6802
James Ketrenosafbf30a2005-08-25 00:05:33 -05006803/* SIOCSIWAUTH */
6804static int ipw_wx_set_auth(struct net_device *dev,
6805 struct iw_request_info *info,
6806 union iwreq_data *wrqu, char *extra)
6807{
6808 struct ipw_priv *priv = ieee80211_priv(dev);
6809 struct ieee80211_device *ieee = priv->ieee;
6810 struct iw_param *param = &wrqu->param;
6811 struct ieee80211_crypt_data *crypt;
6812 unsigned long flags;
6813 int ret = 0;
6814
6815 switch (param->flags & IW_AUTH_INDEX) {
6816 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006817 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006818 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006819 ipw_set_hw_decrypt_unicast(priv,
6820 wext_cipher2level(param->value));
6821 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006822 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006823 ipw_set_hw_decrypt_multicast(priv,
6824 wext_cipher2level(param->value));
6825 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006826 case IW_AUTH_KEY_MGMT:
6827 /*
6828 * ipw2200 does not use these parameters
6829 */
6830 break;
6831
6832 case IW_AUTH_TKIP_COUNTERMEASURES:
6833 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6834 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6835 IPW_WARNING("Can't set TKIP countermeasures: "
6836 "crypt not set!\n");
6837 break;
6838 }
6839
6840 flags = crypt->ops->get_flags(crypt->priv);
6841
6842 if (param->value)
6843 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6844 else
6845 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6846
6847 crypt->ops->set_flags(flags, crypt->priv);
6848
6849 break;
6850
6851 case IW_AUTH_DROP_UNENCRYPTED:{
6852 /* HACK:
6853 *
6854 * wpa_supplicant calls set_wpa_enabled when the driver
6855 * is loaded and unloaded, regardless of if WPA is being
6856 * used. No other calls are made which can be used to
6857 * determine if encryption will be used or not prior to
6858 * association being expected. If encryption is not being
6859 * used, drop_unencrypted is set to false, else true -- we
6860 * can use this to determine if the CAP_PRIVACY_ON bit should
6861 * be set.
6862 */
6863 struct ieee80211_security sec = {
6864 .flags = SEC_ENABLED,
6865 .enabled = param->value,
6866 };
6867 priv->ieee->drop_unencrypted = param->value;
6868 /* We only change SEC_LEVEL for open mode. Others
6869 * are set by ipw_wpa_set_encryption.
6870 */
6871 if (!param->value) {
6872 sec.flags |= SEC_LEVEL;
6873 sec.level = SEC_LEVEL_0;
6874 } else {
6875 sec.flags |= SEC_LEVEL;
6876 sec.level = SEC_LEVEL_1;
6877 }
6878 if (priv->ieee->set_security)
6879 priv->ieee->set_security(priv->ieee->dev, &sec);
6880 break;
6881 }
6882
6883 case IW_AUTH_80211_AUTH_ALG:
6884 ret = ipw_wpa_set_auth_algs(priv, param->value);
6885 break;
6886
6887 case IW_AUTH_WPA_ENABLED:
6888 ret = ipw_wpa_enable(priv, param->value);
6889 break;
6890
6891 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6892 ieee->ieee802_1x = param->value;
6893 break;
6894
6895 //case IW_AUTH_ROAMING_CONTROL:
6896 case IW_AUTH_PRIVACY_INVOKED:
6897 ieee->privacy_invoked = param->value;
6898 break;
6899
6900 default:
6901 return -EOPNOTSUPP;
6902 }
6903 return ret;
6904}
6905
6906/* SIOCGIWAUTH */
6907static int ipw_wx_get_auth(struct net_device *dev,
6908 struct iw_request_info *info,
6909 union iwreq_data *wrqu, char *extra)
6910{
6911 struct ipw_priv *priv = ieee80211_priv(dev);
6912 struct ieee80211_device *ieee = priv->ieee;
6913 struct ieee80211_crypt_data *crypt;
6914 struct iw_param *param = &wrqu->param;
6915 int ret = 0;
6916
6917 switch (param->flags & IW_AUTH_INDEX) {
6918 case IW_AUTH_WPA_VERSION:
6919 case IW_AUTH_CIPHER_PAIRWISE:
6920 case IW_AUTH_CIPHER_GROUP:
6921 case IW_AUTH_KEY_MGMT:
6922 /*
6923 * wpa_supplicant will control these internally
6924 */
6925 ret = -EOPNOTSUPP;
6926 break;
6927
6928 case IW_AUTH_TKIP_COUNTERMEASURES:
6929 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6930 if (!crypt || !crypt->ops->get_flags) {
6931 IPW_WARNING("Can't get TKIP countermeasures: "
6932 "crypt not set!\n");
6933 break;
6934 }
6935
6936 param->value = (crypt->ops->get_flags(crypt->priv) &
6937 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6938
6939 break;
6940
6941 case IW_AUTH_DROP_UNENCRYPTED:
6942 param->value = ieee->drop_unencrypted;
6943 break;
6944
6945 case IW_AUTH_80211_AUTH_ALG:
6946 param->value = ieee->sec.auth_mode;
6947 break;
6948
6949 case IW_AUTH_WPA_ENABLED:
6950 param->value = ieee->wpa_enabled;
6951 break;
6952
6953 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6954 param->value = ieee->ieee802_1x;
6955 break;
6956
6957 case IW_AUTH_ROAMING_CONTROL:
6958 case IW_AUTH_PRIVACY_INVOKED:
6959 param->value = ieee->privacy_invoked;
6960 break;
6961
6962 default:
6963 return -EOPNOTSUPP;
6964 }
6965 return 0;
6966}
6967
6968/* SIOCSIWENCODEEXT */
6969static int ipw_wx_set_encodeext(struct net_device *dev,
6970 struct iw_request_info *info,
6971 union iwreq_data *wrqu, char *extra)
6972{
6973 struct ipw_priv *priv = ieee80211_priv(dev);
6974 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6975
6976 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006977 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006978 /* IPW HW can't build TKIP MIC,
6979 host decryption still needed */
6980 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6981 priv->ieee->host_mc_decrypt = 1;
6982 else {
6983 priv->ieee->host_encrypt = 0;
6984 priv->ieee->host_encrypt_msdu = 1;
6985 priv->ieee->host_decrypt = 1;
6986 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006987 } else {
6988 priv->ieee->host_encrypt = 0;
6989 priv->ieee->host_encrypt_msdu = 0;
6990 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006991 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006992 }
6993 }
6994
6995 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6996}
6997
6998/* SIOCGIWENCODEEXT */
6999static int ipw_wx_get_encodeext(struct net_device *dev,
7000 struct iw_request_info *info,
7001 union iwreq_data *wrqu, char *extra)
7002{
7003 struct ipw_priv *priv = ieee80211_priv(dev);
7004 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
7005}
7006
7007/* SIOCSIWMLME */
7008static int ipw_wx_set_mlme(struct net_device *dev,
7009 struct iw_request_info *info,
7010 union iwreq_data *wrqu, char *extra)
7011{
7012 struct ipw_priv *priv = ieee80211_priv(dev);
7013 struct iw_mlme *mlme = (struct iw_mlme *)extra;
7014 u16 reason;
7015
7016 reason = cpu_to_le16(mlme->reason_code);
7017
7018 switch (mlme->cmd) {
7019 case IW_MLME_DEAUTH:
7020 // silently ignore
7021 break;
7022
7023 case IW_MLME_DISASSOC:
7024 ipw_disassociate(priv);
7025 break;
7026
7027 default:
7028 return -EOPNOTSUPP;
7029 }
7030 return 0;
7031}
7032#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05007033
James Ketrenosb095c382005-08-24 22:04:42 -05007034#ifdef CONFIG_IPW_QOS
7035
7036/* QoS */
7037/*
7038* get the modulation type of the current network or
7039* the card current mode
7040*/
7041u8 ipw_qos_current_mode(struct ipw_priv * priv)
7042{
7043 u8 mode = 0;
7044
7045 if (priv->status & STATUS_ASSOCIATED) {
7046 unsigned long flags;
7047
7048 spin_lock_irqsave(&priv->ieee->lock, flags);
7049 mode = priv->assoc_network->mode;
7050 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7051 } else {
7052 mode = priv->ieee->mode;
7053 }
7054 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
7055 return mode;
7056}
7057
7058/*
7059* Handle management frame beacon and probe response
7060*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05007061static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
7062 int active_network,
7063 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007064{
7065 u32 size = sizeof(struct ieee80211_qos_parameters);
7066
James Ketrenosafbf30a2005-08-25 00:05:33 -05007067 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05007068 network->qos_data.active = network->qos_data.supported;
7069
7070 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007071 if (active_network &&
7072 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05007073 network->qos_data.active = network->qos_data.supported;
7074
7075 if ((network->qos_data.active == 1) && (active_network == 1) &&
7076 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
7077 (network->qos_data.old_param_count !=
7078 network->qos_data.param_count)) {
7079 network->qos_data.old_param_count =
7080 network->qos_data.param_count;
7081 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007082 IPW_DEBUG_QOS("QoS parameters change call "
7083 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05007084 }
7085 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007086 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
7087 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007088 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007089 else
7090 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007091 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007092
James Ketrenosb095c382005-08-24 22:04:42 -05007093 if ((network->qos_data.active == 1) && (active_network == 1)) {
7094 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
7095 schedule_work(&priv->qos_activate);
7096 }
7097
7098 network->qos_data.active = 0;
7099 network->qos_data.supported = 0;
7100 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007101 if ((priv->status & STATUS_ASSOCIATED) &&
7102 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
7103 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
7104 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
7105 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05007106 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05007107 priv->assoc_network->ssid_len) &&
7108 !memcmp(network->ssid,
7109 priv->assoc_network->ssid,
7110 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05007111 queue_work(priv->workqueue,
7112 &priv->merge_networks);
7113 }
James Ketrenosb095c382005-08-24 22:04:42 -05007114 }
7115
7116 return 0;
7117}
7118
7119/*
7120* This function set up the firmware to support QoS. It sends
7121* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
7122*/
7123static int ipw_qos_activate(struct ipw_priv *priv,
7124 struct ieee80211_qos_data *qos_network_data)
7125{
7126 int err;
7127 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
7128 struct ieee80211_qos_parameters *active_one = NULL;
7129 u32 size = sizeof(struct ieee80211_qos_parameters);
7130 u32 burst_duration;
7131 int i;
7132 u8 type;
7133
7134 type = ipw_qos_current_mode(priv);
7135
7136 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
7137 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
7138 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
7139 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
7140
7141 if (qos_network_data == NULL) {
7142 if (type == IEEE_B) {
7143 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
7144 active_one = &def_parameters_CCK;
7145 } else
7146 active_one = &def_parameters_OFDM;
7147
James Ketrenosafbf30a2005-08-25 00:05:33 -05007148 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007149 burst_duration = ipw_qos_get_burst_duration(priv);
7150 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007151 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
7152 (u16) burst_duration;
7153 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05007154 if (type == IEEE_B) {
7155 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
7156 type);
7157 if (priv->qos_data.qos_enable == 0)
7158 active_one = &def_parameters_CCK;
7159 else
7160 active_one = priv->qos_data.def_qos_parm_CCK;
7161 } else {
7162 if (priv->qos_data.qos_enable == 0)
7163 active_one = &def_parameters_OFDM;
7164 else
7165 active_one = priv->qos_data.def_qos_parm_OFDM;
7166 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007167 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007168 } else {
7169 unsigned long flags;
7170 int active;
7171
7172 spin_lock_irqsave(&priv->ieee->lock, flags);
7173 active_one = &(qos_network_data->parameters);
7174 qos_network_data->old_param_count =
7175 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007176 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007177 active = qos_network_data->supported;
7178 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7179
7180 if (active == 0) {
7181 burst_duration = ipw_qos_get_burst_duration(priv);
7182 for (i = 0; i < QOS_QUEUE_NUM; i++)
7183 qos_parameters[QOS_PARAM_SET_ACTIVE].
7184 tx_op_limit[i] = (u16) burst_duration;
7185 }
7186 }
7187
7188 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05007189 err = ipw_send_qos_params_command(priv,
7190 (struct ieee80211_qos_parameters *)
7191 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05007192 if (err)
7193 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
7194
7195 return err;
7196}
7197
7198/*
7199* send IPW_CMD_WME_INFO to the firmware
7200*/
7201static int ipw_qos_set_info_element(struct ipw_priv *priv)
7202{
7203 int ret = 0;
7204 struct ieee80211_qos_information_element qos_info;
7205
7206 if (priv == NULL)
7207 return -1;
7208
7209 qos_info.elementID = QOS_ELEMENT_ID;
7210 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
7211
7212 qos_info.version = QOS_VERSION_1;
7213 qos_info.ac_info = 0;
7214
7215 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7216 qos_info.qui_type = QOS_OUI_TYPE;
7217 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7218
7219 ret = ipw_send_qos_info_command(priv, &qos_info);
7220 if (ret != 0) {
7221 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7222 }
7223 return ret;
7224}
7225
7226/*
7227* Set the QoS parameter with the association request structure
7228*/
7229static int ipw_qos_association(struct ipw_priv *priv,
7230 struct ieee80211_network *network)
7231{
7232 int err = 0;
7233 struct ieee80211_qos_data *qos_data = NULL;
7234 struct ieee80211_qos_data ibss_data = {
7235 .supported = 1,
7236 .active = 1,
7237 };
7238
7239 switch (priv->ieee->iw_mode) {
7240 case IW_MODE_ADHOC:
7241 if (!(network->capability & WLAN_CAPABILITY_IBSS))
7242 BUG();
7243
7244 qos_data = &ibss_data;
7245 break;
7246
7247 case IW_MODE_INFRA:
7248 qos_data = &network->qos_data;
7249 break;
7250
7251 default:
7252 BUG();
7253 break;
7254 }
7255
7256 err = ipw_qos_activate(priv, qos_data);
7257 if (err) {
7258 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7259 return err;
7260 }
7261
7262 if (priv->qos_data.qos_enable && qos_data->supported) {
7263 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7264 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7265 return ipw_qos_set_info_element(priv);
7266 }
7267
7268 return 0;
7269}
7270
7271/*
7272* handling the beaconing responces. if we get different QoS setting
7273* of the network from the the associated setting adjust the QoS
7274* setting
7275*/
7276static int ipw_qos_association_resp(struct ipw_priv *priv,
7277 struct ieee80211_network *network)
7278{
7279 int ret = 0;
7280 unsigned long flags;
7281 u32 size = sizeof(struct ieee80211_qos_parameters);
7282 int set_qos_param = 0;
7283
James Ketrenosafbf30a2005-08-25 00:05:33 -05007284 if ((priv == NULL) || (network == NULL) ||
7285 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007286 return ret;
7287
7288 if (!(priv->status & STATUS_ASSOCIATED))
7289 return ret;
7290
James Ketrenosafbf30a2005-08-25 00:05:33 -05007291 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007292 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007293
7294 spin_lock_irqsave(&priv->ieee->lock, flags);
7295 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007296 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05007297 sizeof(struct ieee80211_qos_data));
7298 priv->assoc_network->qos_data.active = 1;
7299 if ((network->qos_data.old_param_count !=
7300 network->qos_data.param_count)) {
7301 set_qos_param = 1;
7302 network->qos_data.old_param_count =
7303 network->qos_data.param_count;
7304 }
7305
7306 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007307 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7308 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007309 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007310 else
7311 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007312 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007313 priv->assoc_network->qos_data.active = 0;
7314 priv->assoc_network->qos_data.supported = 0;
7315 set_qos_param = 1;
7316 }
7317
7318 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7319
7320 if (set_qos_param == 1)
7321 schedule_work(&priv->qos_activate);
7322
7323 return ret;
7324}
7325
7326static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7327{
7328 u32 ret = 0;
7329
7330 if ((priv == NULL))
7331 return 0;
7332
James Ketrenosafbf30a2005-08-25 00:05:33 -05007333 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007334 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007335 else
James Ketrenosb095c382005-08-24 22:04:42 -05007336 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007337
James Ketrenosb095c382005-08-24 22:04:42 -05007338 return ret;
7339}
7340
7341/*
7342* Initialize the setting of QoS global
7343*/
7344static void ipw_qos_init(struct ipw_priv *priv, int enable,
7345 int burst_enable, u32 burst_duration_CCK,
7346 u32 burst_duration_OFDM)
7347{
7348 priv->qos_data.qos_enable = enable;
7349
7350 if (priv->qos_data.qos_enable) {
7351 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7352 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7353 IPW_DEBUG_QOS("QoS is enabled\n");
7354 } else {
7355 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7356 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7357 IPW_DEBUG_QOS("QoS is not enabled\n");
7358 }
7359
7360 priv->qos_data.burst_enable = burst_enable;
7361
7362 if (burst_enable) {
7363 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7364 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7365 } else {
7366 priv->qos_data.burst_duration_CCK = 0;
7367 priv->qos_data.burst_duration_OFDM = 0;
7368 }
7369}
7370
7371/*
7372* map the packet priority to the right TX Queue
7373*/
7374static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7375{
7376 if (priority > 7 || !priv->qos_data.qos_enable)
7377 priority = 0;
7378
7379 return from_priority_to_tx_queue[priority] - 1;
7380}
7381
7382/*
7383* add QoS parameter to the TX command
7384*/
7385static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7386 u16 priority,
7387 struct tfd_data *tfd, u8 unicast)
7388{
7389 int ret = 0;
7390 int tx_queue_id = 0;
7391 struct ieee80211_qos_data *qos_data = NULL;
7392 int active, supported;
7393 unsigned long flags;
7394
7395 if (!(priv->status & STATUS_ASSOCIATED))
7396 return 0;
7397
7398 qos_data = &priv->assoc_network->qos_data;
7399
7400 spin_lock_irqsave(&priv->ieee->lock, flags);
7401
7402 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7403 if (unicast == 0)
7404 qos_data->active = 0;
7405 else
7406 qos_data->active = qos_data->supported;
7407 }
7408
7409 active = qos_data->active;
7410 supported = qos_data->supported;
7411
7412 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7413
James Ketrenosafbf30a2005-08-25 00:05:33 -05007414 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7415 "unicast %d\n",
7416 priv->qos_data.qos_enable, active, supported, unicast);
James Ketrenosb095c382005-08-24 22:04:42 -05007417 if (active && priv->qos_data.qos_enable) {
7418 ret = from_priority_to_tx_queue[priority];
7419 tx_queue_id = ret - 1;
7420 IPW_DEBUG_QOS("QoS packet priority is %d \n", priority);
7421 if (priority <= 7) {
7422 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7423 tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
7424 tfd->tfd.tfd_26.mchdr.frame_ctl |=
7425 IEEE80211_STYPE_QOS_DATA;
7426
7427 if (priv->qos_data.qos_no_ack_mask &
7428 (1UL << tx_queue_id)) {
7429 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
7430 tfd->tfd.tfd_26.mchdr.qos_ctrl |=
7431 CTRL_QOS_NO_ACK;
7432 }
7433 }
7434 }
7435
7436 return ret;
7437}
7438
7439/*
7440* background support to run QoS activate functionality
7441*/
7442static void ipw_bg_qos_activate(void *data)
7443{
7444 struct ipw_priv *priv = data;
7445
7446 if (priv == NULL)
7447 return;
7448
7449 down(&priv->sem);
7450
7451 if (priv->status & STATUS_ASSOCIATED)
7452 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7453
7454 up(&priv->sem);
7455}
7456
James Ketrenos3b9990c2005-08-19 13:18:55 -05007457static int ipw_handle_probe_response(struct net_device *dev,
7458 struct ieee80211_probe_response *resp,
7459 struct ieee80211_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007460{
7461 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007462 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7463 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007464
James Ketrenos3b9990c2005-08-19 13:18:55 -05007465 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007466
James Ketrenos3b9990c2005-08-19 13:18:55 -05007467 return 0;
7468}
James Ketrenosb095c382005-08-24 22:04:42 -05007469
James Ketrenos3b9990c2005-08-19 13:18:55 -05007470static int ipw_handle_beacon(struct net_device *dev,
7471 struct ieee80211_beacon *resp,
7472 struct ieee80211_network *network)
7473{
7474 struct ipw_priv *priv = ieee80211_priv(dev);
7475 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7476 (network == priv->assoc_network));
7477
7478 ipw_qos_handle_probe_response(priv, active_network, network);
7479
7480 return 0;
7481}
7482
7483static int ipw_handle_assoc_response(struct net_device *dev,
7484 struct ieee80211_assoc_response *resp,
7485 struct ieee80211_network *network)
7486{
7487 struct ipw_priv *priv = ieee80211_priv(dev);
7488 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007489 return 0;
7490}
7491
7492static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
7493 *qos_param)
7494{
7495 struct host_cmd cmd = {
7496 .cmd = IPW_CMD_QOS_PARAMETERS,
7497 .len = (sizeof(struct ieee80211_qos_parameters) * 3)
7498 };
7499
James Ketrenosafbf30a2005-08-25 00:05:33 -05007500 memcpy(cmd.param, qos_param, sizeof(*qos_param) * 3);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007501 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007502}
7503
7504static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
7505 *qos_param)
7506{
7507 struct host_cmd cmd = {
7508 .cmd = IPW_CMD_WME_INFO,
7509 .len = sizeof(*qos_param)
7510 };
7511
James Ketrenosafbf30a2005-08-25 00:05:33 -05007512 memcpy(cmd.param, qos_param, sizeof(*qos_param));
James Ketrenos9ddf84f2005-08-16 17:07:11 -05007513 return ipw_send_cmd(priv, &cmd);
James Ketrenosb095c382005-08-24 22:04:42 -05007514}
7515
7516#endif /* CONFIG_IPW_QOS */
7517
James Ketrenos43f66a62005-03-25 12:31:53 -06007518static int ipw_associate_network(struct ipw_priv *priv,
7519 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007520 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007521{
7522 int err;
7523
7524 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007525 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007526
7527 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007528 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007529 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007530 memcpy(priv->essid, network->ssid, priv->essid_len);
7531 }
7532
7533 network->last_associate = jiffies;
7534
7535 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7536 priv->assoc_request.channel = network->channel;
7537 if ((priv->capability & CAP_PRIVACY_ON) &&
7538 (priv->capability & CAP_SHARED_KEY)) {
7539 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007540 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7541
7542 if ((priv->capability & CAP_PRIVACY_ON) &&
7543 (priv->ieee->sec.level == SEC_LEVEL_1) &&
7544 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
7545 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenos43f66a62005-03-25 12:31:53 -06007546 } else {
7547 priv->assoc_request.auth_type = AUTH_OPEN;
7548 priv->assoc_request.auth_key = 0;
7549 }
7550
James Ketrenosa613bff2005-08-24 21:43:11 -05007551 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007552 priv->assoc_request.policy_support = 0x02; /* RSN active */
7553 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7554 priv->ieee->wpa_ie_len);
7555 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05007556
Jeff Garzikbf794512005-07-31 13:07:26 -04007557 /*
7558 * It is valid for our ieee device to support multiple modes, but
7559 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007560 * just one mode.
7561 */
7562 if (network->mode & priv->ieee->mode & IEEE_A)
7563 priv->assoc_request.ieee_mode = IPW_A_MODE;
7564 else if (network->mode & priv->ieee->mode & IEEE_G)
7565 priv->assoc_request.ieee_mode = IPW_G_MODE;
7566 else if (network->mode & priv->ieee->mode & IEEE_B)
7567 priv->assoc_request.ieee_mode = IPW_B_MODE;
7568
James Ketrenosea2b26e2005-08-24 21:25:16 -05007569 priv->assoc_request.capability = network->capability;
7570 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7571 && !(priv->config & CFG_PREAMBLE_LONG)) {
7572 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7573 } else {
7574 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7575
7576 /* Clear the short preamble if we won't be supporting it */
7577 priv->assoc_request.capability &=
7578 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7579 }
7580
James Ketrenosafbf30a2005-08-25 00:05:33 -05007581 /* Clear capability bits that aren't used in Ad Hoc */
7582 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7583 priv->assoc_request.capability &=
7584 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7585
James Ketrenos43f66a62005-03-25 12:31:53 -06007586 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007587 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007588 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007589 escape_essid(priv->essid, priv->essid_len),
7590 network->channel,
7591 ipw_modes[priv->assoc_request.ieee_mode],
7592 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007593 (priv->assoc_request.preamble_length ==
7594 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7595 network->capability &
7596 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007597 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007598 priv->capability & CAP_PRIVACY_ON ?
7599 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007600 "(open)") : "",
7601 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007602 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007603 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007604 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007605
7606 priv->assoc_request.beacon_interval = network->beacon_interval;
7607 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007608 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007609 priv->assoc_request.assoc_type = HC_IBSS_START;
7610 priv->assoc_request.assoc_tsf_msw = 0;
7611 priv->assoc_request.assoc_tsf_lsw = 0;
7612 } else {
7613 if (unlikely(roaming))
7614 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7615 else
7616 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7617 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7618 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7619 }
7620
James Ketrenosafbf30a2005-08-25 00:05:33 -05007621 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007622
7623 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7624 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7625 priv->assoc_request.atim_window = network->atim_window;
7626 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007627 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007628 priv->assoc_request.atim_window = 0;
7629 }
7630
James Ketrenos43f66a62005-03-25 12:31:53 -06007631 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007632
James Ketrenos43f66a62005-03-25 12:31:53 -06007633 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7634 if (err) {
7635 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7636 return err;
7637 }
7638
7639 rates->ieee_mode = priv->assoc_request.ieee_mode;
7640 rates->purpose = IPW_RATE_CONNECT;
7641 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007642
James Ketrenos43f66a62005-03-25 12:31:53 -06007643 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7644 priv->sys_config.dot11g_auto_detection = 1;
7645 else
7646 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007647
7648 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7649 priv->sys_config.answer_broadcast_ssid_probe = 1;
7650 else
7651 priv->sys_config.answer_broadcast_ssid_probe = 0;
7652
James Ketrenos43f66a62005-03-25 12:31:53 -06007653 err = ipw_send_system_config(priv, &priv->sys_config);
7654 if (err) {
7655 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7656 return err;
7657 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007658
James Ketrenos43f66a62005-03-25 12:31:53 -06007659 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007660 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007661 if (err) {
7662 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7663 return err;
7664 }
7665
7666 /*
7667 * If preemption is enabled, it is possible for the association
7668 * to complete before we return from ipw_send_associate. Therefore
7669 * we have to be sure and update our priviate data first.
7670 */
7671 priv->channel = network->channel;
7672 memcpy(priv->bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007673
7674 priv->assoc_network = network;
7675
James Ketrenosb095c382005-08-24 22:04:42 -05007676#ifdef CONFIG_IPW_QOS
7677 ipw_qos_association(priv, network);
7678#endif
7679
James Ketrenos43f66a62005-03-25 12:31:53 -06007680 err = ipw_send_associate(priv, &priv->assoc_request);
7681 if (err) {
7682 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7683 return err;
7684 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007685
Hong Liu7b996592005-08-25 17:36:13 +08007686 priv->status |= STATUS_ASSOCIATING;
7687 priv->status &= ~STATUS_SECURITY_UPDATED;
7688
Jeff Garzikbf794512005-07-31 13:07:26 -04007689 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007690 escape_essid(priv->essid, priv->essid_len),
7691 MAC_ARG(priv->bssid));
7692
7693 return 0;
7694}
7695
7696static void ipw_roam(void *data)
7697{
7698 struct ipw_priv *priv = data;
7699 struct ieee80211_network *network = NULL;
7700 struct ipw_network_match match = {
7701 .network = priv->assoc_network
7702 };
7703
7704 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007705 *
7706 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007707 * setting the status ROAM bit and requesting a scan.
7708 * 2. When the scan completes, it schedules the ROAM work
7709 * 3. The ROAM work looks at all of the known networks for one that
7710 * is a better network than the currently associated. If none
7711 * found, the ROAM process is over (ROAM bit cleared)
7712 * 4. If a better network is found, a disassociation request is
7713 * sent.
7714 * 5. When the disassociation completes, the roam work is again
7715 * scheduled. The second time through, the driver is no longer
7716 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007717 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007718 * 6. At this point ,the roaming process is complete and the ROAM
7719 * status bit is cleared.
7720 */
7721
7722 /* If we are no longer associated, and the roaming bit is no longer
7723 * set, then we are not actively roaming, so just return */
7724 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7725 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007726
James Ketrenos43f66a62005-03-25 12:31:53 -06007727 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007728 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007729 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007730 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007731 u8 rssi = priv->assoc_network->stats.rssi;
7732 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007733 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007734 list_for_each_entry(network, &priv->ieee->network_list, list) {
7735 if (network != priv->assoc_network)
7736 ipw_best_network(priv, &match, network, 1);
7737 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007738 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007739 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007740
James Ketrenos43f66a62005-03-25 12:31:53 -06007741 if (match.network == priv->assoc_network) {
7742 IPW_DEBUG_ASSOC("No better APs in this network to "
7743 "roam to.\n");
7744 priv->status &= ~STATUS_ROAMING;
7745 ipw_debug_config(priv);
7746 return;
7747 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007748
James Ketrenos43f66a62005-03-25 12:31:53 -06007749 ipw_send_disassociate(priv, 1);
7750 priv->assoc_network = match.network;
7751
7752 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007753 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007754
7755 /* Second pass through ROAM process -- request association */
7756 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7757 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7758 priv->status &= ~STATUS_ROAMING;
7759}
7760
James Ketrenosc848d0a2005-08-24 21:56:24 -05007761static void ipw_bg_roam(void *data)
7762{
7763 struct ipw_priv *priv = data;
7764 down(&priv->sem);
7765 ipw_roam(data);
7766 up(&priv->sem);
7767}
7768
7769static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007770{
7771 struct ipw_priv *priv = data;
7772
7773 struct ieee80211_network *network = NULL;
7774 struct ipw_network_match match = {
7775 .network = NULL
7776 };
7777 struct ipw_supported_rates *rates;
7778 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007779 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007780
James Ketrenosb095c382005-08-24 22:04:42 -05007781 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7782 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7783 return 0;
7784 }
7785
James Ketrenosc848d0a2005-08-24 21:56:24 -05007786 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007787 IPW_DEBUG_ASSOC("Not attempting association (already in "
7788 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007789 return 0;
7790 }
7791
7792 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007793 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7794 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007795 return 0;
7796 }
7797
James Ketrenos43f66a62005-03-25 12:31:53 -06007798 if (!(priv->config & CFG_ASSOCIATE) &&
7799 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007800 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007801 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007802 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007803 }
7804
James Ketrenosa613bff2005-08-24 21:43:11 -05007805 /* Protect our use of the network_list */
7806 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007807 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007808 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007809
7810 network = match.network;
7811 rates = &match.rates;
7812
7813 if (network == NULL &&
7814 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7815 priv->config & CFG_ADHOC_CREATE &&
7816 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007817 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007818 !list_empty(&priv->ieee->network_free_list)) {
7819 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007820 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007821 ipw_adhoc_create(priv, network);
7822 rates = &priv->rates;
7823 list_del(element);
7824 list_add_tail(&network->list, &priv->ieee->network_list);
7825 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007826 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007827
James Ketrenos43f66a62005-03-25 12:31:53 -06007828 /* If we reached the end of the list, then we don't have any valid
7829 * matching APs */
7830 if (!network) {
7831 ipw_debug_config(priv);
7832
James Ketrenosb095c382005-08-24 22:04:42 -05007833 if (!(priv->status & STATUS_SCANNING)) {
7834 if (!(priv->config & CFG_SPEED_SCAN))
7835 queue_delayed_work(priv->workqueue,
7836 &priv->request_scan,
7837 SCAN_INTERVAL);
7838 else
7839 queue_work(priv->workqueue,
7840 &priv->request_scan);
7841 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007842
James Ketrenosc848d0a2005-08-24 21:56:24 -05007843 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007844 }
7845
7846 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007847
7848 return 1;
7849}
7850
7851static void ipw_bg_associate(void *data)
7852{
7853 struct ipw_priv *priv = data;
7854 down(&priv->sem);
7855 ipw_associate(data);
7856 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06007857}
Jeff Garzikbf794512005-07-31 13:07:26 -04007858
James Ketrenosb095c382005-08-24 22:04:42 -05007859static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7860 struct sk_buff *skb)
7861{
7862 struct ieee80211_hdr *hdr;
7863 u16 fc;
7864
7865 hdr = (struct ieee80211_hdr *)skb->data;
7866 fc = le16_to_cpu(hdr->frame_ctl);
7867 if (!(fc & IEEE80211_FCTL_PROTECTED))
7868 return;
7869
7870 fc &= ~IEEE80211_FCTL_PROTECTED;
7871 hdr->frame_ctl = cpu_to_le16(fc);
7872 switch (priv->ieee->sec.level) {
7873 case SEC_LEVEL_3:
7874 /* Remove CCMP HDR */
7875 memmove(skb->data + IEEE80211_3ADDR_LEN,
7876 skb->data + IEEE80211_3ADDR_LEN + 8,
7877 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yia2d73e62005-07-13 12:24:51 -05007878 if (fc & IEEE80211_FCTL_MOREFRAGS)
7879 skb_trim(skb, skb->len - 16); /* 2*MIC */
7880 else
7881 skb_trim(skb, skb->len - 8); /* MIC */
James Ketrenosb095c382005-08-24 22:04:42 -05007882 break;
7883 case SEC_LEVEL_2:
7884 break;
7885 case SEC_LEVEL_1:
7886 /* Remove IV */
7887 memmove(skb->data + IEEE80211_3ADDR_LEN,
7888 skb->data + IEEE80211_3ADDR_LEN + 4,
7889 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yia2d73e62005-07-13 12:24:51 -05007890 if (fc & IEEE80211_FCTL_MOREFRAGS)
7891 skb_trim(skb, skb->len - 8); /* 2*ICV */
7892 else
7893 skb_trim(skb, skb->len - 4); /* ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007894 break;
7895 case SEC_LEVEL_0:
7896 break;
7897 default:
7898 printk(KERN_ERR "Unknow security level %d\n",
7899 priv->ieee->sec.level);
7900 break;
7901 }
7902}
7903
7904static void ipw_handle_data_packet(struct ipw_priv *priv,
7905 struct ipw_rx_mem_buffer *rxb,
7906 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007907{
Hong Liu567deaf2005-08-31 18:07:22 +08007908 struct ieee80211_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007909 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7910
7911 /* We received data from the HW, so stop the watchdog */
7912 priv->net_dev->trans_start = jiffies;
7913
Jeff Garzikbf794512005-07-31 13:07:26 -04007914 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007915 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007916 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007917 skb_tailroom(rxb->skb))) {
7918 priv->ieee->stats.rx_errors++;
7919 priv->wstats.discard.misc++;
7920 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7921 return;
7922 } else if (unlikely(!netif_running(priv->net_dev))) {
7923 priv->ieee->stats.rx_dropped++;
7924 priv->wstats.discard.misc++;
7925 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7926 return;
7927 }
7928
7929 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007930 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007931
7932 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007933 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007934
7935 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7936
James Ketrenosb095c382005-08-24 22:04:42 -05007937 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
Hong Liu567deaf2005-08-31 18:07:22 +08007938 hdr = (struct ieee80211_hdr_4addr *)rxb->skb->data;
7939 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
7940 (is_multicast_ether_addr(hdr->addr1) ?
7941 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007942 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7943
Jeff Garzikbf794512005-07-31 13:07:26 -04007944 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007945 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007946 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007947 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007948 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007949 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007950}
7951
Mike Kershaw24a47db2005-08-26 00:41:54 -05007952#ifdef CONFIG_IEEE80211_RADIOTAP
7953static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7954 struct ipw_rx_mem_buffer *rxb,
7955 struct ieee80211_rx_stats *stats)
7956{
7957 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7958 struct ipw_rx_frame *frame = &pkt->u.frame;
7959
7960 /* initial pull of some data */
7961 u16 received_channel = frame->received_channel;
7962 u8 antennaAndPhy = frame->antennaAndPhy;
7963 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7964 u16 pktrate = frame->rate;
7965
7966 /* Magic struct that slots into the radiotap header -- no reason
7967 * to build this manually element by element, we can write it much
7968 * more efficiently than we can parse it. ORDER MATTERS HERE */
7969 struct ipw_rt_hdr {
7970 struct ieee80211_radiotap_header rt_hdr;
7971 u8 rt_flags; /* radiotap packet flags */
7972 u8 rt_rate; /* rate in 500kb/s */
7973 u16 rt_channel; /* channel in mhz */
7974 u16 rt_chbitmask; /* channel bitfield */
7975 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
7976 u8 rt_antenna; /* antenna number */
7977 } *ipw_rt;
7978
7979 short len = le16_to_cpu(pkt->u.frame.length);
7980
7981 /* We received data from the HW, so stop the watchdog */
7982 priv->net_dev->trans_start = jiffies;
7983
7984 /* We only process data packets if the
7985 * interface is open */
7986 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7987 skb_tailroom(rxb->skb))) {
7988 priv->ieee->stats.rx_errors++;
7989 priv->wstats.discard.misc++;
7990 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7991 return;
7992 } else if (unlikely(!netif_running(priv->net_dev))) {
7993 priv->ieee->stats.rx_dropped++;
7994 priv->wstats.discard.misc++;
7995 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7996 return;
7997 }
7998
7999 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
8000 * that now */
8001 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
8002 /* FIXME: Should alloc bigger skb instead */
8003 priv->ieee->stats.rx_dropped++;
8004 priv->wstats.discard.misc++;
8005 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
8006 return;
8007 }
8008
8009 /* copy the frame itself */
8010 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
8011 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
8012
8013 /* Zero the radiotap static buffer ... We only need to zero the bytes NOT
8014 * part of our real header, saves a little time.
8015 *
8016 * No longer necessary since we fill in all our data. Purge before merging
8017 * patch officially.
8018 * memset(rxb->skb->data + sizeof(struct ipw_rt_hdr), 0,
8019 * IEEE80211_RADIOTAP_HDRLEN - sizeof(struct ipw_rt_hdr));
8020 */
8021
8022 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
8023
8024 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
8025 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
8026 ipw_rt->rt_hdr.it_len = sizeof(struct ipw_rt_hdr); /* total header+data */
8027
8028 /* Big bitfield of all the fields we provide in radiotap */
8029 ipw_rt->rt_hdr.it_present =
8030 ((1 << IEEE80211_RADIOTAP_FLAGS) |
8031 (1 << IEEE80211_RADIOTAP_RATE) |
8032 (1 << IEEE80211_RADIOTAP_CHANNEL) |
8033 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
8034 (1 << IEEE80211_RADIOTAP_ANTENNA));
8035
8036 /* Zero the flags, we'll add to them as we go */
8037 ipw_rt->rt_flags = 0;
8038
8039 /* Convert signal to DBM */
8040 ipw_rt->rt_dbmsignal = antsignal;
8041
8042 /* Convert the channel data and set the flags */
8043 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
8044 if (received_channel > 14) { /* 802.11a */
8045 ipw_rt->rt_chbitmask =
8046 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
8047 } else if (antennaAndPhy & 32) { /* 802.11b */
8048 ipw_rt->rt_chbitmask =
8049 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
8050 } else { /* 802.11g */
8051 ipw_rt->rt_chbitmask =
8052 (IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
8053 }
8054
8055 /* set the rate in multiples of 500k/s */
8056 switch (pktrate) {
8057 case IPW_TX_RATE_1MB:
8058 ipw_rt->rt_rate = 2;
8059 break;
8060 case IPW_TX_RATE_2MB:
8061 ipw_rt->rt_rate = 4;
8062 break;
8063 case IPW_TX_RATE_5MB:
8064 ipw_rt->rt_rate = 10;
8065 break;
8066 case IPW_TX_RATE_6MB:
8067 ipw_rt->rt_rate = 12;
8068 break;
8069 case IPW_TX_RATE_9MB:
8070 ipw_rt->rt_rate = 18;
8071 break;
8072 case IPW_TX_RATE_11MB:
8073 ipw_rt->rt_rate = 22;
8074 break;
8075 case IPW_TX_RATE_12MB:
8076 ipw_rt->rt_rate = 24;
8077 break;
8078 case IPW_TX_RATE_18MB:
8079 ipw_rt->rt_rate = 36;
8080 break;
8081 case IPW_TX_RATE_24MB:
8082 ipw_rt->rt_rate = 48;
8083 break;
8084 case IPW_TX_RATE_36MB:
8085 ipw_rt->rt_rate = 72;
8086 break;
8087 case IPW_TX_RATE_48MB:
8088 ipw_rt->rt_rate = 96;
8089 break;
8090 case IPW_TX_RATE_54MB:
8091 ipw_rt->rt_rate = 108;
8092 break;
8093 default:
8094 ipw_rt->rt_rate = 0;
8095 break;
8096 }
8097
8098 /* antenna number */
8099 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
8100
8101 /* set the preamble flag if we have it */
8102 if ((antennaAndPhy & 64))
8103 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
8104
8105 /* Set the size of the skb to the size of the frame */
8106 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
8107
8108 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
8109
8110 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
8111 priv->ieee->stats.rx_errors++;
8112 else { /* ieee80211_rx succeeded, so it now owns the SKB */
8113 rxb->skb = NULL;
8114 /* no LED during capture */
8115 }
8116}
8117#endif
8118
James Ketrenosea2b26e2005-08-24 21:25:16 -05008119static inline int is_network_packet(struct ipw_priv *priv,
8120 struct ieee80211_hdr_4addr *header)
8121{
8122 /* Filter incoming packets to determine if they are targetted toward
8123 * this network, discarding packets coming from ourselves */
8124 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05008125 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008126 /* packets from our adapter are dropped (echo) */
8127 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
8128 return 0;
8129
Peter Jones90700fd2005-08-26 16:51:06 -05008130 /* {broad,multi}cast packets to our BSSID go through */
8131 if (is_multicast_ether_addr(header->addr1) ||
8132 is_broadcast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05008133 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008134
8135 /* packets to our adapter go through */
8136 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8137 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008138
Peter Jones90700fd2005-08-26 16:51:06 -05008139 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008140 /* packets from our adapter are dropped (echo) */
8141 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
8142 return 0;
8143
Peter Jones90700fd2005-08-26 16:51:06 -05008144 /* {broad,multi}cast packets to our BSS go through */
8145 if (is_multicast_ether_addr(header->addr1) ||
8146 is_broadcast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05008147 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
8148
8149 /* packets to our adapter go through */
8150 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8151 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008152 }
James Ketrenosa613bff2005-08-24 21:43:11 -05008153
James Ketrenosea2b26e2005-08-24 21:25:16 -05008154 return 1;
8155}
8156
James Ketrenosafbf30a2005-08-25 00:05:33 -05008157#define IPW_PACKET_RETRY_TIME HZ
8158
8159static inline int is_duplicate_packet(struct ipw_priv *priv,
8160 struct ieee80211_hdr_4addr *header)
8161{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008162 u16 sc = le16_to_cpu(header->seq_ctl);
8163 u16 seq = WLAN_GET_SEQ_SEQ(sc);
8164 u16 frag = WLAN_GET_SEQ_FRAG(sc);
8165 u16 *last_seq, *last_frag;
8166 unsigned long *last_time;
8167
8168 switch (priv->ieee->iw_mode) {
8169 case IW_MODE_ADHOC:
8170 {
8171 struct list_head *p;
8172 struct ipw_ibss_seq *entry = NULL;
8173 u8 *mac = header->addr2;
8174 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
8175
8176 __list_for_each(p, &priv->ibss_mac_hash[index]) {
8177 entry =
8178 list_entry(p, struct ipw_ibss_seq, list);
8179 if (!memcmp(entry->mac, mac, ETH_ALEN))
8180 break;
8181 }
8182 if (p == &priv->ibss_mac_hash[index]) {
8183 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
8184 if (!entry) {
8185 IPW_ERROR
8186 ("Cannot malloc new mac entry\n");
8187 return 0;
8188 }
8189 memcpy(entry->mac, mac, ETH_ALEN);
8190 entry->seq_num = seq;
8191 entry->frag_num = frag;
8192 entry->packet_time = jiffies;
8193 list_add(&entry->list,
8194 &priv->ibss_mac_hash[index]);
8195 return 0;
8196 }
8197 last_seq = &entry->seq_num;
8198 last_frag = &entry->frag_num;
8199 last_time = &entry->packet_time;
8200 break;
8201 }
8202 case IW_MODE_INFRA:
8203 last_seq = &priv->last_seq_num;
8204 last_frag = &priv->last_frag_num;
8205 last_time = &priv->last_packet_time;
8206 break;
8207 default:
8208 return 0;
8209 }
8210 if ((*last_seq == seq) &&
8211 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
8212 if (*last_frag == frag)
8213 goto drop;
8214 if (*last_frag + 1 != frag)
8215 /* out-of-order fragment */
8216 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008217 } else
8218 *last_seq = seq;
8219
Zhu Yif57ce7c2005-07-13 12:22:15 -05008220 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008221 *last_time = jiffies;
8222 return 0;
8223
8224 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008225 /* Comment this line now since we observed the card receives
8226 * duplicate packets but the FCTL_RETRY bit is not set in the
8227 * IBSS mode with fragmentation enabled.
8228 BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008229 return 1;
8230}
8231
James Ketrenosb095c382005-08-24 22:04:42 -05008232static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8233 struct ipw_rx_mem_buffer *rxb,
8234 struct ieee80211_rx_stats *stats)
8235{
8236 struct sk_buff *skb = rxb->skb;
8237 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
8238 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
8239 (skb->data + IPW_RX_FRAME_SIZE);
8240
8241 ieee80211_rx_mgt(priv->ieee, header, stats);
8242
8243 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8244 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8245 IEEE80211_STYPE_PROBE_RESP) ||
8246 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8247 IEEE80211_STYPE_BEACON))) {
8248 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
8249 ipw_add_station(priv, header->addr2);
8250 }
8251
8252 if (priv->config & CFG_NET_STATS) {
8253 IPW_DEBUG_HC("sending stat packet\n");
8254
8255 /* Set the size of the skb to the size of the full
8256 * ipw header and 802.11 frame */
8257 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8258 IPW_RX_FRAME_SIZE);
8259
8260 /* Advance past the ipw packet header to the 802.11 frame */
8261 skb_pull(skb, IPW_RX_FRAME_SIZE);
8262
8263 /* Push the ieee80211_rx_stats before the 802.11 frame */
8264 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8265
8266 skb->dev = priv->ieee->dev;
8267
8268 /* Point raw at the ieee80211_stats */
8269 skb->mac.raw = skb->data;
8270
8271 skb->pkt_type = PACKET_OTHERHOST;
8272 skb->protocol = __constant_htons(ETH_P_80211_STATS);
8273 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8274 netif_rx(skb);
8275 rxb->skb = NULL;
8276 }
8277}
8278
James Ketrenos43f66a62005-03-25 12:31:53 -06008279/*
8280 * Main entry function for recieving a packet with 80211 headers. This
8281 * should be called when ever the FW has notified us that there is a new
8282 * skb in the recieve queue.
8283 */
8284static void ipw_rx(struct ipw_priv *priv)
8285{
8286 struct ipw_rx_mem_buffer *rxb;
8287 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05008288 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008289 u32 r, w, i;
8290 u8 network_packet;
8291
James Ketrenosb095c382005-08-24 22:04:42 -05008292 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8293 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06008294 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
8295
8296 while (i != r) {
8297 rxb = priv->rxq->queue[i];
8298#ifdef CONFIG_IPW_DEBUG
8299 if (unlikely(rxb == NULL)) {
8300 printk(KERN_CRIT "Queue not allocated!\n");
8301 break;
8302 }
8303#endif
8304 priv->rxq->queue[i] = NULL;
8305
8306 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008307 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008308 PCI_DMA_FROMDEVICE);
8309
8310 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8311 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8312 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008313 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008314
8315 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008316 case RX_FRAME_TYPE: /* 802.11 frame */ {
8317 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05008318 .rssi =
8319 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008320 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008321 .signal =
8322 le16_to_cpu(pkt->u.frame.signal),
8323 .noise =
8324 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008325 .rate = pkt->u.frame.rate,
8326 .mac_time = jiffies,
8327 .received_channel =
8328 pkt->u.frame.received_channel,
8329 .freq =
8330 (pkt->u.frame.
8331 control & (1 << 0)) ?
8332 IEEE80211_24GHZ_BAND :
8333 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008334 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008335 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008336
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008337 if (stats.rssi != 0)
8338 stats.mask |= IEEE80211_STATMASK_RSSI;
8339 if (stats.signal != 0)
8340 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008341 if (stats.noise != 0)
8342 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008343 if (stats.rate != 0)
8344 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008345
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008346 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008347
James Ketrenosb095c382005-08-24 22:04:42 -05008348#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008349 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05008350#ifdef CONFIG_IEEE80211_RADIOTAP
8351 ipw_handle_data_packet_monitor(priv,
8352 rxb,
8353 &stats);
8354#else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008355 ipw_handle_data_packet(priv, rxb,
8356 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008357#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008358 break;
8359 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008360#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008361
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008362 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05008363 (struct ieee80211_hdr_4addr *)(rxb->skb->
8364 data +
8365 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008366 /* TODO: Check Ad-Hoc dest/source and make sure
8367 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008368 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008369 * frame control of the packet and disregard
8370 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008371
James Ketrenosea2b26e2005-08-24 21:25:16 -05008372 network_packet =
8373 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008374 if (network_packet && priv->assoc_network) {
8375 priv->assoc_network->stats.rssi =
8376 stats.rssi;
8377 average_add(&priv->average_rssi,
8378 stats.rssi);
8379 priv->last_rx_rssi = stats.rssi;
8380 }
8381
8382 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008383 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008384
James Ketrenosa613bff2005-08-24 21:43:11 -05008385 if (le16_to_cpu(pkt->u.frame.length) <
8386 frame_hdr_len(header)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008387 IPW_DEBUG_DROP
8388 ("Received packet is too small. "
8389 "Dropping.\n");
8390 priv->ieee->stats.rx_errors++;
8391 priv->wstats.discard.misc++;
8392 break;
8393 }
8394
James Ketrenosa613bff2005-08-24 21:43:11 -05008395 switch (WLAN_FC_GET_TYPE
8396 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008397
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008398 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008399 ipw_handle_mgmt_packet(priv, rxb,
8400 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008401 break;
8402
8403 case IEEE80211_FTYPE_CTL:
8404 break;
8405
8406 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008407 if (unlikely(!network_packet ||
8408 is_duplicate_packet(priv,
8409 header)))
8410 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008411 IPW_DEBUG_DROP("Dropping: "
8412 MAC_FMT ", "
8413 MAC_FMT ", "
8414 MAC_FMT "\n",
8415 MAC_ARG(header->
8416 addr1),
8417 MAC_ARG(header->
8418 addr2),
8419 MAC_ARG(header->
8420 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05008421 break;
8422 }
8423
8424 ipw_handle_data_packet(priv, rxb,
8425 &stats);
8426
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008427 break;
8428 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008429 break;
8430 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008431
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008432 case RX_HOST_NOTIFICATION_TYPE:{
8433 IPW_DEBUG_RX
8434 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008435 pkt->u.notification.subtype,
8436 pkt->u.notification.flags,
8437 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008438 ipw_rx_notification(priv, &pkt->u.notification);
8439 break;
8440 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008441
8442 default:
8443 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8444 pkt->header.message_type);
8445 break;
8446 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008447
8448 /* For now we just don't re-use anything. We can tweak this
8449 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008450 * fail to Rx correctly */
8451 if (rxb->skb != NULL) {
8452 dev_kfree_skb_any(rxb->skb);
8453 rxb->skb = NULL;
8454 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008455
James Ketrenos43f66a62005-03-25 12:31:53 -06008456 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008457 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008458 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008459
James Ketrenos43f66a62005-03-25 12:31:53 -06008460 i = (i + 1) % RX_QUEUE_SIZE;
8461 }
8462
8463 /* Backtrack one entry */
8464 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
8465
8466 ipw_rx_queue_restock(priv);
8467}
8468
James Ketrenosafbf30a2005-08-25 00:05:33 -05008469#define DEFAULT_RTS_THRESHOLD 2304U
8470#define MIN_RTS_THRESHOLD 1U
8471#define MAX_RTS_THRESHOLD 2304U
8472#define DEFAULT_BEACON_INTERVAL 100U
8473#define DEFAULT_SHORT_RETRY_LIMIT 7U
8474#define DEFAULT_LONG_RETRY_LIMIT 4U
8475
8476static int ipw_sw_reset(struct ipw_priv *priv, int init)
8477{
8478 int band, modulation;
8479 int old_mode = priv->ieee->iw_mode;
8480
8481 /* Initialize module parameter values here */
8482 priv->config = 0;
8483
8484 /* We default to disabling the LED code as right now it causes
8485 * too many systems to lock up... */
8486 if (!led)
8487 priv->config |= CFG_NO_LED;
8488
8489 if (associate)
8490 priv->config |= CFG_ASSOCIATE;
8491 else
8492 IPW_DEBUG_INFO("Auto associate disabled.\n");
8493
8494 if (auto_create)
8495 priv->config |= CFG_ADHOC_CREATE;
8496 else
8497 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8498
8499 if (disable) {
8500 priv->status |= STATUS_RF_KILL_SW;
8501 IPW_DEBUG_INFO("Radio disabled.\n");
8502 }
8503
8504 if (channel != 0) {
8505 priv->config |= CFG_STATIC_CHANNEL;
8506 priv->channel = channel;
8507 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
8508 /* TODO: Validate that provided channel is in range */
8509 }
8510#ifdef CONFIG_IPW_QOS
8511 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8512 burst_duration_CCK, burst_duration_OFDM);
8513#endif /* CONFIG_IPW_QOS */
8514
8515 switch (mode) {
8516 case 1:
8517 priv->ieee->iw_mode = IW_MODE_ADHOC;
8518 priv->net_dev->type = ARPHRD_ETHER;
8519
8520 break;
8521#ifdef CONFIG_IPW2200_MONITOR
8522 case 2:
8523 priv->ieee->iw_mode = IW_MODE_MONITOR;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008524#ifdef CONFIG_IEEE80211_RADIOTAP
8525 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8526#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008527 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008528#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008529 break;
8530#endif
8531 default:
8532 case 0:
8533 priv->net_dev->type = ARPHRD_ETHER;
8534 priv->ieee->iw_mode = IW_MODE_INFRA;
8535 break;
8536 }
8537
8538 if (hwcrypto) {
8539 priv->ieee->host_encrypt = 0;
8540 priv->ieee->host_encrypt_msdu = 0;
8541 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008542 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008543 }
8544 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
8545
Zhu Yie402c932005-08-05 17:20:40 +08008546 /* IPW2200/2915 is abled to do hardware fragmentation. */
8547 priv->ieee->host_open_frag = 0;
8548
James Ketrenosafbf30a2005-08-25 00:05:33 -05008549 if ((priv->pci_dev->device == 0x4223) ||
8550 (priv->pci_dev->device == 0x4224)) {
8551 if (init)
8552 printk(KERN_INFO DRV_NAME
8553 ": Detected Intel PRO/Wireless 2915ABG Network "
8554 "Connection\n");
8555 priv->ieee->abg_true = 1;
8556 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8557 modulation = IEEE80211_OFDM_MODULATION |
8558 IEEE80211_CCK_MODULATION;
8559 priv->adapter = IPW_2915ABG;
8560 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
8561 } else {
8562 if (init)
8563 printk(KERN_INFO DRV_NAME
8564 ": Detected Intel PRO/Wireless 2200BG Network "
8565 "Connection\n");
8566
8567 priv->ieee->abg_true = 0;
8568 band = IEEE80211_24GHZ_BAND;
8569 modulation = IEEE80211_OFDM_MODULATION |
8570 IEEE80211_CCK_MODULATION;
8571 priv->adapter = IPW_2200BG;
8572 priv->ieee->mode = IEEE_G | IEEE_B;
8573 }
8574
8575 priv->ieee->freq_band = band;
8576 priv->ieee->modulation = modulation;
8577
8578 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
8579
8580 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8581 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
8582
8583 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8584 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8585 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
8586
8587 /* If power management is turned on, default to AC mode */
8588 priv->power_mode = IPW_POWER_AC;
8589 priv->tx_power = IPW_TX_POWER_DEFAULT;
8590
Zhu Yi0ece35b2005-08-05 17:26:51 +08008591 return old_mode == priv->ieee->iw_mode;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008592}
8593
James Ketrenos43f66a62005-03-25 12:31:53 -06008594/*
8595 * This file defines the Wireless Extension handlers. It does not
8596 * define any methods of hardware manipulation and relies on the
8597 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008598 *
8599 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008600 * function used to poll the hardware vs. making unecessary calls.
8601 *
8602 */
8603
Jeff Garzikbf794512005-07-31 13:07:26 -04008604static int ipw_wx_get_name(struct net_device *dev,
8605 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008606 union iwreq_data *wrqu, char *extra)
8607{
8608 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008609 down(&priv->sem);
8610 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008611 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008612 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008613 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008614 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008615 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8616 ipw_modes[priv->assoc_request.ieee_mode]);
8617 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008618 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008619 return 0;
8620}
8621
8622static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8623{
8624 if (channel == 0) {
8625 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8626 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008627 IPW_DEBUG_ASSOC("Attempting to associate with new "
8628 "parameters.\n");
8629 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008630 return 0;
8631 }
8632
8633 priv->config |= CFG_STATIC_CHANNEL;
8634
8635 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008636 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8637 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008638 return 0;
8639 }
8640
8641 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8642 priv->channel = channel;
8643
James Ketrenosb095c382005-08-24 22:04:42 -05008644#ifdef CONFIG_IPW2200_MONITOR
8645 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008646 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008647 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008648 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008649 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008650 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008651 }
8652
8653 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8654 udelay(10);
8655
8656 if (priv->status & STATUS_SCANNING)
8657 IPW_DEBUG_SCAN("Still scanning...\n");
8658 else
8659 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8660 1000 - i);
8661
8662 return 0;
8663 }
8664#endif /* CONFIG_IPW2200_MONITOR */
8665
James Ketrenosc848d0a2005-08-24 21:56:24 -05008666 /* Network configuration changed -- force [re]association */
8667 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8668 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008669 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008670
8671 return 0;
8672}
8673
Jeff Garzikbf794512005-07-31 13:07:26 -04008674static int ipw_wx_set_freq(struct net_device *dev,
8675 struct iw_request_info *info,
8676 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008677{
8678 struct ipw_priv *priv = ieee80211_priv(dev);
Liu Hong1fe0adb2005-08-19 09:33:10 -05008679 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008680 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008681 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008682 u8 channel, flags;
8683 int band;
James Ketrenosb095c382005-08-24 22:04:42 -05008684
8685 if (fwrq->m == 0) {
8686 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
8687 down(&priv->sem);
8688 ret = ipw_set_channel(priv, 0);
8689 up(&priv->sem);
8690 return ret;
8691 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008692 /* if setting by freq convert to channel */
8693 if (fwrq->e == 1) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05008694 channel = ipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008695 if (channel == 0)
8696 return -EINVAL;
8697 } else
8698 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008699
Liu Hong1fe0adb2005-08-19 09:33:10 -05008700 if (!(band = ipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008701 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008702
Liu Hong1fe0adb2005-08-19 09:33:10 -05008703 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
8704 i = ipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008705 if (i == -1)
8706 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008707
8708 flags = (band == IEEE80211_24GHZ_BAND) ?
8709 geo->bg[i].flags : geo->a[i].flags;
8710 if (flags & IEEE80211_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008711 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8712 return -EINVAL;
8713 }
8714 }
8715
James Ketrenos43f66a62005-03-25 12:31:53 -06008716 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008717 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008718 ret = ipw_set_channel(priv, channel);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008719 up(&priv->sem);
8720 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008721}
8722
Jeff Garzikbf794512005-07-31 13:07:26 -04008723static int ipw_wx_get_freq(struct net_device *dev,
8724 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008725 union iwreq_data *wrqu, char *extra)
8726{
8727 struct ipw_priv *priv = ieee80211_priv(dev);
8728
8729 wrqu->freq.e = 0;
8730
8731 /* If we are associated, trying to associate, or have a statically
8732 * configured CHANNEL then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008733 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008734 if (priv->config & CFG_STATIC_CHANNEL ||
8735 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8736 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008737 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008738 wrqu->freq.m = 0;
8739
James Ketrenosc848d0a2005-08-24 21:56:24 -05008740 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008741 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8742 return 0;
8743}
8744
Jeff Garzikbf794512005-07-31 13:07:26 -04008745static int ipw_wx_set_mode(struct net_device *dev,
8746 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008747 union iwreq_data *wrqu, char *extra)
8748{
8749 struct ipw_priv *priv = ieee80211_priv(dev);
8750 int err = 0;
8751
8752 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06008753
8754 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008755#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008756 case IW_MODE_MONITOR:
8757#endif
8758 case IW_MODE_ADHOC:
8759 case IW_MODE_INFRA:
8760 break;
8761 case IW_MODE_AUTO:
8762 wrqu->mode = IW_MODE_INFRA;
8763 break;
8764 default:
8765 return -EINVAL;
8766 }
James Ketrenosb095c382005-08-24 22:04:42 -05008767 if (wrqu->mode == priv->ieee->iw_mode)
8768 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008769
James Ketrenosb095c382005-08-24 22:04:42 -05008770 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008771
8772 ipw_sw_reset(priv, 0);
8773
James Ketrenosb095c382005-08-24 22:04:42 -05008774#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008775 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008776 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008777
8778 if (wrqu->mode == IW_MODE_MONITOR)
Mike Kershaw24a47db2005-08-26 00:41:54 -05008779#ifdef CONFIG_IEEE80211_RADIOTAP
8780 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8781#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008782 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008783#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008784#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008785
Jeff Garzikbf794512005-07-31 13:07:26 -04008786 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008787 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008788 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008789
8790 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008791
James Ketrenosc848d0a2005-08-24 21:56:24 -05008792 queue_work(priv->workqueue, &priv->adapter_restart);
8793 up(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008794 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008795}
8796
Jeff Garzikbf794512005-07-31 13:07:26 -04008797static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008798 struct iw_request_info *info,
8799 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008800{
8801 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008802 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008803 wrqu->mode = priv->ieee->iw_mode;
8804 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008805 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008806 return 0;
8807}
8808
James Ketrenos43f66a62005-03-25 12:31:53 -06008809/* Values are in microsecond */
8810static const s32 timeout_duration[] = {
8811 350000,
8812 250000,
8813 75000,
8814 37000,
8815 25000,
8816};
8817
8818static const s32 period_duration[] = {
8819 400000,
8820 700000,
8821 1000000,
8822 1000000,
8823 1000000
8824};
8825
Jeff Garzikbf794512005-07-31 13:07:26 -04008826static int ipw_wx_get_range(struct net_device *dev,
8827 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008828 union iwreq_data *wrqu, char *extra)
8829{
8830 struct ipw_priv *priv = ieee80211_priv(dev);
8831 struct iw_range *range = (struct iw_range *)extra;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008832 const struct ieee80211_geo *geo = ipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008833 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008834
8835 wrqu->data.length = sizeof(*range);
8836 memset(range, 0, sizeof(*range));
8837
8838 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008839 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008840
8841 range->max_qual.qual = 100;
8842 /* TODO: Find real max RSSI and stick here */
8843 range->max_qual.level = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008844 range->max_qual.noise = priv->ieee->worst_rssi + 0x100;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008845 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008846
8847 range->avg_qual.qual = 70;
8848 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008849 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008850 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008851 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008852 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008853 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008854
Jeff Garzikbf794512005-07-31 13:07:26 -04008855 for (i = 0; i < range->num_bitrates; i++)
8856 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008857 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008858
James Ketrenos43f66a62005-03-25 12:31:53 -06008859 range->max_rts = DEFAULT_RTS_THRESHOLD;
8860 range->min_frag = MIN_FRAG_THRESHOLD;
8861 range->max_frag = MAX_FRAG_THRESHOLD;
8862
8863 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008864 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008865 range->num_encoding_sizes = 2;
8866 range->max_encoding_tokens = WEP_KEYS;
8867
8868 /* Set the Wireless Extension versions */
8869 range->we_version_compiled = WIRELESS_EXT;
8870 range->we_version_source = 16;
8871
James Ketrenosb095c382005-08-24 22:04:42 -05008872 i = 0;
8873 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
8874 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES;
8875 i++, j++) {
8876 range->freq[i].i = geo->bg[j].channel;
8877 range->freq[i].m = geo->bg[j].freq * 100000;
8878 range->freq[i].e = 1;
8879 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008880 }
James Ketrenosb095c382005-08-24 22:04:42 -05008881
8882 if (priv->ieee->mode & IEEE_A) {
8883 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES;
8884 i++, j++) {
8885 range->freq[i].i = geo->a[j].channel;
8886 range->freq[i].m = geo->a[j].freq * 100000;
8887 range->freq[i].e = 1;
8888 }
8889 }
8890
8891 range->num_channels = i;
8892 range->num_frequency = i;
8893
James Ketrenosc848d0a2005-08-24 21:56:24 -05008894 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008895 IPW_DEBUG_WX("GET Range\n");
8896 return 0;
8897}
8898
Jeff Garzikbf794512005-07-31 13:07:26 -04008899static int ipw_wx_set_wap(struct net_device *dev,
8900 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008901 union iwreq_data *wrqu, char *extra)
8902{
8903 struct ipw_priv *priv = ieee80211_priv(dev);
8904
8905 static const unsigned char any[] = {
8906 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8907 };
8908 static const unsigned char off[] = {
8909 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8910 };
8911
Jeff Garzikbf794512005-07-31 13:07:26 -04008912 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008913 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008914 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008915 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8916 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8917 /* we disable mandatory BSSID association */
8918 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8919 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008920 IPW_DEBUG_ASSOC("Attempting to associate with new "
8921 "parameters.\n");
8922 ipw_associate(priv);
8923 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008924 return 0;
8925 }
8926
8927 priv->config |= CFG_STATIC_BSSID;
8928 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8929 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008930 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008931 return 0;
8932 }
8933
8934 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8935 MAC_ARG(wrqu->ap_addr.sa_data));
8936
8937 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8938
James Ketrenosc848d0a2005-08-24 21:56:24 -05008939 /* Network configuration changed -- force [re]association */
8940 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8941 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008942 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008943
James Ketrenosc848d0a2005-08-24 21:56:24 -05008944 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008945 return 0;
8946}
8947
Jeff Garzikbf794512005-07-31 13:07:26 -04008948static int ipw_wx_get_wap(struct net_device *dev,
8949 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008950 union iwreq_data *wrqu, char *extra)
8951{
8952 struct ipw_priv *priv = ieee80211_priv(dev);
8953 /* If we are associated, trying to associate, or have a statically
8954 * configured BSSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008955 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04008956 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008957 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8958 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008959 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008960 } else
8961 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8962
8963 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8964 MAC_ARG(wrqu->ap_addr.sa_data));
James Ketrenosc848d0a2005-08-24 21:56:24 -05008965 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008966 return 0;
8967}
8968
Jeff Garzikbf794512005-07-31 13:07:26 -04008969static int ipw_wx_set_essid(struct net_device *dev,
8970 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008971 union iwreq_data *wrqu, char *extra)
8972{
8973 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008974 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008975 int length = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008976 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008977 if (wrqu->essid.flags && wrqu->essid.length) {
8978 length = wrqu->essid.length - 1;
8979 essid = extra;
8980 }
8981 if (length == 0) {
8982 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008983 if ((priv->config & CFG_STATIC_ESSID) &&
8984 !(priv->status & (STATUS_ASSOCIATED |
8985 STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008986 IPW_DEBUG_ASSOC("Attempting to associate with new "
8987 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008988 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008989 ipw_associate(priv);
8990 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008991 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008992 return 0;
8993 }
8994
8995 length = min(length, IW_ESSID_MAX_SIZE);
8996
8997 priv->config |= CFG_STATIC_ESSID;
8998
8999 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
9000 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009001 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009002 return 0;
9003 }
9004
9005 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
9006 length);
9007
9008 priv->essid_len = length;
9009 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009010
James Ketrenosc848d0a2005-08-24 21:56:24 -05009011 /* Network configuration changed -- force [re]association */
9012 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
9013 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009014 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009015
James Ketrenosc848d0a2005-08-24 21:56:24 -05009016 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009017 return 0;
9018}
9019
Jeff Garzikbf794512005-07-31 13:07:26 -04009020static int ipw_wx_get_essid(struct net_device *dev,
9021 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009022 union iwreq_data *wrqu, char *extra)
9023{
9024 struct ipw_priv *priv = ieee80211_priv(dev);
9025
9026 /* If we are associated, trying to associate, or have a statically
9027 * configured ESSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009028 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009029 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04009030 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9031 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009032 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04009033 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009034 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009035 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009036 } else {
9037 IPW_DEBUG_WX("Getting essid: ANY\n");
9038 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009039 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009040 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009041 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009042 return 0;
9043}
9044
Jeff Garzikbf794512005-07-31 13:07:26 -04009045static int ipw_wx_set_nick(struct net_device *dev,
9046 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009047 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009048{
James Ketrenos43f66a62005-03-25 12:31:53 -06009049 struct ipw_priv *priv = ieee80211_priv(dev);
9050
9051 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
9052 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
9053 return -E2BIG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009054 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009055 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06009056 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009057 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009058 IPW_DEBUG_TRACE("<<\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009059 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009060 return 0;
9061
9062}
9063
Jeff Garzikbf794512005-07-31 13:07:26 -04009064static int ipw_wx_get_nick(struct net_device *dev,
9065 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009066 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009067{
James Ketrenos43f66a62005-03-25 12:31:53 -06009068 struct ipw_priv *priv = ieee80211_priv(dev);
9069 IPW_DEBUG_WX("Getting nick\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009070 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009071 wrqu->data.length = strlen(priv->nick) + 1;
9072 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009073 wrqu->data.flags = 1; /* active */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009074 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009075 return 0;
9076}
9077
James Ketrenos43f66a62005-03-25 12:31:53 -06009078static int ipw_wx_set_rate(struct net_device *dev,
9079 struct iw_request_info *info,
9080 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009081{
James Ketrenosea2b26e2005-08-24 21:25:16 -05009082 /* TODO: We should use semaphores or locks for access to priv */
9083 struct ipw_priv *priv = ieee80211_priv(dev);
9084 u32 target_rate = wrqu->bitrate.value;
9085 u32 fixed, mask;
9086
9087 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
9088 /* value = X, fixed = 1 means only rate X */
9089 /* value = X, fixed = 0 means all rates lower equal X */
9090
9091 if (target_rate == -1) {
9092 fixed = 0;
9093 mask = IEEE80211_DEFAULT_RATES_MASK;
9094 /* Now we should reassociate */
9095 goto apply;
9096 }
9097
9098 mask = 0;
9099 fixed = wrqu->bitrate.fixed;
9100
9101 if (target_rate == 1000000 || !fixed)
9102 mask |= IEEE80211_CCK_RATE_1MB_MASK;
9103 if (target_rate == 1000000)
9104 goto apply;
9105
9106 if (target_rate == 2000000 || !fixed)
9107 mask |= IEEE80211_CCK_RATE_2MB_MASK;
9108 if (target_rate == 2000000)
9109 goto apply;
9110
9111 if (target_rate == 5500000 || !fixed)
9112 mask |= IEEE80211_CCK_RATE_5MB_MASK;
9113 if (target_rate == 5500000)
9114 goto apply;
9115
9116 if (target_rate == 6000000 || !fixed)
9117 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
9118 if (target_rate == 6000000)
9119 goto apply;
9120
9121 if (target_rate == 9000000 || !fixed)
9122 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
9123 if (target_rate == 9000000)
9124 goto apply;
9125
9126 if (target_rate == 11000000 || !fixed)
9127 mask |= IEEE80211_CCK_RATE_11MB_MASK;
9128 if (target_rate == 11000000)
9129 goto apply;
9130
9131 if (target_rate == 12000000 || !fixed)
9132 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
9133 if (target_rate == 12000000)
9134 goto apply;
9135
9136 if (target_rate == 18000000 || !fixed)
9137 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
9138 if (target_rate == 18000000)
9139 goto apply;
9140
9141 if (target_rate == 24000000 || !fixed)
9142 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
9143 if (target_rate == 24000000)
9144 goto apply;
9145
9146 if (target_rate == 36000000 || !fixed)
9147 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
9148 if (target_rate == 36000000)
9149 goto apply;
9150
9151 if (target_rate == 48000000 || !fixed)
9152 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
9153 if (target_rate == 48000000)
9154 goto apply;
9155
9156 if (target_rate == 54000000 || !fixed)
9157 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
9158 if (target_rate == 54000000)
9159 goto apply;
9160
9161 IPW_DEBUG_WX("invalid rate specified, returning error\n");
9162 return -EINVAL;
9163
9164 apply:
9165 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
9166 mask, fixed ? "fixed" : "sub-rates");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009167 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05009168 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009169 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05009170 ipw_set_fixed_rate(priv, priv->ieee->mode);
9171 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05009172 priv->config |= CFG_FIXED_RATE;
9173
James Ketrenosc848d0a2005-08-24 21:56:24 -05009174 if (priv->rates_mask == mask) {
9175 IPW_DEBUG_WX("Mask set to current mask.\n");
9176 up(&priv->sem);
9177 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009178 }
9179
James Ketrenosc848d0a2005-08-24 21:56:24 -05009180 priv->rates_mask = mask;
9181
9182 /* Network configuration changed -- force [re]association */
9183 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
9184 if (!ipw_disassociate(priv))
9185 ipw_associate(priv);
9186
9187 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009188 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009189}
9190
Jeff Garzikbf794512005-07-31 13:07:26 -04009191static int ipw_wx_get_rate(struct net_device *dev,
9192 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009193 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009194{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009195 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009196 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009197 wrqu->bitrate.value = priv->last_rate;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009198 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009199 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
9200 return 0;
9201}
9202
Jeff Garzikbf794512005-07-31 13:07:26 -04009203static int ipw_wx_set_rts(struct net_device *dev,
9204 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009205 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009206{
James Ketrenos43f66a62005-03-25 12:31:53 -06009207 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009208 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009209 if (wrqu->rts.disabled)
9210 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
9211 else {
9212 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05009213 wrqu->rts.value > MAX_RTS_THRESHOLD) {
9214 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009215 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009216 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009217 priv->rts_threshold = wrqu->rts.value;
9218 }
9219
9220 ipw_send_rts_threshold(priv, priv->rts_threshold);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009221 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009222 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
9223 return 0;
9224}
9225
Jeff Garzikbf794512005-07-31 13:07:26 -04009226static int ipw_wx_get_rts(struct net_device *dev,
9227 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009228 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009229{
James Ketrenos43f66a62005-03-25 12:31:53 -06009230 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009231 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009232 wrqu->rts.value = priv->rts_threshold;
9233 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009234 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009235 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009236 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
9237 return 0;
9238}
9239
Jeff Garzikbf794512005-07-31 13:07:26 -04009240static int ipw_wx_set_txpow(struct net_device *dev,
9241 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009242 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009243{
James Ketrenos43f66a62005-03-25 12:31:53 -06009244 struct ipw_priv *priv = ieee80211_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009245 int err = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05009246
James Ketrenosc848d0a2005-08-24 21:56:24 -05009247 down(&priv->sem);
9248 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009249 err = -EINPROGRESS;
9250 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009251 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009252
James Ketrenosb095c382005-08-24 22:04:42 -05009253 if (!wrqu->power.fixed)
9254 wrqu->power.value = IPW_TX_POWER_DEFAULT;
9255
James Ketrenosc848d0a2005-08-24 21:56:24 -05009256 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009257 err = -EINVAL;
9258 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009259 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009260
James Ketrenosb095c382005-08-24 22:04:42 -05009261 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009262 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009263 err = -EINVAL;
9264 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009265 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009266
9267 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009268 err = ipw_set_tx_power(priv);
9269 out:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009270 up(&priv->sem);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009271 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009272}
9273
Jeff Garzikbf794512005-07-31 13:07:26 -04009274static int ipw_wx_get_txpow(struct net_device *dev,
9275 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009276 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009277{
James Ketrenos43f66a62005-03-25 12:31:53 -06009278 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009279 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009280 wrqu->power.value = priv->tx_power;
9281 wrqu->power.fixed = 1;
9282 wrqu->power.flags = IW_TXPOW_DBM;
9283 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009284 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009285
Jeff Garzikbf794512005-07-31 13:07:26 -04009286 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08009287 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009288
9289 return 0;
9290}
9291
Jeff Garzikbf794512005-07-31 13:07:26 -04009292static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009293 struct iw_request_info *info,
9294 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009295{
9296 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009297 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009298 if (wrqu->frag.disabled)
9299 priv->ieee->fts = DEFAULT_FTS;
9300 else {
9301 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009302 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
9303 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009304 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009305 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009306
James Ketrenos43f66a62005-03-25 12:31:53 -06009307 priv->ieee->fts = wrqu->frag.value & ~0x1;
9308 }
9309
9310 ipw_send_frag_threshold(priv, wrqu->frag.value);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009311 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009312 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
9313 return 0;
9314}
9315
Jeff Garzikbf794512005-07-31 13:07:26 -04009316static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009317 struct iw_request_info *info,
9318 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009319{
9320 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009321 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009322 wrqu->frag.value = priv->ieee->fts;
9323 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009324 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009325 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009326 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
9327
9328 return 0;
9329}
9330
Jeff Garzikbf794512005-07-31 13:07:26 -04009331static int ipw_wx_set_retry(struct net_device *dev,
9332 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009333 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009334{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009335 struct ipw_priv *priv = ieee80211_priv(dev);
9336
9337 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9338 return -EINVAL;
9339
9340 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9341 return 0;
9342
9343 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
9344 return -EINVAL;
9345
9346 down(&priv->sem);
9347 if (wrqu->retry.flags & IW_RETRY_MIN)
9348 priv->short_retry_limit = (u8) wrqu->retry.value;
9349 else if (wrqu->retry.flags & IW_RETRY_MAX)
9350 priv->long_retry_limit = (u8) wrqu->retry.value;
9351 else {
9352 priv->short_retry_limit = (u8) wrqu->retry.value;
9353 priv->long_retry_limit = (u8) wrqu->retry.value;
9354 }
9355
9356 ipw_send_retry_limit(priv, priv->short_retry_limit,
9357 priv->long_retry_limit);
9358 up(&priv->sem);
9359 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9360 priv->short_retry_limit, priv->long_retry_limit);
9361 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009362}
9363
Jeff Garzikbf794512005-07-31 13:07:26 -04009364static int ipw_wx_get_retry(struct net_device *dev,
9365 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009366 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009367{
James Ketrenosafbf30a2005-08-25 00:05:33 -05009368 struct ipw_priv *priv = ieee80211_priv(dev);
9369
9370 down(&priv->sem);
9371 wrqu->retry.disabled = 0;
9372
9373 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
9374 up(&priv->sem);
9375 return -EINVAL;
9376 }
9377
9378 if (wrqu->retry.flags & IW_RETRY_MAX) {
9379 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
9380 wrqu->retry.value = priv->long_retry_limit;
9381 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
9382 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
9383 wrqu->retry.value = priv->short_retry_limit;
9384 } else {
9385 wrqu->retry.flags = IW_RETRY_LIMIT;
9386 wrqu->retry.value = priv->short_retry_limit;
9387 }
9388 up(&priv->sem);
9389
9390 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
9391
9392 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009393}
9394
James Ketrenosafbf30a2005-08-25 00:05:33 -05009395#if WIRELESS_EXT > 17
9396static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
9397 int essid_len)
9398{
9399 struct ipw_scan_request_ext scan;
9400 int err = 0, scan_type;
9401
9402 down(&priv->sem);
9403
9404 if (priv->status & STATUS_RF_KILL_MASK) {
9405 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
9406 priv->status |= STATUS_SCAN_PENDING;
9407 goto done;
9408 }
9409
9410 IPW_DEBUG_HC("starting request direct scan!\n");
9411
9412 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
9413 err = wait_event_interruptible(priv->wait_state,
9414 !(priv->
9415 status & (STATUS_SCANNING |
9416 STATUS_SCAN_ABORTING)));
9417 if (err) {
9418 IPW_DEBUG_HC("aborting direct scan");
9419 goto done;
9420 }
9421 }
9422 memset(&scan, 0, sizeof(scan));
9423
9424 if (priv->config & CFG_SPEED_SCAN)
9425 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9426 cpu_to_le16(30);
9427 else
9428 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
9429 cpu_to_le16(20);
9430
9431 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
9432 cpu_to_le16(20);
Liu Hong1fe0adb2005-08-19 09:33:10 -05009433 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(120);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009434 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
9435
9436 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
9437
9438 err = ipw_send_ssid(priv, essid, essid_len);
9439 if (err) {
9440 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
9441 goto done;
9442 }
9443 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
9444
9445 ipw_add_scan_channels(priv, &scan, scan_type);
9446
9447 err = ipw_send_scan_request_ext(priv, &scan);
9448 if (err) {
9449 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
9450 goto done;
9451 }
9452
9453 priv->status |= STATUS_SCANNING;
9454
9455 done:
9456 up(&priv->sem);
9457 return err;
9458}
9459#endif /* WIRELESS_EXT > 17 */
9460
Jeff Garzikbf794512005-07-31 13:07:26 -04009461static int ipw_wx_set_scan(struct net_device *dev,
9462 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009463 union iwreq_data *wrqu, char *extra)
9464{
9465 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009466#if WIRELESS_EXT > 17
9467 struct iw_scan_req *req = NULL;
9468 if (wrqu->data.length
9469 && wrqu->data.length == sizeof(struct iw_scan_req)) {
9470 req = (struct iw_scan_req *)extra;
9471 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
9472 ipw_request_direct_scan(priv, req->essid,
9473 req->essid_len);
9474 return 0;
9475 }
9476 }
9477#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009478 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009479
9480 queue_work(priv->workqueue, &priv->request_scan);
9481
James Ketrenos43f66a62005-03-25 12:31:53 -06009482 return 0;
9483}
9484
Jeff Garzikbf794512005-07-31 13:07:26 -04009485static int ipw_wx_get_scan(struct net_device *dev,
9486 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009487 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009488{
James Ketrenos43f66a62005-03-25 12:31:53 -06009489 struct ipw_priv *priv = ieee80211_priv(dev);
9490 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9491}
9492
Jeff Garzikbf794512005-07-31 13:07:26 -04009493static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009494 struct iw_request_info *info,
9495 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009496{
9497 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009498 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009499 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009500
9501 down(&priv->sem);
9502 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009503
Hong Liucaeff812005-08-05 17:25:50 +08009504 /* In IBSS mode, we need to notify the firmware to update
9505 * the beacon info after we changed the capability. */
9506 if (cap != priv->capability &&
9507 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9508 priv->status & STATUS_ASSOCIATED)
9509 ipw_disassociate(priv);
9510
9511 up(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009512 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009513}
9514
Jeff Garzikbf794512005-07-31 13:07:26 -04009515static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009516 struct iw_request_info *info,
9517 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009518{
9519 struct ipw_priv *priv = ieee80211_priv(dev);
9520 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9521}
9522
Jeff Garzikbf794512005-07-31 13:07:26 -04009523static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009524 struct iw_request_info *info,
9525 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009526{
9527 struct ipw_priv *priv = ieee80211_priv(dev);
9528 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009529 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009530 if (wrqu->power.disabled) {
9531 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9532 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9533 if (err) {
9534 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009535 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009536 return err;
9537 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009538 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009539 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009540 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009541 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009542
9543 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009544 case IW_POWER_ON: /* If not specified */
9545 case IW_POWER_MODE: /* If set all mask */
9546 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009547 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009548 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009549 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9550 wrqu->power.flags);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009551 up(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009552 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009553 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009554
James Ketrenos43f66a62005-03-25 12:31:53 -06009555 /* If the user hasn't specified a power management mode yet, default
9556 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009557 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009558 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009559 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009560 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9561 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9562 if (err) {
9563 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009564 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009565 return err;
9566 }
9567
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009568 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009569 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009570 return 0;
9571}
9572
Jeff Garzikbf794512005-07-31 13:07:26 -04009573static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009574 struct iw_request_info *info,
9575 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009576{
9577 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009578 down(&priv->sem);
James Ketrenosa613bff2005-08-24 21:43:11 -05009579 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009580 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009581 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009582 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009583
James Ketrenosc848d0a2005-08-24 21:56:24 -05009584 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009585 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009586
James Ketrenos43f66a62005-03-25 12:31:53 -06009587 return 0;
9588}
9589
Jeff Garzikbf794512005-07-31 13:07:26 -04009590static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009591 struct iw_request_info *info,
9592 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009593{
9594 struct ipw_priv *priv = ieee80211_priv(dev);
9595 int mode = *(int *)extra;
9596 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009597 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009598 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9599 mode = IPW_POWER_AC;
9600 priv->power_mode = mode;
9601 } else {
9602 priv->power_mode = IPW_POWER_ENABLED | mode;
9603 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009604
James Ketrenos43f66a62005-03-25 12:31:53 -06009605 if (priv->power_mode != mode) {
9606 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009607
James Ketrenos43f66a62005-03-25 12:31:53 -06009608 if (err) {
9609 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009610 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009611 return err;
9612 }
9613 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009614 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009615 return 0;
9616}
9617
9618#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009619static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009620 struct iw_request_info *info,
9621 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009622{
9623 struct ipw_priv *priv = ieee80211_priv(dev);
9624 int level = IPW_POWER_LEVEL(priv->power_mode);
9625 char *p = extra;
9626
9627 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9628
9629 switch (level) {
9630 case IPW_POWER_AC:
9631 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9632 break;
9633 case IPW_POWER_BATTERY:
9634 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9635 break;
9636 default:
9637 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009638 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009639 timeout_duration[level - 1] / 1000,
9640 period_duration[level - 1] / 1000);
9641 }
9642
9643 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009644 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009645
9646 wrqu->data.length = p - extra + 1;
9647
9648 return 0;
9649}
9650
9651static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009652 struct iw_request_info *info,
9653 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009654{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009655 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009656 int mode = *(int *)extra;
9657 u8 band = 0, modulation = 0;
9658
9659 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009660 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009661 return -EINVAL;
9662 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009663 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009664 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009665 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009666 if (mode & IEEE_A) {
9667 band |= IEEE80211_52GHZ_BAND;
9668 modulation |= IEEE80211_OFDM_MODULATION;
9669 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009670 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009671 } else {
9672 if (mode & IEEE_A) {
9673 IPW_WARNING("Attempt to set 2200BG into "
9674 "802.11a mode\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009675 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009676 return -EINVAL;
9677 }
9678
James Ketrenosa33a1982005-09-14 14:28:59 -05009679 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009680 }
9681
9682 if (mode & IEEE_B) {
9683 band |= IEEE80211_24GHZ_BAND;
9684 modulation |= IEEE80211_CCK_MODULATION;
9685 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009686 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009687
James Ketrenos43f66a62005-03-25 12:31:53 -06009688 if (mode & IEEE_G) {
9689 band |= IEEE80211_24GHZ_BAND;
9690 modulation |= IEEE80211_OFDM_MODULATION;
9691 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009692 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009693
9694 priv->ieee->mode = mode;
9695 priv->ieee->freq_band = band;
9696 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009697 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009698
James Ketrenosc848d0a2005-08-24 21:56:24 -05009699 /* Network configuration changed -- force [re]association */
9700 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9701 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009702 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009703 ipw_associate(priv);
9704 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009705
James Ketrenosa613bff2005-08-24 21:43:11 -05009706 /* Update the band LEDs */
9707 ipw_led_band_on(priv);
9708
Jeff Garzikbf794512005-07-31 13:07:26 -04009709 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009710 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009711 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
James Ketrenosc848d0a2005-08-24 21:56:24 -05009712 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009713 return 0;
9714}
9715
9716static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009717 struct iw_request_info *info,
9718 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009719{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009720 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009721 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009722 switch (priv->ieee->mode) {
9723 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009724 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9725 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009726 case IEEE_B:
9727 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9728 break;
9729 case IEEE_A | IEEE_B:
9730 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9731 break;
9732 case IEEE_G:
9733 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9734 break;
9735 case IEEE_A | IEEE_G:
9736 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9737 break;
9738 case IEEE_B | IEEE_G:
9739 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9740 break;
9741 case IEEE_A | IEEE_B | IEEE_G:
9742 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9743 break;
9744 default:
9745 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009746 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009747 }
9748
James Ketrenos43f66a62005-03-25 12:31:53 -06009749 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9750
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009751 wrqu->data.length = strlen(extra) + 1;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009752 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009753
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009754 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009755}
9756
James Ketrenosea2b26e2005-08-24 21:25:16 -05009757static int ipw_wx_set_preamble(struct net_device *dev,
9758 struct iw_request_info *info,
9759 union iwreq_data *wrqu, char *extra)
9760{
9761 struct ipw_priv *priv = ieee80211_priv(dev);
9762 int mode = *(int *)extra;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009763 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009764 /* Switching from SHORT -> LONG requires a disassociation */
9765 if (mode == 1) {
9766 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9767 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009768
9769 /* Network configuration changed -- force [re]association */
9770 IPW_DEBUG_ASSOC
9771 ("[re]association triggered due to preamble change.\n");
9772 if (!ipw_disassociate(priv))
9773 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009774 }
9775 goto done;
9776 }
9777
9778 if (mode == 0) {
9779 priv->config &= ~CFG_PREAMBLE_LONG;
9780 goto done;
9781 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009782 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009783 return -EINVAL;
9784
9785 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009786 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009787 return 0;
9788}
9789
9790static int ipw_wx_get_preamble(struct net_device *dev,
9791 struct iw_request_info *info,
9792 union iwreq_data *wrqu, char *extra)
9793{
9794 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009795 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009796 if (priv->config & CFG_PREAMBLE_LONG)
9797 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9798 else
9799 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009800 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009801 return 0;
9802}
9803
James Ketrenosb095c382005-08-24 22:04:42 -05009804#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009805static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009806 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009807 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009808{
James Ketrenos43f66a62005-03-25 12:31:53 -06009809 struct ipw_priv *priv = ieee80211_priv(dev);
9810 int *parms = (int *)extra;
9811 int enable = (parms[0] > 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009812 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009813 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009814 if (enable) {
9815 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Mike Kershaw24a47db2005-08-26 00:41:54 -05009816#ifdef CONFIG_IEEE80211_RADIOTAP
9817 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9818#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009819 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009820#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009821 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009822 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009823
James Ketrenos43f66a62005-03-25 12:31:53 -06009824 ipw_set_channel(priv, parms[1]);
9825 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009826 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9827 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009828 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009829 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009830 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009831 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009832 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009833 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009834 return 0;
9835}
9836
James Ketrenosb095c382005-08-24 22:04:42 -05009837#endif // CONFIG_IPW2200_MONITOR
9838
Jeff Garzikbf794512005-07-31 13:07:26 -04009839static int ipw_wx_reset(struct net_device *dev,
9840 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009841 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009842{
James Ketrenos43f66a62005-03-25 12:31:53 -06009843 struct ipw_priv *priv = ieee80211_priv(dev);
9844 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009845 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009846 return 0;
9847}
James Ketrenosb095c382005-08-24 22:04:42 -05009848
James Ketrenosb095c382005-08-24 22:04:42 -05009849static int ipw_wx_sw_reset(struct net_device *dev,
9850 struct iw_request_info *info,
9851 union iwreq_data *wrqu, char *extra)
9852{
9853 struct ipw_priv *priv = ieee80211_priv(dev);
9854 union iwreq_data wrqu_sec = {
9855 .encoding = {
9856 .flags = IW_ENCODE_DISABLED,
9857 },
9858 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009859 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009860
9861 IPW_DEBUG_WX("SW_RESET\n");
9862
9863 down(&priv->sem);
9864
James Ketrenosafbf30a2005-08-25 00:05:33 -05009865 ret = ipw_sw_reset(priv, 0);
9866 if (!ret) {
9867 free_firmware();
9868 ipw_adapter_restart(priv);
9869 }
James Ketrenosb095c382005-08-24 22:04:42 -05009870
9871 /* The SW reset bit might have been toggled on by the 'disable'
9872 * module parameter, so take appropriate action */
9873 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9874
9875 up(&priv->sem);
9876 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
9877 down(&priv->sem);
9878
9879 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9880 /* Configuration likely changed -- force [re]association */
9881 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9882 "reset.\n");
9883 if (!ipw_disassociate(priv))
9884 ipw_associate(priv);
9885 }
9886
9887 up(&priv->sem);
9888
9889 return 0;
9890}
James Ketrenos43f66a62005-03-25 12:31:53 -06009891
9892/* Rebase the WE IOCTLs to zero for the handler array */
9893#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009894static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009895 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9896 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9897 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9898 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9899 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
9900 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9901 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9902 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9903 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9904 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9905 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9906 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9907 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9908 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9909 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9910 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9911 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9912 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9913 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9914 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9915 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9916 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9917 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9918 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9919 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9920 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9921 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9922 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009923 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9924 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9925 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9926 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009927#if WIRELESS_EXT > 17
9928 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9929 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9930 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9931 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9932 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9933 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9934 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
9935#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009936};
9937
James Ketrenosb095c382005-08-24 22:04:42 -05009938enum {
9939 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9940 IPW_PRIV_GET_POWER,
9941 IPW_PRIV_SET_MODE,
9942 IPW_PRIV_GET_MODE,
9943 IPW_PRIV_SET_PREAMBLE,
9944 IPW_PRIV_GET_PREAMBLE,
9945 IPW_PRIV_RESET,
9946 IPW_PRIV_SW_RESET,
9947#ifdef CONFIG_IPW2200_MONITOR
9948 IPW_PRIV_SET_MONITOR,
9949#endif
9950};
James Ketrenos43f66a62005-03-25 12:31:53 -06009951
Jeff Garzikbf794512005-07-31 13:07:26 -04009952static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009953 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009954 .cmd = IPW_PRIV_SET_POWER,
9955 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9956 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009957 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009958 .cmd = IPW_PRIV_GET_POWER,
9959 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9960 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009961 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009962 .cmd = IPW_PRIV_SET_MODE,
9963 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9964 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009965 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009966 .cmd = IPW_PRIV_GET_MODE,
9967 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9968 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009969 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009970 .cmd = IPW_PRIV_SET_PREAMBLE,
9971 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9972 .name = "set_preamble"},
9973 {
9974 .cmd = IPW_PRIV_GET_PREAMBLE,
9975 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9976 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009977 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009978 IPW_PRIV_RESET,
9979 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009980 {
9981 IPW_PRIV_SW_RESET,
9982 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9983#ifdef CONFIG_IPW2200_MONITOR
9984 {
9985 IPW_PRIV_SET_MONITOR,
9986 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9987#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009988};
9989
9990static iw_handler ipw_priv_handler[] = {
9991 ipw_wx_set_powermode,
9992 ipw_wx_get_powermode,
9993 ipw_wx_set_wireless_mode,
9994 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009995 ipw_wx_set_preamble,
9996 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009997 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -05009998 ipw_wx_sw_reset,
9999#ifdef CONFIG_IPW2200_MONITOR
10000 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -060010001#endif
10002};
10003
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010004static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010005 .standard = ipw_wx_handlers,
10006 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
10007 .num_private = ARRAY_SIZE(ipw_priv_handler),
10008 .num_private_args = ARRAY_SIZE(ipw_priv_args),
10009 .private = ipw_priv_handler,
10010 .private_args = ipw_priv_args,
James Ketrenos43f66a62005-03-25 12:31:53 -060010011};
10012
James Ketrenosa613bff2005-08-24 21:43:11 -050010013static struct iw_public_data ipw_wx_data;
10014
James Ketrenos43f66a62005-03-25 12:31:53 -060010015/*
10016 * Get wireless statistics.
10017 * Called by /proc/net/wireless
10018 * Also called by SIOCGIWSTATS
10019 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010020static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -060010021{
10022 struct ipw_priv *priv = ieee80211_priv(dev);
10023 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010024
James Ketrenos43f66a62005-03-25 12:31:53 -060010025 wstats = &priv->wstats;
10026
James Ketrenosea2b26e2005-08-24 21:25:16 -050010027 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -050010028 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -060010029 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
10030 * and associated; if not associcated, the values are all meaningless
10031 * anyway, so set them all to NULL and INVALID */
10032 if (!(priv->status & STATUS_ASSOCIATED)) {
10033 wstats->miss.beacon = 0;
10034 wstats->discard.retries = 0;
10035 wstats->qual.qual = 0;
10036 wstats->qual.level = 0;
10037 wstats->qual.noise = 0;
10038 wstats->qual.updated = 7;
10039 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010040 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -060010041 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010042 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010043
10044 wstats->qual.qual = priv->quality;
10045 wstats->qual.level = average_value(&priv->average_rssi);
10046 wstats->qual.noise = average_value(&priv->average_noise);
10047 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010048 IW_QUAL_NOISE_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -060010049
10050 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
10051 wstats->discard.retries = priv->last_tx_failures;
10052 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -040010053
James Ketrenos43f66a62005-03-25 12:31:53 -060010054/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
10055 goto fail_get_ordinal;
10056 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -040010057
James Ketrenos43f66a62005-03-25 12:31:53 -060010058 return wstats;
10059}
10060
James Ketrenos43f66a62005-03-25 12:31:53 -060010061/* net device stuff */
10062
10063static inline void init_sys_config(struct ipw_sys_config *sys_config)
10064{
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010065 memset(sys_config, 0, sizeof(struct ipw_sys_config));
10066 sys_config->bt_coexistence = 1; /* We may need to look into prvStaBtConfig */
James Ketrenos43f66a62005-03-25 12:31:53 -060010067 sys_config->answer_broadcast_ssid_probe = 0;
10068 sys_config->accept_all_data_frames = 0;
10069 sys_config->accept_non_directed_frames = 1;
10070 sys_config->exclude_unicast_unencrypted = 0;
10071 sys_config->disable_unicast_decryption = 1;
10072 sys_config->exclude_multicast_unencrypted = 0;
10073 sys_config->disable_multicast_decryption = 1;
10074 sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010075 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010076 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010077 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010078 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010079 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
James Ketrenos43f66a62005-03-25 12:31:53 -060010080}
10081
10082static int ipw_net_open(struct net_device *dev)
10083{
10084 struct ipw_priv *priv = ieee80211_priv(dev);
10085 IPW_DEBUG_INFO("dev->open\n");
10086 /* we should be verifying the device is ready to be opened */
James Ketrenosc848d0a2005-08-24 21:56:24 -050010087 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -040010088 if (!(priv->status & STATUS_RF_KILL_MASK) &&
10089 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -060010090 netif_start_queue(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010091 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010092 return 0;
10093}
10094
10095static int ipw_net_stop(struct net_device *dev)
10096{
10097 IPW_DEBUG_INFO("dev->close\n");
10098 netif_stop_queue(dev);
10099 return 0;
10100}
10101
10102/*
10103todo:
10104
10105modify to send one tfd per fragment instead of using chunking. otherwise
10106we need to heavily modify the ieee80211_skb_to_txb.
10107*/
10108
James Ketrenos227d2dc2005-07-28 16:25:55 -050010109static inline int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
10110 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010111{
James Ketrenos0dacca12005-09-21 12:23:41 -050010112 struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010113 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010114 int i = 0;
10115 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -050010116#ifdef CONFIG_IPW_QOS
10117 int tx_id = ipw_get_tx_queue_number(priv, pri);
10118 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10119#else
James Ketrenos43f66a62005-03-25 12:31:53 -060010120 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -050010121#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010122 struct clx2_queue *q = &txq->q;
10123 u8 id, hdr_len, unicast;
10124 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010125 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -060010126
James Ketrenos227d2dc2005-07-28 16:25:55 -050010127 /* If there isn't room in the queue, we return busy and let the
10128 * network stack requeue the packet for us */
10129 if (ipw_queue_space(q) < q->high_mark)
10130 return NETDEV_TX_BUSY;
10131
James Ketrenos43f66a62005-03-25 12:31:53 -060010132 switch (priv->ieee->iw_mode) {
10133 case IW_MODE_ADHOC:
10134 hdr_len = IEEE80211_3ADDR_LEN;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010135 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010136 id = ipw_find_station(priv, hdr->addr1);
10137 if (id == IPW_INVALID_STATION) {
10138 id = ipw_add_station(priv, hdr->addr1);
10139 if (id == IPW_INVALID_STATION) {
10140 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -040010141 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010142 MAC_ARG(hdr->addr1));
10143 goto drop;
10144 }
10145 }
10146 break;
10147
10148 case IW_MODE_INFRA:
10149 default:
James Ketrenosafbf30a2005-08-25 00:05:33 -050010150 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -060010151 hdr_len = IEEE80211_3ADDR_LEN;
10152 id = 0;
10153 break;
10154 }
10155
10156 tfd = &txq->bd[q->first_empty];
10157 txq->txb[q->first_empty] = txb;
10158 memset(tfd, 0, sizeof(*tfd));
10159 tfd->u.data.station_number = id;
10160
10161 tfd->control_flags.message_type = TX_FRAME_TYPE;
10162 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
10163
10164 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -050010165 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010166 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -040010167
James Ketrenos43f66a62005-03-25 12:31:53 -060010168 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -050010169 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010170 else
James Ketrenosb095c382005-08-24 22:04:42 -050010171 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010172
James Ketrenosea2b26e2005-08-24 21:25:16 -050010173 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
10174 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010175
James Ketrenosc848d0a2005-08-24 21:56:24 -050010176 fc = le16_to_cpu(hdr->frame_ctl);
10177 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
10178
James Ketrenos43f66a62005-03-25 12:31:53 -060010179 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
10180
James Ketrenosb095c382005-08-24 22:04:42 -050010181 if (likely(unicast))
10182 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10183
10184 if (txb->encrypted && !priv->ieee->host_encrypt) {
10185 switch (priv->ieee->sec.level) {
10186 case SEC_LEVEL_3:
10187 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
10188 IEEE80211_FCTL_PROTECTED;
10189 /* XXX: ACK flag must be set for CCMP even if it
10190 * is a multicast/broadcast packet, because CCMP
10191 * group communication encrypted by GTK is
10192 * actually done by the AP. */
10193 if (!unicast)
10194 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10195
10196 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10197 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
10198 tfd->u.data.key_index = 0;
10199 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
10200 break;
10201 case SEC_LEVEL_2:
10202 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
10203 IEEE80211_FCTL_PROTECTED;
10204 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10205 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
10206 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
10207 break;
10208 case SEC_LEVEL_1:
10209 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
10210 IEEE80211_FCTL_PROTECTED;
10211 tfd->u.data.key_index = priv->ieee->tx_keyidx;
10212 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
10213 40)
10214 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
10215 else
10216 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
10217 break;
10218 case SEC_LEVEL_0:
10219 break;
10220 default:
10221 printk(KERN_ERR "Unknow security level %d\n",
10222 priv->ieee->sec.level);
10223 break;
10224 }
10225 } else
10226 /* No hardware encryption */
10227 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
10228
10229#ifdef CONFIG_IPW_QOS
10230 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast);
10231#endif /* CONFIG_IPW_QOS */
10232
James Ketrenos43f66a62005-03-25 12:31:53 -060010233 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -050010234 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
10235 txb->nr_frags));
10236 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
10237 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10238 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10239 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10240 i, le32_to_cpu(tfd->u.data.num_chunks),
10241 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010242 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010243 i, tfd->u.data.num_chunks,
10244 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010245 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010246 txb->fragments[i]->len - hdr_len);
10247
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010248 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010249 cpu_to_le32(pci_map_single
10250 (priv->pci_dev,
10251 txb->fragments[i]->data + hdr_len,
10252 txb->fragments[i]->len - hdr_len,
10253 PCI_DMA_TODEVICE));
10254 tfd->u.data.chunk_len[i] =
10255 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010256 }
10257
10258 if (i != txb->nr_frags) {
10259 struct sk_buff *skb;
10260 u16 remaining_bytes = 0;
10261 int j;
10262
10263 for (j = i; j < txb->nr_frags; j++)
10264 remaining_bytes += txb->fragments[j]->len - hdr_len;
10265
10266 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10267 remaining_bytes);
10268 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10269 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010270 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010271 for (j = i; j < txb->nr_frags; j++) {
10272 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010273
James Ketrenos43f66a62005-03-25 12:31:53 -060010274 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010275 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010276 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010277 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010278 }
10279 dev_kfree_skb_any(txb->fragments[i]);
10280 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010281 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010282 cpu_to_le32(pci_map_single
10283 (priv->pci_dev, skb->data,
10284 tfd->u.data.chunk_len[i],
10285 PCI_DMA_TODEVICE));
10286
10287 tfd->u.data.num_chunks =
10288 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
10289 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010290 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010291 }
10292
10293 /* kick DMA */
10294 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10295 ipw_write32(priv, q->reg_w, q->first_empty);
10296
James Ketrenos227d2dc2005-07-28 16:25:55 -050010297 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010298
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010299 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010300 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
10301 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010302 return NETDEV_TX_OK;
10303}
10304
10305static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10306{
10307 struct ipw_priv *priv = ieee80211_priv(dev);
10308#ifdef CONFIG_IPW_QOS
10309 int tx_id = ipw_get_tx_queue_number(priv, pri);
10310 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10311#else
10312 struct clx2_tx_queue *txq = &priv->txq[0];
10313#endif /* CONFIG_IPW_QOS */
10314
10315 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
10316 return 1;
10317
10318 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010319}
10320
10321static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -050010322 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010323{
10324 struct ipw_priv *priv = ieee80211_priv(dev);
10325 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -050010326 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010327
10328 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010329 spin_lock_irqsave(&priv->lock, flags);
10330
10331 if (!(priv->status & STATUS_ASSOCIATED)) {
10332 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
10333 priv->ieee->stats.tx_carrier_errors++;
10334 netif_stop_queue(dev);
10335 goto fail_unlock;
10336 }
10337
James Ketrenos227d2dc2005-07-28 16:25:55 -050010338 ret = ipw_tx_skb(priv, txb, pri);
10339 if (ret == NETDEV_TX_OK)
10340 __ipw_led_activity_on(priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010341 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010342
James Ketrenos227d2dc2005-07-28 16:25:55 -050010343 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010344
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010345 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010346 spin_unlock_irqrestore(&priv->lock, flags);
10347 return 1;
10348}
10349
10350static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
10351{
10352 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -040010353
James Ketrenos43f66a62005-03-25 12:31:53 -060010354 priv->ieee->stats.tx_packets = priv->tx_packets;
10355 priv->ieee->stats.rx_packets = priv->rx_packets;
10356 return &priv->ieee->stats;
10357}
10358
10359static void ipw_net_set_multicast_list(struct net_device *dev)
10360{
10361
10362}
10363
10364static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10365{
10366 struct ipw_priv *priv = ieee80211_priv(dev);
10367 struct sockaddr *addr = p;
10368 if (!is_valid_ether_addr(addr->sa_data))
10369 return -EADDRNOTAVAIL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010370 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010371 priv->config |= CFG_CUSTOM_MAC;
10372 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
10373 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
10374 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -050010375 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010376 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010377 return 0;
10378}
10379
Jeff Garzikbf794512005-07-31 13:07:26 -040010380static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010381 struct ethtool_drvinfo *info)
10382{
10383 struct ipw_priv *p = ieee80211_priv(dev);
10384 char vers[64];
10385 char date[32];
10386 u32 len;
10387
10388 strcpy(info->driver, DRV_NAME);
10389 strcpy(info->version, DRV_VERSION);
10390
10391 len = sizeof(vers);
10392 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10393 len = sizeof(date);
10394 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10395
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010396 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010397 vers, date);
10398 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -050010399 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010400}
10401
10402static u32 ipw_ethtool_get_link(struct net_device *dev)
10403{
10404 struct ipw_priv *priv = ieee80211_priv(dev);
10405 return (priv->status & STATUS_ASSOCIATED) != 0;
10406}
10407
10408static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10409{
James Ketrenosb095c382005-08-24 22:04:42 -050010410 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010411}
10412
10413static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010414 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010415{
10416 struct ipw_priv *p = ieee80211_priv(dev);
10417
James Ketrenosb095c382005-08-24 22:04:42 -050010418 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010419 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010420 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010421 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010422 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010423 return 0;
10424}
10425
10426static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010427 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010428{
10429 struct ipw_priv *p = ieee80211_priv(dev);
10430 int i;
10431
James Ketrenosb095c382005-08-24 22:04:42 -050010432 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010433 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010434 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010435 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010436 for (i = IPW_EEPROM_DATA;
James Ketrenosb095c382005-08-24 22:04:42 -050010437 i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -060010438 ipw_write8(p, i, p->eeprom[i]);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010439 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010440 return 0;
10441}
10442
10443static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010444 .get_link = ipw_ethtool_get_link,
10445 .get_drvinfo = ipw_ethtool_get_drvinfo,
10446 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10447 .get_eeprom = ipw_ethtool_get_eeprom,
10448 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010449};
10450
10451static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
10452{
10453 struct ipw_priv *priv = data;
10454 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010455
James Ketrenos43f66a62005-03-25 12:31:53 -060010456 if (!priv)
10457 return IRQ_NONE;
10458
10459 spin_lock(&priv->lock);
10460
10461 if (!(priv->status & STATUS_INT_ENABLED)) {
10462 /* Shared IRQ */
10463 goto none;
10464 }
10465
James Ketrenosb095c382005-08-24 22:04:42 -050010466 inta = ipw_read32(priv, IPW_INTA_RW);
10467 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010468
James Ketrenos43f66a62005-03-25 12:31:53 -060010469 if (inta == 0xFFFFFFFF) {
10470 /* Hardware disappeared */
10471 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10472 goto none;
10473 }
10474
James Ketrenosb095c382005-08-24 22:04:42 -050010475 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010476 /* Shared interrupt */
10477 goto none;
10478 }
10479
10480 /* tell the device to stop sending interrupts */
10481 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010482
James Ketrenos43f66a62005-03-25 12:31:53 -060010483 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010484 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10485 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010486
James Ketrenos43f66a62005-03-25 12:31:53 -060010487 /* Cache INTA value for our tasklet */
10488 priv->isr_inta = inta;
10489
10490 tasklet_schedule(&priv->irq_tasklet);
10491
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010492 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010493
10494 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010495 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010496 spin_unlock(&priv->lock);
10497 return IRQ_NONE;
10498}
10499
10500static void ipw_rf_kill(void *adapter)
10501{
10502 struct ipw_priv *priv = adapter;
10503 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010504
James Ketrenos43f66a62005-03-25 12:31:53 -060010505 spin_lock_irqsave(&priv->lock, flags);
10506
10507 if (rf_kill_active(priv)) {
10508 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10509 if (priv->workqueue)
10510 queue_delayed_work(priv->workqueue,
10511 &priv->rf_kill, 2 * HZ);
10512 goto exit_unlock;
10513 }
10514
10515 /* RF Kill is now disabled, so bring the device back up */
10516
10517 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10518 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10519 "device\n");
10520
10521 /* we can not do an adapter restart while inside an irq lock */
10522 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010523 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010524 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10525 "enabled\n");
10526
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010527 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010528 spin_unlock_irqrestore(&priv->lock, flags);
10529}
10530
James Ketrenosc848d0a2005-08-24 21:56:24 -050010531static void ipw_bg_rf_kill(void *data)
10532{
10533 struct ipw_priv *priv = data;
10534 down(&priv->sem);
10535 ipw_rf_kill(data);
10536 up(&priv->sem);
10537}
10538
James Ketrenosa613bff2005-08-24 21:43:11 -050010539void ipw_link_up(struct ipw_priv *priv)
10540{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010541 priv->last_seq_num = -1;
10542 priv->last_frag_num = -1;
10543 priv->last_packet_time = 0;
10544
James Ketrenosa613bff2005-08-24 21:43:11 -050010545 netif_carrier_on(priv->net_dev);
10546 if (netif_queue_stopped(priv->net_dev)) {
10547 IPW_DEBUG_NOTIF("waking queue\n");
10548 netif_wake_queue(priv->net_dev);
10549 } else {
10550 IPW_DEBUG_NOTIF("starting queue\n");
10551 netif_start_queue(priv->net_dev);
10552 }
10553
James Ketrenosc848d0a2005-08-24 21:56:24 -050010554 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010555 ipw_reset_stats(priv);
10556 /* Ensure the rate is updated immediately */
10557 priv->last_rate = ipw_get_current_rate(priv);
10558 ipw_gather_stats(priv);
10559 ipw_led_link_up(priv);
10560 notify_wx_assoc_event(priv);
10561
10562 if (priv->config & CFG_BACKGROUND_SCAN)
10563 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10564}
10565
James Ketrenosc848d0a2005-08-24 21:56:24 -050010566static void ipw_bg_link_up(void *data)
10567{
10568 struct ipw_priv *priv = data;
10569 down(&priv->sem);
10570 ipw_link_up(data);
10571 up(&priv->sem);
10572}
10573
James Ketrenosa613bff2005-08-24 21:43:11 -050010574void ipw_link_down(struct ipw_priv *priv)
10575{
10576 ipw_led_link_down(priv);
10577 netif_carrier_off(priv->net_dev);
10578 netif_stop_queue(priv->net_dev);
10579 notify_wx_assoc_event(priv);
10580
10581 /* Cancel any queued work ... */
10582 cancel_delayed_work(&priv->request_scan);
10583 cancel_delayed_work(&priv->adhoc_check);
10584 cancel_delayed_work(&priv->gather_stats);
10585
10586 ipw_reset_stats(priv);
10587
James Ketrenosafbf30a2005-08-25 00:05:33 -050010588 if (!(priv->status & STATUS_EXIT_PENDING)) {
10589 /* Queue up another scan... */
10590 queue_work(priv->workqueue, &priv->request_scan);
10591 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010592}
10593
James Ketrenosc848d0a2005-08-24 21:56:24 -050010594static void ipw_bg_link_down(void *data)
10595{
10596 struct ipw_priv *priv = data;
10597 down(&priv->sem);
10598 ipw_link_down(data);
10599 up(&priv->sem);
10600}
10601
James Ketrenos43f66a62005-03-25 12:31:53 -060010602static int ipw_setup_deferred_work(struct ipw_priv *priv)
10603{
10604 int ret = 0;
10605
James Ketrenos43f66a62005-03-25 12:31:53 -060010606 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010607 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010608 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010609
James Ketrenosc848d0a2005-08-24 21:56:24 -050010610 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10611 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10612 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010613 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010614 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10615 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10616 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10617 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10618 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010619 INIT_WORK(&priv->request_scan,
James Ketrenosb095c382005-08-24 22:04:42 -050010620 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010621 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010622 (void (*)(void *))ipw_bg_gather_stats, priv);
10623 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10624 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10625 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10626 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10627 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10628 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010629 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010630 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010631 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010632 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10633 priv);
10634 INIT_WORK(&priv->merge_networks,
10635 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010636
James Ketrenosb095c382005-08-24 22:04:42 -050010637#ifdef CONFIG_IPW_QOS
10638 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10639 priv);
10640#endif /* CONFIG_IPW_QOS */
10641
James Ketrenos43f66a62005-03-25 12:31:53 -060010642 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10643 ipw_irq_tasklet, (unsigned long)priv);
10644
10645 return ret;
10646}
10647
James Ketrenos43f66a62005-03-25 12:31:53 -060010648static void shim__set_security(struct net_device *dev,
10649 struct ieee80211_security *sec)
10650{
10651 struct ipw_priv *priv = ieee80211_priv(dev);
10652 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010653 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010654 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010655 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010656 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010657 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010658 priv->ieee->sec.flags &= ~(1 << i);
10659 else {
10660 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010661 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010662 priv->ieee->sec.flags |= (1 << i);
10663 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010664 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010665 } else if (sec->level != SEC_LEVEL_1)
10666 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010667 }
10668
James Ketrenosb095c382005-08-24 22:04:42 -050010669 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010670 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010671 priv->ieee->sec.active_key = sec->active_key;
10672 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010673 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010674 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010675 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010676 } else
10677 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010678
10679 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010680 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10681 priv->ieee->sec.auth_mode = sec->auth_mode;
10682 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010683 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10684 priv->capability |= CAP_SHARED_KEY;
10685 else
10686 priv->capability &= ~CAP_SHARED_KEY;
10687 priv->status |= STATUS_SECURITY_UPDATED;
10688 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010689
James Ketrenosb095c382005-08-24 22:04:42 -050010690 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10691 priv->ieee->sec.flags |= SEC_ENABLED;
10692 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010693 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010694 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010695 priv->capability |= CAP_PRIVACY_ON;
10696 else
10697 priv->capability &= ~CAP_PRIVACY_ON;
10698 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010699
10700 if (sec->flags & SEC_ENCRYPT)
10701 priv->ieee->sec.encrypt = sec->encrypt;
Jeff Garzikbf794512005-07-31 13:07:26 -040010702
James Ketrenosb095c382005-08-24 22:04:42 -050010703 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10704 priv->ieee->sec.level = sec->level;
10705 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010706 priv->status |= STATUS_SECURITY_UPDATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -050010707 }
James Ketrenosb095c382005-08-24 22:04:42 -050010708
Zhu Yi1fbfea52005-08-05 17:22:56 +080010709 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10710 ipw_set_hwcrypto_keys(priv);
10711
Jeff Garzikbf794512005-07-31 13:07:26 -040010712 /* To match current functionality of ipw2100 (which works well w/
10713 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010714 * privacy capability changes ... */
10715#if 0
10716 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010717 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010718 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010719 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010720 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010721 IPW_DEBUG_ASSOC("Disassociating due to capability "
10722 "change.\n");
10723 ipw_disassociate(priv);
10724 }
10725#endif
10726}
10727
Jeff Garzikbf794512005-07-31 13:07:26 -040010728static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010729 struct ipw_supported_rates *rates)
10730{
10731 /* TODO: Mask out rates based on priv->rates_mask */
10732
10733 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010734 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010735 switch (priv->ieee->freq_band) {
10736 case IEEE80211_52GHZ_BAND:
10737 rates->ieee_mode = IPW_A_MODE;
10738 rates->purpose = IPW_RATE_CAPABILITIES;
10739 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10740 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10741 break;
10742
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010743 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010744 rates->ieee_mode = IPW_G_MODE;
10745 rates->purpose = IPW_RATE_CAPABILITIES;
10746 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10747 IEEE80211_CCK_DEFAULT_RATES_MASK);
10748 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10749 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10750 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10751 }
10752 break;
10753 }
10754
10755 return 0;
10756}
10757
Jeff Garzikbf794512005-07-31 13:07:26 -040010758static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010759{
James Ketrenos43f66a62005-03-25 12:31:53 -060010760 /* This is only called from ipw_up, which resets/reloads the firmware
10761 so, we don't need to first disable the card before we configure
10762 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010763 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010764 goto error;
10765
10766 /* initialize adapter address */
10767 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10768 goto error;
10769
10770 /* set basic system config settings */
10771 init_sys_config(&priv->sys_config);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010772 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10773 priv->sys_config.answer_broadcast_ssid_probe = 1;
10774 else
10775 priv->sys_config.answer_broadcast_ssid_probe = 0;
10776
James Ketrenos43f66a62005-03-25 12:31:53 -060010777 if (ipw_send_system_config(priv, &priv->sys_config))
10778 goto error;
10779
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010780 init_supported_rates(priv, &priv->rates);
10781 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010782 goto error;
10783
10784 /* Set request-to-send threshold */
10785 if (priv->rts_threshold) {
10786 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10787 goto error;
10788 }
James Ketrenosb095c382005-08-24 22:04:42 -050010789#ifdef CONFIG_IPW_QOS
10790 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10791 ipw_qos_activate(priv, NULL);
10792#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010793
10794 if (ipw_set_random_seed(priv))
10795 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010796
James Ketrenos43f66a62005-03-25 12:31:53 -060010797 /* final state transition to the RUN state */
10798 if (ipw_send_host_complete(priv))
10799 goto error;
10800
James Ketrenose6666192005-08-12 09:17:04 -050010801 priv->status |= STATUS_INIT;
10802
10803 ipw_led_init(priv);
10804 ipw_led_radio_on(priv);
10805 priv->notif_missed_beacons = 0;
10806
10807 /* Set hardware WEP key if it is configured. */
10808 if ((priv->capability & CAP_PRIVACY_ON) &&
10809 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10810 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10811 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010812
10813 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010814
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010815 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010816 return -EIO;
10817}
10818
James Ketrenos4f36f802005-08-03 20:36:56 -050010819/*
10820 * NOTE:
10821 *
10822 * These tables have been tested in conjunction with the
10823 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10824 *
10825 * Altering this values, using it on other hardware, or in geographies
10826 * not intended for resale of the above mentioned Intel adapters has
10827 * not been tested.
10828 *
10829 */
10830static const struct ieee80211_geo ipw_geos[] = {
10831 { /* Restricted */
10832 "---",
10833 .bg_channels = 11,
10834 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10835 {2427, 4}, {2432, 5}, {2437, 6},
10836 {2442, 7}, {2447, 8}, {2452, 9},
10837 {2457, 10}, {2462, 11}},
10838 },
10839
10840 { /* Custom US/Canada */
10841 "ZZF",
10842 .bg_channels = 11,
10843 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10844 {2427, 4}, {2432, 5}, {2437, 6},
10845 {2442, 7}, {2447, 8}, {2452, 9},
10846 {2457, 10}, {2462, 11}},
10847 .a_channels = 8,
10848 .a = {{5180, 36},
10849 {5200, 40},
10850 {5220, 44},
10851 {5240, 48},
10852 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10853 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10854 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10855 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10856 },
10857
10858 { /* Rest of World */
10859 "ZZD",
10860 .bg_channels = 13,
10861 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10862 {2427, 4}, {2432, 5}, {2437, 6},
10863 {2442, 7}, {2447, 8}, {2452, 9},
10864 {2457, 10}, {2462, 11}, {2467, 12},
10865 {2472, 13}},
10866 },
10867
10868 { /* Custom USA & Europe & High */
10869 "ZZA",
10870 .bg_channels = 11,
10871 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10872 {2427, 4}, {2432, 5}, {2437, 6},
10873 {2442, 7}, {2447, 8}, {2452, 9},
10874 {2457, 10}, {2462, 11}},
10875 .a_channels = 13,
10876 .a = {{5180, 36},
10877 {5200, 40},
10878 {5220, 44},
10879 {5240, 48},
10880 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10881 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10882 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10883 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10884 {5745, 149},
10885 {5765, 153},
10886 {5785, 157},
10887 {5805, 161},
10888 {5825, 165}},
10889 },
10890
10891 { /* Custom NA & Europe */
10892 "ZZB",
10893 .bg_channels = 11,
10894 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10895 {2427, 4}, {2432, 5}, {2437, 6},
10896 {2442, 7}, {2447, 8}, {2452, 9},
10897 {2457, 10}, {2462, 11}},
10898 .a_channels = 13,
10899 .a = {{5180, 36},
10900 {5200, 40},
10901 {5220, 44},
10902 {5240, 48},
10903 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10904 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10905 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10906 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10907 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
10908 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
10909 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
10910 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
10911 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
10912 },
10913
10914 { /* Custom Japan */
10915 "ZZC",
10916 .bg_channels = 11,
10917 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10918 {2427, 4}, {2432, 5}, {2437, 6},
10919 {2442, 7}, {2447, 8}, {2452, 9},
10920 {2457, 10}, {2462, 11}},
10921 .a_channels = 4,
10922 .a = {{5170, 34}, {5190, 38},
10923 {5210, 42}, {5230, 46}},
10924 },
10925
10926 { /* Custom */
10927 "ZZM",
10928 .bg_channels = 11,
10929 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10930 {2427, 4}, {2432, 5}, {2437, 6},
10931 {2442, 7}, {2447, 8}, {2452, 9},
10932 {2457, 10}, {2462, 11}},
10933 },
10934
10935 { /* Europe */
10936 "ZZE",
10937 .bg_channels = 13,
10938 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10939 {2427, 4}, {2432, 5}, {2437, 6},
10940 {2442, 7}, {2447, 8}, {2452, 9},
10941 {2457, 10}, {2462, 11}, {2467, 12},
10942 {2472, 13}},
10943 .a_channels = 19,
10944 .a = {{5180, 36},
10945 {5200, 40},
10946 {5220, 44},
10947 {5240, 48},
10948 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10949 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10950 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10951 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
10952 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
10953 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
10954 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
10955 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
10956 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
10957 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
10958 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
10959 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
10960 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
10961 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
10962 {5700, 140, IEEE80211_CH_PASSIVE_ONLY}},
10963 },
10964
10965 { /* Custom Japan */
10966 "ZZJ",
10967 .bg_channels = 14,
10968 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10969 {2427, 4}, {2432, 5}, {2437, 6},
10970 {2442, 7}, {2447, 8}, {2452, 9},
10971 {2457, 10}, {2462, 11}, {2467, 12},
10972 {2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY}},
10973 .a_channels = 4,
10974 .a = {{5170, 34}, {5190, 38},
10975 {5210, 42}, {5230, 46}},
10976 },
10977
10978 { /* High Band */
10979 "ZZH",
10980 .bg_channels = 13,
10981 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10982 {2427, 4}, {2432, 5}, {2437, 6},
10983 {2442, 7}, {2447, 8}, {2452, 9},
10984 {2457, 10}, {2462, 11},
10985 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
10986 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
10987 .a_channels = 4,
10988 .a = {{5745, 149}, {5765, 153},
10989 {5785, 157}, {5805, 161}},
10990 },
10991
10992 { /* Custom Europe */
10993 "ZZG",
10994 .bg_channels = 13,
10995 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10996 {2427, 4}, {2432, 5}, {2437, 6},
10997 {2442, 7}, {2447, 8}, {2452, 9},
10998 {2457, 10}, {2462, 11},
10999 {2467, 12}, {2472, 13}},
11000 .a_channels = 4,
11001 .a = {{5180, 36}, {5200, 40},
11002 {5220, 44}, {5240, 48}},
11003 },
11004
11005 { /* Europe */
11006 "ZZK",
11007 .bg_channels = 13,
11008 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11009 {2427, 4}, {2432, 5}, {2437, 6},
11010 {2442, 7}, {2447, 8}, {2452, 9},
11011 {2457, 10}, {2462, 11},
11012 {2467, 12, IEEE80211_CH_PASSIVE_ONLY},
11013 {2472, 13, IEEE80211_CH_PASSIVE_ONLY}},
11014 .a_channels = 24,
11015 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
11016 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
11017 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
11018 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
11019 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
11020 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
11021 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
11022 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
11023 {5500, 100, IEEE80211_CH_PASSIVE_ONLY},
11024 {5520, 104, IEEE80211_CH_PASSIVE_ONLY},
11025 {5540, 108, IEEE80211_CH_PASSIVE_ONLY},
11026 {5560, 112, IEEE80211_CH_PASSIVE_ONLY},
11027 {5580, 116, IEEE80211_CH_PASSIVE_ONLY},
11028 {5600, 120, IEEE80211_CH_PASSIVE_ONLY},
11029 {5620, 124, IEEE80211_CH_PASSIVE_ONLY},
11030 {5640, 128, IEEE80211_CH_PASSIVE_ONLY},
11031 {5660, 132, IEEE80211_CH_PASSIVE_ONLY},
11032 {5680, 136, IEEE80211_CH_PASSIVE_ONLY},
11033 {5700, 140, IEEE80211_CH_PASSIVE_ONLY},
11034 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
11035 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
11036 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
11037 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
11038 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
11039 },
11040
11041 { /* Europe */
11042 "ZZL",
11043 .bg_channels = 11,
11044 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11045 {2427, 4}, {2432, 5}, {2437, 6},
11046 {2442, 7}, {2447, 8}, {2452, 9},
11047 {2457, 10}, {2462, 11}},
11048 .a_channels = 13,
11049 .a = {{5180, 36, IEEE80211_CH_PASSIVE_ONLY},
11050 {5200, 40, IEEE80211_CH_PASSIVE_ONLY},
11051 {5220, 44, IEEE80211_CH_PASSIVE_ONLY},
11052 {5240, 48, IEEE80211_CH_PASSIVE_ONLY},
11053 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
11054 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
11055 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
11056 {5320, 64, IEEE80211_CH_PASSIVE_ONLY},
11057 {5745, 149, IEEE80211_CH_PASSIVE_ONLY},
11058 {5765, 153, IEEE80211_CH_PASSIVE_ONLY},
11059 {5785, 157, IEEE80211_CH_PASSIVE_ONLY},
11060 {5805, 161, IEEE80211_CH_PASSIVE_ONLY},
11061 {5825, 165, IEEE80211_CH_PASSIVE_ONLY}},
11062 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050011063};
11064
Liu Hong1fe0adb2005-08-19 09:33:10 -050011065/* GEO code borrowed from ieee80211_geo.c */
11066static int ipw_is_valid_channel(struct ieee80211_device *ieee, u8 channel)
11067{
11068 int i;
11069
11070 /* Driver needs to initialize the geography map before using
11071 * these helper functions */
11072 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
11073
11074 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
11075 for (i = 0; i < ieee->geo.bg_channels; i++)
11076 /* NOTE: If G mode is currently supported but
11077 * this is a B only channel, we don't see it
11078 * as valid. */
11079 if ((ieee->geo.bg[i].channel == channel) &&
11080 (!(ieee->mode & IEEE_G) ||
11081 !(ieee->geo.bg[i].flags & IEEE80211_CH_B_ONLY)))
11082 return IEEE80211_24GHZ_BAND;
11083
11084 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
11085 for (i = 0; i < ieee->geo.a_channels; i++)
11086 if (ieee->geo.a[i].channel == channel)
11087 return IEEE80211_52GHZ_BAND;
11088
11089 return 0;
11090}
11091
11092static int ipw_channel_to_index(struct ieee80211_device *ieee, u8 channel)
11093{
11094 int i;
11095
11096 /* Driver needs to initialize the geography map before using
11097 * these helper functions */
11098 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
11099
11100 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
11101 for (i = 0; i < ieee->geo.bg_channels; i++)
11102 if (ieee->geo.bg[i].channel == channel)
11103 return i;
11104
11105 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
11106 for (i = 0; i < ieee->geo.a_channels; i++)
11107 if (ieee->geo.a[i].channel == channel)
11108 return i;
11109
11110 return -1;
11111}
11112
11113static u8 ipw_freq_to_channel(struct ieee80211_device *ieee, u32 freq)
11114{
11115 int i;
11116
11117 /* Driver needs to initialize the geography map before using
11118 * these helper functions */
11119 BUG_ON(ieee->geo.bg_channels == 0 && ieee->geo.a_channels == 0);
11120
11121 freq /= 100000;
11122
11123 if (ieee->freq_band & IEEE80211_24GHZ_BAND)
11124 for (i = 0; i < ieee->geo.bg_channels; i++)
11125 if (ieee->geo.bg[i].freq == freq)
11126 return ieee->geo.bg[i].channel;
11127
11128 if (ieee->freq_band & IEEE80211_52GHZ_BAND)
11129 for (i = 0; i < ieee->geo.a_channels; i++)
11130 if (ieee->geo.a[i].freq == freq)
11131 return ieee->geo.a[i].channel;
11132
11133 return 0;
11134}
11135
11136static int ipw_set_geo(struct ieee80211_device *ieee,
11137 const struct ieee80211_geo *geo)
11138{
11139 memcpy(ieee->geo.name, geo->name, 3);
11140 ieee->geo.name[3] = '\0';
11141 ieee->geo.bg_channels = geo->bg_channels;
11142 ieee->geo.a_channels = geo->a_channels;
11143 memcpy(ieee->geo.bg, geo->bg, geo->bg_channels *
11144 sizeof(struct ieee80211_channel));
11145 memcpy(ieee->geo.a, geo->a, ieee->geo.a_channels *
11146 sizeof(struct ieee80211_channel));
11147 return 0;
11148}
11149
11150static const struct ieee80211_geo *ipw_get_geo(struct ieee80211_device *ieee)
11151{
11152 return &ieee->geo;
11153}
11154
James Ketrenos43f66a62005-03-25 12:31:53 -060011155#define MAX_HW_RESTARTS 5
11156static int ipw_up(struct ipw_priv *priv)
11157{
James Ketrenos4f36f802005-08-03 20:36:56 -050011158 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060011159
11160 if (priv->status & STATUS_EXIT_PENDING)
11161 return -EIO;
11162
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011163 if (cmdlog && !priv->cmdlog) {
11164 priv->cmdlog = kmalloc(sizeof(*priv->cmdlog) * cmdlog,
11165 GFP_KERNEL);
11166 if (priv->cmdlog == NULL) {
11167 IPW_ERROR("Error allocating %d command log entries.\n",
11168 cmdlog);
11169 } else {
11170 memset(priv->cmdlog, 0, sizeof(*priv->cmdlog) * cmdlog);
11171 priv->cmdlog_len = cmdlog;
11172 }
11173 }
11174
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011175 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040011176 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060011177 * Also start the clocks. */
11178 rc = ipw_load(priv);
11179 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050011180 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011181 return rc;
11182 }
11183
11184 ipw_init_ordinals(priv);
11185 if (!(priv->config & CFG_CUSTOM_MAC))
11186 eeprom_parse_mac(priv, priv->mac_addr);
11187 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
11188
James Ketrenos4f36f802005-08-03 20:36:56 -050011189 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
11190 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
11191 ipw_geos[j].name, 3))
11192 break;
11193 }
11194 if (j == ARRAY_SIZE(ipw_geos))
11195 j = 0;
Liu Hong1fe0adb2005-08-19 09:33:10 -050011196 if (ipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050011197 IPW_WARNING("Could not set geography.");
11198 return 0;
11199 }
11200
11201 IPW_DEBUG_INFO("Geography %03d [%s] detected.\n",
11202 j, priv->ieee->geo.name);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011203
James Ketrenosb095c382005-08-24 22:04:42 -050011204 if (priv->status & STATUS_RF_KILL_SW) {
11205 IPW_WARNING("Radio disabled by module parameter.\n");
11206 return 0;
11207 } else if (rf_kill_active(priv)) {
11208 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
11209 "Kill switch must be turned off for "
11210 "wireless networking to work.\n");
11211 queue_delayed_work(priv->workqueue, &priv->rf_kill,
11212 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060011213 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011214 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011215
11216 rc = ipw_config(priv);
11217 if (!rc) {
11218 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011219
James Ketrenose6666192005-08-12 09:17:04 -050011220 /* If configure to try and auto-associate, kick
11221 * off a scan. */
11222 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011223
James Ketrenos43f66a62005-03-25 12:31:53 -060011224 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011225 }
Jeff Garzikbf794512005-07-31 13:07:26 -040011226
James Ketrenosc848d0a2005-08-24 21:56:24 -050011227 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011228 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
11229 i, MAX_HW_RESTARTS);
11230
11231 /* We had an error bringing up the hardware, so take it
11232 * all the way back down so we can try again */
11233 ipw_down(priv);
11234 }
11235
Jeff Garzikbf794512005-07-31 13:07:26 -040011236 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060011237 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011238 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011239
James Ketrenos43f66a62005-03-25 12:31:53 -060011240 return -EIO;
11241}
11242
James Ketrenosc848d0a2005-08-24 21:56:24 -050011243static void ipw_bg_up(void *data)
11244{
11245 struct ipw_priv *priv = data;
11246 down(&priv->sem);
11247 ipw_up(data);
11248 up(&priv->sem);
11249}
11250
James Ketrenosb095c382005-08-24 22:04:42 -050011251static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011252{
James Ketrenosb095c382005-08-24 22:04:42 -050011253 int i;
11254
11255 if (priv->status & STATUS_SCANNING) {
11256 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11257 ipw_abort_scan(priv);
11258 }
11259
11260 if (priv->status & STATUS_ASSOCIATED) {
11261 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11262 ipw_disassociate(priv);
11263 }
11264
11265 ipw_led_shutdown(priv);
11266
11267 /* Wait up to 1s for status to change to not scanning and not
11268 * associated (disassociation can take a while for a ful 802.11
11269 * exchange */
11270 for (i = 1000; i && (priv->status &
11271 (STATUS_DISASSOCIATING |
11272 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11273 udelay(10);
11274
11275 if (priv->status & (STATUS_DISASSOCIATING |
11276 STATUS_ASSOCIATED | STATUS_SCANNING))
11277 IPW_DEBUG_INFO("Still associated or scanning...\n");
11278 else
11279 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11280
James Ketrenosc848d0a2005-08-24 21:56:24 -050011281 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011282 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011283
11284 priv->status &= ~STATUS_INIT;
11285}
11286
11287static void ipw_down(struct ipw_priv *priv)
11288{
11289 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11290
11291 priv->status |= STATUS_EXIT_PENDING;
11292
11293 if (ipw_is_init(priv))
11294 ipw_deinit(priv);
11295
11296 /* Wipe out the EXIT_PENDING status bit if we are not actually
11297 * exiting the module */
11298 if (!exit_pending)
11299 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011300
11301 /* tell the device to stop sending interrupts */
11302 ipw_disable_interrupts(priv);
11303
11304 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011305 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011306 netif_carrier_off(priv->net_dev);
11307 netif_stop_queue(priv->net_dev);
11308
11309 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011310
11311 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011312}
11313
James Ketrenosc848d0a2005-08-24 21:56:24 -050011314static void ipw_bg_down(void *data)
11315{
11316 struct ipw_priv *priv = data;
11317 down(&priv->sem);
11318 ipw_down(data);
11319 up(&priv->sem);
11320}
11321
James Ketrenosafbf30a2005-08-25 00:05:33 -050011322#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011323static int ipw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
11324{
James Ketrenosea2b26e2005-08-24 21:25:16 -050011325 struct iwreq *wrq = (struct iwreq *)rq;
11326 int ret = -1;
11327 switch (cmd) {
11328 case IPW_IOCTL_WPA_SUPPLICANT:
11329 ret = ipw_wpa_supplicant(dev, &wrq->u.data);
11330 return ret;
11331
11332 default:
11333 return -EOPNOTSUPP;
11334 }
11335
James Ketrenosea2b26e2005-08-24 21:25:16 -050011336 return -EOPNOTSUPP;
11337}
James Ketrenosafbf30a2005-08-25 00:05:33 -050011338#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -050011339
James Ketrenos43f66a62005-03-25 12:31:53 -060011340/* Called by register_netdev() */
11341static int ipw_net_init(struct net_device *dev)
11342{
11343 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011344 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011345
James Ketrenosc848d0a2005-08-24 21:56:24 -050011346 if (ipw_up(priv)) {
11347 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011348 return -EIO;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011349 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011350
James Ketrenosc848d0a2005-08-24 21:56:24 -050011351 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011352 return 0;
11353}
11354
11355/* PCI driver stuff */
11356static struct pci_device_id card_ids[] = {
11357 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11358 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11359 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11360 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11361 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11362 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11363 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11364 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11365 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11366 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11367 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11368 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11369 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11370 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11371 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11372 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11373 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
11374 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011375 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050011376 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011377 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
11378 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011379
James Ketrenos43f66a62005-03-25 12:31:53 -060011380 /* required last entry */
11381 {0,}
11382};
11383
11384MODULE_DEVICE_TABLE(pci, card_ids);
11385
11386static struct attribute *ipw_sysfs_entries[] = {
11387 &dev_attr_rf_kill.attr,
11388 &dev_attr_direct_dword.attr,
11389 &dev_attr_indirect_byte.attr,
11390 &dev_attr_indirect_dword.attr,
11391 &dev_attr_mem_gpio_reg.attr,
11392 &dev_attr_command_event_reg.attr,
11393 &dev_attr_nic_type.attr,
11394 &dev_attr_status.attr,
11395 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011396 &dev_attr_error.attr,
11397 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011398 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011399 &dev_attr_eeprom_delay.attr,
11400 &dev_attr_ucode_version.attr,
11401 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011402 &dev_attr_scan_age.attr,
11403 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011404 &dev_attr_speed_scan.attr,
11405 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011406 NULL
11407};
11408
11409static struct attribute_group ipw_attribute_group = {
11410 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011411 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011412};
11413
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011414static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011415{
11416 int err = 0;
11417 struct net_device *net_dev;
11418 void __iomem *base;
11419 u32 length, val;
11420 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011421 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011422
11423 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
11424 if (net_dev == NULL) {
11425 err = -ENOMEM;
11426 goto out;
11427 }
11428
11429 priv = ieee80211_priv(net_dev);
11430 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011431
James Ketrenos43f66a62005-03-25 12:31:53 -060011432 priv->net_dev = net_dev;
11433 priv->pci_dev = pdev;
11434#ifdef CONFIG_IPW_DEBUG
11435 ipw_debug_level = debug;
11436#endif
11437 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011438 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11439 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011440
James Ketrenosc848d0a2005-08-24 21:56:24 -050011441 init_MUTEX(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011442 if (pci_enable_device(pdev)) {
11443 err = -ENODEV;
11444 goto out_free_ieee80211;
11445 }
11446
11447 pci_set_master(pdev);
11448
Tobias Klauser0e08b442005-06-20 14:28:41 -070011449 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040011450 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070011451 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060011452 if (err) {
11453 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11454 goto out_pci_disable_device;
11455 }
11456
11457 pci_set_drvdata(pdev, priv);
11458
11459 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011460 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011461 goto out_pci_disable_device;
11462
Jeff Garzikbf794512005-07-31 13:07:26 -040011463 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011464 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011465 pci_read_config_dword(pdev, 0x40, &val);
11466 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011467 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011468
James Ketrenos43f66a62005-03-25 12:31:53 -060011469 length = pci_resource_len(pdev, 0);
11470 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011471
James Ketrenos43f66a62005-03-25 12:31:53 -060011472 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
11473 if (!base) {
11474 err = -ENODEV;
11475 goto out_pci_release_regions;
11476 }
11477
11478 priv->hw_base = base;
11479 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11480 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11481
11482 err = ipw_setup_deferred_work(priv);
11483 if (err) {
11484 IPW_ERROR("Unable to setup deferred work\n");
11485 goto out_iounmap;
11486 }
11487
James Ketrenosb095c382005-08-24 22:04:42 -050011488 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011489
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011490 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011491 if (err) {
11492 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11493 goto out_destroy_workqueue;
11494 }
11495
11496 SET_MODULE_OWNER(net_dev);
11497 SET_NETDEV_DEV(net_dev, &pdev->dev);
11498
James Ketrenosa613bff2005-08-24 21:43:11 -050011499 ipw_wx_data.spy_data = &priv->ieee->spy_data;
11500 ipw_wx_data.ieee80211 = priv->ieee;
11501
James Ketrenosc848d0a2005-08-24 21:56:24 -050011502 down(&priv->sem);
11503
James Ketrenos43f66a62005-03-25 12:31:53 -060011504 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11505 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011506 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011507
James Ketrenosb095c382005-08-24 22:04:42 -050011508#ifdef CONFIG_IPW_QOS
James Ketrenos3b9990c2005-08-19 13:18:55 -050011509 priv->ieee->handle_probe_response = ipw_handle_beacon;
11510 priv->ieee->handle_beacon = ipw_handle_probe_response;
11511 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
James Ketrenosb095c382005-08-24 22:04:42 -050011512#endif /* CONFIG_IPW_QOS */
11513
James Ketrenosc848d0a2005-08-24 21:56:24 -050011514 priv->ieee->perfect_rssi = -20;
11515 priv->ieee->worst_rssi = -85;
11516
James Ketrenos43f66a62005-03-25 12:31:53 -060011517 net_dev->open = ipw_net_open;
11518 net_dev->stop = ipw_net_stop;
11519 net_dev->init = ipw_net_init;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011520#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050011521 net_dev->do_ioctl = ipw_ioctl;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011522#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011523 net_dev->get_stats = ipw_net_get_stats;
11524 net_dev->set_multicast_list = ipw_net_set_multicast_list;
11525 net_dev->set_mac_address = ipw_net_set_mac_address;
11526 net_dev->get_wireless_stats = ipw_get_wireless_stats;
James Ketrenosa613bff2005-08-24 21:43:11 -050011527 net_dev->wireless_data = &ipw_wx_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011528 net_dev->wireless_handlers = &ipw_wx_handler_def;
11529 net_dev->ethtool_ops = &ipw_ethtool_ops;
11530 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011531 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011532 net_dev->mem_start = pci_resource_start(pdev, 0);
11533 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11534
11535 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11536 if (err) {
11537 IPW_ERROR("failed to create sysfs device attributes\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -050011538 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011539 goto out_release_irq;
11540 }
11541
James Ketrenosc848d0a2005-08-24 21:56:24 -050011542 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011543 err = register_netdev(net_dev);
11544 if (err) {
11545 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011546 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011547 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011548 return 0;
11549
James Ketrenosa613bff2005-08-24 21:43:11 -050011550 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011551 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011552 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011553 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011554 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011555 destroy_workqueue(priv->workqueue);
11556 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011557 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011558 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011559 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011560 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011561 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011562 pci_disable_device(pdev);
11563 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011564 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060011565 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011566 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011567 return err;
11568}
11569
11570static void ipw_pci_remove(struct pci_dev *pdev)
11571{
11572 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011573 struct list_head *p, *q;
11574 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011575
James Ketrenos43f66a62005-03-25 12:31:53 -060011576 if (!priv)
11577 return;
11578
James Ketrenosb095c382005-08-24 22:04:42 -050011579 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011580
11581 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011582 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -050011583 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011584
James Ketrenosb095c382005-08-24 22:04:42 -050011585 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060011586
11587 unregister_netdev(priv->net_dev);
11588
11589 if (priv->rxq) {
11590 ipw_rx_queue_free(priv, priv->rxq);
11591 priv->rxq = NULL;
11592 }
11593 ipw_tx_queue_free(priv);
11594
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011595 if (priv->cmdlog) {
11596 kfree(priv->cmdlog);
11597 priv->cmdlog = NULL;
11598 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011599 /* ipw_down will ensure that there is no more pending work
11600 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011601 cancel_delayed_work(&priv->adhoc_check);
11602 cancel_delayed_work(&priv->gather_stats);
11603 cancel_delayed_work(&priv->request_scan);
11604 cancel_delayed_work(&priv->rf_kill);
11605 cancel_delayed_work(&priv->scan_check);
11606 destroy_workqueue(priv->workqueue);
11607 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011608
James Ketrenosafbf30a2005-08-25 00:05:33 -050011609 /* Free MAC hash list for ADHOC */
11610 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11611 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
11612 kfree(list_entry(p, struct ipw_ibss_seq, list));
11613 list_del(p);
11614 }
11615 }
11616
James Ketrenosb39860c2005-08-12 09:36:32 -050011617 if (priv->error) {
11618 ipw_free_error_log(priv->error);
11619 priv->error = NULL;
11620 }
11621
James Ketrenos43f66a62005-03-25 12:31:53 -060011622 free_irq(pdev->irq, priv);
11623 iounmap(priv->hw_base);
11624 pci_release_regions(pdev);
11625 pci_disable_device(pdev);
11626 pci_set_drvdata(pdev, NULL);
11627 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011628 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011629}
11630
James Ketrenos43f66a62005-03-25 12:31:53 -060011631#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011632static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011633{
11634 struct ipw_priv *priv = pci_get_drvdata(pdev);
11635 struct net_device *dev = priv->net_dev;
11636
11637 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11638
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011639 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011640 ipw_down(priv);
11641
11642 /* Remove the PRESENT state of the device */
11643 netif_device_detach(dev);
11644
James Ketrenos43f66a62005-03-25 12:31:53 -060011645 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011646 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011647 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011648
James Ketrenos43f66a62005-03-25 12:31:53 -060011649 return 0;
11650}
11651
11652static int ipw_pci_resume(struct pci_dev *pdev)
11653{
11654 struct ipw_priv *priv = pci_get_drvdata(pdev);
11655 struct net_device *dev = priv->net_dev;
11656 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011657
James Ketrenos43f66a62005-03-25 12:31:53 -060011658 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11659
James Ketrenosea2b26e2005-08-24 21:25:16 -050011660 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011661 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011662 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011663
James Ketrenos43f66a62005-03-25 12:31:53 -060011664 /*
11665 * Suspend/Resume resets the PCI configuration space, so we have to
11666 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11667 * from interfering with C3 CPU state. pci_restore_state won't help
11668 * here since it only restores the first 64 bytes pci config header.
11669 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011670 pci_read_config_dword(pdev, 0x40, &val);
11671 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011672 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11673
11674 /* Set the device back into the PRESENT state; this will also wake
11675 * the queue of needed */
11676 netif_device_attach(dev);
11677
11678 /* Bring the device back up */
11679 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011680
James Ketrenos43f66a62005-03-25 12:31:53 -060011681 return 0;
11682}
11683#endif
11684
11685/* driver initialization stuff */
11686static struct pci_driver ipw_driver = {
11687 .name = DRV_NAME,
11688 .id_table = card_ids,
11689 .probe = ipw_pci_probe,
11690 .remove = __devexit_p(ipw_pci_remove),
11691#ifdef CONFIG_PM
11692 .suspend = ipw_pci_suspend,
11693 .resume = ipw_pci_resume,
11694#endif
11695};
11696
11697static int __init ipw_init(void)
11698{
11699 int ret;
11700
11701 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11702 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11703
11704 ret = pci_module_init(&ipw_driver);
11705 if (ret) {
11706 IPW_ERROR("Unable to initialize PCI module\n");
11707 return ret;
11708 }
11709
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011710 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011711 if (ret) {
11712 IPW_ERROR("Unable to create driver sysfs file\n");
11713 pci_unregister_driver(&ipw_driver);
11714 return ret;
11715 }
11716
11717 return ret;
11718}
11719
11720static void __exit ipw_exit(void)
11721{
11722 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11723 pci_unregister_driver(&ipw_driver);
11724}
11725
11726module_param(disable, int, 0444);
11727MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11728
11729module_param(associate, int, 0444);
11730MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
11731
11732module_param(auto_create, int, 0444);
11733MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
11734
James Ketrenosa613bff2005-08-24 21:43:11 -050011735module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011736MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011737
James Ketrenos43f66a62005-03-25 12:31:53 -060011738module_param(debug, int, 0444);
11739MODULE_PARM_DESC(debug, "debug output mask");
11740
11741module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040011742MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060011743
James Ketrenosb095c382005-08-24 22:04:42 -050011744#ifdef CONFIG_IPW_QOS
11745module_param(qos_enable, int, 0444);
11746MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
11747
11748module_param(qos_burst_enable, int, 0444);
11749MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
11750
11751module_param(qos_no_ack_mask, int, 0444);
11752MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
11753
11754module_param(burst_duration_CCK, int, 0444);
11755MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
11756
11757module_param(burst_duration_OFDM, int, 0444);
11758MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
11759#endif /* CONFIG_IPW_QOS */
11760
11761#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060011762module_param(mode, int, 0444);
11763MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
11764#else
11765module_param(mode, int, 0444);
11766MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
11767#endif
11768
James Ketrenosb095c382005-08-24 22:04:42 -050011769module_param(hwcrypto, int, 0444);
11770MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)");
11771
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011772module_param(cmdlog, int, 0444);
11773MODULE_PARM_DESC(cmdlog,
11774 "allocate a ring buffer for logging firmware commands");
11775
James Ketrenos43f66a62005-03-25 12:31:53 -060011776module_exit(ipw_exit);
11777module_init(ipw_init);