blob: 073721f1057774acaa50b710770ae546fe821c87 [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
47static int debug = 0;
48static int channel = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060049static int mode = 0;
50
51static u32 ipw_debug_level;
52static int associate = 1;
53static int auto_create = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -050054static int led = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060055static int disable = 0;
James Ketrenosb095c382005-08-24 22:04:42 -050056static int hwcrypto = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -060057static const char ipw_modes[] = {
58 'a', 'b', 'g', '?'
59};
60
James Ketrenosb095c382005-08-24 22:04:42 -050061#ifdef CONFIG_IPW_QOS
62static int qos_enable = 0;
63static int qos_burst_enable = 0;
64static int qos_no_ack_mask = 0;
65static int burst_duration_CCK = 0;
66static int burst_duration_OFDM = 0;
67
68static struct ieee80211_qos_parameters def_qos_parameters_OFDM = {
69 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
70 QOS_TX3_CW_MIN_OFDM},
71 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
72 QOS_TX3_CW_MAX_OFDM},
73 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
74 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
75 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
76 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
77};
78
79static struct ieee80211_qos_parameters def_qos_parameters_CCK = {
80 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
81 QOS_TX3_CW_MIN_CCK},
82 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
83 QOS_TX3_CW_MAX_CCK},
84 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
85 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
86 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
87 QOS_TX3_TXOP_LIMIT_CCK}
88};
89
90static struct ieee80211_qos_parameters def_parameters_OFDM = {
91 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
92 DEF_TX3_CW_MIN_OFDM},
93 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
94 DEF_TX3_CW_MAX_OFDM},
95 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
96 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
97 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
98 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
99};
100
101static struct ieee80211_qos_parameters def_parameters_CCK = {
102 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
103 DEF_TX3_CW_MIN_CCK},
104 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
105 DEF_TX3_CW_MAX_CCK},
106 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
107 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
108 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
109 DEF_TX3_TXOP_LIMIT_CCK}
110};
111
112static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
113
114static int from_priority_to_tx_queue[] = {
115 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
116 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
117};
118
119static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
120
121static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
122 *qos_param);
123static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
124 *qos_param);
125#endif /* CONFIG_IPW_QOS */
126
127static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600128static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400129static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600130 struct clx2_tx_queue *txq, int qindex);
131static int ipw_queue_reset(struct ipw_priv *priv);
132
133static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
134 int len, int sync);
135
136static void ipw_tx_queue_free(struct ipw_priv *);
137
138static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
139static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
140static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600141static int ipw_up(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500142static void ipw_bg_up(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600143static void ipw_down(struct ipw_priv *);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500144static void ipw_bg_down(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600145static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400146static int init_supported_rates(struct ipw_priv *priv,
147 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500148static void ipw_set_hwcrypto_keys(struct ipw_priv *);
149static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600150
Jeff Garzikbf794512005-07-31 13:07:26 -0400151static char *snprint_line(char *buf, size_t count,
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400152 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600153{
154 int out, i, j, l;
155 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400156
James Ketrenos43f66a62005-03-25 12:31:53 -0600157 out = snprintf(buf, count, "%08X", ofs);
158
159 for (l = 0, i = 0; i < 2; i++) {
160 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400161 for (j = 0; j < 8 && l < len; j++, l++)
162 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600163 data[(i * 8 + j)]);
164 for (; j < 8; j++)
165 out += snprintf(buf + out, count - out, " ");
166 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400167
James Ketrenos43f66a62005-03-25 12:31:53 -0600168 out += snprintf(buf + out, count - out, " ");
169 for (l = 0, i = 0; i < 2; i++) {
170 out += snprintf(buf + out, count - out, " ");
171 for (j = 0; j < 8 && l < len; j++, l++) {
172 c = data[(i * 8 + j)];
173 if (!isascii(c) || !isprint(c))
174 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400175
James Ketrenos43f66a62005-03-25 12:31:53 -0600176 out += snprintf(buf + out, count - out, "%c", c);
177 }
178
179 for (; j < 8; j++)
180 out += snprintf(buf + out, count - out, " ");
181 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400182
James Ketrenos43f66a62005-03-25 12:31:53 -0600183 return buf;
184}
185
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400186static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600187{
188 char line[81];
189 u32 ofs = 0;
190 if (!(ipw_debug_level & level))
191 return;
192
193 while (len) {
194 printk(KERN_DEBUG "%s\n",
Jeff Garzikbf794512005-07-31 13:07:26 -0400195 snprint_line(line, sizeof(line), &data[ofs],
James Ketrenos43f66a62005-03-25 12:31:53 -0600196 min(len, 16U), ofs));
197 ofs += 16;
198 len -= min(len, 16U);
199 }
200}
201
202static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
203#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
204
205static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
206#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
207
208static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
209static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
210{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400211 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
212 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600213 _ipw_write_reg8(a, b, c);
214}
215
216static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
217static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
218{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400219 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
220 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600221 _ipw_write_reg16(a, b, c);
222}
223
224static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
225static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
226{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400227 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
228 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600229 _ipw_write_reg32(a, b, c);
230}
231
232#define _ipw_write8(ipw, ofs, val) writeb((val), (ipw)->hw_base + (ofs))
233#define ipw_write8(ipw, ofs, val) \
234 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
235 _ipw_write8(ipw, ofs, val)
236
237#define _ipw_write16(ipw, ofs, val) writew((val), (ipw)->hw_base + (ofs))
238#define ipw_write16(ipw, ofs, val) \
239 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
240 _ipw_write16(ipw, ofs, val)
241
242#define _ipw_write32(ipw, ofs, val) writel((val), (ipw)->hw_base + (ofs))
243#define ipw_write32(ipw, ofs, val) \
244 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, __LINE__, (u32)(ofs), (u32)(val)); \
245 _ipw_write32(ipw, ofs, val)
246
247#define _ipw_read8(ipw, ofs) readb((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400248static inline u8 __ipw_read8(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
249{
250 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600251 return _ipw_read8(ipw, ofs);
252}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400253
James Ketrenos43f66a62005-03-25 12:31:53 -0600254#define ipw_read8(ipw, ofs) __ipw_read8(__FILE__, __LINE__, ipw, ofs)
255
256#define _ipw_read16(ipw, ofs) readw((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400257static inline u16 __ipw_read16(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
258{
259 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600260 return _ipw_read16(ipw, ofs);
261}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400262
James Ketrenos43f66a62005-03-25 12:31:53 -0600263#define ipw_read16(ipw, ofs) __ipw_read16(__FILE__, __LINE__, ipw, ofs)
264
265#define _ipw_read32(ipw, ofs) readl((ipw)->hw_base + (ofs))
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400266static inline u32 __ipw_read32(char *f, u32 l, struct ipw_priv *ipw, u32 ofs)
267{
268 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", f, l, (u32) (ofs));
James Ketrenos43f66a62005-03-25 12:31:53 -0600269 return _ipw_read32(ipw, ofs);
270}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400271
James Ketrenos43f66a62005-03-25 12:31:53 -0600272#define ipw_read32(ipw, ofs) __ipw_read32(__FILE__, __LINE__, ipw, ofs)
273
274static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
275#define ipw_read_indirect(a, b, c, d) \
James Ketrenosafbf30a2005-08-25 00:05:33 -0500276 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %d bytes\n", __FILE__, __LINE__, (u32)(b), d); \
James Ketrenos43f66a62005-03-25 12:31:53 -0600277 _ipw_read_indirect(a, b, c, d)
278
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400279static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
280 int num);
James Ketrenos43f66a62005-03-25 12:31:53 -0600281#define ipw_write_indirect(a, b, c, d) \
282 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %d bytes\n", __FILE__, __LINE__, (u32)(b), d); \
James Ketrenosafbf30a2005-08-25 00:05:33 -0500283 _ipw_write_indirect(a, b, c, d)
James Ketrenos43f66a62005-03-25 12:31:53 -0600284
285/* indirect write s */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400286static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600287{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400288 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500289 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
290 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600291}
292
James Ketrenos43f66a62005-03-25 12:31:53 -0600293static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
294{
295 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500296 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
297 _ipw_write8(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600298}
299
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400300static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600301{
302 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500303 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
304 _ipw_write16(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600305}
306
307/* indirect read s */
308
309static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
310{
311 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500312 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -0600313 IPW_DEBUG_IO(" reg = 0x%8X : \n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500314 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400315 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600316}
317
318static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
319{
320 u32 value;
321
322 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
323
James Ketrenosb095c382005-08-24 22:04:42 -0500324 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
325 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
James Ketrenos43f66a62005-03-25 12:31:53 -0600326 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x \n", reg, value);
327 return value;
328}
329
330/* iterative/auto-increment 32 bit reads and writes */
331static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
332 int num)
333{
James Ketrenosb095c382005-08-24 22:04:42 -0500334 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600335 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600336 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400337
James Ketrenos43f66a62005-03-25 12:31:53 -0600338 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
339
James Ketrenosea2b26e2005-08-24 21:25:16 -0500340 if (num <= 0) {
341 return;
342 }
343
James Ketrenos43f66a62005-03-25 12:31:53 -0600344 /* Read the first nibble byte by byte */
345 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500346 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500347 /* Start reading at aligned_addr + dif_len */
348 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500349 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600350 aligned_addr += 4;
351 }
352
James Ketrenosb095c382005-08-24 22:04:42 -0500353 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500354 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500355 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400356
James Ketrenos43f66a62005-03-25 12:31:53 -0600357 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500358 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500359 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500360 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500361 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500362 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600363}
364
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400365static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600366 int num)
367{
James Ketrenosb095c382005-08-24 22:04:42 -0500368 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -0600369 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600370 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400371
James Ketrenos43f66a62005-03-25 12:31:53 -0600372 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400373
James Ketrenosea2b26e2005-08-24 21:25:16 -0500374 if (num <= 0) {
375 return;
376 }
377
James Ketrenos43f66a62005-03-25 12:31:53 -0600378 /* Write the first nibble byte by byte */
379 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500380 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500381 /* Start reading at aligned_addr + dif_len */
382 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500383 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600384 aligned_addr += 4;
385 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400386
James Ketrenosb095c382005-08-24 22:04:42 -0500387 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500388 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500389 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400390
James Ketrenos43f66a62005-03-25 12:31:53 -0600391 /* Copy the last nibble */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500392 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500393 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500394 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500395 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500396 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600397}
398
Jeff Garzikbf794512005-07-31 13:07:26 -0400399static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600400 int num)
401{
402 memcpy_toio((priv->hw_base + addr), buf, num);
403}
404
405static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
406{
407 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
408}
409
410static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
411{
412 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
413}
414
415static inline void ipw_enable_interrupts(struct ipw_priv *priv)
416{
417 if (priv->status & STATUS_INT_ENABLED)
418 return;
419 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500420 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600421}
422
423static inline void ipw_disable_interrupts(struct ipw_priv *priv)
424{
425 if (!(priv->status & STATUS_INT_ENABLED))
426 return;
427 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500428 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600429}
430
431static char *ipw_error_desc(u32 val)
432{
433 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400434 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600435 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400436 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600437 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400438 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600439 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400440 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600441 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400442 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500443 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400444 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500445 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400446 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500447 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400448 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500449 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400450 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500451 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400452 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500453 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400454 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500455 return "DMA_STATUS";
456 case IPW_FW_ERROR_DINO_ERROR:
457 return "DINO_ERROR";
458 case IPW_FW_ERROR_EEPROM_ERROR:
459 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400460 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500461 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400462 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500463 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400464 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500465 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600466 }
467}
468
469static void ipw_dump_nic_error_log(struct ipw_priv *priv)
470{
471 u32 desc, time, blink1, blink2, ilink1, ilink2, idata, i, count, base;
472
473 base = ipw_read32(priv, IPWSTATUS_ERROR_LOG);
474 count = ipw_read_reg32(priv, base);
Jeff Garzikbf794512005-07-31 13:07:26 -0400475
James Ketrenos43f66a62005-03-25 12:31:53 -0600476 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
477 IPW_ERROR("Start IPW Error Log Dump:\n");
478 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
479 priv->status, priv->config);
480 }
481
Jeff Garzikbf794512005-07-31 13:07:26 -0400482 for (i = ERROR_START_OFFSET;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400483 i <= count * ERROR_ELEM_SIZE; i += ERROR_ELEM_SIZE) {
484 desc = ipw_read_reg32(priv, base + i);
485 time = ipw_read_reg32(priv, base + i + 1 * sizeof(u32));
486 blink1 = ipw_read_reg32(priv, base + i + 2 * sizeof(u32));
487 blink2 = ipw_read_reg32(priv, base + i + 3 * sizeof(u32));
488 ilink1 = ipw_read_reg32(priv, base + i + 4 * sizeof(u32));
489 ilink2 = ipw_read_reg32(priv, base + i + 5 * sizeof(u32));
490 idata = ipw_read_reg32(priv, base + i + 6 * sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600491
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400492 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
493 ipw_error_desc(desc), time, blink1, blink2,
494 ilink1, ilink2, idata);
James Ketrenos43f66a62005-03-25 12:31:53 -0600495 }
496}
497
498static void ipw_dump_nic_event_log(struct ipw_priv *priv)
499{
500 u32 ev, time, data, i, count, base;
501
502 base = ipw_read32(priv, IPW_EVENT_LOG);
503 count = ipw_read_reg32(priv, base);
Jeff Garzikbf794512005-07-31 13:07:26 -0400504
James Ketrenos43f66a62005-03-25 12:31:53 -0600505 if (EVENT_START_OFFSET <= count * EVENT_ELEM_SIZE)
506 IPW_ERROR("Start IPW Event Log Dump:\n");
507
Jeff Garzikbf794512005-07-31 13:07:26 -0400508 for (i = EVENT_START_OFFSET;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400509 i <= count * EVENT_ELEM_SIZE; i += EVENT_ELEM_SIZE) {
James Ketrenos43f66a62005-03-25 12:31:53 -0600510 ev = ipw_read_reg32(priv, base + i);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400511 time = ipw_read_reg32(priv, base + i + 1 * sizeof(u32));
512 data = ipw_read_reg32(priv, base + i + 2 * sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600513
514#ifdef CONFIG_IPW_DEBUG
515 IPW_ERROR("%i\t0x%08x\t%i\n", time, data, ev);
516#endif
517 }
518}
519
James Ketrenosc848d0a2005-08-24 21:56:24 -0500520static inline int ipw_is_init(struct ipw_priv *priv)
521{
522 return (priv->status & STATUS_INIT) ? 1 : 0;
523}
524
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400525static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600526{
527 u32 addr, field_info, field_len, field_count, total_len;
528
529 IPW_DEBUG_ORD("ordinal = %i\n", ord);
530
531 if (!priv || !val || !len) {
532 IPW_DEBUG_ORD("Invalid argument\n");
533 return -EINVAL;
534 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400535
James Ketrenos43f66a62005-03-25 12:31:53 -0600536 /* verify device ordinal tables have been initialized */
537 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
538 IPW_DEBUG_ORD("Access ordinals before initialization\n");
539 return -EINVAL;
540 }
541
542 switch (IPW_ORD_TABLE_ID_MASK & ord) {
543 case IPW_ORD_TABLE_0_MASK:
544 /*
545 * TABLE 0: Direct access to a table of 32 bit values
546 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400547 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600548 * read from the table
549 */
550
551 /* remove the table id from the ordinal */
552 ord &= IPW_ORD_TABLE_VALUE_MASK;
553
554 /* boundary check */
555 if (ord > priv->table0_len) {
556 IPW_DEBUG_ORD("ordinal value (%i) longer then "
557 "max (%i)\n", ord, priv->table0_len);
558 return -EINVAL;
559 }
560
561 /* verify we have enough room to store the value */
562 if (*len < sizeof(u32)) {
563 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200564 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600565 return -EINVAL;
566 }
567
568 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400569 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600570
571 *len = sizeof(u32);
572 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400573 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600574 break;
575
576 case IPW_ORD_TABLE_1_MASK:
577 /*
578 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400579 *
580 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600581 * representing starting addr for the data (which is
582 * also a u32)
583 */
584
585 /* remove the table id from the ordinal */
586 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400587
James Ketrenos43f66a62005-03-25 12:31:53 -0600588 /* boundary check */
589 if (ord > priv->table1_len) {
590 IPW_DEBUG_ORD("ordinal value too long\n");
591 return -EINVAL;
592 }
593
594 /* verify we have enough room to store the value */
595 if (*len < sizeof(u32)) {
596 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200597 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600598 return -EINVAL;
599 }
600
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400601 *((u32 *) val) =
602 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600603 *len = sizeof(u32);
604 break;
605
606 case IPW_ORD_TABLE_2_MASK:
607 /*
608 * TABLE 2: Indirect access to a table of variable sized values
609 *
610 * This table consist of six values, each containing
611 * - dword containing the starting offset of the data
612 * - dword containing the lengh in the first 16bits
613 * and the count in the second 16bits
614 */
615
616 /* remove the table id from the ordinal */
617 ord &= IPW_ORD_TABLE_VALUE_MASK;
618
619 /* boundary check */
620 if (ord > priv->table2_len) {
621 IPW_DEBUG_ORD("ordinal value too long\n");
622 return -EINVAL;
623 }
624
625 /* get the address of statistic */
626 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400627
628 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600629 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400630 field_info =
631 ipw_read_reg32(priv,
632 priv->table2_addr + (ord << 3) +
633 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400634
James Ketrenos43f66a62005-03-25 12:31:53 -0600635 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400636 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400637
James Ketrenos43f66a62005-03-25 12:31:53 -0600638 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400639 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400640
James Ketrenos43f66a62005-03-25 12:31:53 -0600641 /* abort if not enought memory */
642 total_len = field_len * field_count;
643 if (total_len > *len) {
644 *len = total_len;
645 return -EINVAL;
646 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400647
James Ketrenos43f66a62005-03-25 12:31:53 -0600648 *len = total_len;
649 if (!total_len)
650 return 0;
651
652 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400653 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600654 addr, total_len, field_info);
655 ipw_read_indirect(priv, addr, val, total_len);
656 break;
657
658 default:
659 IPW_DEBUG_ORD("Invalid ordinal!\n");
660 return -EINVAL;
661
662 }
663
James Ketrenos43f66a62005-03-25 12:31:53 -0600664 return 0;
665}
666
667static void ipw_init_ordinals(struct ipw_priv *priv)
668{
669 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400670 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600671
672 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
673 priv->table0_addr, priv->table0_len);
674
675 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
676 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
677
678 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
679 priv->table1_addr, priv->table1_len);
680
681 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
682 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400683 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600684
685 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
686 priv->table2_addr, priv->table2_len);
687
688}
689
James Ketrenosa613bff2005-08-24 21:43:11 -0500690u32 ipw_register_toggle(u32 reg)
691{
James Ketrenosb095c382005-08-24 22:04:42 -0500692 reg &= ~IPW_START_STANDBY;
693 if (reg & IPW_GATE_ODMA)
694 reg &= ~IPW_GATE_ODMA;
695 if (reg & IPW_GATE_IDMA)
696 reg &= ~IPW_GATE_IDMA;
697 if (reg & IPW_GATE_ADMA)
698 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500699 return reg;
700}
701
702/*
703 * LED behavior:
704 * - On radio ON, turn on any LEDs that require to be on during start
705 * - On initialization, start unassociated blink
706 * - On association, disable unassociated blink
707 * - On disassociation, start unassociated blink
708 * - On radio OFF, turn off any LEDs started during radio on
709 *
710 */
711#define LD_TIME_LINK_ON 300
712#define LD_TIME_LINK_OFF 2700
713#define LD_TIME_ACT_ON 250
714
715void ipw_led_link_on(struct ipw_priv *priv)
716{
717 unsigned long flags;
718 u32 led;
719
720 /* If configured to not use LEDs, or nic_type is 1,
721 * then we don't toggle a LINK led */
722 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
723 return;
724
725 spin_lock_irqsave(&priv->lock, flags);
726
727 if (!(priv->status & STATUS_RF_KILL_MASK) &&
728 !(priv->status & STATUS_LED_LINK_ON)) {
729 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500730 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500731 led |= priv->led_association_on;
732
733 led = ipw_register_toggle(led);
734
735 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500736 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500737
738 priv->status |= STATUS_LED_LINK_ON;
739
740 /* If we aren't associated, schedule turning the LED off */
741 if (!(priv->status & STATUS_ASSOCIATED))
742 queue_delayed_work(priv->workqueue,
743 &priv->led_link_off,
744 LD_TIME_LINK_ON);
745 }
746
747 spin_unlock_irqrestore(&priv->lock, flags);
748}
749
James Ketrenosc848d0a2005-08-24 21:56:24 -0500750static void ipw_bg_led_link_on(void *data)
751{
752 struct ipw_priv *priv = data;
753 down(&priv->sem);
754 ipw_led_link_on(data);
755 up(&priv->sem);
756}
757
James Ketrenosa613bff2005-08-24 21:43:11 -0500758void ipw_led_link_off(struct ipw_priv *priv)
759{
760 unsigned long flags;
761 u32 led;
762
763 /* If configured not to use LEDs, or nic type is 1,
764 * then we don't goggle the LINK led. */
765 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
766 return;
767
768 spin_lock_irqsave(&priv->lock, flags);
769
770 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500771 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500772 led &= priv->led_association_off;
773 led = ipw_register_toggle(led);
774
775 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500776 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500777
778 IPW_DEBUG_LED("Link LED Off\n");
779
780 priv->status &= ~STATUS_LED_LINK_ON;
781
782 /* If we aren't associated and the radio is on, schedule
783 * turning the LED on (blink while unassociated) */
784 if (!(priv->status & STATUS_RF_KILL_MASK) &&
785 !(priv->status & STATUS_ASSOCIATED))
786 queue_delayed_work(priv->workqueue, &priv->led_link_on,
787 LD_TIME_LINK_OFF);
788
789 }
790
791 spin_unlock_irqrestore(&priv->lock, flags);
792}
793
James Ketrenosc848d0a2005-08-24 21:56:24 -0500794static void ipw_bg_led_link_off(void *data)
795{
796 struct ipw_priv *priv = data;
797 down(&priv->sem);
798 ipw_led_link_off(data);
799 up(&priv->sem);
800}
801
James Ketrenosb095c382005-08-24 22:04:42 -0500802static inline void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500803{
James Ketrenosa613bff2005-08-24 21:43:11 -0500804 u32 led;
805
806 if (priv->config & CFG_NO_LED)
807 return;
808
James Ketrenosb095c382005-08-24 22:04:42 -0500809 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500810 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500811
812 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500813 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500814 led |= priv->led_activity_on;
815
816 led = ipw_register_toggle(led);
817
818 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500819 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500820
821 IPW_DEBUG_LED("Activity LED On\n");
822
823 priv->status |= STATUS_LED_ACT_ON;
824
James Ketrenosc848d0a2005-08-24 21:56:24 -0500825 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500826 queue_delayed_work(priv->workqueue, &priv->led_act_off,
827 LD_TIME_ACT_ON);
828 } else {
829 /* Reschedule LED off for full time period */
830 cancel_delayed_work(&priv->led_act_off);
831 queue_delayed_work(priv->workqueue, &priv->led_act_off,
832 LD_TIME_ACT_ON);
833 }
James Ketrenosb095c382005-08-24 22:04:42 -0500834}
James Ketrenosa613bff2005-08-24 21:43:11 -0500835
James Ketrenosb095c382005-08-24 22:04:42 -0500836void ipw_led_activity_on(struct ipw_priv *priv)
837{
838 unsigned long flags;
839 spin_lock_irqsave(&priv->lock, flags);
840 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500841 spin_unlock_irqrestore(&priv->lock, flags);
842}
843
844void ipw_led_activity_off(struct ipw_priv *priv)
845{
846 unsigned long flags;
847 u32 led;
848
849 if (priv->config & CFG_NO_LED)
850 return;
851
852 spin_lock_irqsave(&priv->lock, flags);
853
854 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500855 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500856 led &= priv->led_activity_off;
857
858 led = ipw_register_toggle(led);
859
860 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500861 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500862
863 IPW_DEBUG_LED("Activity LED Off\n");
864
865 priv->status &= ~STATUS_LED_ACT_ON;
866 }
867
868 spin_unlock_irqrestore(&priv->lock, flags);
869}
870
James Ketrenosc848d0a2005-08-24 21:56:24 -0500871static void ipw_bg_led_activity_off(void *data)
872{
873 struct ipw_priv *priv = data;
874 down(&priv->sem);
875 ipw_led_activity_off(data);
876 up(&priv->sem);
877}
878
James Ketrenosa613bff2005-08-24 21:43:11 -0500879void ipw_led_band_on(struct ipw_priv *priv)
880{
881 unsigned long flags;
882 u32 led;
883
884 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -0500885 if (priv->config & CFG_NO_LED ||
886 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -0500887 return;
888
889 spin_lock_irqsave(&priv->lock, flags);
890
James Ketrenosb095c382005-08-24 22:04:42 -0500891 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500892 if (priv->assoc_network->mode == IEEE_A) {
893 led |= priv->led_ofdm_on;
894 led &= priv->led_association_off;
895 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
896 } else if (priv->assoc_network->mode == IEEE_G) {
897 led |= priv->led_ofdm_on;
898 led |= priv->led_association_on;
899 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
900 } else {
901 led &= priv->led_ofdm_off;
902 led |= priv->led_association_on;
903 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
904 }
905
906 led = ipw_register_toggle(led);
907
908 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500909 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500910
911 spin_unlock_irqrestore(&priv->lock, flags);
912}
913
914void ipw_led_band_off(struct ipw_priv *priv)
915{
916 unsigned long flags;
917 u32 led;
918
919 /* Only nic type 1 supports mode LEDs */
920 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
921 return;
922
923 spin_lock_irqsave(&priv->lock, flags);
924
James Ketrenosb095c382005-08-24 22:04:42 -0500925 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500926 led &= priv->led_ofdm_off;
927 led &= priv->led_association_off;
928
929 led = ipw_register_toggle(led);
930
931 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500932 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500933
934 spin_unlock_irqrestore(&priv->lock, flags);
935}
936
937void ipw_led_radio_on(struct ipw_priv *priv)
938{
939 ipw_led_link_on(priv);
940}
941
942void ipw_led_radio_off(struct ipw_priv *priv)
943{
944 ipw_led_activity_off(priv);
945 ipw_led_link_off(priv);
946}
947
948void ipw_led_link_up(struct ipw_priv *priv)
949{
950 /* Set the Link Led on for all nic types */
951 ipw_led_link_on(priv);
952}
953
954void ipw_led_link_down(struct ipw_priv *priv)
955{
956 ipw_led_activity_off(priv);
957 ipw_led_link_off(priv);
958
959 if (priv->status & STATUS_RF_KILL_MASK)
960 ipw_led_radio_off(priv);
961}
962
963void ipw_led_init(struct ipw_priv *priv)
964{
965 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
966
967 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500968 priv->led_activity_on = IPW_ACTIVITY_LED;
969 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500970
James Ketrenosb095c382005-08-24 22:04:42 -0500971 priv->led_association_on = IPW_ASSOCIATED_LED;
972 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500973
974 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -0500975 priv->led_ofdm_on = IPW_OFDM_LED;
976 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500977
978 switch (priv->nic_type) {
979 case EEPROM_NIC_TYPE_1:
980 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -0500981 priv->led_activity_on = IPW_ASSOCIATED_LED;
982 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
983 priv->led_association_on = IPW_ACTIVITY_LED;
984 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -0500985
986 if (!(priv->config & CFG_NO_LED))
987 ipw_led_band_on(priv);
988
989 /* And we don't blink link LEDs for this nic, so
990 * just return here */
991 return;
992
993 case EEPROM_NIC_TYPE_3:
994 case EEPROM_NIC_TYPE_2:
995 case EEPROM_NIC_TYPE_4:
996 case EEPROM_NIC_TYPE_0:
997 break;
998
999 default:
1000 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1001 priv->nic_type);
1002 priv->nic_type = EEPROM_NIC_TYPE_0;
1003 break;
1004 }
1005
1006 if (!(priv->config & CFG_NO_LED)) {
1007 if (priv->status & STATUS_ASSOCIATED)
1008 ipw_led_link_on(priv);
1009 else
1010 ipw_led_link_off(priv);
1011 }
1012}
1013
1014void ipw_led_shutdown(struct ipw_priv *priv)
1015{
James Ketrenosa613bff2005-08-24 21:43:11 -05001016 ipw_led_activity_off(priv);
1017 ipw_led_link_off(priv);
1018 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001019 cancel_delayed_work(&priv->led_link_on);
1020 cancel_delayed_work(&priv->led_link_off);
1021 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001022}
1023
James Ketrenos43f66a62005-03-25 12:31:53 -06001024/*
1025 * The following adds a new attribute to the sysfs representation
1026 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1027 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001028 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001029 * See the level definitions in ipw for details.
1030 */
1031static ssize_t show_debug_level(struct device_driver *d, char *buf)
1032{
1033 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1034}
James Ketrenosa613bff2005-08-24 21:43:11 -05001035
1036static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1037 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001038{
1039 char *p = (char *)buf;
1040 u32 val;
1041
1042 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1043 p++;
1044 if (p[0] == 'x' || p[0] == 'X')
1045 p++;
1046 val = simple_strtoul(p, &p, 16);
1047 } else
1048 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001049 if (p == buf)
1050 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001051 ": %s is not in hex or decimal form.\n", buf);
1052 else
1053 ipw_debug_level = val;
1054
1055 return strnlen(buf, count);
1056}
1057
Jeff Garzikbf794512005-07-31 13:07:26 -04001058static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001059 show_debug_level, store_debug_level);
1060
James Ketrenosa613bff2005-08-24 21:43:11 -05001061static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1062 char *buf)
1063{
1064 struct ipw_priv *priv = dev_get_drvdata(d);
1065 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1066}
1067
1068static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1069 const char *buf, size_t count)
1070{
1071 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001072#ifdef CONFIG_IPW_DEBUG
James Ketrenosa613bff2005-08-24 21:43:11 -05001073 struct net_device *dev = priv->net_dev;
James Ketrenosc848d0a2005-08-24 21:56:24 -05001074#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05001075 char buffer[] = "00000000";
1076 unsigned long len =
1077 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1078 unsigned long val;
1079 char *p = buffer;
1080
1081 IPW_DEBUG_INFO("enter\n");
1082
1083 strncpy(buffer, buf, len);
1084 buffer[len] = 0;
1085
1086 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1087 p++;
1088 if (p[0] == 'x' || p[0] == 'X')
1089 p++;
1090 val = simple_strtoul(p, &p, 16);
1091 } else
1092 val = simple_strtoul(p, &p, 10);
1093 if (p == buffer) {
1094 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1095 } else {
1096 priv->ieee->scan_age = val;
1097 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1098 }
1099
1100 IPW_DEBUG_INFO("exit\n");
1101 return len;
1102}
1103
1104static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1105
1106static ssize_t show_led(struct device *d, struct device_attribute *attr,
1107 char *buf)
1108{
1109 struct ipw_priv *priv = dev_get_drvdata(d);
1110 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1111}
1112
1113static ssize_t store_led(struct device *d, struct device_attribute *attr,
1114 const char *buf, size_t count)
1115{
1116 struct ipw_priv *priv = dev_get_drvdata(d);
1117
1118 IPW_DEBUG_INFO("enter\n");
1119
1120 if (count == 0)
1121 return 0;
1122
1123 if (*buf == 0) {
1124 IPW_DEBUG_LED("Disabling LED control.\n");
1125 priv->config |= CFG_NO_LED;
1126 ipw_led_shutdown(priv);
1127 } else {
1128 IPW_DEBUG_LED("Enabling LED control.\n");
1129 priv->config &= ~CFG_NO_LED;
1130 ipw_led_init(priv);
1131 }
1132
1133 IPW_DEBUG_INFO("exit\n");
1134 return count;
1135}
1136
1137static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1138
Andrew Mortonad3fee52005-06-20 14:30:36 -07001139static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001140 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001141{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001142 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001143 return sprintf(buf, "0x%08x\n", (int)p->status);
1144}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001145
James Ketrenos43f66a62005-03-25 12:31:53 -06001146static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1147
Andrew Mortonad3fee52005-06-20 14:30:36 -07001148static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1149 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001150{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001151 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001152 return sprintf(buf, "0x%08x\n", (int)p->config);
1153}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001154
James Ketrenos43f66a62005-03-25 12:31:53 -06001155static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1156
Andrew Mortonad3fee52005-06-20 14:30:36 -07001157static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001158 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001159{
James Ketrenosa613bff2005-08-24 21:43:11 -05001160 struct ipw_priv *priv = d->driver_data;
1161 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001162}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001163
James Ketrenos43f66a62005-03-25 12:31:53 -06001164static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1165
Andrew Mortonad3fee52005-06-20 14:30:36 -07001166static ssize_t dump_error_log(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001167 struct device_attribute *attr, const char *buf,
1168 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001169{
1170 char *p = (char *)buf;
1171
Jeff Garzikbf794512005-07-31 13:07:26 -04001172 if (p[0] == '1')
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001173 ipw_dump_nic_error_log((struct ipw_priv *)d->driver_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06001174
1175 return strnlen(buf, count);
1176}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001177
James Ketrenos43f66a62005-03-25 12:31:53 -06001178static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
1179
Andrew Mortonad3fee52005-06-20 14:30:36 -07001180static ssize_t dump_event_log(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001181 struct device_attribute *attr, const char *buf,
1182 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001183{
1184 char *p = (char *)buf;
1185
Jeff Garzikbf794512005-07-31 13:07:26 -04001186 if (p[0] == '1')
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001187 ipw_dump_nic_event_log((struct ipw_priv *)d->driver_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06001188
1189 return strnlen(buf, count);
1190}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001191
James Ketrenos43f66a62005-03-25 12:31:53 -06001192static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
1193
Andrew Mortonad3fee52005-06-20 14:30:36 -07001194static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001195 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001196{
1197 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001198 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001199
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001200 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001201 return 0;
1202
1203 return sprintf(buf, "0x%08x\n", tmp);
1204}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001205
1206static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001207
Andrew Mortonad3fee52005-06-20 14:30:36 -07001208static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1209 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001210{
1211 u32 len = sizeof(u32), tmp = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001212 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001213
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001214 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001215 return 0;
1216
1217 return sprintf(buf, "0x%08x\n", tmp);
1218}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001219
1220static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001221
1222/*
1223 * Add a device attribute to view/control the delay between eeprom
1224 * operations.
1225 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001226static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001227 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001228{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001229 int n = ((struct ipw_priv *)d->driver_data)->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001230 return sprintf(buf, "%i\n", n);
1231}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001232static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001233 struct device_attribute *attr,
1234 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001235{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001236 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001237 sscanf(buf, "%i", &p->eeprom_delay);
1238 return strnlen(buf, count);
1239}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001240
1241static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1242 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001243
Andrew Mortonad3fee52005-06-20 14:30:36 -07001244static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001245 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001246{
1247 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001248 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001249
James Ketrenosb095c382005-08-24 22:04:42 -05001250 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001251 return sprintf(buf, "0x%08x\n", reg);
1252}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001253static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001254 struct device_attribute *attr,
1255 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001256{
1257 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001258 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001259
1260 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001261 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001262 return strnlen(buf, count);
1263}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001264
1265static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1266 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001267
Andrew Mortonad3fee52005-06-20 14:30:36 -07001268static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001269 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001270{
1271 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001272 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001273
1274 reg = ipw_read_reg32(p, 0x301100);
1275 return sprintf(buf, "0x%08x\n", reg);
1276}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001277static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001278 struct device_attribute *attr,
1279 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001280{
1281 u32 reg;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001282 struct ipw_priv *p = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001283
1284 sscanf(buf, "%x", &reg);
1285 ipw_write_reg32(p, 0x301100, reg);
1286 return strnlen(buf, count);
1287}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001288
1289static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1290 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001291
Andrew Mortonad3fee52005-06-20 14:30:36 -07001292static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001293 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001294{
1295 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001296 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001297
Jeff Garzikbf794512005-07-31 13:07:26 -04001298 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001299 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001300 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001301 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001302
James Ketrenos43f66a62005-03-25 12:31:53 -06001303 return sprintf(buf, "0x%08x\n", reg);
1304}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001305static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001306 struct device_attribute *attr,
1307 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001308{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001309 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001310
1311 sscanf(buf, "%x", &priv->indirect_dword);
1312 priv->status |= STATUS_INDIRECT_DWORD;
1313 return strnlen(buf, count);
1314}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001315
1316static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1317 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001318
Andrew Mortonad3fee52005-06-20 14:30:36 -07001319static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001320 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001321{
1322 u8 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001323 struct ipw_priv *priv = d->driver_data;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001324
Jeff Garzikbf794512005-07-31 13:07:26 -04001325 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001326 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001327 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001328 reg = 0;
1329
1330 return sprintf(buf, "0x%02x\n", reg);
1331}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001332static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001333 struct device_attribute *attr,
1334 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001335{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001336 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001337
1338 sscanf(buf, "%x", &priv->indirect_byte);
1339 priv->status |= STATUS_INDIRECT_BYTE;
1340 return strnlen(buf, count);
1341}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001342
1343static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001344 show_indirect_byte, store_indirect_byte);
1345
Andrew Mortonad3fee52005-06-20 14:30:36 -07001346static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001347 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001348{
1349 u32 reg = 0;
Andrew Mortonad3fee52005-06-20 14:30:36 -07001350 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001351
Jeff Garzikbf794512005-07-31 13:07:26 -04001352 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001353 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001354 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001355 reg = 0;
1356
1357 return sprintf(buf, "0x%08x\n", reg);
1358}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001359static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001360 struct device_attribute *attr,
1361 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001362{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001363 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001364
1365 sscanf(buf, "%x", &priv->direct_dword);
1366 priv->status |= STATUS_DIRECT_DWORD;
1367 return strnlen(buf, count);
1368}
James Ketrenos43f66a62005-03-25 12:31:53 -06001369
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001370static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1371 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001372
1373static inline int rf_kill_active(struct ipw_priv *priv)
1374{
1375 if (0 == (ipw_read32(priv, 0x30) & 0x10000))
1376 priv->status |= STATUS_RF_KILL_HW;
1377 else
1378 priv->status &= ~STATUS_RF_KILL_HW;
1379
1380 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1381}
1382
Andrew Mortonad3fee52005-06-20 14:30:36 -07001383static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001384 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001385{
1386 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001387 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001388 2 - HW based RF kill active
1389 3 - Both HW and SW baed RF kill active */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001390 struct ipw_priv *priv = d->driver_data;
James Ketrenos43f66a62005-03-25 12:31:53 -06001391 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001392 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001393 return sprintf(buf, "%i\n", val);
1394}
1395
1396static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1397{
Jeff Garzikbf794512005-07-31 13:07:26 -04001398 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001399 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001400 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001401
1402 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1403 disable_radio ? "OFF" : "ON");
1404
1405 if (disable_radio) {
1406 priv->status |= STATUS_RF_KILL_SW;
1407
James Ketrenosa613bff2005-08-24 21:43:11 -05001408 if (priv->workqueue)
James Ketrenos43f66a62005-03-25 12:31:53 -06001409 cancel_delayed_work(&priv->request_scan);
James Ketrenos43f66a62005-03-25 12:31:53 -06001410 queue_work(priv->workqueue, &priv->down);
1411 } else {
1412 priv->status &= ~STATUS_RF_KILL_SW;
1413 if (rf_kill_active(priv)) {
1414 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1415 "disabled by HW switch\n");
1416 /* Make sure the RF_KILL check timer is running */
1417 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001418 queue_delayed_work(priv->workqueue, &priv->rf_kill,
James Ketrenos43f66a62005-03-25 12:31:53 -06001419 2 * HZ);
Jeff Garzikbf794512005-07-31 13:07:26 -04001420 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001421 queue_work(priv->workqueue, &priv->up);
1422 }
1423
1424 return 1;
1425}
1426
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001427static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1428 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001429{
Andrew Mortonad3fee52005-06-20 14:30:36 -07001430 struct ipw_priv *priv = d->driver_data;
Jeff Garzikbf794512005-07-31 13:07:26 -04001431
James Ketrenos43f66a62005-03-25 12:31:53 -06001432 ipw_radio_kill_sw(priv, buf[0] == '1');
1433
1434 return count;
1435}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001436
1437static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001438
James Ketrenosb095c382005-08-24 22:04:42 -05001439static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1440 char *buf)
1441{
1442 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1443 int pos = 0, len = 0;
1444 if (priv->config & CFG_SPEED_SCAN) {
1445 while (priv->speed_scan[pos] != 0)
1446 len += sprintf(&buf[len], "%d ",
1447 priv->speed_scan[pos++]);
1448 return len + sprintf(&buf[len], "\n");
1449 }
1450
1451 return sprintf(buf, "0\n");
1452}
1453
1454static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1455 const char *buf, size_t count)
1456{
1457 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1458 int channel, pos = 0;
1459 const char *p = buf;
1460
1461 /* list of space separated channels to scan, optionally ending with 0 */
1462 while ((channel = simple_strtol(p, NULL, 0))) {
1463 if (pos == MAX_SPEED_SCAN - 1) {
1464 priv->speed_scan[pos] = 0;
1465 break;
1466 }
1467
1468 if (ieee80211_is_valid_channel(priv->ieee, channel))
1469 priv->speed_scan[pos++] = channel;
1470 else
1471 IPW_WARNING("Skipping invalid channel request: %d\n",
1472 channel);
1473 p = strchr(p, ' ');
1474 if (!p)
1475 break;
1476 while (*p == ' ' || *p == '\t')
1477 p++;
1478 }
1479
1480 if (pos == 0)
1481 priv->config &= ~CFG_SPEED_SCAN;
1482 else {
1483 priv->speed_scan_pos = 0;
1484 priv->config |= CFG_SPEED_SCAN;
1485 }
1486
1487 return count;
1488}
1489
1490static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1491 store_speed_scan);
1492
1493static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1494 char *buf)
1495{
1496 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1497 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1498}
1499
1500static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1501 const char *buf, size_t count)
1502{
1503 struct ipw_priv *priv = (struct ipw_priv *)d->driver_data;
1504 if (buf[0] == '1')
1505 priv->config |= CFG_NET_STATS;
1506 else
1507 priv->config &= ~CFG_NET_STATS;
1508
1509 return count;
1510}
1511
James Ketrenosafbf30a2005-08-25 00:05:33 -05001512static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1513 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001514
James Ketrenosea2b26e2005-08-24 21:25:16 -05001515static void notify_wx_assoc_event(struct ipw_priv *priv)
1516{
1517 union iwreq_data wrqu;
1518 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1519 if (priv->status & STATUS_ASSOCIATED)
1520 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1521 else
1522 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1523 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1524}
1525
James Ketrenos43f66a62005-03-25 12:31:53 -06001526static void ipw_irq_tasklet(struct ipw_priv *priv)
1527{
1528 u32 inta, inta_mask, handled = 0;
1529 unsigned long flags;
1530 int rc = 0;
1531
1532 spin_lock_irqsave(&priv->lock, flags);
1533
James Ketrenosb095c382005-08-24 22:04:42 -05001534 inta = ipw_read32(priv, IPW_INTA_RW);
1535 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1536 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001537
1538 /* Add any cached INTA values that need to be handled */
1539 inta |= priv->isr_inta;
1540
1541 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001542 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001543 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001544 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001545 }
1546
James Ketrenosb095c382005-08-24 22:04:42 -05001547 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001548 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001549 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001550 priv->status &= ~STATUS_HCMD_ACTIVE;
1551 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001552 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001553 }
1554
James Ketrenosb095c382005-08-24 22:04:42 -05001555 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001556 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001557 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05001558 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06001559 }
1560
James Ketrenosb095c382005-08-24 22:04:42 -05001561 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001562 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001563 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05001564 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06001565 }
1566
James Ketrenosb095c382005-08-24 22:04:42 -05001567 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001568 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001569 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05001570 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06001571 }
1572
James Ketrenosb095c382005-08-24 22:04:42 -05001573 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001574 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001575 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05001576 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06001577 }
1578
James Ketrenosb095c382005-08-24 22:04:42 -05001579 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001580 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001581 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001582 }
1583
James Ketrenosb095c382005-08-24 22:04:42 -05001584 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001585 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001586 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06001587 }
1588
James Ketrenosb095c382005-08-24 22:04:42 -05001589 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001590 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001591 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001592 }
1593
James Ketrenosb095c382005-08-24 22:04:42 -05001594 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001595 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001596 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001597 }
1598
James Ketrenosb095c382005-08-24 22:04:42 -05001599 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001600 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001601 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001602 }
1603
James Ketrenosb095c382005-08-24 22:04:42 -05001604 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001605 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
1606 priv->status |= STATUS_RF_KILL_HW;
1607 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001608 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06001609 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05001610 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001611 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05001612 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001613 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001614
James Ketrenosb095c382005-08-24 22:04:42 -05001615 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001616 IPW_ERROR("Firmware error detected. Restarting.\n");
1617#ifdef CONFIG_IPW_DEBUG
1618 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
1619 ipw_dump_nic_error_log(priv);
1620 ipw_dump_nic_event_log(priv);
1621 }
1622#endif
James Ketrenosb095c382005-08-24 22:04:42 -05001623 /* XXX: If hardware encryption is for WPA/WPA2,
1624 * we have to notify the supplicant. */
1625 if (priv->ieee->sec.encrypt) {
1626 priv->status &= ~STATUS_ASSOCIATED;
1627 notify_wx_assoc_event(priv);
1628 }
1629
1630 /* Keep the restart process from trying to send host
1631 * commands by clearing the INIT status bit */
1632 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05001633
1634 /* Cancel currently queued command. */
1635 priv->status &= ~STATUS_HCMD_ACTIVE;
1636 wake_up_interruptible(&priv->wait_command_queue);
1637
James Ketrenos43f66a62005-03-25 12:31:53 -06001638 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05001639 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001640 }
1641
James Ketrenosb095c382005-08-24 22:04:42 -05001642 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001643 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05001644 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06001645 }
1646
1647 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001648 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06001649 }
1650
1651 /* enable all interrupts */
1652 ipw_enable_interrupts(priv);
1653
1654 spin_unlock_irqrestore(&priv->lock, flags);
1655}
Jeff Garzikbf794512005-07-31 13:07:26 -04001656
James Ketrenos43f66a62005-03-25 12:31:53 -06001657#ifdef CONFIG_IPW_DEBUG
1658#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
1659static char *get_cmd_string(u8 cmd)
1660{
1661 switch (cmd) {
1662 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04001663 IPW_CMD(POWER_DOWN);
1664 IPW_CMD(SYSTEM_CONFIG);
1665 IPW_CMD(MULTICAST_ADDRESS);
1666 IPW_CMD(SSID);
1667 IPW_CMD(ADAPTER_ADDRESS);
1668 IPW_CMD(PORT_TYPE);
1669 IPW_CMD(RTS_THRESHOLD);
1670 IPW_CMD(FRAG_THRESHOLD);
1671 IPW_CMD(POWER_MODE);
1672 IPW_CMD(WEP_KEY);
1673 IPW_CMD(TGI_TX_KEY);
1674 IPW_CMD(SCAN_REQUEST);
1675 IPW_CMD(SCAN_REQUEST_EXT);
1676 IPW_CMD(ASSOCIATE);
1677 IPW_CMD(SUPPORTED_RATES);
1678 IPW_CMD(SCAN_ABORT);
1679 IPW_CMD(TX_FLUSH);
1680 IPW_CMD(QOS_PARAMETERS);
1681 IPW_CMD(DINO_CONFIG);
1682 IPW_CMD(RSN_CAPABILITIES);
1683 IPW_CMD(RX_KEY);
1684 IPW_CMD(CARD_DISABLE);
1685 IPW_CMD(SEED_NUMBER);
1686 IPW_CMD(TX_POWER);
1687 IPW_CMD(COUNTRY_INFO);
1688 IPW_CMD(AIRONET_INFO);
1689 IPW_CMD(AP_TX_POWER);
1690 IPW_CMD(CCKM_INFO);
1691 IPW_CMD(CCX_VER_INFO);
1692 IPW_CMD(SET_CALIBRATION);
1693 IPW_CMD(SENSITIVITY_CALIB);
1694 IPW_CMD(RETRY_LIMIT);
1695 IPW_CMD(IPW_PRE_POWER_DOWN);
1696 IPW_CMD(VAP_BEACON_TEMPLATE);
1697 IPW_CMD(VAP_DTIM_PERIOD);
1698 IPW_CMD(EXT_SUPPORTED_RATES);
1699 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
1700 IPW_CMD(VAP_QUIET_INTERVALS);
1701 IPW_CMD(VAP_CHANNEL_SWITCH);
1702 IPW_CMD(VAP_MANDATORY_CHANNELS);
1703 IPW_CMD(VAP_CELL_PWR_LIMIT);
1704 IPW_CMD(VAP_CF_PARAM_SET);
1705 IPW_CMD(VAP_SET_BEACONING_STATE);
1706 IPW_CMD(MEASUREMENT);
1707 IPW_CMD(POWER_CAPABILITY);
1708 IPW_CMD(SUPPORTED_CHANNELS);
1709 IPW_CMD(TPC_REPORT);
1710 IPW_CMD(WME_INFO);
1711 IPW_CMD(PRODUCTION_COMMAND);
1712 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06001713 return "UNKNOWN";
1714 }
1715}
James Ketrenosea2b26e2005-08-24 21:25:16 -05001716#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06001717
1718#define HOST_COMPLETE_TIMEOUT HZ
1719static int ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
1720{
1721 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05001722 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06001723
James Ketrenosa613bff2005-08-24 21:43:11 -05001724 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001725 if (priv->status & STATUS_HCMD_ACTIVE) {
1726 IPW_ERROR("Already sending a command\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05001727 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001728 return -1;
1729 }
1730
1731 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04001732
James Ketrenosb095c382005-08-24 22:04:42 -05001733 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
1734 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
1735 priv->status);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001736 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001737
1738 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, &cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05001739 if (rc) {
1740 priv->status &= ~STATUS_HCMD_ACTIVE;
1741 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001742 return rc;
James Ketrenosa613bff2005-08-24 21:43:11 -05001743 }
1744 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001745
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001746 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
1747 !(priv->
1748 status & STATUS_HCMD_ACTIVE),
1749 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001750 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05001751 spin_lock_irqsave(&priv->lock, flags);
1752 if (priv->status & STATUS_HCMD_ACTIVE) {
1753 IPW_DEBUG_INFO("Command completion failed out after "
1754 "%dms.\n",
1755 1000 * (HOST_COMPLETE_TIMEOUT / HZ));
1756 priv->status &= ~STATUS_HCMD_ACTIVE;
1757 spin_unlock_irqrestore(&priv->lock, flags);
1758 return -EIO;
1759 }
1760 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001761 }
James Ketrenosa613bff2005-08-24 21:43:11 -05001762
James Ketrenosb095c382005-08-24 22:04:42 -05001763 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001764 IPW_DEBUG_INFO("Command aborted due to RF Kill Switch\n");
1765 return -EIO;
1766 }
1767
1768 return 0;
1769}
1770
1771static int ipw_send_host_complete(struct ipw_priv *priv)
1772{
1773 struct host_cmd cmd = {
1774 .cmd = IPW_CMD_HOST_COMPLETE,
1775 .len = 0
1776 };
1777
1778 if (!priv) {
1779 IPW_ERROR("Invalid args\n");
1780 return -1;
1781 }
1782
1783 if (ipw_send_cmd(priv, &cmd)) {
1784 IPW_ERROR("failed to send HOST_COMPLETE command\n");
1785 return -1;
1786 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001787
James Ketrenos43f66a62005-03-25 12:31:53 -06001788 return 0;
1789}
1790
Jeff Garzikbf794512005-07-31 13:07:26 -04001791static int ipw_send_system_config(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06001792 struct ipw_sys_config *config)
1793{
1794 struct host_cmd cmd = {
1795 .cmd = IPW_CMD_SYSTEM_CONFIG,
1796 .len = sizeof(*config)
1797 };
1798
1799 if (!priv || !config) {
1800 IPW_ERROR("Invalid args\n");
1801 return -1;
1802 }
1803
James Ketrenosafbf30a2005-08-25 00:05:33 -05001804 memcpy(cmd.param, config, sizeof(*config));
James Ketrenos43f66a62005-03-25 12:31:53 -06001805 if (ipw_send_cmd(priv, &cmd)) {
1806 IPW_ERROR("failed to send SYSTEM_CONFIG command\n");
1807 return -1;
1808 }
1809
1810 return 0;
1811}
1812
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001813static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06001814{
1815 struct host_cmd cmd = {
1816 .cmd = IPW_CMD_SSID,
1817 .len = min(len, IW_ESSID_MAX_SIZE)
1818 };
1819
1820 if (!priv || !ssid) {
1821 IPW_ERROR("Invalid args\n");
1822 return -1;
1823 }
1824
James Ketrenosafbf30a2005-08-25 00:05:33 -05001825 memcpy(cmd.param, ssid, cmd.len);
James Ketrenos43f66a62005-03-25 12:31:53 -06001826 if (ipw_send_cmd(priv, &cmd)) {
1827 IPW_ERROR("failed to send SSID command\n");
1828 return -1;
1829 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001830
James Ketrenos43f66a62005-03-25 12:31:53 -06001831 return 0;
1832}
1833
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001834static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06001835{
1836 struct host_cmd cmd = {
1837 .cmd = IPW_CMD_ADAPTER_ADDRESS,
1838 .len = ETH_ALEN
1839 };
1840
1841 if (!priv || !mac) {
1842 IPW_ERROR("Invalid args\n");
1843 return -1;
1844 }
1845
1846 IPW_DEBUG_INFO("%s: Setting MAC to " MAC_FMT "\n",
1847 priv->net_dev->name, MAC_ARG(mac));
1848
James Ketrenosafbf30a2005-08-25 00:05:33 -05001849 memcpy(cmd.param, mac, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06001850 if (ipw_send_cmd(priv, &cmd)) {
1851 IPW_ERROR("failed to send ADAPTER_ADDRESS command\n");
1852 return -1;
1853 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001854
James Ketrenos43f66a62005-03-25 12:31:53 -06001855 return 0;
1856}
1857
James Ketrenosa613bff2005-08-24 21:43:11 -05001858/*
1859 * NOTE: This must be executed from our workqueue as it results in udelay
1860 * being called which may corrupt the keyboard if executed on default
1861 * workqueue
1862 */
James Ketrenos43f66a62005-03-25 12:31:53 -06001863static void ipw_adapter_restart(void *adapter)
1864{
1865 struct ipw_priv *priv = adapter;
1866
1867 if (priv->status & STATUS_RF_KILL_MASK)
1868 return;
1869
1870 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001871
1872 if (priv->assoc_network &&
1873 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
1874 ipw_remove_current_network(priv);
1875
James Ketrenos43f66a62005-03-25 12:31:53 -06001876 if (ipw_up(priv)) {
1877 IPW_ERROR("Failed to up device\n");
1878 return;
1879 }
1880}
1881
James Ketrenosc848d0a2005-08-24 21:56:24 -05001882static void ipw_bg_adapter_restart(void *data)
1883{
1884 struct ipw_priv *priv = data;
1885 down(&priv->sem);
1886 ipw_adapter_restart(data);
1887 up(&priv->sem);
1888}
1889
James Ketrenos43f66a62005-03-25 12:31:53 -06001890#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
1891
1892static void ipw_scan_check(void *data)
1893{
1894 struct ipw_priv *priv = data;
1895 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
1896 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Jeff Garzikbf794512005-07-31 13:07:26 -04001897 "adapter (%dms).\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06001898 IPW_SCAN_CHECK_WATCHDOG / 100);
James Ketrenosa613bff2005-08-24 21:43:11 -05001899 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06001900 }
1901}
1902
James Ketrenosc848d0a2005-08-24 21:56:24 -05001903static void ipw_bg_scan_check(void *data)
1904{
1905 struct ipw_priv *priv = data;
1906 down(&priv->sem);
1907 ipw_scan_check(data);
1908 up(&priv->sem);
1909}
1910
James Ketrenos43f66a62005-03-25 12:31:53 -06001911static int ipw_send_scan_request_ext(struct ipw_priv *priv,
1912 struct ipw_scan_request_ext *request)
1913{
1914 struct host_cmd cmd = {
1915 .cmd = IPW_CMD_SCAN_REQUEST_EXT,
1916 .len = sizeof(*request)
1917 };
1918
James Ketrenosafbf30a2005-08-25 00:05:33 -05001919 memcpy(cmd.param, request, sizeof(*request));
James Ketrenos43f66a62005-03-25 12:31:53 -06001920 if (ipw_send_cmd(priv, &cmd)) {
1921 IPW_ERROR("failed to send SCAN_REQUEST_EXT command\n");
1922 return -1;
1923 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001924
James Ketrenos43f66a62005-03-25 12:31:53 -06001925 return 0;
1926}
1927
1928static int ipw_send_scan_abort(struct ipw_priv *priv)
1929{
1930 struct host_cmd cmd = {
1931 .cmd = IPW_CMD_SCAN_ABORT,
1932 .len = 0
1933 };
1934
1935 if (!priv) {
1936 IPW_ERROR("Invalid args\n");
1937 return -1;
1938 }
1939
1940 if (ipw_send_cmd(priv, &cmd)) {
1941 IPW_ERROR("failed to send SCAN_ABORT command\n");
1942 return -1;
1943 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001944
James Ketrenos43f66a62005-03-25 12:31:53 -06001945 return 0;
1946}
1947
1948static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
1949{
1950 struct host_cmd cmd = {
1951 .cmd = IPW_CMD_SENSITIVITY_CALIB,
1952 .len = sizeof(struct ipw_sensitivity_calib)
1953 };
1954 struct ipw_sensitivity_calib *calib = (struct ipw_sensitivity_calib *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001955 &cmd.param;
James Ketrenos43f66a62005-03-25 12:31:53 -06001956 calib->beacon_rssi_raw = sens;
1957 if (ipw_send_cmd(priv, &cmd)) {
1958 IPW_ERROR("failed to send SENSITIVITY CALIB command\n");
1959 return -1;
1960 }
1961
1962 return 0;
1963}
1964
1965static int ipw_send_associate(struct ipw_priv *priv,
1966 struct ipw_associate *associate)
1967{
1968 struct host_cmd cmd = {
1969 .cmd = IPW_CMD_ASSOCIATE,
1970 .len = sizeof(*associate)
1971 };
1972
James Ketrenosa613bff2005-08-24 21:43:11 -05001973 struct ipw_associate tmp_associate;
1974 memcpy(&tmp_associate, associate, sizeof(*associate));
1975 tmp_associate.policy_support =
1976 cpu_to_le16(tmp_associate.policy_support);
1977 tmp_associate.assoc_tsf_msw = cpu_to_le32(tmp_associate.assoc_tsf_msw);
1978 tmp_associate.assoc_tsf_lsw = cpu_to_le32(tmp_associate.assoc_tsf_lsw);
1979 tmp_associate.capability = cpu_to_le16(tmp_associate.capability);
1980 tmp_associate.listen_interval =
1981 cpu_to_le16(tmp_associate.listen_interval);
1982 tmp_associate.beacon_interval =
1983 cpu_to_le16(tmp_associate.beacon_interval);
1984 tmp_associate.atim_window = cpu_to_le16(tmp_associate.atim_window);
1985
James Ketrenos43f66a62005-03-25 12:31:53 -06001986 if (!priv || !associate) {
1987 IPW_ERROR("Invalid args\n");
1988 return -1;
1989 }
1990
James Ketrenosafbf30a2005-08-25 00:05:33 -05001991 memcpy(cmd.param, &tmp_associate, sizeof(*associate));
James Ketrenos43f66a62005-03-25 12:31:53 -06001992 if (ipw_send_cmd(priv, &cmd)) {
1993 IPW_ERROR("failed to send ASSOCIATE command\n");
1994 return -1;
1995 }
Jeff Garzikbf794512005-07-31 13:07:26 -04001996
James Ketrenos43f66a62005-03-25 12:31:53 -06001997 return 0;
1998}
1999
2000static int ipw_send_supported_rates(struct ipw_priv *priv,
2001 struct ipw_supported_rates *rates)
2002{
2003 struct host_cmd cmd = {
2004 .cmd = IPW_CMD_SUPPORTED_RATES,
2005 .len = sizeof(*rates)
2006 };
2007
2008 if (!priv || !rates) {
2009 IPW_ERROR("Invalid args\n");
2010 return -1;
2011 }
2012
James Ketrenosafbf30a2005-08-25 00:05:33 -05002013 memcpy(cmd.param, rates, sizeof(*rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06002014 if (ipw_send_cmd(priv, &cmd)) {
2015 IPW_ERROR("failed to send SUPPORTED_RATES command\n");
2016 return -1;
2017 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002018
James Ketrenos43f66a62005-03-25 12:31:53 -06002019 return 0;
2020}
2021
2022static int ipw_set_random_seed(struct ipw_priv *priv)
2023{
2024 struct host_cmd cmd = {
2025 .cmd = IPW_CMD_SEED_NUMBER,
2026 .len = sizeof(u32)
2027 };
2028
2029 if (!priv) {
2030 IPW_ERROR("Invalid args\n");
2031 return -1;
2032 }
2033
2034 get_random_bytes(&cmd.param, sizeof(u32));
2035
2036 if (ipw_send_cmd(priv, &cmd)) {
2037 IPW_ERROR("failed to send SEED_NUMBER command\n");
2038 return -1;
2039 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002040
James Ketrenos43f66a62005-03-25 12:31:53 -06002041 return 0;
2042}
2043
James Ketrenos43f66a62005-03-25 12:31:53 -06002044static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2045{
2046 struct host_cmd cmd = {
2047 .cmd = IPW_CMD_CARD_DISABLE,
2048 .len = sizeof(u32)
2049 };
2050
2051 if (!priv) {
2052 IPW_ERROR("Invalid args\n");
2053 return -1;
2054 }
2055
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002056 *((u32 *) & cmd.param) = phy_off;
James Ketrenos43f66a62005-03-25 12:31:53 -06002057
2058 if (ipw_send_cmd(priv, &cmd)) {
2059 IPW_ERROR("failed to send CARD_DISABLE command\n");
2060 return -1;
2061 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002062
James Ketrenos43f66a62005-03-25 12:31:53 -06002063 return 0;
2064}
James Ketrenos43f66a62005-03-25 12:31:53 -06002065
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002066static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002067{
2068 struct host_cmd cmd = {
2069 .cmd = IPW_CMD_TX_POWER,
2070 .len = sizeof(*power)
2071 };
2072
2073 if (!priv || !power) {
2074 IPW_ERROR("Invalid args\n");
2075 return -1;
2076 }
2077
James Ketrenosafbf30a2005-08-25 00:05:33 -05002078 memcpy(cmd.param, power, sizeof(*power));
James Ketrenos43f66a62005-03-25 12:31:53 -06002079 if (ipw_send_cmd(priv, &cmd)) {
2080 IPW_ERROR("failed to send TX_POWER command\n");
2081 return -1;
2082 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002083
James Ketrenos43f66a62005-03-25 12:31:53 -06002084 return 0;
2085}
2086
2087static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2088{
2089 struct ipw_rts_threshold rts_threshold = {
2090 .rts_threshold = rts,
2091 };
2092 struct host_cmd cmd = {
2093 .cmd = IPW_CMD_RTS_THRESHOLD,
2094 .len = sizeof(rts_threshold)
2095 };
2096
2097 if (!priv) {
2098 IPW_ERROR("Invalid args\n");
2099 return -1;
2100 }
2101
James Ketrenosafbf30a2005-08-25 00:05:33 -05002102 memcpy(cmd.param, &rts_threshold, sizeof(rts_threshold));
James Ketrenos43f66a62005-03-25 12:31:53 -06002103 if (ipw_send_cmd(priv, &cmd)) {
2104 IPW_ERROR("failed to send RTS_THRESHOLD command\n");
2105 return -1;
2106 }
2107
2108 return 0;
2109}
2110
2111static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2112{
2113 struct ipw_frag_threshold frag_threshold = {
2114 .frag_threshold = frag,
2115 };
2116 struct host_cmd cmd = {
2117 .cmd = IPW_CMD_FRAG_THRESHOLD,
2118 .len = sizeof(frag_threshold)
2119 };
2120
2121 if (!priv) {
2122 IPW_ERROR("Invalid args\n");
2123 return -1;
2124 }
2125
James Ketrenosafbf30a2005-08-25 00:05:33 -05002126 memcpy(cmd.param, &frag_threshold, sizeof(frag_threshold));
James Ketrenos43f66a62005-03-25 12:31:53 -06002127 if (ipw_send_cmd(priv, &cmd)) {
2128 IPW_ERROR("failed to send FRAG_THRESHOLD command\n");
2129 return -1;
2130 }
2131
2132 return 0;
2133}
2134
2135static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2136{
2137 struct host_cmd cmd = {
2138 .cmd = IPW_CMD_POWER_MODE,
2139 .len = sizeof(u32)
2140 };
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002141 u32 *param = (u32 *) (&cmd.param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002142
2143 if (!priv) {
2144 IPW_ERROR("Invalid args\n");
2145 return -1;
2146 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002147
James Ketrenos43f66a62005-03-25 12:31:53 -06002148 /* If on battery, set to 3, if AC set to CAM, else user
2149 * level */
2150 switch (mode) {
2151 case IPW_POWER_BATTERY:
2152 *param = IPW_POWER_INDEX_3;
2153 break;
2154 case IPW_POWER_AC:
2155 *param = IPW_POWER_MODE_CAM;
2156 break;
2157 default:
2158 *param = mode;
2159 break;
2160 }
2161
2162 if (ipw_send_cmd(priv, &cmd)) {
2163 IPW_ERROR("failed to send POWER_MODE command\n");
2164 return -1;
2165 }
2166
2167 return 0;
2168}
2169
James Ketrenosafbf30a2005-08-25 00:05:33 -05002170static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2171{
2172 struct ipw_retry_limit retry_limit = {
2173 .short_retry_limit = slimit,
2174 .long_retry_limit = llimit
2175 };
2176 struct host_cmd cmd = {
2177 .cmd = IPW_CMD_RETRY_LIMIT,
2178 .len = sizeof(retry_limit)
2179 };
2180
2181 if (!priv) {
2182 IPW_ERROR("Invalid args\n");
2183 return -1;
2184 }
2185
2186 memcpy(cmd.param, &retry_limit, sizeof(retry_limit));
2187 if (ipw_send_cmd(priv, &cmd)) {
2188 IPW_ERROR("failed to send RETRY_LIMIT command\n");
2189 return -1;
2190 }
2191
2192 return 0;
2193}
2194
James Ketrenos43f66a62005-03-25 12:31:53 -06002195/*
2196 * The IPW device contains a Microwire compatible EEPROM that stores
2197 * various data like the MAC address. Usually the firmware has exclusive
2198 * access to the eeprom, but during device initialization (before the
2199 * device driver has sent the HostComplete command to the firmware) the
2200 * device driver has read access to the EEPROM by way of indirect addressing
2201 * through a couple of memory mapped registers.
2202 *
2203 * The following is a simplified implementation for pulling data out of the
2204 * the eeprom, along with some helper functions to find information in
2205 * the per device private data's copy of the eeprom.
2206 *
2207 * NOTE: To better understand how these functions work (i.e what is a chip
2208 * select and why do have to keep driving the eeprom clock?), read
2209 * just about any data sheet for a Microwire compatible EEPROM.
2210 */
2211
2212/* write a 32 bit value into the indirect accessor register */
2213static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2214{
2215 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002216
James Ketrenos43f66a62005-03-25 12:31:53 -06002217 /* the eeprom requires some time to complete the operation */
2218 udelay(p->eeprom_delay);
2219
2220 return;
2221}
2222
2223/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002224static inline void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002225{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002226 eeprom_write_reg(priv, 0);
2227 eeprom_write_reg(priv, EEPROM_BIT_CS);
2228 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2229 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002230}
2231
2232/* perform a chip select operation */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002233static inline void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002234{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002235 eeprom_write_reg(priv, EEPROM_BIT_CS);
2236 eeprom_write_reg(priv, 0);
2237 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002238}
2239
2240/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002241static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002242{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002243 int d = (bit ? EEPROM_BIT_DI : 0);
2244 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2245 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002246}
2247
2248/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002249static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002250{
2251 int i;
2252
2253 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002254 eeprom_write_bit(priv, 1);
2255 eeprom_write_bit(priv, op & 2);
2256 eeprom_write_bit(priv, op & 1);
2257 for (i = 7; i >= 0; i--) {
2258 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002259 }
2260}
2261
2262/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002263static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002264{
2265 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002266 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002267
James Ketrenos43f66a62005-03-25 12:31:53 -06002268 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002269 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002270
2271 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002272 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002273
2274 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002275 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002276 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002277 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2278 eeprom_write_reg(priv, EEPROM_BIT_CS);
2279 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2280 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002281 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002282
James Ketrenos43f66a62005-03-25 12:31:53 -06002283 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002284 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002285 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002286
James Ketrenos43f66a62005-03-25 12:31:53 -06002287 return r;
2288}
2289
2290/* helper function for pulling the mac address out of the private */
2291/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002292static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002293{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002294 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002295}
2296
2297/*
2298 * Either the device driver (i.e. the host) or the firmware can
2299 * load eeprom data into the designated region in SRAM. If neither
2300 * happens then the FW will shutdown with a fatal error.
2301 *
2302 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2303 * bit needs region of shared SRAM needs to be non-zero.
2304 */
2305static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2306{
2307 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002308 u16 *eeprom = (u16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002309
James Ketrenos43f66a62005-03-25 12:31:53 -06002310 IPW_DEBUG_TRACE(">>\n");
2311
2312 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002313 for (i = 0; i < 128; i++)
James Ketrenosa613bff2005-08-24 21:43:11 -05002314 eeprom[i] = le16_to_cpu(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002315
Jeff Garzikbf794512005-07-31 13:07:26 -04002316 /*
2317 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002318 copy. Otherwise let the firmware know to perform the operation
2319 on it's own
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002320 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002321 if ((priv->eeprom + EEPROM_VERSION) != 0) {
2322 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2323
2324 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002325 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002326 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002327
2328 /* Do not load eeprom data on fatal error or suspend */
2329 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2330 } else {
2331 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2332
2333 /* Load eeprom data on fatal error or suspend */
2334 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2335 }
2336
2337 IPW_DEBUG_TRACE("<<\n");
2338}
2339
James Ketrenos43f66a62005-03-25 12:31:53 -06002340static inline void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
2341{
2342 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002343 if (!count)
2344 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002345 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002346 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002347 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002348}
2349
2350static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2351{
James Ketrenosb095c382005-08-24 22:04:42 -05002352 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002353 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002354 sizeof(struct command_block));
2355}
2356
2357static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002358{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002359
2360 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002361
James Ketrenos43f66a62005-03-25 12:31:53 -06002362 /* Start the dma */
2363 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002364
James Ketrenos43f66a62005-03-25 12:31:53 -06002365 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002366 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002367
2368 IPW_DEBUG_FW("<< : \n");
2369 return 0;
2370}
2371
2372static void ipw_fw_dma_abort(struct ipw_priv *priv)
2373{
2374 u32 control = 0;
2375
2376 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002377
2378 //set the Stop and Abort bit
James Ketrenos43f66a62005-03-25 12:31:53 -06002379 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002380 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002381 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002382
James Ketrenos43f66a62005-03-25 12:31:53 -06002383 IPW_DEBUG_FW("<< \n");
2384}
2385
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002386static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2387 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002388{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002389 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002390 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002391 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002392 IPW_DEBUG_FW(">> :\n");
2393
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002394 ipw_write_indirect(priv, address, (u8 *) cb,
2395 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002396
2397 IPW_DEBUG_FW("<< :\n");
2398 return 0;
2399
2400}
2401
2402static int ipw_fw_dma_kick(struct ipw_priv *priv)
2403{
2404 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002405 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002406
2407 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002408
James Ketrenos43f66a62005-03-25 12:31:53 -06002409 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002410 ipw_fw_dma_write_command_block(priv, index,
2411 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002412
2413 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002414 ipw_clear_bit(priv, IPW_RESET_REG,
2415 IPW_RESET_REG_MASTER_DISABLED |
2416 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002417
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002418 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002419 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002420 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002421
2422 IPW_DEBUG_FW("<< :\n");
2423 return 0;
2424}
2425
2426static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2427{
2428 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002429 u32 register_value = 0;
2430 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002431
2432 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002433 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002434 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002435
2436 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002437 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2438 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002439
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002440 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002441 cb_fields_address = address;
2442 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002443 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002444
2445 cb_fields_address += sizeof(u32);
2446 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002447 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002448
2449 cb_fields_address += sizeof(u32);
2450 register_value = ipw_read_reg32(priv, cb_fields_address);
2451 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2452 register_value);
2453
2454 cb_fields_address += sizeof(u32);
2455 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002456 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002457
2458 IPW_DEBUG_FW(">> :\n");
2459}
2460
2461static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2462{
2463 u32 current_cb_address = 0;
2464 u32 current_cb_index = 0;
2465
2466 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002467 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002468
James Ketrenosb095c382005-08-24 22:04:42 -05002469 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002470 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002471
James Ketrenos43f66a62005-03-25 12:31:53 -06002472 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002473 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002474
2475 IPW_DEBUG_FW(">> :\n");
2476 return current_cb_index;
2477
2478}
2479
2480static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2481 u32 src_address,
2482 u32 dest_address,
2483 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002484 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002485{
2486
Jeff Garzikbf794512005-07-31 13:07:26 -04002487 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002488 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2489 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002490 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002491 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002492
2493 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2494 src_address, dest_address, length);
2495
2496 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2497 return -1;
2498
2499 last_cb_element = priv->sram_desc.last_cb_index;
2500 cb = &priv->sram_desc.cb_list[last_cb_element];
2501 priv->sram_desc.last_cb_index++;
2502
2503 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002504 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002505 control |= CB_INT_ENABLED;
2506
2507 if (is_last)
2508 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002509
James Ketrenos43f66a62005-03-25 12:31:53 -06002510 control |= length;
2511
2512 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002513 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002514
2515 /* Copy the Source and Destination addresses */
2516 cb->dest_addr = dest_address;
2517 cb->source_addr = src_address;
2518
2519 /* Copy the Control Word last */
2520 cb->control = control;
2521
2522 return 0;
2523}
2524
2525static int ipw_fw_dma_add_buffer(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002526 u32 src_phys, u32 dest_address, u32 length)
James Ketrenos43f66a62005-03-25 12:31:53 -06002527{
2528 u32 bytes_left = length;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002529 u32 src_offset = 0;
2530 u32 dest_offset = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002531 int status = 0;
2532 IPW_DEBUG_FW(">> \n");
2533 IPW_DEBUG_FW_INFO("src_phys=0x%x dest_address=0x%x length=0x%x\n",
2534 src_phys, dest_address, length);
2535 while (bytes_left > CB_MAX_LENGTH) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002536 status = ipw_fw_dma_add_command_block(priv,
2537 src_phys + src_offset,
2538 dest_address +
2539 dest_offset,
2540 CB_MAX_LENGTH, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002541 if (status) {
2542 IPW_DEBUG_FW_INFO(": Failed\n");
2543 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002544 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002545 IPW_DEBUG_FW_INFO(": Added new cb\n");
2546
2547 src_offset += CB_MAX_LENGTH;
2548 dest_offset += CB_MAX_LENGTH;
2549 bytes_left -= CB_MAX_LENGTH;
2550 }
2551
2552 /* add the buffer tail */
2553 if (bytes_left > 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002554 status =
2555 ipw_fw_dma_add_command_block(priv, src_phys + src_offset,
2556 dest_address + dest_offset,
2557 bytes_left, 0, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002558 if (status) {
2559 IPW_DEBUG_FW_INFO(": Failed on the buffer tail\n");
2560 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002561 } else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002562 IPW_DEBUG_FW_INFO
2563 (": Adding new cb - the buffer tail\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002564 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002565
James Ketrenos43f66a62005-03-25 12:31:53 -06002566 IPW_DEBUG_FW("<< \n");
2567 return 0;
2568}
2569
2570static int ipw_fw_dma_wait(struct ipw_priv *priv)
2571{
2572 u32 current_index = 0;
2573 u32 watchdog = 0;
2574
2575 IPW_DEBUG_FW(">> : \n");
2576
2577 current_index = ipw_fw_dma_command_block_index(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002578 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%8X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002579 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002580
2581 while (current_index < priv->sram_desc.last_cb_index) {
2582 udelay(50);
2583 current_index = ipw_fw_dma_command_block_index(priv);
2584
2585 watchdog++;
2586
2587 if (watchdog > 400) {
2588 IPW_DEBUG_FW_INFO("Timeout\n");
2589 ipw_fw_dma_dump_command_block(priv);
2590 ipw_fw_dma_abort(priv);
2591 return -1;
2592 }
2593 }
2594
2595 ipw_fw_dma_abort(priv);
2596
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002597 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002598 ipw_set_bit(priv, IPW_RESET_REG,
2599 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002600
2601 IPW_DEBUG_FW("<< dmaWaitSync \n");
2602 return 0;
2603}
2604
Jeff Garzikbf794512005-07-31 13:07:26 -04002605static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002606{
2607 struct list_head *element, *safe;
Jeff Garzikbf794512005-07-31 13:07:26 -04002608 struct ieee80211_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002609 unsigned long flags;
2610
2611 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002612 list_for_each_safe(element, safe, &priv->ieee->network_list) {
2613 network = list_entry(element, struct ieee80211_network, list);
2614 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2615 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002616 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002617 &priv->ieee->network_free_list);
2618 }
2619 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002620 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002621}
2622
2623/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002624 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002625 * Reads debug register from domain0.
2626 * If card is present, pre-defined value should
2627 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002628 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002629 * @param priv
2630 * @return 1 if card is present, 0 otherwise
2631 */
2632static inline int ipw_alive(struct ipw_priv *priv)
2633{
2634 return ipw_read32(priv, 0x90) == 0xd55555d5;
2635}
2636
2637static inline int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
2638 int timeout)
2639{
2640 int i = 0;
2641
2642 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04002643 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06002644 return i;
2645 mdelay(10);
2646 i += 10;
2647 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04002648
James Ketrenos43f66a62005-03-25 12:31:53 -06002649 return -ETIME;
2650}
2651
Jeff Garzikbf794512005-07-31 13:07:26 -04002652/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06002653 * the ipw hardware. It assumes the buffer has all the bits for the
2654 * image and the caller is handling the memory allocation and clean up.
2655 */
2656
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002657static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002658{
2659 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002660
James Ketrenos43f66a62005-03-25 12:31:53 -06002661 IPW_DEBUG_TRACE(">> \n");
2662 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05002663 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002664
James Ketrenosb095c382005-08-24 22:04:42 -05002665 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2666 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06002667 if (rc < 0) {
2668 IPW_ERROR("stop master failed in 10ms\n");
2669 return -1;
2670 }
2671
2672 IPW_DEBUG_INFO("stop master %dms\n", rc);
2673
2674 return rc;
2675}
2676
2677static void ipw_arc_release(struct ipw_priv *priv)
2678{
2679 IPW_DEBUG_TRACE(">> \n");
2680 mdelay(5);
2681
James Ketrenosb095c382005-08-24 22:04:42 -05002682 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002683
2684 /* no one knows timing, for safety add some delay */
2685 mdelay(5);
2686}
2687
2688struct fw_header {
2689 u32 version;
2690 u32 mode;
2691};
2692
2693struct fw_chunk {
2694 u32 address;
2695 u32 length;
2696};
2697
2698#define IPW_FW_MAJOR_VERSION 2
James Ketrenosb095c382005-08-24 22:04:42 -05002699#define IPW_FW_MINOR_VERSION 3
James Ketrenos43f66a62005-03-25 12:31:53 -06002700
2701#define IPW_FW_MINOR(x) ((x & 0xff) >> 8)
2702#define IPW_FW_MAJOR(x) (x & 0xff)
2703
James Ketrenosafbf30a2005-08-25 00:05:33 -05002704#define IPW_FW_VERSION ((IPW_FW_MINOR_VERSION << 8) | IPW_FW_MAJOR_VERSION)
James Ketrenos43f66a62005-03-25 12:31:53 -06002705
2706#define IPW_FW_PREFIX "ipw-" __stringify(IPW_FW_MAJOR_VERSION) \
2707"." __stringify(IPW_FW_MINOR_VERSION) "-"
2708
2709#if IPW_FW_MAJOR_VERSION >= 2 && IPW_FW_MINOR_VERSION > 0
2710#define IPW_FW_NAME(x) IPW_FW_PREFIX "" x ".fw"
2711#else
2712#define IPW_FW_NAME(x) "ipw2200_" x ".fw"
2713#endif
2714
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002715static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002716{
2717 int rc = 0, i, addr;
2718 u8 cr = 0;
2719 u16 *image;
2720
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002721 image = (u16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04002722
James Ketrenos43f66a62005-03-25 12:31:53 -06002723 IPW_DEBUG_TRACE(">> \n");
2724
2725 rc = ipw_stop_master(priv);
2726
2727 if (rc < 0)
2728 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002729
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002730// spin_lock_irqsave(&priv->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04002731
James Ketrenosb095c382005-08-24 22:04:42 -05002732 for (addr = IPW_SHARED_LOWER_BOUND;
2733 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002734 ipw_write32(priv, addr, 0);
2735 }
2736
2737 /* no ucode (yet) */
2738 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
2739 /* destroy DMA queues */
2740 /* reset sequence */
2741
James Ketrenosb095c382005-08-24 22:04:42 -05002742 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06002743 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002744 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06002745 mdelay(1);
2746
2747 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05002748 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002749 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002750
James Ketrenosb095c382005-08-24 22:04:42 -05002751 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002752 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04002753
James Ketrenos43f66a62005-03-25 12:31:53 -06002754 /* enable ucode store */
2755 ipw_write_reg8(priv, DINO_CONTROL_REG, 0x0);
2756 ipw_write_reg8(priv, DINO_CONTROL_REG, DINO_ENABLE_CS);
2757 mdelay(1);
2758
2759 /* write ucode */
2760 /**
2761 * @bug
2762 * Do NOT set indirect address register once and then
2763 * store data to indirect data register in the loop.
2764 * It seems very reasonable, but in this case DINO do not
2765 * accept ucode. It is essential to set address each time.
2766 */
2767 /* load new ipw uCode */
2768 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05002769 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
James Ketrenosa613bff2005-08-24 21:43:11 -05002770 cpu_to_le16(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06002771
James Ketrenos43f66a62005-03-25 12:31:53 -06002772 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05002773 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
2774 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002775
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002776 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002777
2778 /* wait for alive response */
2779 for (i = 0; i < 100; i++) {
2780 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05002781 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002782 if (cr & DINO_RXFIFO_DATA)
2783 break;
2784 mdelay(1);
2785 }
2786
2787 if (cr & DINO_RXFIFO_DATA) {
2788 /* alive_command_responce size is NOT multiple of 4 */
2789 u32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04002790
2791 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06002792 response_buffer[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05002793 le32_to_cpu(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05002794 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06002795 memcpy(&priv->dino_alive, response_buffer,
2796 sizeof(priv->dino_alive));
2797 if (priv->dino_alive.alive_command == 1
2798 && priv->dino_alive.ucode_valid == 1) {
2799 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002800 IPW_DEBUG_INFO
2801 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
2802 "of %02d/%02d/%02d %02d:%02d\n",
2803 priv->dino_alive.software_revision,
2804 priv->dino_alive.software_revision,
2805 priv->dino_alive.device_identifier,
2806 priv->dino_alive.device_identifier,
2807 priv->dino_alive.time_stamp[0],
2808 priv->dino_alive.time_stamp[1],
2809 priv->dino_alive.time_stamp[2],
2810 priv->dino_alive.time_stamp[3],
2811 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002812 } else {
2813 IPW_DEBUG_INFO("Microcode is not alive\n");
2814 rc = -EINVAL;
2815 }
2816 } else {
2817 IPW_DEBUG_INFO("No alive response from DINO\n");
2818 rc = -ETIME;
2819 }
2820
2821 /* disable DINO, otherwise for some reason
2822 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05002823 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002824
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002825// spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002826
2827 return rc;
2828}
2829
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002830static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002831{
2832 int rc = -1;
2833 int offset = 0;
2834 struct fw_chunk *chunk;
2835 dma_addr_t shared_phys;
2836 u8 *shared_virt;
2837
2838 IPW_DEBUG_TRACE("<< : \n");
2839 shared_virt = pci_alloc_consistent(priv->pci_dev, len, &shared_phys);
2840
2841 if (!shared_virt)
2842 return -ENOMEM;
2843
2844 memmove(shared_virt, data, len);
2845
2846 /* Start the Dma */
2847 rc = ipw_fw_dma_enable(priv);
2848
2849 if (priv->sram_desc.last_cb_index > 0) {
2850 /* the DMA is already ready this would be a bug. */
2851 BUG();
2852 goto out;
2853 }
2854
2855 do {
2856 chunk = (struct fw_chunk *)(data + offset);
2857 offset += sizeof(struct fw_chunk);
2858 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04002859 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06002860 * offeset*/
2861 /* Dma loading */
2862 rc = ipw_fw_dma_add_buffer(priv, shared_phys + offset,
James Ketrenosa613bff2005-08-24 21:43:11 -05002863 le32_to_cpu(chunk->address),
2864 le32_to_cpu(chunk->length));
James Ketrenos43f66a62005-03-25 12:31:53 -06002865 if (rc) {
2866 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
2867 goto out;
2868 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002869
James Ketrenosa613bff2005-08-24 21:43:11 -05002870 offset += le32_to_cpu(chunk->length);
James Ketrenos43f66a62005-03-25 12:31:53 -06002871 } while (offset < len);
2872
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002873 /* Run the DMA and wait for the answer */
James Ketrenos43f66a62005-03-25 12:31:53 -06002874 rc = ipw_fw_dma_kick(priv);
2875 if (rc) {
2876 IPW_ERROR("dmaKick Failed\n");
2877 goto out;
2878 }
2879
2880 rc = ipw_fw_dma_wait(priv);
2881 if (rc) {
2882 IPW_ERROR("dmaWaitSync Failed\n");
2883 goto out;
2884 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002885 out:
2886 pci_free_consistent(priv->pci_dev, len, shared_virt, shared_phys);
James Ketrenos43f66a62005-03-25 12:31:53 -06002887 return rc;
2888}
2889
2890/* stop nic */
2891static int ipw_stop_nic(struct ipw_priv *priv)
2892{
2893 int rc = 0;
2894
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002895 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05002896 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002897
James Ketrenosb095c382005-08-24 22:04:42 -05002898 rc = ipw_poll_bit(priv, IPW_RESET_REG,
2899 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06002900 if (rc < 0) {
2901 IPW_ERROR("wait for reg master disabled failed\n");
2902 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002903 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002904
James Ketrenosb095c382005-08-24 22:04:42 -05002905 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04002906
James Ketrenos43f66a62005-03-25 12:31:53 -06002907 return rc;
2908}
2909
2910static void ipw_start_nic(struct ipw_priv *priv)
2911{
2912 IPW_DEBUG_TRACE(">>\n");
2913
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002914 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05002915 ipw_clear_bit(priv, IPW_RESET_REG,
2916 IPW_RESET_REG_MASTER_DISABLED |
2917 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06002918 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04002919
James Ketrenos43f66a62005-03-25 12:31:53 -06002920 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05002921 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
2922 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06002923
2924 IPW_DEBUG_TRACE("<<\n");
2925}
Jeff Garzikbf794512005-07-31 13:07:26 -04002926
James Ketrenos43f66a62005-03-25 12:31:53 -06002927static int ipw_init_nic(struct ipw_priv *priv)
2928{
2929 int rc;
2930
2931 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002932 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06002933 /*prvHwInitNic */
2934 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05002935 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002936
2937 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05002938 ipw_write32(priv, IPW_READ_INT_REGISTER,
2939 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002940
2941 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05002942 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
2943 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002944 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06002945 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
2946
2947 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05002948 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06002949
2950 udelay(10);
2951
2952 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05002953 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002954
2955 IPW_DEBUG_TRACE(">>\n");
2956 return 0;
2957}
2958
Jeff Garzikbf794512005-07-31 13:07:26 -04002959/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06002960 * Probe is an ok place to call this from.
2961 */
2962static int ipw_reset_nic(struct ipw_priv *priv)
2963{
2964 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002965 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06002966
2967 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002968
James Ketrenos43f66a62005-03-25 12:31:53 -06002969 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002970
James Ketrenosa613bff2005-08-24 21:43:11 -05002971 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002972 /* Clear the 'host command active' bit... */
2973 priv->status &= ~STATUS_HCMD_ACTIVE;
2974 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05002975 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
2976 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05002977 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002978
2979 IPW_DEBUG_TRACE("<<\n");
2980 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002981}
James Ketrenos43f66a62005-03-25 12:31:53 -06002982
Jeff Garzikbf794512005-07-31 13:07:26 -04002983static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06002984 const struct firmware **fw, const char *name)
2985{
2986 struct fw_header *header;
2987 int rc;
2988
2989 /* ask firmware_class module to get the boot firmware off disk */
2990 rc = request_firmware(fw, name, &priv->pci_dev->dev);
2991 if (rc < 0) {
2992 IPW_ERROR("%s load failed: Reason %d\n", name, rc);
2993 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04002994 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002995
2996 header = (struct fw_header *)(*fw)->data;
James Ketrenosa613bff2005-08-24 21:43:11 -05002997 if (IPW_FW_MAJOR(le32_to_cpu(header->version)) != IPW_FW_MAJOR_VERSION) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002998 IPW_ERROR("'%s' firmware version not compatible (%d != %d)\n",
2999 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003000 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3001 IPW_FW_MAJOR_VERSION);
James Ketrenos43f66a62005-03-25 12:31:53 -06003002 return -EINVAL;
3003 }
3004
Jiri Bencaaa4d302005-06-07 14:58:41 +02003005 IPW_DEBUG_INFO("Loading firmware '%s' file v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003006 name,
James Ketrenosa613bff2005-08-24 21:43:11 -05003007 IPW_FW_MAJOR(le32_to_cpu(header->version)),
3008 IPW_FW_MINOR(le32_to_cpu(header->version)),
James Ketrenos43f66a62005-03-25 12:31:53 -06003009 (*fw)->size - sizeof(struct fw_header));
3010 return 0;
3011}
3012
James Ketrenosb095c382005-08-24 22:04:42 -05003013#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003014
3015static inline void ipw_rx_queue_reset(struct ipw_priv *priv,
3016 struct ipw_rx_queue *rxq)
3017{
3018 unsigned long flags;
3019 int i;
3020
3021 spin_lock_irqsave(&rxq->lock, flags);
3022
3023 INIT_LIST_HEAD(&rxq->rx_free);
3024 INIT_LIST_HEAD(&rxq->rx_used);
3025
3026 /* Fill the rx_used queue with _all_ of the Rx buffers */
3027 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3028 /* In the reset function, these buffers may have been allocated
3029 * to an SKB, so we need to unmap and free potential storage */
3030 if (rxq->pool[i].skb != NULL) {
3031 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003032 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003033 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003034 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003035 }
3036 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3037 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003038
James Ketrenos43f66a62005-03-25 12:31:53 -06003039 /* Set us so that we have processed and used all buffers, but have
3040 * not restocked the Rx queue with fresh buffers */
3041 rxq->read = rxq->write = 0;
3042 rxq->processed = RX_QUEUE_SIZE - 1;
3043 rxq->free_count = 0;
3044 spin_unlock_irqrestore(&rxq->lock, flags);
3045}
3046
3047#ifdef CONFIG_PM
3048static int fw_loaded = 0;
3049static const struct firmware *bootfw = NULL;
3050static const struct firmware *firmware = NULL;
3051static const struct firmware *ucode = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003052
3053static void free_firmware(void)
3054{
3055 if (fw_loaded) {
3056 release_firmware(bootfw);
3057 release_firmware(ucode);
3058 release_firmware(firmware);
3059 bootfw = ucode = firmware = NULL;
3060 fw_loaded = 0;
3061 }
3062}
3063#else
3064#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003065#endif
3066
3067static int ipw_load(struct ipw_priv *priv)
3068{
3069#ifndef CONFIG_PM
3070 const struct firmware *bootfw = NULL;
3071 const struct firmware *firmware = NULL;
3072 const struct firmware *ucode = NULL;
3073#endif
3074 int rc = 0, retries = 3;
3075
3076#ifdef CONFIG_PM
3077 if (!fw_loaded) {
3078#endif
3079 rc = ipw_get_fw(priv, &bootfw, IPW_FW_NAME("boot"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003080 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003081 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003082
James Ketrenos43f66a62005-03-25 12:31:53 -06003083 switch (priv->ieee->iw_mode) {
3084 case IW_MODE_ADHOC:
Jeff Garzikbf794512005-07-31 13:07:26 -04003085 rc = ipw_get_fw(priv, &ucode,
James Ketrenos43f66a62005-03-25 12:31:53 -06003086 IPW_FW_NAME("ibss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003087 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003088 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003089
James Ketrenos43f66a62005-03-25 12:31:53 -06003090 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("ibss"));
3091 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003092
James Ketrenosb095c382005-08-24 22:04:42 -05003093#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06003094 case IW_MODE_MONITOR:
Jeff Garzikbf794512005-07-31 13:07:26 -04003095 rc = ipw_get_fw(priv, &ucode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003096 IPW_FW_NAME("sniffer_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003097 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003098 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003099
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003100 rc = ipw_get_fw(priv, &firmware,
3101 IPW_FW_NAME("sniffer"));
James Ketrenos43f66a62005-03-25 12:31:53 -06003102 break;
3103#endif
3104 case IW_MODE_INFRA:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003105 rc = ipw_get_fw(priv, &ucode, IPW_FW_NAME("bss_ucode"));
Jeff Garzikbf794512005-07-31 13:07:26 -04003106 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003107 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -04003108
James Ketrenos43f66a62005-03-25 12:31:53 -06003109 rc = ipw_get_fw(priv, &firmware, IPW_FW_NAME("bss"));
3110 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04003111
James Ketrenos43f66a62005-03-25 12:31:53 -06003112 default:
3113 rc = -EINVAL;
3114 }
3115
Jeff Garzikbf794512005-07-31 13:07:26 -04003116 if (rc)
James Ketrenos43f66a62005-03-25 12:31:53 -06003117 goto error;
3118
3119#ifdef CONFIG_PM
3120 fw_loaded = 1;
3121 }
3122#endif
3123
3124 if (!priv->rxq)
3125 priv->rxq = ipw_rx_queue_alloc(priv);
3126 else
3127 ipw_rx_queue_reset(priv, priv->rxq);
3128 if (!priv->rxq) {
3129 IPW_ERROR("Unable to initialize Rx queue\n");
3130 goto error;
3131 }
3132
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003133 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003134 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003135 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003136 priv->status &= ~STATUS_INT_ENABLED;
3137
3138 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003139 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003140
James Ketrenos43f66a62005-03-25 12:31:53 -06003141 ipw_stop_nic(priv);
3142
3143 rc = ipw_reset_nic(priv);
3144 if (rc) {
3145 IPW_ERROR("Unable to reset NIC\n");
3146 goto error;
3147 }
3148
James Ketrenosb095c382005-08-24 22:04:42 -05003149 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3150 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003151
3152 /* DMA the initial boot firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003153 rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003154 bootfw->size - sizeof(struct fw_header));
3155 if (rc < 0) {
3156 IPW_ERROR("Unable to load boot firmware\n");
3157 goto error;
3158 }
3159
3160 /* kick start the device */
3161 ipw_start_nic(priv);
3162
3163 /* wait for the device to finish it's initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003164 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3165 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003166 if (rc < 0) {
3167 IPW_ERROR("device failed to boot initial fw image\n");
3168 goto error;
3169 }
3170 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3171
Jeff Garzikbf794512005-07-31 13:07:26 -04003172 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003173 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003174
3175 /* DMA the ucode into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003176 rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003177 ucode->size - sizeof(struct fw_header));
3178 if (rc < 0) {
3179 IPW_ERROR("Unable to load ucode\n");
3180 goto error;
3181 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003182
James Ketrenos43f66a62005-03-25 12:31:53 -06003183 /* stop nic */
3184 ipw_stop_nic(priv);
3185
3186 /* DMA bss firmware into the device */
Jeff Garzikbf794512005-07-31 13:07:26 -04003187 rc = ipw_load_firmware(priv, firmware->data +
3188 sizeof(struct fw_header),
James Ketrenos43f66a62005-03-25 12:31:53 -06003189 firmware->size - sizeof(struct fw_header));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003190 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003191 IPW_ERROR("Unable to load firmware\n");
3192 goto error;
3193 }
3194
3195 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3196
3197 rc = ipw_queue_reset(priv);
3198 if (rc) {
3199 IPW_ERROR("Unable to initialize queues\n");
3200 goto error;
3201 }
3202
3203 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003204 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003205 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003206 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003207
James Ketrenos43f66a62005-03-25 12:31:53 -06003208 /* kick start the device */
3209 ipw_start_nic(priv);
3210
James Ketrenosb095c382005-08-24 22:04:42 -05003211 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003212 if (retries > 0) {
3213 IPW_WARNING("Parity error. Retrying init.\n");
3214 retries--;
3215 goto retry;
3216 }
3217
3218 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3219 rc = -EIO;
3220 goto error;
3221 }
3222
3223 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003224 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3225 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003226 if (rc < 0) {
3227 IPW_ERROR("device failed to start after 500ms\n");
3228 goto error;
3229 }
3230 IPW_DEBUG_INFO("device response after %dms\n", rc);
3231
3232 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003233 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003234
3235 /* read eeprom data and initialize the eeprom region of sram */
3236 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003237 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003238
3239 /* enable interrupts */
3240 ipw_enable_interrupts(priv);
3241
3242 /* Ensure our queue has valid packets */
3243 ipw_rx_queue_replenish(priv);
3244
James Ketrenosb095c382005-08-24 22:04:42 -05003245 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003246
3247 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003248 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003249
3250#ifndef CONFIG_PM
3251 release_firmware(bootfw);
3252 release_firmware(ucode);
3253 release_firmware(firmware);
3254#endif
3255 return 0;
3256
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003257 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003258 if (priv->rxq) {
3259 ipw_rx_queue_free(priv, priv->rxq);
3260 priv->rxq = NULL;
3261 }
3262 ipw_tx_queue_free(priv);
3263 if (bootfw)
3264 release_firmware(bootfw);
3265 if (ucode)
3266 release_firmware(ucode);
3267 if (firmware)
3268 release_firmware(firmware);
3269#ifdef CONFIG_PM
3270 fw_loaded = 0;
3271 bootfw = ucode = firmware = NULL;
3272#endif
3273
3274 return rc;
3275}
3276
Jeff Garzikbf794512005-07-31 13:07:26 -04003277/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003278 * DMA services
3279 *
3280 * Theory of operation
3281 *
3282 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3283 * 2 empty entries always kept in the buffer to protect from overflow.
3284 *
3285 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003286 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3287 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003288 * Tx queue resumed.
3289 *
3290 * The IPW operates with six queues, one receive queue in the device's
3291 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003292 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003293 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003294 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003295 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003296 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003297 * we only utilize the first data transmit queue (queue1).
3298 */
3299
3300/**
3301 * Driver allocates buffers of this size for Rx
3302 */
3303
3304static inline int ipw_queue_space(const struct clx2_queue *q)
3305{
3306 int s = q->last_used - q->first_empty;
3307 if (s <= 0)
3308 s += q->n_bd;
3309 s -= 2; /* keep some reserve to not confuse empty and full situations */
3310 if (s < 0)
3311 s = 0;
3312 return s;
3313}
3314
3315static inline int ipw_queue_inc_wrap(int index, int n_bd)
3316{
3317 return (++index == n_bd) ? 0 : index;
3318}
3319
3320/**
3321 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003322 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003323 * @param q queue to init
3324 * @param count Number of BD's to allocate. Should be power of 2
3325 * @param read_register Address for 'read' register
3326 * (not offset within BAR, full address)
3327 * @param write_register Address for 'write' register
3328 * (not offset within BAR, full address)
3329 * @param base_register Address for 'base' register
3330 * (not offset within BAR, full address)
3331 * @param size Address for 'size' register
3332 * (not offset within BAR, full address)
3333 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003334static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003335 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003336{
3337 q->n_bd = count;
3338
3339 q->low_mark = q->n_bd / 4;
3340 if (q->low_mark < 4)
3341 q->low_mark = 4;
3342
3343 q->high_mark = q->n_bd / 8;
3344 if (q->high_mark < 2)
3345 q->high_mark = 2;
3346
3347 q->first_empty = q->last_used = 0;
3348 q->reg_r = read;
3349 q->reg_w = write;
3350
3351 ipw_write32(priv, base, q->dma_addr);
3352 ipw_write32(priv, size, count);
3353 ipw_write32(priv, read, 0);
3354 ipw_write32(priv, write, 0);
3355
3356 _ipw_read32(priv, 0x90);
3357}
3358
Jeff Garzikbf794512005-07-31 13:07:26 -04003359static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003360 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003361 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003362{
3363 struct pci_dev *dev = priv->pci_dev;
3364
3365 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3366 if (!q->txb) {
3367 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3368 return -ENOMEM;
3369 }
3370
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003371 q->bd =
3372 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003373 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003374 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003375 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003376 kfree(q->txb);
3377 q->txb = NULL;
3378 return -ENOMEM;
3379 }
3380
3381 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3382 return 0;
3383}
3384
3385/**
3386 * Free one TFD, those at index [txq->q.last_used].
3387 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003388 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003389 * @param dev
3390 * @param txq
3391 */
3392static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3393 struct clx2_tx_queue *txq)
3394{
3395 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3396 struct pci_dev *dev = priv->pci_dev;
3397 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003398
James Ketrenos43f66a62005-03-25 12:31:53 -06003399 /* classify bd */
3400 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3401 /* nothing to cleanup after for host commands */
3402 return;
3403
3404 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003405 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3406 IPW_ERROR("Too many chunks: %i\n",
3407 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003408 /** @todo issue fatal error, it is quite serious situation */
3409 return;
3410 }
3411
3412 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003413 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3414 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3415 le16_to_cpu(bd->u.data.chunk_len[i]),
3416 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003417 if (txq->txb[txq->q.last_used]) {
3418 ieee80211_txb_free(txq->txb[txq->q.last_used]);
3419 txq->txb[txq->q.last_used] = NULL;
3420 }
3421 }
3422}
3423
3424/**
3425 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003426 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003427 * Empty queue by removing and destroying all BD's.
3428 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003429 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003430 * @param dev
3431 * @param q
3432 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003433static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003434{
3435 struct clx2_queue *q = &txq->q;
3436 struct pci_dev *dev = priv->pci_dev;
3437
Jeff Garzikbf794512005-07-31 13:07:26 -04003438 if (q->n_bd == 0)
3439 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003440
3441 /* first, empty all BD's */
3442 for (; q->first_empty != q->last_used;
3443 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3444 ipw_queue_tx_free_tfd(priv, txq);
3445 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003446
James Ketrenos43f66a62005-03-25 12:31:53 -06003447 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003448 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003449 q->dma_addr);
3450 kfree(txq->txb);
3451
3452 /* 0 fill whole structure */
3453 memset(txq, 0, sizeof(*txq));
3454}
3455
James Ketrenos43f66a62005-03-25 12:31:53 -06003456/**
3457 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003458 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003459 * @param priv
3460 */
3461static void ipw_tx_queue_free(struct ipw_priv *priv)
3462{
3463 /* Tx CMD queue */
3464 ipw_queue_tx_free(priv, &priv->txq_cmd);
3465
3466 /* Tx queues */
3467 ipw_queue_tx_free(priv, &priv->txq[0]);
3468 ipw_queue_tx_free(priv, &priv->txq[1]);
3469 ipw_queue_tx_free(priv, &priv->txq[2]);
3470 ipw_queue_tx_free(priv, &priv->txq[3]);
3471}
3472
3473static void inline __maybe_wake_tx(struct ipw_priv *priv)
3474{
3475 if (netif_running(priv->net_dev)) {
3476 switch (priv->port_type) {
3477 case DCR_TYPE_MU_BSS:
3478 case DCR_TYPE_MU_IBSS:
James Ketrenosa613bff2005-08-24 21:43:11 -05003479 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003480 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003481 }
3482 netif_wake_queue(priv->net_dev);
3483 }
3484
3485}
3486
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003487static inline void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003488{
3489 /* First 3 bytes are manufacturer */
3490 bssid[0] = priv->mac_addr[0];
3491 bssid[1] = priv->mac_addr[1];
3492 bssid[2] = priv->mac_addr[2];
3493
3494 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003495 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003496
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003497 bssid[0] &= 0xfe; /* clear multicast bit */
3498 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003499}
3500
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003501static inline u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003502{
3503 struct ipw_station_entry entry;
3504 int i;
3505
3506 for (i = 0; i < priv->num_stations; i++) {
3507 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3508 /* Another node is active in network */
3509 priv->missed_adhoc_beacons = 0;
3510 if (!(priv->config & CFG_STATIC_CHANNEL))
3511 /* when other nodes drop out, we drop out */
3512 priv->config &= ~CFG_ADHOC_PERSIST;
3513
3514 return i;
3515 }
3516 }
3517
3518 if (i == MAX_STATIONS)
3519 return IPW_INVALID_STATION;
3520
3521 IPW_DEBUG_SCAN("Adding AdHoc station: " MAC_FMT "\n", MAC_ARG(bssid));
3522
3523 entry.reserved = 0;
3524 entry.support_mode = 0;
3525 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3526 memcpy(priv->stations[i], bssid, ETH_ALEN);
3527 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003528 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003529 priv->num_stations++;
3530
3531 return i;
3532}
3533
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003534static inline u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003535{
3536 int i;
3537
Jeff Garzikbf794512005-07-31 13:07:26 -04003538 for (i = 0; i < priv->num_stations; i++)
3539 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003540 return i;
3541
3542 return IPW_INVALID_STATION;
3543}
3544
3545static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3546{
3547 int err;
3548
3549 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))) {
3550 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3551 return;
3552 }
3553
3554 IPW_DEBUG_ASSOC("Disassocation attempt from " MAC_FMT " "
3555 "on channel %d.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04003556 MAC_ARG(priv->assoc_request.bssid),
James Ketrenos43f66a62005-03-25 12:31:53 -06003557 priv->assoc_request.channel);
3558
3559 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3560 priv->status |= STATUS_DISASSOCIATING;
3561
3562 if (quiet)
3563 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3564 else
3565 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
3566 err = ipw_send_associate(priv, &priv->assoc_request);
3567 if (err) {
3568 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3569 "failed.\n");
3570 return;
3571 }
3572
3573}
3574
James Ketrenosc848d0a2005-08-24 21:56:24 -05003575static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003576{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003577 struct ipw_priv *priv = data;
3578 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3579 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003580 ipw_send_disassociate(data, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003581 return 1;
3582}
3583
3584static void ipw_bg_disassociate(void *data)
3585{
3586 struct ipw_priv *priv = data;
3587 down(&priv->sem);
3588 ipw_disassociate(data);
3589 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06003590}
3591
Zhu Yid8bad6d2005-07-13 12:25:38 -05003592static void ipw_system_config(void *data)
3593{
3594 struct ipw_priv *priv = data;
3595 ipw_send_system_config(priv, &priv->sys_config);
3596}
3597
James Ketrenos43f66a62005-03-25 12:31:53 -06003598struct ipw_status_code {
3599 u16 status;
3600 const char *reason;
3601};
3602
3603static const struct ipw_status_code ipw_status_codes[] = {
3604 {0x00, "Successful"},
3605 {0x01, "Unspecified failure"},
3606 {0x0A, "Cannot support all requested capabilities in the "
3607 "Capability information field"},
3608 {0x0B, "Reassociation denied due to inability to confirm that "
3609 "association exists"},
3610 {0x0C, "Association denied due to reason outside the scope of this "
3611 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003612 {0x0D,
3613 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003614 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003615 {0x0E,
3616 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06003617 "transaction sequence number out of expected sequence"},
3618 {0x0F, "Authentication rejected because of challenge failure"},
3619 {0x10, "Authentication rejected due to timeout waiting for next "
3620 "frame in sequence"},
3621 {0x11, "Association denied because AP is unable to handle additional "
3622 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003623 {0x12,
3624 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06003625 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003626 {0x13,
3627 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003628 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003629 {0x14,
3630 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003631 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003632 {0x15,
3633 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003634 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003635 {0x19,
3636 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003637 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003638 {0x1A,
3639 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06003640 "DSSS-OFDM operation"},
3641 {0x28, "Invalid Information Element"},
3642 {0x29, "Group Cipher is not valid"},
3643 {0x2A, "Pairwise Cipher is not valid"},
3644 {0x2B, "AKMP is not valid"},
3645 {0x2C, "Unsupported RSN IE version"},
3646 {0x2D, "Invalid RSN IE Capabilities"},
3647 {0x2E, "Cipher suite is rejected per security policy"},
3648};
3649
3650#ifdef CONFIG_IPW_DEBUG
Jeff Garzikbf794512005-07-31 13:07:26 -04003651static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06003652{
3653 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003654 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05003655 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06003656 return ipw_status_codes[i].reason;
3657 return "Unknown status value.";
3658}
3659#endif
3660
3661static void inline average_init(struct average *avg)
3662{
3663 memset(avg, 0, sizeof(*avg));
3664}
3665
3666static void inline average_add(struct average *avg, s16 val)
3667{
3668 avg->sum -= avg->entries[avg->pos];
3669 avg->sum += val;
3670 avg->entries[avg->pos++] = val;
3671 if (unlikely(avg->pos == AVG_ENTRIES)) {
3672 avg->init = 1;
3673 avg->pos = 0;
3674 }
3675}
3676
3677static s16 inline average_value(struct average *avg)
3678{
3679 if (!unlikely(avg->init)) {
3680 if (avg->pos)
3681 return avg->sum / avg->pos;
3682 return 0;
3683 }
3684
3685 return avg->sum / AVG_ENTRIES;
3686}
3687
3688static void ipw_reset_stats(struct ipw_priv *priv)
3689{
3690 u32 len = sizeof(u32);
3691
3692 priv->quality = 0;
3693
3694 average_init(&priv->average_missed_beacons);
3695 average_init(&priv->average_rssi);
3696 average_init(&priv->average_noise);
3697
3698 priv->last_rate = 0;
3699 priv->last_missed_beacons = 0;
3700 priv->last_rx_packets = 0;
3701 priv->last_tx_packets = 0;
3702 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04003703
James Ketrenos43f66a62005-03-25 12:31:53 -06003704 /* Firmware managed, reset only when NIC is restarted, so we have to
3705 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04003706 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06003707 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04003708 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06003709 &priv->last_tx_failures, &len);
3710
3711 /* Driver managed, reset with each association */
3712 priv->missed_adhoc_beacons = 0;
3713 priv->missed_beacons = 0;
3714 priv->tx_packets = 0;
3715 priv->rx_packets = 0;
3716
3717}
3718
James Ketrenos43f66a62005-03-25 12:31:53 -06003719static inline u32 ipw_get_max_rate(struct ipw_priv *priv)
3720{
3721 u32 i = 0x80000000;
3722 u32 mask = priv->rates_mask;
3723 /* If currently associated in B mode, restrict the maximum
3724 * rate match to B rates */
3725 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
3726 mask &= IEEE80211_CCK_RATES_MASK;
3727
3728 /* TODO: Verify that the rate is supported by the current rates
3729 * list. */
3730
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003731 while (i && !(mask & i))
3732 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003733 switch (i) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003734 case IEEE80211_CCK_RATE_1MB_MASK:
3735 return 1000000;
3736 case IEEE80211_CCK_RATE_2MB_MASK:
3737 return 2000000;
3738 case IEEE80211_CCK_RATE_5MB_MASK:
3739 return 5500000;
3740 case IEEE80211_OFDM_RATE_6MB_MASK:
3741 return 6000000;
3742 case IEEE80211_OFDM_RATE_9MB_MASK:
3743 return 9000000;
3744 case IEEE80211_CCK_RATE_11MB_MASK:
3745 return 11000000;
3746 case IEEE80211_OFDM_RATE_12MB_MASK:
3747 return 12000000;
3748 case IEEE80211_OFDM_RATE_18MB_MASK:
3749 return 18000000;
3750 case IEEE80211_OFDM_RATE_24MB_MASK:
3751 return 24000000;
3752 case IEEE80211_OFDM_RATE_36MB_MASK:
3753 return 36000000;
3754 case IEEE80211_OFDM_RATE_48MB_MASK:
3755 return 48000000;
3756 case IEEE80211_OFDM_RATE_54MB_MASK:
3757 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003758 }
3759
Jeff Garzikbf794512005-07-31 13:07:26 -04003760 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06003761 return 11000000;
3762 else
3763 return 54000000;
3764}
3765
3766static u32 ipw_get_current_rate(struct ipw_priv *priv)
3767{
3768 u32 rate, len = sizeof(rate);
3769 int err;
3770
Jeff Garzikbf794512005-07-31 13:07:26 -04003771 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06003772 return 0;
3773
3774 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04003775 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06003776 &len);
3777 if (err) {
3778 IPW_DEBUG_INFO("failed querying ordinals.\n");
3779 return 0;
3780 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003781 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06003782 return ipw_get_max_rate(priv);
3783
3784 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05003785 case IPW_TX_RATE_1MB:
3786 return 1000000;
3787 case IPW_TX_RATE_2MB:
3788 return 2000000;
3789 case IPW_TX_RATE_5MB:
3790 return 5500000;
3791 case IPW_TX_RATE_6MB:
3792 return 6000000;
3793 case IPW_TX_RATE_9MB:
3794 return 9000000;
3795 case IPW_TX_RATE_11MB:
3796 return 11000000;
3797 case IPW_TX_RATE_12MB:
3798 return 12000000;
3799 case IPW_TX_RATE_18MB:
3800 return 18000000;
3801 case IPW_TX_RATE_24MB:
3802 return 24000000;
3803 case IPW_TX_RATE_36MB:
3804 return 36000000;
3805 case IPW_TX_RATE_48MB:
3806 return 48000000;
3807 case IPW_TX_RATE_54MB:
3808 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06003809 }
3810
3811 return 0;
3812}
3813
James Ketrenos43f66a62005-03-25 12:31:53 -06003814#define IPW_STATS_INTERVAL (2 * HZ)
3815static void ipw_gather_stats(struct ipw_priv *priv)
3816{
3817 u32 rx_err, rx_err_delta, rx_packets_delta;
3818 u32 tx_failures, tx_failures_delta, tx_packets_delta;
3819 u32 missed_beacons_percent, missed_beacons_delta;
3820 u32 quality = 0;
3821 u32 len = sizeof(u32);
3822 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04003823 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003824 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003825 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06003826
3827 if (!(priv->status & STATUS_ASSOCIATED)) {
3828 priv->quality = 0;
3829 return;
3830 }
3831
3832 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04003833 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06003834 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003835 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06003836 priv->last_missed_beacons = priv->missed_beacons;
3837 if (priv->assoc_request.beacon_interval) {
3838 missed_beacons_percent = missed_beacons_delta *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003839 (HZ * priv->assoc_request.beacon_interval) /
3840 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06003841 } else {
3842 missed_beacons_percent = 0;
3843 }
3844 average_add(&priv->average_missed_beacons, missed_beacons_percent);
3845
3846 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
3847 rx_err_delta = rx_err - priv->last_rx_err;
3848 priv->last_rx_err = rx_err;
3849
3850 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
3851 tx_failures_delta = tx_failures - priv->last_tx_failures;
3852 priv->last_tx_failures = tx_failures;
3853
3854 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
3855 priv->last_rx_packets = priv->rx_packets;
3856
3857 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
3858 priv->last_tx_packets = priv->tx_packets;
3859
3860 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04003861 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003862 * Missed beacon: 100% = 0, 0% = 70% missed
3863 * Rate: 60% = 1Mbs, 100% = Max
3864 * Rx and Tx errors represent a straight % of total Rx/Tx
3865 * RSSI: 100% = > -50, 0% = < -80
3866 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04003867 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003868 * The lowest computed quality is used.
3869 *
3870 */
3871#define BEACON_THRESHOLD 5
3872 beacon_quality = 100 - missed_beacons_percent;
3873 if (beacon_quality < BEACON_THRESHOLD)
3874 beacon_quality = 0;
3875 else
Jeff Garzikbf794512005-07-31 13:07:26 -04003876 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003877 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04003878 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003879 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04003880
James Ketrenos43f66a62005-03-25 12:31:53 -06003881 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05003882 max_rate = ipw_get_max_rate(priv);
3883 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06003884 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
3885 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04003886
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003887 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04003888 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003889 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06003890 else
3891 rx_quality = 100;
3892 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
3893 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04003894
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003895 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04003896 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003897 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06003898 else
3899 tx_quality = 100;
3900 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
3901 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04003902
James Ketrenos43f66a62005-03-25 12:31:53 -06003903 rssi = average_value(&priv->average_rssi);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003904 signal_quality =
3905 (100 *
3906 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
3907 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
3908 (priv->ieee->perfect_rssi - rssi) *
3909 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
3910 62 * (priv->ieee->perfect_rssi - rssi))) /
3911 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
3912 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
3913 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06003914 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05003915 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06003916 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05003917
James Ketrenos43f66a62005-03-25 12:31:53 -06003918 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
3919 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04003920
3921 quality = min(beacon_quality,
James Ketrenos43f66a62005-03-25 12:31:53 -06003922 min(rate_quality,
3923 min(tx_quality, min(rx_quality, signal_quality))));
3924 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003925 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
3926 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06003927 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003928 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
3929 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06003930 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003931 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
3932 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06003933 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003934 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
3935 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06003936 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003937 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
3938 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06003939
3940 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04003941
3942 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06003943 IPW_STATS_INTERVAL);
3944}
3945
James Ketrenosc848d0a2005-08-24 21:56:24 -05003946static void ipw_bg_gather_stats(void *data)
3947{
3948 struct ipw_priv *priv = data;
3949 down(&priv->sem);
3950 ipw_gather_stats(data);
3951 up(&priv->sem);
3952}
3953
James Ketrenosea2b26e2005-08-24 21:25:16 -05003954static inline void ipw_handle_missed_beacon(struct ipw_priv *priv,
3955 int missed_count)
3956{
3957 priv->notif_missed_beacons = missed_count;
3958
James Ketrenosafbf30a2005-08-25 00:05:33 -05003959 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05003960 priv->status & STATUS_ASSOCIATED) {
3961 /* If associated and we've hit the missed
3962 * beacon threshold, disassociate, turn
3963 * off roaming, and abort any active scans */
3964 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05003965 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05003966 "Missed beacon: %d - disassociate\n", missed_count);
3967 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05003968 if (priv->status & STATUS_SCANNING) {
3969 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
3970 IPW_DL_STATE,
3971 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05003972 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05003973 }
3974
James Ketrenosea2b26e2005-08-24 21:25:16 -05003975 queue_work(priv->workqueue, &priv->disassociate);
3976 return;
3977 }
3978
3979 if (priv->status & STATUS_ROAMING) {
3980 /* If we are currently roaming, then just
3981 * print a debug statement... */
3982 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
3983 "Missed beacon: %d - roam in progress\n",
3984 missed_count);
3985 return;
3986 }
3987
3988 if (missed_count > priv->roaming_threshold) {
3989 /* If we are not already roaming, set the ROAM
3990 * bit in the status and kick off a scan */
3991 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
3992 "Missed beacon: %d - initiate "
3993 "roaming\n", missed_count);
3994 if (!(priv->status & STATUS_ROAMING)) {
3995 priv->status |= STATUS_ROAMING;
3996 if (!(priv->status & STATUS_SCANNING))
3997 queue_work(priv->workqueue,
3998 &priv->request_scan);
3999 }
4000 return;
4001 }
4002
4003 if (priv->status & STATUS_SCANNING) {
4004 /* Stop scan to keep fw from getting
4005 * stuck (only if we aren't roaming --
4006 * otherwise we'll never scan more than 2 or 3
4007 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004008 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4009 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004010 queue_work(priv->workqueue, &priv->abort_scan);
4011 }
4012
4013 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
4014
4015}
4016
James Ketrenos43f66a62005-03-25 12:31:53 -06004017/**
4018 * Handle host notification packet.
4019 * Called from interrupt routine
4020 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004021static inline void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004022 struct ipw_rx_notification *notif)
4023{
James Ketrenosa613bff2005-08-24 21:43:11 -05004024 notif->size = le16_to_cpu(notif->size);
4025
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004026 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, notif->size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004027
James Ketrenos43f66a62005-03-25 12:31:53 -06004028 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004029 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4030 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004031
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004032 switch (assoc->state) {
4033 case CMAS_ASSOCIATED:{
4034 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4035 IPW_DL_ASSOC,
4036 "associated: '%s' " MAC_FMT
4037 " \n",
4038 escape_essid(priv->essid,
4039 priv->essid_len),
4040 MAC_ARG(priv->bssid));
Jeff Garzikbf794512005-07-31 13:07:26 -04004041
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004042 switch (priv->ieee->iw_mode) {
4043 case IW_MODE_INFRA:
4044 memcpy(priv->ieee->bssid,
4045 priv->bssid, ETH_ALEN);
4046 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004047
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004048 case IW_MODE_ADHOC:
4049 memcpy(priv->ieee->bssid,
4050 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004051
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004052 /* clear out the station table */
4053 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004054
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004055 IPW_DEBUG_ASSOC
4056 ("queueing adhoc check\n");
4057 queue_delayed_work(priv->
4058 workqueue,
4059 &priv->
4060 adhoc_check,
4061 priv->
4062 assoc_request.
4063 beacon_interval);
4064 break;
4065 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004066
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004067 priv->status &= ~STATUS_ASSOCIATING;
4068 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004069 queue_work(priv->workqueue,
4070 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004071
James Ketrenosb095c382005-08-24 22:04:42 -05004072#ifdef CONFIG_IPW_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004073#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
4074 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_ctl))
4075 if ((priv->status & STATUS_AUTH) &&
4076 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4077 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004078 if ((sizeof
4079 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004080 ieee80211_assoc_response)
James Ketrenosb095c382005-08-24 22:04:42 -05004081 <= notif->size)
4082 && (notif->size <= 2314)) {
4083 struct
4084 ieee80211_rx_stats
4085 stats = {
4086 .len =
4087 notif->
4088 size - 1,
4089 };
4090
4091 IPW_DEBUG_QOS
4092 ("QoS Associate "
4093 "size %d\n",
4094 notif->size);
4095 ieee80211_rx_mgt(priv->
4096 ieee,
4097 (struct
James Ketrenos2b184d52005-08-03 20:33:14 -05004098 ieee80211_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004099 *)
4100 &notif->u.raw, &stats);
4101 }
4102 }
4103#endif
4104
James Ketrenosa613bff2005-08-24 21:43:11 -05004105 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004106
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004107 break;
4108 }
4109
4110 case CMAS_AUTHENTICATED:{
4111 if (priv->
4112 status & (STATUS_ASSOCIATED |
4113 STATUS_AUTH)) {
4114#ifdef CONFIG_IPW_DEBUG
4115 struct notif_authenticate *auth
4116 = &notif->u.auth;
4117 IPW_DEBUG(IPW_DL_NOTIF |
4118 IPW_DL_STATE |
4119 IPW_DL_ASSOC,
4120 "deauthenticated: '%s' "
4121 MAC_FMT
4122 ": (0x%04X) - %s \n",
4123 escape_essid(priv->
4124 essid,
4125 priv->
4126 essid_len),
4127 MAC_ARG(priv->bssid),
4128 ntohs(auth->status),
4129 ipw_get_status_code
4130 (ntohs
4131 (auth->status)));
4132#endif
4133
4134 priv->status &=
4135 ~(STATUS_ASSOCIATING |
4136 STATUS_AUTH |
4137 STATUS_ASSOCIATED);
4138
James Ketrenosa613bff2005-08-24 21:43:11 -05004139 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004140 break;
4141 }
4142
4143 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4144 IPW_DL_ASSOC,
4145 "authenticated: '%s' " MAC_FMT
4146 "\n",
4147 escape_essid(priv->essid,
4148 priv->essid_len),
4149 MAC_ARG(priv->bssid));
4150 break;
4151 }
4152
4153 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004154 if (priv->status & STATUS_AUTH) {
4155 struct
4156 ieee80211_assoc_response
4157 *resp;
4158 resp =
4159 (struct
4160 ieee80211_assoc_response
4161 *)&notif->u.raw;
4162 IPW_DEBUG(IPW_DL_NOTIF |
4163 IPW_DL_STATE |
4164 IPW_DL_ASSOC,
4165 "association failed (0x%04X): %s\n",
4166 ntohs(resp->status),
4167 ipw_get_status_code
4168 (ntohs
4169 (resp->status)));
4170 }
4171
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004172 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4173 IPW_DL_ASSOC,
4174 "disassociated: '%s' " MAC_FMT
4175 " \n",
4176 escape_essid(priv->essid,
4177 priv->essid_len),
4178 MAC_ARG(priv->bssid));
4179
4180 priv->status &=
4181 ~(STATUS_DISASSOCIATING |
4182 STATUS_ASSOCIATING |
4183 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004184 if (priv->assoc_network
4185 && (priv->assoc_network->
4186 capability &
4187 WLAN_CAPABILITY_IBSS))
4188 ipw_remove_current_network
4189 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004190
James Ketrenosa613bff2005-08-24 21:43:11 -05004191 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004192
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004193 break;
4194 }
4195
James Ketrenosb095c382005-08-24 22:04:42 -05004196 case CMAS_RX_ASSOC_RESP:
4197 break;
4198
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004199 default:
4200 IPW_ERROR("assoc: unknown (%d)\n",
4201 assoc->state);
4202 break;
4203 }
4204
James Ketrenos43f66a62005-03-25 12:31:53 -06004205 break;
4206 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004207
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004208 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4209 struct notif_authenticate *auth = &notif->u.auth;
4210 switch (auth->state) {
4211 case CMAS_AUTHENTICATED:
4212 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4213 "authenticated: '%s' " MAC_FMT " \n",
4214 escape_essid(priv->essid,
4215 priv->essid_len),
4216 MAC_ARG(priv->bssid));
4217 priv->status |= STATUS_AUTH;
4218 break;
4219
4220 case CMAS_INIT:
4221 if (priv->status & STATUS_AUTH) {
4222 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4223 IPW_DL_ASSOC,
4224 "authentication failed (0x%04X): %s\n",
4225 ntohs(auth->status),
4226 ipw_get_status_code(ntohs
4227 (auth->
4228 status)));
4229 }
4230 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4231 IPW_DL_ASSOC,
4232 "deauthenticated: '%s' " MAC_FMT "\n",
4233 escape_essid(priv->essid,
4234 priv->essid_len),
4235 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06004236
4237 priv->status &= ~(STATUS_ASSOCIATING |
4238 STATUS_AUTH |
4239 STATUS_ASSOCIATED);
4240
James Ketrenosa613bff2005-08-24 21:43:11 -05004241 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004242 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004243
4244 case CMAS_TX_AUTH_SEQ_1:
4245 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4246 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4247 break;
4248 case CMAS_RX_AUTH_SEQ_2:
4249 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4250 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4251 break;
4252 case CMAS_AUTH_SEQ_1_PASS:
4253 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4254 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4255 break;
4256 case CMAS_AUTH_SEQ_1_FAIL:
4257 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4258 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4259 break;
4260 case CMAS_TX_AUTH_SEQ_3:
4261 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4262 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4263 break;
4264 case CMAS_RX_AUTH_SEQ_4:
4265 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4266 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4267 break;
4268 case CMAS_AUTH_SEQ_2_PASS:
4269 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4270 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4271 break;
4272 case CMAS_AUTH_SEQ_2_FAIL:
4273 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4274 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4275 break;
4276 case CMAS_TX_ASSOC:
4277 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4278 IPW_DL_ASSOC, "TX_ASSOC\n");
4279 break;
4280 case CMAS_RX_ASSOC_RESP:
4281 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4282 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004283
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004284 break;
4285 case CMAS_ASSOCIATED:
4286 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4287 IPW_DL_ASSOC, "ASSOCIATED\n");
4288 break;
4289 default:
4290 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4291 auth->state);
4292 break;
4293 }
4294 break;
4295 }
4296
4297 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4298 struct notif_channel_result *x =
4299 &notif->u.channel_result;
4300
4301 if (notif->size == sizeof(*x)) {
4302 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4303 x->channel_num);
4304 } else {
4305 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4306 "(should be %zd)\n",
4307 notif->size, sizeof(*x));
4308 }
4309 break;
4310 }
4311
4312 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4313 struct notif_scan_complete *x = &notif->u.scan_complete;
4314 if (notif->size == sizeof(*x)) {
4315 IPW_DEBUG_SCAN
4316 ("Scan completed: type %d, %d channels, "
4317 "%d status\n", x->scan_type,
4318 x->num_channels, x->status);
4319 } else {
4320 IPW_ERROR("Scan completed of wrong size %d "
4321 "(should be %zd)\n",
4322 notif->size, sizeof(*x));
4323 }
4324
4325 priv->status &=
4326 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4327
4328 cancel_delayed_work(&priv->scan_check);
4329
James Ketrenosb095c382005-08-24 22:04:42 -05004330 if (priv->status & STATUS_EXIT_PENDING)
4331 break;
4332
4333 priv->ieee->scans++;
4334
4335#ifdef CONFIG_IPW2200_MONITOR
4336 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004337 priv->status |= STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004338 queue_work(priv->workqueue,
4339 &priv->request_scan);
4340 break;
4341 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004342 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004343#endif /* CONFIG_IPW2200_MONITOR */
4344
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004345 if (!(priv->status & (STATUS_ASSOCIATED |
4346 STATUS_ASSOCIATING |
4347 STATUS_ROAMING |
4348 STATUS_DISASSOCIATING)))
4349 queue_work(priv->workqueue, &priv->associate);
4350 else if (priv->status & STATUS_ROAMING) {
4351 /* If a scan completed and we are in roam mode, then
4352 * the scan that completed was the one requested as a
4353 * result of entering roam... so, schedule the
4354 * roam work */
4355 queue_work(priv->workqueue, &priv->roam);
4356 } else if (priv->status & STATUS_SCAN_PENDING)
4357 queue_work(priv->workqueue,
4358 &priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004359 else if (priv->config & CFG_BACKGROUND_SCAN
4360 && priv->status & STATUS_ASSOCIATED)
4361 queue_delayed_work(priv->workqueue,
4362 &priv->request_scan, HZ);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004363 break;
4364 }
4365
4366 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4367 struct notif_frag_length *x = &notif->u.frag_len;
4368
James Ketrenosa613bff2005-08-24 21:43:11 -05004369 if (notif->size == sizeof(*x))
4370 IPW_ERROR("Frag length: %d\n",
4371 le16_to_cpu(x->frag_length));
4372 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004373 IPW_ERROR("Frag length of wrong size %d "
4374 "(should be %zd)\n",
4375 notif->size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004376 break;
4377 }
4378
4379 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4380 struct notif_link_deterioration *x =
4381 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004382
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004383 if (notif->size == sizeof(*x)) {
4384 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4385 "link deterioration: '%s' " MAC_FMT
4386 " \n", escape_essid(priv->essid,
4387 priv->essid_len),
4388 MAC_ARG(priv->bssid));
4389 memcpy(&priv->last_link_deterioration, x,
4390 sizeof(*x));
4391 } else {
4392 IPW_ERROR("Link Deterioration of wrong size %d "
4393 "(should be %zd)\n",
4394 notif->size, sizeof(*x));
4395 }
4396 break;
4397 }
4398
4399 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4400 IPW_ERROR("Dino config\n");
4401 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004402 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004403 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004404
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004405 break;
4406 }
4407
4408 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4409 struct notif_beacon_state *x = &notif->u.beacon_state;
4410 if (notif->size != sizeof(*x)) {
4411 IPW_ERROR
4412 ("Beacon state of wrong size %d (should "
4413 "be %zd)\n", notif->size, sizeof(*x));
4414 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004415 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004416
James Ketrenosa613bff2005-08-24 21:43:11 -05004417 if (le32_to_cpu(x->state) ==
4418 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4419 ipw_handle_missed_beacon(priv,
4420 le32_to_cpu(x->
4421 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004422
James Ketrenos43f66a62005-03-25 12:31:53 -06004423 break;
4424 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004425
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004426 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4427 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
4428 if (notif->size == sizeof(*x)) {
4429 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4430 "0x%02x station %d\n",
4431 x->key_state, x->security_type,
4432 x->station_index);
4433 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004434 }
4435
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004436 IPW_ERROR
4437 ("TGi Tx Key of wrong size %d (should be %zd)\n",
4438 notif->size, sizeof(*x));
4439 break;
4440 }
4441
4442 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4443 struct notif_calibration *x = &notif->u.calibration;
4444
4445 if (notif->size == sizeof(*x)) {
4446 memcpy(&priv->calib, x, sizeof(*x));
4447 IPW_DEBUG_INFO("TODO: Calibration\n");
4448 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004449 }
4450
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004451 IPW_ERROR
4452 ("Calibration of wrong size %d (should be %zd)\n",
4453 notif->size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004454 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004455 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004456
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004457 case HOST_NOTIFICATION_NOISE_STATS:{
4458 if (notif->size == sizeof(u32)) {
4459 priv->last_noise =
James Ketrenosa613bff2005-08-24 21:43:11 -05004460 (u8) (le32_to_cpu(notif->u.noise.value) &
4461 0xff);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004462 average_add(&priv->average_noise,
4463 priv->last_noise);
4464 break;
4465 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004466
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004467 IPW_ERROR
4468 ("Noise stat is wrong size %d (should be %zd)\n",
4469 notif->size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004470 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004471 }
4472
James Ketrenos43f66a62005-03-25 12:31:53 -06004473 default:
4474 IPW_ERROR("Unknown notification: "
4475 "subtype=%d,flags=0x%2x,size=%d\n",
4476 notif->subtype, notif->flags, notif->size);
4477 }
4478}
4479
4480/**
4481 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004482 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004483 * @param priv
4484 * @return error code
4485 */
4486static int ipw_queue_reset(struct ipw_priv *priv)
4487{
4488 int rc = 0;
4489 /** @todo customize queue sizes */
4490 int nTx = 64, nTxCmd = 8;
4491 ipw_tx_queue_free(priv);
4492 /* Tx CMD queue */
4493 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004494 IPW_TX_CMD_QUEUE_READ_INDEX,
4495 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4496 IPW_TX_CMD_QUEUE_BD_BASE,
4497 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004498 if (rc) {
4499 IPW_ERROR("Tx Cmd queue init failed\n");
4500 goto error;
4501 }
4502 /* Tx queue(s) */
4503 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004504 IPW_TX_QUEUE_0_READ_INDEX,
4505 IPW_TX_QUEUE_0_WRITE_INDEX,
4506 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004507 if (rc) {
4508 IPW_ERROR("Tx 0 queue init failed\n");
4509 goto error;
4510 }
4511 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004512 IPW_TX_QUEUE_1_READ_INDEX,
4513 IPW_TX_QUEUE_1_WRITE_INDEX,
4514 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004515 if (rc) {
4516 IPW_ERROR("Tx 1 queue init failed\n");
4517 goto error;
4518 }
4519 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004520 IPW_TX_QUEUE_2_READ_INDEX,
4521 IPW_TX_QUEUE_2_WRITE_INDEX,
4522 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004523 if (rc) {
4524 IPW_ERROR("Tx 2 queue init failed\n");
4525 goto error;
4526 }
4527 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004528 IPW_TX_QUEUE_3_READ_INDEX,
4529 IPW_TX_QUEUE_3_WRITE_INDEX,
4530 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004531 if (rc) {
4532 IPW_ERROR("Tx 3 queue init failed\n");
4533 goto error;
4534 }
4535 /* statistics */
4536 priv->rx_bufs_min = 0;
4537 priv->rx_pend_max = 0;
4538 return rc;
4539
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004540 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004541 ipw_tx_queue_free(priv);
4542 return rc;
4543}
4544
4545/**
4546 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004547 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004548 * When FW adwances 'R' index, all entries between old and
4549 * new 'R' index need to be reclaimed. As result, some free space
4550 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004551 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004552 * @note Need to protect against garbage in 'R' index
4553 * @param priv
4554 * @param txq
4555 * @param qindex
4556 * @return Number of used entries remains in the queue
4557 */
Jeff Garzikbf794512005-07-31 13:07:26 -04004558static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004559 struct clx2_tx_queue *txq, int qindex)
4560{
4561 u32 hw_tail;
4562 int used;
4563 struct clx2_queue *q = &txq->q;
4564
4565 hw_tail = ipw_read32(priv, q->reg_r);
4566 if (hw_tail >= q->n_bd) {
4567 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004568 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
4569 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06004570 goto done;
4571 }
4572 for (; q->last_used != hw_tail;
4573 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
4574 ipw_queue_tx_free_tfd(priv, txq);
4575 priv->tx_packets++;
4576 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004577 done:
James Ketrenosa613bff2005-08-24 21:43:11 -05004578 if (ipw_queue_space(q) > q->low_mark && qindex >= 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06004579 __maybe_wake_tx(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06004580 used = q->first_empty - q->last_used;
4581 if (used < 0)
4582 used += q->n_bd;
4583
4584 return used;
4585}
4586
4587static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
4588 int len, int sync)
4589{
4590 struct clx2_tx_queue *txq = &priv->txq_cmd;
4591 struct clx2_queue *q = &txq->q;
4592 struct tfd_frame *tfd;
4593
4594 if (ipw_queue_space(q) < (sync ? 1 : 2)) {
4595 IPW_ERROR("No space for Tx\n");
4596 return -EBUSY;
4597 }
4598
4599 tfd = &txq->bd[q->first_empty];
4600 txq->txb[q->first_empty] = NULL;
4601
4602 memset(tfd, 0, sizeof(*tfd));
4603 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
4604 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
4605 priv->hcmd_seq++;
4606 tfd->u.cmd.index = hcmd;
4607 tfd->u.cmd.length = len;
4608 memcpy(tfd->u.cmd.payload, buf, len);
4609 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
4610 ipw_write32(priv, q->reg_w, q->first_empty);
4611 _ipw_read32(priv, 0x90);
4612
4613 return 0;
4614}
4615
Jeff Garzikbf794512005-07-31 13:07:26 -04004616/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004617 * Rx theory of operation
4618 *
4619 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05004620 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06004621 * 0 to 31
4622 *
4623 * Rx Queue Indexes
4624 * The host/firmware share two index registers for managing the Rx buffers.
4625 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004626 * The READ index maps to the first position that the firmware may be writing
4627 * to -- the driver can read up to (but not including) this position and get
4628 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06004629 * The READ index is managed by the firmware once the card is enabled.
4630 *
4631 * The WRITE index maps to the last position the driver has read from -- the
4632 * position preceding WRITE is the last slot the firmware can place a packet.
4633 *
4634 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04004635 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06004636 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004637 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06004638 * INDEX position, and WRITE to the last (READ - 1 wrapped)
4639 *
4640 * When the firmware places a packet in a buffer it will advance the READ index
4641 * and fire the RX interrupt. The driver can then query the READ index and
4642 * process as many packets as possible, moving the WRITE index forward as it
4643 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04004644 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004645 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04004646 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06004647 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04004648 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06004649 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
4650 * ipw->rxq is replenished and the READ INDEX is updated (updating the
4651 * 'processed' and 'read' driver indexes as well)
4652 * + A received packet is processed and handed to the kernel network stack,
4653 * detached from the ipw->rxq. The driver 'processed' index is updated.
4654 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04004655 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
4656 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06004657 * were enough free buffers and RX_STALLED is set it is cleared.
4658 *
4659 *
4660 * Driver sequence:
4661 *
Jeff Garzikbf794512005-07-31 13:07:26 -04004662 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06004663 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
4664 * ipw_rx_queue_restock
4665 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
4666 * queue, updates firmware pointers, and updates
4667 * the WRITE index. If insufficient rx_free buffers
4668 * are available, schedules ipw_rx_queue_replenish
4669 *
4670 * -- enable interrupts --
4671 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04004672 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06004673 * Moves the packet buffer from queue to rx_used.
4674 * Calls ipw_rx_queue_restock to refill any empty
4675 * slots.
4676 * ...
4677 *
4678 */
4679
Jeff Garzikbf794512005-07-31 13:07:26 -04004680/*
James Ketrenos43f66a62005-03-25 12:31:53 -06004681 * If there are slots in the RX queue that need to be restocked,
4682 * and we have free pre-allocated buffers, fill the ranks as much
4683 * as we can pulling from rx_free.
4684 *
4685 * This moves the 'write' index forward to catch up with 'processed', and
4686 * also updates the memory address in the firmware to reference the new
4687 * target buffer.
4688 */
4689static void ipw_rx_queue_restock(struct ipw_priv *priv)
4690{
4691 struct ipw_rx_queue *rxq = priv->rxq;
4692 struct list_head *element;
4693 struct ipw_rx_mem_buffer *rxb;
4694 unsigned long flags;
4695 int write;
4696
4697 spin_lock_irqsave(&rxq->lock, flags);
4698 write = rxq->write;
4699 while ((rxq->write != rxq->processed) && (rxq->free_count)) {
4700 element = rxq->rx_free.next;
4701 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
4702 list_del(element);
4703
James Ketrenosb095c382005-08-24 22:04:42 -05004704 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004705 rxb->dma_addr);
4706 rxq->queue[rxq->write] = rxb;
4707 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
4708 rxq->free_count--;
4709 }
4710 spin_unlock_irqrestore(&rxq->lock, flags);
4711
Jeff Garzikbf794512005-07-31 13:07:26 -04004712 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06004713 * refill it */
4714 if (rxq->free_count <= RX_LOW_WATERMARK)
4715 queue_work(priv->workqueue, &priv->rx_replenish);
4716
4717 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04004718 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05004719 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06004720}
4721
4722/*
4723 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04004724 * Also restock the Rx queue via ipw_rx_queue_restock.
4725 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004726 * This is called as a scheduled work item (except for during intialization)
4727 */
4728static void ipw_rx_queue_replenish(void *data)
4729{
4730 struct ipw_priv *priv = data;
4731 struct ipw_rx_queue *rxq = priv->rxq;
4732 struct list_head *element;
4733 struct ipw_rx_mem_buffer *rxb;
4734 unsigned long flags;
4735
4736 spin_lock_irqsave(&rxq->lock, flags);
4737 while (!list_empty(&rxq->rx_used)) {
4738 element = rxq->rx_used.next;
4739 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05004740 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06004741 if (!rxb->skb) {
4742 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
4743 priv->net_dev->name);
4744 /* We don't reschedule replenish work here -- we will
4745 * call the restock method and if it still needs
4746 * more buffers it will schedule replenish */
4747 break;
4748 }
4749 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04004750
James Ketrenos43f66a62005-03-25 12:31:53 -06004751 rxb->rxb = (struct ipw_rx_buffer *)rxb->skb->data;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004752 rxb->dma_addr =
4753 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05004754 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04004755
James Ketrenos43f66a62005-03-25 12:31:53 -06004756 list_add_tail(&rxb->list, &rxq->rx_free);
4757 rxq->free_count++;
4758 }
4759 spin_unlock_irqrestore(&rxq->lock, flags);
4760
4761 ipw_rx_queue_restock(priv);
4762}
4763
James Ketrenosc848d0a2005-08-24 21:56:24 -05004764static void ipw_bg_rx_queue_replenish(void *data)
4765{
4766 struct ipw_priv *priv = data;
4767 down(&priv->sem);
4768 ipw_rx_queue_replenish(data);
4769 up(&priv->sem);
4770}
4771
James Ketrenos43f66a62005-03-25 12:31:53 -06004772/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4773 * If an SKB has been detached, the POOL needs to have it's SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04004774 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06004775 * non NULL it is unmapped and freed
4776 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004777static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06004778{
4779 int i;
4780
4781 if (!rxq)
4782 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04004783
James Ketrenos43f66a62005-03-25 12:31:53 -06004784 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
4785 if (rxq->pool[i].skb != NULL) {
4786 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05004787 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004788 dev_kfree_skb(rxq->pool[i].skb);
4789 }
4790 }
4791
4792 kfree(rxq);
4793}
4794
4795static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
4796{
4797 struct ipw_rx_queue *rxq;
4798 int i;
4799
4800 rxq = (struct ipw_rx_queue *)kmalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02004801 if (unlikely(!rxq)) {
4802 IPW_ERROR("memory allocation failed\n");
4803 return NULL;
4804 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004805 memset(rxq, 0, sizeof(*rxq));
4806 spin_lock_init(&rxq->lock);
4807 INIT_LIST_HEAD(&rxq->rx_free);
4808 INIT_LIST_HEAD(&rxq->rx_used);
4809
4810 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04004811 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06004812 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4813
4814 /* Set us so that we have processed and used all buffers, but have
4815 * not restocked the Rx queue with fresh buffers */
4816 rxq->read = rxq->write = 0;
4817 rxq->processed = RX_QUEUE_SIZE - 1;
4818 rxq->free_count = 0;
4819
4820 return rxq;
4821}
4822
4823static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
4824{
4825 rate &= ~IEEE80211_BASIC_RATE_MASK;
4826 if (ieee_mode == IEEE_A) {
4827 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004828 case IEEE80211_OFDM_RATE_6MB:
4829 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004830 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004831 case IEEE80211_OFDM_RATE_9MB:
4832 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004833 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004834 case IEEE80211_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004835 return priv->
4836 rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004837 case IEEE80211_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004838 return priv->
4839 rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004840 case IEEE80211_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004841 return priv->
4842 rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004843 case IEEE80211_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004844 return priv->
4845 rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004846 case IEEE80211_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004847 return priv->
4848 rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004849 case IEEE80211_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004850 return priv->
4851 rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004852 default:
4853 return 0;
4854 }
4855 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004856
James Ketrenos43f66a62005-03-25 12:31:53 -06004857 /* B and G mixed */
4858 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004859 case IEEE80211_CCK_RATE_1MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004860 return priv->rates_mask & IEEE80211_CCK_RATE_1MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004861 case IEEE80211_CCK_RATE_2MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004862 return priv->rates_mask & IEEE80211_CCK_RATE_2MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004863 case IEEE80211_CCK_RATE_5MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004864 return priv->rates_mask & IEEE80211_CCK_RATE_5MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004865 case IEEE80211_CCK_RATE_11MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004866 return priv->rates_mask & IEEE80211_CCK_RATE_11MB_MASK ? 1 : 0;
4867 }
4868
4869 /* If we are limited to B modulations, bail at this point */
4870 if (ieee_mode == IEEE_B)
4871 return 0;
4872
4873 /* G */
4874 switch (rate) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004875 case IEEE80211_OFDM_RATE_6MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004876 return priv->rates_mask & IEEE80211_OFDM_RATE_6MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004877 case IEEE80211_OFDM_RATE_9MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004878 return priv->rates_mask & IEEE80211_OFDM_RATE_9MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004879 case IEEE80211_OFDM_RATE_12MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004880 return priv->rates_mask & IEEE80211_OFDM_RATE_12MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004881 case IEEE80211_OFDM_RATE_18MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004882 return priv->rates_mask & IEEE80211_OFDM_RATE_18MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004883 case IEEE80211_OFDM_RATE_24MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004884 return priv->rates_mask & IEEE80211_OFDM_RATE_24MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004885 case IEEE80211_OFDM_RATE_36MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004886 return priv->rates_mask & IEEE80211_OFDM_RATE_36MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004887 case IEEE80211_OFDM_RATE_48MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004888 return priv->rates_mask & IEEE80211_OFDM_RATE_48MB_MASK ? 1 : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004889 case IEEE80211_OFDM_RATE_54MB:
James Ketrenos43f66a62005-03-25 12:31:53 -06004890 return priv->rates_mask & IEEE80211_OFDM_RATE_54MB_MASK ? 1 : 0;
4891 }
4892
4893 return 0;
4894}
4895
Jeff Garzikbf794512005-07-31 13:07:26 -04004896static int ipw_compatible_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004897 const struct ieee80211_network *network,
4898 struct ipw_supported_rates *rates)
4899{
4900 int num_rates, i;
4901
4902 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004903 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06004904 rates->num_rates = 0;
4905 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05004906 if (!ipw_is_rate_in_mask(priv, network->mode,
4907 network->rates[i])) {
4908
James Ketrenosea2b26e2005-08-24 21:25:16 -05004909 if (network->rates[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05004910 IPW_DEBUG_SCAN("Adding masked mandatory "
4911 "rate %02X\n",
4912 network->rates[i]);
4913 rates->supported_rates[rates->num_rates++] =
4914 network->rates[i];
4915 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004916 }
4917
James Ketrenos43f66a62005-03-25 12:31:53 -06004918 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
4919 network->rates[i], priv->rates_mask);
4920 continue;
4921 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004922
James Ketrenos43f66a62005-03-25 12:31:53 -06004923 rates->supported_rates[rates->num_rates++] = network->rates[i];
4924 }
4925
James Ketrenosa613bff2005-08-24 21:43:11 -05004926 num_rates = min(network->rates_ex_len,
4927 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06004928 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05004929 if (!ipw_is_rate_in_mask(priv, network->mode,
4930 network->rates_ex[i])) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004931 if (network->rates_ex[i] & IEEE80211_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05004932 IPW_DEBUG_SCAN("Adding masked mandatory "
4933 "rate %02X\n",
4934 network->rates_ex[i]);
4935 rates->supported_rates[rates->num_rates++] =
4936 network->rates[i];
4937 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004938 }
4939
James Ketrenos43f66a62005-03-25 12:31:53 -06004940 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
4941 network->rates_ex[i], priv->rates_mask);
4942 continue;
4943 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004944
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004945 rates->supported_rates[rates->num_rates++] =
4946 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06004947 }
4948
James Ketrenosea2b26e2005-08-24 21:25:16 -05004949 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004950}
4951
4952static inline void ipw_copy_rates(struct ipw_supported_rates *dest,
4953 const struct ipw_supported_rates *src)
4954{
4955 u8 i;
4956 for (i = 0; i < src->num_rates; i++)
4957 dest->supported_rates[i] = src->supported_rates[i];
4958 dest->num_rates = src->num_rates;
4959}
4960
4961/* TODO: Look at sniffed packets in the air to determine if the basic rate
4962 * mask should ever be used -- right now all callers to add the scan rates are
4963 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
4964static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004965 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06004966{
Jeff Garzikbf794512005-07-31 13:07:26 -04004967 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004968 IEEE80211_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004969
James Ketrenos43f66a62005-03-25 12:31:53 -06004970 if (rate_mask & IEEE80211_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04004971 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004972 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06004973
4974 if (rate_mask & IEEE80211_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04004975 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004976 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06004977
4978 if (rate_mask & IEEE80211_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04004979 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004980 IEEE80211_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06004981
4982 if (rate_mask & IEEE80211_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04004983 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004984 IEEE80211_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06004985}
4986
4987static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004988 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06004989{
Jeff Garzikbf794512005-07-31 13:07:26 -04004990 u8 basic_mask = (IEEE80211_OFDM_MODULATION == modulation) ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004991 IEEE80211_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004992
4993 if (rate_mask & IEEE80211_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04004994 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004995 IEEE80211_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06004996
4997 if (rate_mask & IEEE80211_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04004998 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004999 IEEE80211_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005000
5001 if (rate_mask & IEEE80211_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005002 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005003 IEEE80211_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005004
5005 if (rate_mask & IEEE80211_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005006 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005007 IEEE80211_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005008
5009 if (rate_mask & IEEE80211_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005010 rates->supported_rates[rates->num_rates++] = basic_mask |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005011 IEEE80211_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005012
5013 if (rate_mask & IEEE80211_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005014 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005015 IEEE80211_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005016
5017 if (rate_mask & IEEE80211_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005018 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005019 IEEE80211_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005020
5021 if (rate_mask & IEEE80211_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005022 rates->supported_rates[rates->num_rates++] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005023 IEEE80211_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005024}
5025
5026struct ipw_network_match {
5027 struct ieee80211_network *network;
5028 struct ipw_supported_rates rates;
5029};
5030
James Ketrenosc848d0a2005-08-24 21:56:24 -05005031static int ipw_find_adhoc_network(struct ipw_priv *priv,
5032 struct ipw_network_match *match,
5033 struct ieee80211_network *network,
5034 int roaming)
5035{
5036 struct ipw_supported_rates rates;
5037
5038 /* Verify that this network's capability is compatible with the
5039 * current mode (AdHoc or Infrastructure) */
5040 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5041 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5042 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded due to "
5043 "capability mismatch.\n",
5044 escape_essid(network->ssid, network->ssid_len),
5045 MAC_ARG(network->bssid));
5046 return 0;
5047 }
5048
5049 /* If we do not have an ESSID for this AP, we can not associate with
5050 * it */
5051 if (network->flags & NETWORK_EMPTY_ESSID) {
5052 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5053 "because of hidden ESSID.\n",
5054 escape_essid(network->ssid, network->ssid_len),
5055 MAC_ARG(network->bssid));
5056 return 0;
5057 }
5058
5059 if (unlikely(roaming)) {
5060 /* If we are roaming, then ensure check if this is a valid
5061 * network to try and roam to */
5062 if ((network->ssid_len != match->network->ssid_len) ||
5063 memcmp(network->ssid, match->network->ssid,
5064 network->ssid_len)) {
5065 IPW_DEBUG_MERGE("Netowrk '%s (" MAC_FMT ")' excluded "
5066 "because of non-network ESSID.\n",
5067 escape_essid(network->ssid,
5068 network->ssid_len),
5069 MAC_ARG(network->bssid));
5070 return 0;
5071 }
5072 } else {
5073 /* If an ESSID has been configured then compare the broadcast
5074 * ESSID to ours */
5075 if ((priv->config & CFG_STATIC_ESSID) &&
5076 ((network->ssid_len != priv->essid_len) ||
5077 memcmp(network->ssid, priv->essid,
5078 min(network->ssid_len, priv->essid_len)))) {
5079 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005080
James Ketrenosc848d0a2005-08-24 21:56:24 -05005081 strncpy(escaped,
5082 escape_essid(network->ssid, network->ssid_len),
5083 sizeof(escaped));
5084 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5085 "because of ESSID mismatch: '%s'.\n",
5086 escaped, MAC_ARG(network->bssid),
5087 escape_essid(priv->essid,
5088 priv->essid_len));
5089 return 0;
5090 }
5091 }
5092
5093 /* If the old network rate is better than this one, don't bother
5094 * testing everything else. */
5095
5096 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005097 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5098 "current network.\n",
5099 escape_essid(match->network->ssid,
5100 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005101 return 0;
5102 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005103 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5104 "current network.\n",
5105 escape_essid(match->network->ssid,
5106 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005107 return 0;
5108 }
5109
5110 /* Now go through and see if the requested network is valid... */
5111 if (priv->ieee->scan_age != 0 &&
5112 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
5113 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5114 "because of age: %lums.\n",
5115 escape_essid(network->ssid, network->ssid_len),
5116 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005117 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005118 return 0;
5119 }
5120
5121 if ((priv->config & CFG_STATIC_CHANNEL) &&
5122 (network->channel != priv->channel)) {
5123 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5124 "because of channel mismatch: %d != %d.\n",
5125 escape_essid(network->ssid, network->ssid_len),
5126 MAC_ARG(network->bssid),
5127 network->channel, priv->channel);
5128 return 0;
5129 }
5130
5131 /* Verify privacy compatability */
5132 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5133 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5134 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5135 "because of privacy mismatch: %s != %s.\n",
5136 escape_essid(network->ssid, network->ssid_len),
5137 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005138 priv->
5139 capability & CAP_PRIVACY_ON ? "on" : "off",
5140 network->
5141 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5142 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005143 return 0;
5144 }
5145
5146 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5147 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5148 "because of the same BSSID match: " MAC_FMT
5149 ".\n", escape_essid(network->ssid,
5150 network->ssid_len),
5151 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
5152 return 0;
5153 }
5154
5155 /* Filter out any incompatible freq / mode combinations */
5156 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5157 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5158 "because of invalid frequency/mode "
5159 "combination.\n",
5160 escape_essid(network->ssid, network->ssid_len),
5161 MAC_ARG(network->bssid));
5162 return 0;
5163 }
5164
5165 /* Ensure that the rates supported by the driver are compatible with
5166 * this AP, including verification of basic rates (mandatory) */
5167 if (!ipw_compatible_rates(priv, network, &rates)) {
5168 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5169 "because configured rate mask excludes "
5170 "AP mandatory rate.\n",
5171 escape_essid(network->ssid, network->ssid_len),
5172 MAC_ARG(network->bssid));
5173 return 0;
5174 }
5175
5176 if (rates.num_rates == 0) {
5177 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' excluded "
5178 "because of no compatible rates.\n",
5179 escape_essid(network->ssid, network->ssid_len),
5180 MAC_ARG(network->bssid));
5181 return 0;
5182 }
5183
5184 /* TODO: Perform any further minimal comparititive tests. We do not
5185 * want to put too much policy logic here; intelligent scan selection
5186 * should occur within a generic IEEE 802.11 user space tool. */
5187
5188 /* Set up 'new' AP to this network */
5189 ipw_copy_rates(&match->rates, &rates);
5190 match->network = network;
5191 IPW_DEBUG_MERGE("Network '%s (" MAC_FMT ")' is a viable match.\n",
5192 escape_essid(network->ssid, network->ssid_len),
5193 MAC_ARG(network->bssid));
5194
5195 return 1;
5196}
5197
5198static void ipw_merge_adhoc_network(void *data)
5199{
5200 struct ipw_priv *priv = data;
5201 struct ieee80211_network *network = NULL;
5202 struct ipw_network_match match = {
5203 .network = priv->assoc_network
5204 };
5205
James Ketrenosafbf30a2005-08-25 00:05:33 -05005206 if ((priv->status & STATUS_ASSOCIATED) &&
5207 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005208 /* First pass through ROAM process -- look for a better
5209 * network */
5210 unsigned long flags;
5211
5212 spin_lock_irqsave(&priv->ieee->lock, flags);
5213 list_for_each_entry(network, &priv->ieee->network_list, list) {
5214 if (network != priv->assoc_network)
5215 ipw_find_adhoc_network(priv, &match, network,
5216 1);
5217 }
5218 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5219
5220 if (match.network == priv->assoc_network) {
5221 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5222 "merge to.\n");
5223 return;
5224 }
5225
5226 down(&priv->sem);
5227 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5228 IPW_DEBUG_MERGE("remove network %s\n",
5229 escape_essid(priv->essid,
5230 priv->essid_len));
5231 ipw_remove_current_network(priv);
5232 }
5233
5234 ipw_disassociate(priv);
5235 priv->assoc_network = match.network;
5236 up(&priv->sem);
5237 return;
5238 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005239}
5240
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005241static int ipw_best_network(struct ipw_priv *priv,
5242 struct ipw_network_match *match,
5243 struct ieee80211_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005244{
5245 struct ipw_supported_rates rates;
5246
5247 /* Verify that this network's capability is compatible with the
5248 * current mode (AdHoc or Infrastructure) */
5249 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005250 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005251 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5252 !(network->capability & WLAN_CAPABILITY_IBSS))) {
5253 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005254 "capability mismatch.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005255 escape_essid(network->ssid, network->ssid_len),
5256 MAC_ARG(network->bssid));
5257 return 0;
5258 }
5259
5260 /* If we do not have an ESSID for this AP, we can not associate with
5261 * it */
5262 if (network->flags & NETWORK_EMPTY_ESSID) {
5263 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5264 "because of hidden ESSID.\n",
5265 escape_essid(network->ssid, network->ssid_len),
5266 MAC_ARG(network->bssid));
5267 return 0;
5268 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005269
James Ketrenos43f66a62005-03-25 12:31:53 -06005270 if (unlikely(roaming)) {
5271 /* If we are roaming, then ensure check if this is a valid
5272 * network to try and roam to */
5273 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005274 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005275 network->ssid_len)) {
5276 IPW_DEBUG_ASSOC("Netowrk '%s (" MAC_FMT ")' excluded "
5277 "because of non-network ESSID.\n",
Jeff Garzikbf794512005-07-31 13:07:26 -04005278 escape_essid(network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005279 network->ssid_len),
5280 MAC_ARG(network->bssid));
5281 return 0;
5282 }
5283 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005284 /* If an ESSID has been configured then compare the broadcast
5285 * ESSID to ours */
5286 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005287 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005288 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005289 min(network->ssid_len, priv->essid_len)))) {
5290 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005291 strncpy(escaped,
5292 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005293 sizeof(escaped));
5294 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005295 "because of ESSID mismatch: '%s'.\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06005296 escaped, MAC_ARG(network->bssid),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005297 escape_essid(priv->essid,
5298 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005299 return 0;
5300 }
5301 }
5302
5303 /* If the old network rate is better than this one, don't bother
5304 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005305 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005306 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005307 strncpy(escaped,
5308 escape_essid(network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005309 sizeof(escaped));
5310 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded because "
5311 "'%s (" MAC_FMT ")' has a stronger signal.\n",
5312 escaped, MAC_ARG(network->bssid),
5313 escape_essid(match->network->ssid,
5314 match->network->ssid_len),
5315 MAC_ARG(match->network->bssid));
5316 return 0;
5317 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005318
James Ketrenos43f66a62005-03-25 12:31:53 -06005319 /* If this network has already had an association attempt within the
5320 * last 3 seconds, do not try and associate again... */
5321 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005322 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005323 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
James Ketrenosafbf30a2005-08-25 00:05:33 -05005324 "because of storming (%lus since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005325 "assoc attempt).\n",
5326 escape_essid(network->ssid, network->ssid_len),
5327 MAC_ARG(network->bssid),
5328 (jiffies - network->last_associate) / HZ);
5329 return 0;
5330 }
5331
5332 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005333 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005334 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005335 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5336 "because of age: %lums.\n",
5337 escape_essid(network->ssid, network->ssid_len),
5338 MAC_ARG(network->bssid),
James Ketrenosafbf30a2005-08-25 00:05:33 -05005339 1000 * (jiffies - network->last_scanned) / HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06005340 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005341 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005342
Jeff Garzikbf794512005-07-31 13:07:26 -04005343 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005344 (network->channel != priv->channel)) {
5345 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5346 "because of channel mismatch: %d != %d.\n",
5347 escape_essid(network->ssid, network->ssid_len),
5348 MAC_ARG(network->bssid),
5349 network->channel, priv->channel);
5350 return 0;
5351 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005352
James Ketrenos43f66a62005-03-25 12:31:53 -06005353 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005354 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005355 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
5356 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5357 "because of privacy mismatch: %s != %s.\n",
5358 escape_essid(network->ssid, network->ssid_len),
5359 MAC_ARG(network->bssid),
Jeff Garzikbf794512005-07-31 13:07:26 -04005360 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005361 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005362 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005363 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005364 return 0;
5365 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005366
5367 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005368 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5369 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5370 "because of BSSID mismatch: " MAC_FMT ".\n",
5371 escape_essid(network->ssid, network->ssid_len),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005372 MAC_ARG(network->bssid), MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005373 return 0;
5374 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005375
James Ketrenos43f66a62005-03-25 12:31:53 -06005376 /* Filter out any incompatible freq / mode combinations */
5377 if (!ieee80211_is_valid_mode(priv->ieee, network->mode)) {
5378 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5379 "because of invalid frequency/mode "
5380 "combination.\n",
5381 escape_essid(network->ssid, network->ssid_len),
5382 MAC_ARG(network->bssid));
5383 return 0;
5384 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005385
James Ketrenosea2b26e2005-08-24 21:25:16 -05005386 /* Ensure that the rates supported by the driver are compatible with
5387 * this AP, including verification of basic rates (mandatory) */
5388 if (!ipw_compatible_rates(priv, network, &rates)) {
5389 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5390 "because configured rate mask excludes "
5391 "AP mandatory rate.\n",
5392 escape_essid(network->ssid, network->ssid_len),
5393 MAC_ARG(network->bssid));
5394 return 0;
5395 }
5396
James Ketrenos43f66a62005-03-25 12:31:53 -06005397 if (rates.num_rates == 0) {
5398 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5399 "because of no compatible rates.\n",
5400 escape_essid(network->ssid, network->ssid_len),
5401 MAC_ARG(network->bssid));
5402 return 0;
5403 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005404
James Ketrenos43f66a62005-03-25 12:31:53 -06005405 /* TODO: Perform any further minimal comparititive tests. We do not
5406 * want to put too much policy logic here; intelligent scan selection
5407 * should occur within a generic IEEE 802.11 user space tool. */
5408
5409 /* Set up 'new' AP to this network */
5410 ipw_copy_rates(&match->rates, &rates);
5411 match->network = network;
5412
5413 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' is a viable match.\n",
5414 escape_essid(network->ssid, network->ssid_len),
5415 MAC_ARG(network->bssid));
5416
5417 return 1;
5418}
5419
Jeff Garzikbf794512005-07-31 13:07:26 -04005420static void ipw_adhoc_create(struct ipw_priv *priv,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005421 struct ieee80211_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005422{
James Ketrenosafbf30a2005-08-25 00:05:33 -05005423 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
5424 int i;
5425
James Ketrenos43f66a62005-03-25 12:31:53 -06005426 /*
5427 * For the purposes of scanning, we can set our wireless mode
5428 * to trigger scans across combinations of bands, but when it
5429 * comes to creating a new ad-hoc network, we have tell the FW
5430 * exactly which band to use.
5431 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005432 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005433 * chossen band. Attempting to create a new ad-hoc network
5434 * with an invalid channel for wireless mode will trigger a
5435 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005436 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005437 */
James Ketrenosafbf30a2005-08-25 00:05:33 -05005438 switch (ieee80211_is_valid_channel(priv->ieee, priv->channel)) {
5439 case IEEE80211_52GHZ_BAND:
5440 network->mode = IEEE_A;
5441 i = ieee80211_channel_to_index(priv->ieee, priv->channel);
5442 if (i == -1)
5443 BUG();
5444 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
5445 IPW_WARNING("Overriding invalid channel\n");
5446 priv->channel = geo->a[0].channel;
5447 }
5448 break;
5449
5450 case IEEE80211_24GHZ_BAND:
5451 if (priv->ieee->mode & IEEE_G)
5452 network->mode = IEEE_G;
5453 else
5454 network->mode = IEEE_B;
5455 break;
5456
5457 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005458 IPW_WARNING("Overriding invalid channel\n");
5459 if (priv->ieee->mode & IEEE_A) {
5460 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005461 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005462 } else if (priv->ieee->mode & IEEE_G) {
5463 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005464 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005465 } else {
5466 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005467 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005468 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005469 break;
5470 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005471
5472 network->channel = priv->channel;
5473 priv->config |= CFG_ADHOC_PERSIST;
5474 ipw_create_bssid(priv, network->bssid);
5475 network->ssid_len = priv->essid_len;
5476 memcpy(network->ssid, priv->essid, priv->essid_len);
5477 memset(&network->stats, 0, sizeof(network->stats));
5478 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005479 if (!(priv->config & CFG_PREAMBLE_LONG))
5480 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005481 if (priv->capability & CAP_PRIVACY_ON)
5482 network->capability |= WLAN_CAPABILITY_PRIVACY;
5483 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005484 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005485 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005486 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005487 &priv->rates.supported_rates[network->rates_len],
5488 network->rates_ex_len);
5489 network->last_scanned = 0;
5490 network->flags = 0;
5491 network->last_associate = 0;
5492 network->time_stamp[0] = 0;
5493 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005494 network->beacon_interval = 100; /* Default */
5495 network->listen_interval = 10; /* Default */
5496 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005497 network->wpa_ie_len = 0;
5498 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005499}
5500
James Ketrenosb095c382005-08-24 22:04:42 -05005501static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5502{
5503 struct ipw_tgi_tx_key *key;
5504 struct host_cmd cmd = {
5505 .cmd = IPW_CMD_TGI_TX_KEY,
5506 .len = sizeof(*key)
5507 };
5508
5509 if (!(priv->ieee->sec.flags & (1 << index)))
5510 return;
5511
5512 key = (struct ipw_tgi_tx_key *)&cmd.param;
5513 key->key_id = index;
5514 memcpy(key->key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5515 key->security_type = type;
5516 key->station_index = 0; /* always 0 for BSS */
5517 key->flags = 0;
5518 /* 0 for new key; previous value of counter (after fatal error) */
5519 key->tx_counter[0] = 0;
5520 key->tx_counter[1] = 0;
5521
5522 if (ipw_send_cmd(priv, &cmd)) {
5523 IPW_ERROR("failed to send TGI_TX_KEY command\n");
5524 return;
5525 }
5526}
5527
5528static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005529{
5530 struct ipw_wep_key *key;
5531 int i;
5532 struct host_cmd cmd = {
5533 .cmd = IPW_CMD_WEP_KEY,
5534 .len = sizeof(*key)
5535 };
5536
5537 key = (struct ipw_wep_key *)&cmd.param;
5538 key->cmd_id = DINO_CMD_WEP_KEY;
5539 key->seq_num = 0;
5540
James Ketrenosb095c382005-08-24 22:04:42 -05005541 /* Note: AES keys cannot be set for multiple times.
5542 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005543 for (i = 0; i < 4; i++) {
James Ketrenosb095c382005-08-24 22:04:42 -05005544 key->key_index = i | type;
5545 if (!(priv->ieee->sec.flags & (1 << i))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005546 key->key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005547 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005548 }
5549
James Ketrenosb095c382005-08-24 22:04:42 -05005550 key->key_size = priv->ieee->sec.key_sizes[i];
5551 memcpy(key->key, priv->ieee->sec.keys[i], key->key_size);
5552
James Ketrenos43f66a62005-03-25 12:31:53 -06005553 if (ipw_send_cmd(priv, &cmd)) {
5554 IPW_ERROR("failed to send WEP_KEY command\n");
5555 return;
5556 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005557 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005558}
5559
James Ketrenosb095c382005-08-24 22:04:42 -05005560static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
5561{
5562 switch (priv->ieee->sec.level) {
5563 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005564 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5565 ipw_send_tgi_tx_key(priv,
5566 DCT_FLAG_EXT_SECURITY_CCM,
5567 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005568
James Ketrenosb095c382005-08-24 22:04:42 -05005569 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05005570 priv->sys_config.disable_unicast_decryption = 0;
5571 priv->sys_config.disable_multicast_decryption = 0;
5572 priv->ieee->host_decrypt = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005573 break;
5574 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005575 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
5576 ipw_send_tgi_tx_key(priv,
5577 DCT_FLAG_EXT_SECURITY_TKIP,
5578 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05005579
5580 priv->sys_config.disable_unicast_decryption = 1;
5581 priv->sys_config.disable_multicast_decryption = 1;
5582 priv->ieee->host_decrypt = 1;
James Ketrenosb095c382005-08-24 22:04:42 -05005583 break;
5584 case SEC_LEVEL_1:
5585 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenosb095c382005-08-24 22:04:42 -05005586 priv->sys_config.disable_unicast_decryption = 0;
5587 priv->sys_config.disable_multicast_decryption = 0;
5588 priv->ieee->host_decrypt = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005589 break;
5590 case SEC_LEVEL_0:
Zhu Yid8bad6d2005-07-13 12:25:38 -05005591 priv->sys_config.disable_unicast_decryption = 1;
5592 priv->sys_config.disable_multicast_decryption = 1;
5593 break;
James Ketrenosb095c382005-08-24 22:04:42 -05005594 default:
5595 break;
5596 }
5597}
5598
James Ketrenos43f66a62005-03-25 12:31:53 -06005599static void ipw_adhoc_check(void *data)
5600{
5601 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04005602
James Ketrenosafbf30a2005-08-25 00:05:33 -05005603 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005604 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005605 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
5606 IPW_DL_STATE | IPW_DL_ASSOC,
5607 "Missed beacon: %d - disassociate\n",
5608 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06005609 ipw_remove_current_network(priv);
5610 ipw_disassociate(priv);
5611 return;
5612 }
5613
Jeff Garzikbf794512005-07-31 13:07:26 -04005614 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
James Ketrenos43f66a62005-03-25 12:31:53 -06005615 priv->assoc_request.beacon_interval);
5616}
5617
James Ketrenosc848d0a2005-08-24 21:56:24 -05005618static void ipw_bg_adhoc_check(void *data)
5619{
5620 struct ipw_priv *priv = data;
5621 down(&priv->sem);
5622 ipw_adhoc_check(data);
5623 up(&priv->sem);
5624}
5625
James Ketrenos43f66a62005-03-25 12:31:53 -06005626#ifdef CONFIG_IPW_DEBUG
5627static void ipw_debug_config(struct ipw_priv *priv)
5628{
5629 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
5630 "[CFG 0x%08X]\n", priv->config);
5631 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005632 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06005633 else
5634 IPW_DEBUG_INFO("Channel unlocked.\n");
5635 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04005636 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005637 escape_essid(priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005638 else
5639 IPW_DEBUG_INFO("ESSID unlocked.\n");
5640 if (priv->config & CFG_STATIC_BSSID)
James Ketrenosea2b26e2005-08-24 21:25:16 -05005641 IPW_DEBUG_INFO("BSSID locked to " MAC_FMT "\n",
5642 MAC_ARG(priv->bssid));
James Ketrenos43f66a62005-03-25 12:31:53 -06005643 else
5644 IPW_DEBUG_INFO("BSSID unlocked.\n");
5645 if (priv->capability & CAP_PRIVACY_ON)
5646 IPW_DEBUG_INFO("PRIVACY on\n");
5647 else
5648 IPW_DEBUG_INFO("PRIVACY off\n");
5649 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
5650}
5651#else
Jiri Benc8d45ff72005-08-25 20:09:39 -04005652#define ipw_debug_config(x) do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06005653#endif
5654
James Ketrenosb095c382005-08-24 22:04:42 -05005655static inline void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06005656{
5657 /* TODO: Verify that this works... */
5658 struct ipw_fixed_rate fr = {
5659 .tx_rates = priv->rates_mask
5660 };
5661 u32 reg;
5662 u16 mask = 0;
5663
Jeff Garzikbf794512005-07-31 13:07:26 -04005664 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06005665 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04005666
James Ketrenos43f66a62005-03-25 12:31:53 -06005667 switch (priv->ieee->freq_band) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005668 case IEEE80211_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06005669 /* IEEE_A */
5670 if (priv->rates_mask & ~IEEE80211_OFDM_RATES_MASK) {
5671 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005672 IPW_DEBUG_WX
5673 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005674 fr.tx_rates = 0;
5675 break;
5676 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005677
James Ketrenos43f66a62005-03-25 12:31:53 -06005678 fr.tx_rates >>= IEEE80211_OFDM_SHIFT_MASK_A;
5679 break;
5680
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005681 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06005682 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05005683 if (mode == IEEE_B) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005684 if (fr.tx_rates & ~IEEE80211_CCK_RATES_MASK) {
5685 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005686 IPW_DEBUG_WX
5687 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005688 fr.tx_rates = 0;
5689 }
5690 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04005691 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005692
5693 /* IEEE_G */
5694 if (fr.tx_rates & ~(IEEE80211_CCK_RATES_MASK |
5695 IEEE80211_OFDM_RATES_MASK)) {
5696 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005697 IPW_DEBUG_WX
5698 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06005699 fr.tx_rates = 0;
5700 break;
5701 }
5702
5703 if (IEEE80211_OFDM_RATE_6MB_MASK & fr.tx_rates) {
5704 mask |= (IEEE80211_OFDM_RATE_6MB_MASK >> 1);
5705 fr.tx_rates &= ~IEEE80211_OFDM_RATE_6MB_MASK;
5706 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005707
James Ketrenos43f66a62005-03-25 12:31:53 -06005708 if (IEEE80211_OFDM_RATE_9MB_MASK & fr.tx_rates) {
5709 mask |= (IEEE80211_OFDM_RATE_9MB_MASK >> 1);
5710 fr.tx_rates &= ~IEEE80211_OFDM_RATE_9MB_MASK;
5711 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005712
James Ketrenos43f66a62005-03-25 12:31:53 -06005713 if (IEEE80211_OFDM_RATE_12MB_MASK & fr.tx_rates) {
5714 mask |= (IEEE80211_OFDM_RATE_12MB_MASK >> 1);
5715 fr.tx_rates &= ~IEEE80211_OFDM_RATE_12MB_MASK;
5716 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005717
James Ketrenos43f66a62005-03-25 12:31:53 -06005718 fr.tx_rates |= mask;
5719 break;
5720 }
5721
5722 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005723 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06005724}
5725
James Ketrenosea2b26e2005-08-24 21:25:16 -05005726static void ipw_abort_scan(struct ipw_priv *priv)
5727{
5728 int err;
5729
5730 if (priv->status & STATUS_SCAN_ABORTING) {
5731 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
5732 return;
5733 }
5734 priv->status |= STATUS_SCAN_ABORTING;
5735
5736 err = ipw_send_scan_abort(priv);
5737 if (err)
5738 IPW_DEBUG_HC("Request to abort scan failed.\n");
5739}
5740
James Ketrenosafbf30a2005-08-25 00:05:33 -05005741static void ipw_add_scan_channels(struct ipw_priv *priv,
5742 struct ipw_scan_request_ext *scan,
5743 int scan_type)
5744{
5745 int channel_index = 0;
5746 const struct ieee80211_geo *geo;
5747 int i;
5748
5749 geo = ieee80211_get_geo(priv->ieee);
5750
5751 if (priv->ieee->freq_band & IEEE80211_52GHZ_BAND) {
5752 int start = channel_index;
5753 for (i = 0; i < geo->a_channels; i++) {
5754 if ((priv->status & STATUS_ASSOCIATED) &&
5755 geo->a[i].channel == priv->channel)
5756 continue;
5757 channel_index++;
5758 scan->channels_list[channel_index] = geo->a[i].channel;
5759 ipw_set_scan_type(scan, channel_index, scan_type);
5760 }
5761
5762 if (start != channel_index) {
5763 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
5764 (channel_index - start);
5765 channel_index++;
5766 }
5767 }
5768
5769 if (priv->ieee->freq_band & IEEE80211_24GHZ_BAND) {
5770 int start = channel_index;
5771 if (priv->config & CFG_SPEED_SCAN) {
5772 u8 channels[IEEE80211_24GHZ_CHANNELS] = {
5773 /* nop out the list */
5774 [0] = 0
5775 };
5776
5777 u8 channel;
5778 while (channel_index < IPW_SCAN_CHANNELS) {
5779 channel =
5780 priv->speed_scan[priv->speed_scan_pos];
5781 if (channel == 0) {
5782 priv->speed_scan_pos = 0;
5783 channel = priv->speed_scan[0];
5784 }
5785 if ((priv->status & STATUS_ASSOCIATED) &&
5786 channel == priv->channel) {
5787 priv->speed_scan_pos++;
5788 continue;
5789 }
5790
5791 /* If this channel has already been
5792 * added in scan, break from loop
5793 * and this will be the first channel
5794 * in the next scan.
5795 */
5796 if (channels[channel - 1] != 0)
5797 break;
5798
5799 channels[channel - 1] = 1;
5800 priv->speed_scan_pos++;
5801 channel_index++;
5802 scan->channels_list[channel_index] = channel;
5803 ipw_set_scan_type(scan, channel_index,
5804 scan_type);
5805 }
5806 } else {
5807 for (i = 0; i < geo->bg_channels; i++) {
5808 if ((priv->status & STATUS_ASSOCIATED) &&
5809 geo->bg[i].channel == priv->channel)
5810 continue;
5811 channel_index++;
5812 scan->channels_list[channel_index] =
5813 geo->bg[i].channel;
5814 ipw_set_scan_type(scan, channel_index,
5815 scan_type);
5816 }
5817 }
5818
5819 if (start != channel_index) {
5820 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
5821 (channel_index - start);
5822 }
5823 }
5824}
5825
James Ketrenosea2b26e2005-08-24 21:25:16 -05005826static int ipw_request_scan(struct ipw_priv *priv)
5827{
5828 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005829 int err = 0, scan_type;
5830
5831 if (!(priv->status & STATUS_INIT) ||
5832 (priv->status & STATUS_EXIT_PENDING))
5833 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005834
James Ketrenosb095c382005-08-24 22:04:42 -05005835 down(&priv->sem);
5836
James Ketrenosea2b26e2005-08-24 21:25:16 -05005837 if (priv->status & STATUS_SCANNING) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005838 IPW_DEBUG_HC("Concurrent scan requested. Ignoring.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05005839 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05005840 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005841 }
5842
James Ketrenosafbf30a2005-08-25 00:05:33 -05005843 if (!(priv->status & STATUS_SCAN_FORCED) &&
5844 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005845 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
5846 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05005847 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005848 }
5849
5850 if (priv->status & STATUS_RF_KILL_MASK) {
5851 IPW_DEBUG_HC("Aborting scan due to RF Kill activation\n");
5852 priv->status |= STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05005853 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005854 }
5855
5856 memset(&scan, 0, sizeof(scan));
5857
James Ketrenosb095c382005-08-24 22:04:42 -05005858 if (priv->config & CFG_SPEED_SCAN)
5859 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
5860 cpu_to_le16(30);
5861 else
5862 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
5863 cpu_to_le16(20);
5864
James Ketrenosa613bff2005-08-24 21:43:11 -05005865 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
5866 cpu_to_le16(20);
5867 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005868
James Ketrenosa613bff2005-08-24 21:43:11 -05005869 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05005870
James Ketrenosb095c382005-08-24 22:04:42 -05005871#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05005872 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005873 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05005874 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005875
James Ketrenosb095c382005-08-24 22:04:42 -05005876 switch (ieee80211_is_valid_channel(priv->ieee, priv->channel)) {
5877 case IEEE80211_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05005878 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05005879 channel = priv->channel;
5880 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005881
James Ketrenosb095c382005-08-24 22:04:42 -05005882 case IEEE80211_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05005883 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05005884 channel = priv->channel;
5885 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005886
James Ketrenosb095c382005-08-24 22:04:42 -05005887 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05005888 band = (u8) (IPW_B_MODE << 6) | 1;
5889 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05005890 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005891 }
5892
James Ketrenosb095c382005-08-24 22:04:42 -05005893 scan.channels_list[0] = band;
5894 scan.channels_list[1] = channel;
5895 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005896
James Ketrenosb095c382005-08-24 22:04:42 -05005897 /* NOTE: The card will sit on this channel for this time
5898 * period. Scan aborts are timing sensitive and frequently
5899 * result in firmware restarts. As such, it is best to
5900 * set a small dwell_time here and just keep re-issuing
5901 * scans. Otherwise fast channel hopping will not actually
5902 * hop channels.
5903 *
5904 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05005905 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
5906 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005907 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05005908#endif /* CONFIG_IPW2200_MONITOR */
5909 /* If we are roaming, then make this a directed scan for the
5910 * current network. Otherwise, ensure that every other scan
5911 * is a fast channel hop scan */
5912 if ((priv->status & STATUS_ROAMING)
5913 || (!(priv->status & STATUS_ASSOCIATED)
5914 && (priv->config & CFG_STATIC_ESSID)
5915 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05005916 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
5917 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05005918 IPW_DEBUG_HC("Attempt to send SSID command "
5919 "failed.\n");
5920 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005921 }
5922
5923 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005924 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05005925 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005926
James Ketrenosafbf30a2005-08-25 00:05:33 -05005927 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05005928#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05005929 }
5930#endif
5931
5932 err = ipw_send_scan_request_ext(priv, &scan);
5933 if (err) {
5934 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05005935 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005936 }
5937
5938 priv->status |= STATUS_SCANNING;
5939 priv->status &= ~STATUS_SCAN_PENDING;
James Ketrenosafbf30a2005-08-25 00:05:33 -05005940 queue_delayed_work(priv->workqueue, &priv->scan_check,
5941 IPW_SCAN_CHECK_WATCHDOG);
James Ketrenosb095c382005-08-24 22:04:42 -05005942 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05005943 up(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05005944 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05005945}
5946
5947static void ipw_bg_abort_scan(void *data)
5948{
5949 struct ipw_priv *priv = data;
5950 down(&priv->sem);
5951 ipw_abort_scan(data);
5952 up(&priv->sem);
5953}
5954
James Ketrenosafbf30a2005-08-25 00:05:33 -05005955#if WIRELESS_EXT < 18
5956/* Support for wpa_supplicant before WE-18, deprecated. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05005957
5958/* following definitions must match definitions in driver_ipw.c */
5959
5960#define IPW_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
5961
5962#define IPW_CMD_SET_WPA_PARAM 1
5963#define IPW_CMD_SET_WPA_IE 2
5964#define IPW_CMD_SET_ENCRYPTION 3
5965#define IPW_CMD_MLME 4
5966
5967#define IPW_PARAM_WPA_ENABLED 1
5968#define IPW_PARAM_TKIP_COUNTERMEASURES 2
5969#define IPW_PARAM_DROP_UNENCRYPTED 3
5970#define IPW_PARAM_PRIVACY_INVOKED 4
5971#define IPW_PARAM_AUTH_ALGS 5
5972#define IPW_PARAM_IEEE_802_1X 6
5973
5974#define IPW_MLME_STA_DEAUTH 1
5975#define IPW_MLME_STA_DISASSOC 2
5976
5977#define IPW_CRYPT_ERR_UNKNOWN_ALG 2
5978#define IPW_CRYPT_ERR_UNKNOWN_ADDR 3
5979#define IPW_CRYPT_ERR_CRYPT_INIT_FAILED 4
5980#define IPW_CRYPT_ERR_KEY_SET_FAILED 5
5981#define IPW_CRYPT_ERR_TX_KEY_SET_FAILED 6
5982#define IPW_CRYPT_ERR_CARD_CONF_FAILED 7
5983
5984#define IPW_CRYPT_ALG_NAME_LEN 16
5985
5986struct ipw_param {
5987 u32 cmd;
5988 u8 sta_addr[ETH_ALEN];
5989 union {
5990 struct {
5991 u8 name;
5992 u32 value;
5993 } wpa_param;
5994 struct {
5995 u32 len;
James Ketrenosb095c382005-08-24 22:04:42 -05005996 u8 reserved[32];
5997 u8 data[0];
James Ketrenosea2b26e2005-08-24 21:25:16 -05005998 } wpa_ie;
5999 struct {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006000 u32 command;
6001 u32 reason_code;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006002 } mlme;
6003 struct {
6004 u8 alg[IPW_CRYPT_ALG_NAME_LEN];
6005 u8 set_tx;
6006 u32 err;
6007 u8 idx;
6008 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
6009 u16 key_len;
6010 u8 key[0];
6011 } crypt;
6012
6013 } u;
6014};
6015
6016/* end of driver_ipw.c code */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006017#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006018
6019static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6020{
James Ketrenosb095c382005-08-24 22:04:42 -05006021 /* This is called when wpa_supplicant loads and closes the driver
6022 * interface. */
6023 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006024}
6025
James Ketrenosafbf30a2005-08-25 00:05:33 -05006026#if WIRELESS_EXT < 18
6027#define IW_AUTH_ALG_OPEN_SYSTEM 0x1
6028#define IW_AUTH_ALG_SHARED_KEY 0x2
6029#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006030
6031static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6032{
6033 struct ieee80211_device *ieee = priv->ieee;
6034 struct ieee80211_security sec = {
6035 .flags = SEC_AUTH_MODE,
6036 };
6037 int ret = 0;
6038
James Ketrenosafbf30a2005-08-25 00:05:33 -05006039 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006040 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6041 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006042 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006043 sec.auth_mode = WLAN_AUTH_OPEN;
6044 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006045 } else
6046 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006047
6048 if (ieee->set_security)
6049 ieee->set_security(ieee->dev, &sec);
6050 else
6051 ret = -EOPNOTSUPP;
6052
6053 return ret;
6054}
6055
James Ketrenosafbf30a2005-08-25 00:05:33 -05006056void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie, int wpa_ie_len)
6057{
6058 /* make sure WPA is enabled */
6059 ipw_wpa_enable(priv, 1);
6060
6061 ipw_disassociate(priv);
6062}
6063
6064static int ipw_set_rsn_capa(struct ipw_priv *priv,
6065 char *capabilities, int length)
6066{
6067 struct host_cmd cmd = {
6068 .cmd = IPW_CMD_RSN_CAPABILITIES,
6069 .len = length,
6070 };
6071
6072 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6073
6074 memcpy(cmd.param, capabilities, length);
6075 if (ipw_send_cmd(priv, &cmd)) {
6076 IPW_ERROR("failed to send HOST_CMD_RSN_CAPABILITIES command\n");
6077 return -1;
6078 }
6079 return 0;
6080}
6081
6082#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -05006083static int ipw_wpa_set_param(struct net_device *dev, u8 name, u32 value)
6084{
6085 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosa613bff2005-08-24 21:43:11 -05006086 struct ieee80211_crypt_data *crypt;
6087 unsigned long flags;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006088 int ret = 0;
6089
6090 switch (name) {
6091 case IPW_PARAM_WPA_ENABLED:
6092 ret = ipw_wpa_enable(priv, value);
6093 break;
6094
6095 case IPW_PARAM_TKIP_COUNTERMEASURES:
James Ketrenosa613bff2005-08-24 21:43:11 -05006096 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6097 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6098 IPW_WARNING("Can't set TKIP countermeasures: "
6099 "crypt not set!\n");
6100 break;
6101 }
6102
6103 flags = crypt->ops->get_flags(crypt->priv);
6104
6105 if (value)
6106 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6107 else
6108 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6109
6110 crypt->ops->set_flags(flags, crypt->priv);
6111
James Ketrenosea2b26e2005-08-24 21:25:16 -05006112 break;
6113
James Ketrenosb095c382005-08-24 22:04:42 -05006114 case IPW_PARAM_DROP_UNENCRYPTED:{
6115 /* HACK:
6116 *
6117 * wpa_supplicant calls set_wpa_enabled when the driver
6118 * is loaded and unloaded, regardless of if WPA is being
6119 * used. No other calls are made which can be used to
6120 * determine if encryption will be used or not prior to
6121 * association being expected. If encryption is not being
6122 * used, drop_unencrypted is set to false, else true -- we
6123 * can use this to determine if the CAP_PRIVACY_ON bit should
6124 * be set.
6125 */
6126 struct ieee80211_security sec = {
6127 .flags = SEC_ENABLED,
6128 .enabled = value,
6129 };
6130 priv->ieee->drop_unencrypted = value;
6131 /* We only change SEC_LEVEL for open mode. Others
6132 * are set by ipw_wpa_set_encryption.
6133 */
6134 if (!value) {
6135 sec.flags |= SEC_LEVEL;
6136 sec.level = SEC_LEVEL_0;
6137 } else {
6138 sec.flags |= SEC_LEVEL;
6139 sec.level = SEC_LEVEL_1;
6140 }
6141 if (priv->ieee->set_security)
6142 priv->ieee->set_security(priv->ieee->dev, &sec);
6143 break;
6144 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05006145
6146 case IPW_PARAM_PRIVACY_INVOKED:
6147 priv->ieee->privacy_invoked = value;
6148 break;
6149
6150 case IPW_PARAM_AUTH_ALGS:
6151 ret = ipw_wpa_set_auth_algs(priv, value);
6152 break;
6153
6154 case IPW_PARAM_IEEE_802_1X:
6155 priv->ieee->ieee802_1x = value;
6156 break;
6157
6158 default:
6159 IPW_ERROR("%s: Unknown WPA param: %d\n", dev->name, name);
6160 ret = -EOPNOTSUPP;
6161 }
6162
6163 return ret;
6164}
6165
6166static int ipw_wpa_mlme(struct net_device *dev, int command, int reason)
6167{
6168 struct ipw_priv *priv = ieee80211_priv(dev);
6169 int ret = 0;
6170
6171 switch (command) {
6172 case IPW_MLME_STA_DEAUTH:
6173 // silently ignore
6174 break;
6175
6176 case IPW_MLME_STA_DISASSOC:
6177 ipw_disassociate(priv);
6178 break;
6179
6180 default:
6181 IPW_ERROR("%s: Unknown MLME request: %d\n", dev->name, command);
6182 ret = -EOPNOTSUPP;
6183 }
6184
6185 return ret;
6186}
6187
James Ketrenosea2b26e2005-08-24 21:25:16 -05006188static int ipw_wpa_set_wpa_ie(struct net_device *dev,
6189 struct ipw_param *param, int plen)
6190{
6191 struct ipw_priv *priv = ieee80211_priv(dev);
6192 struct ieee80211_device *ieee = priv->ieee;
6193 u8 *buf;
6194
James Ketrenosea2b26e2005-08-24 21:25:16 -05006195 if (param->u.wpa_ie.len > MAX_WPA_IE_LEN ||
6196 (param->u.wpa_ie.len && param->u.wpa_ie.data == NULL))
6197 return -EINVAL;
6198
6199 if (param->u.wpa_ie.len) {
6200 buf = kmalloc(param->u.wpa_ie.len, GFP_KERNEL);
6201 if (buf == NULL)
6202 return -ENOMEM;
6203
6204 memcpy(buf, param->u.wpa_ie.data, param->u.wpa_ie.len);
6205 kfree(ieee->wpa_ie);
6206 ieee->wpa_ie = buf;
6207 ieee->wpa_ie_len = param->u.wpa_ie.len;
6208 } else {
6209 kfree(ieee->wpa_ie);
6210 ieee->wpa_ie = NULL;
6211 ieee->wpa_ie_len = 0;
6212 }
6213
6214 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6215 return 0;
6216}
6217
6218/* implementation borrowed from hostap driver */
6219
6220static int ipw_wpa_set_encryption(struct net_device *dev,
6221 struct ipw_param *param, int param_len)
6222{
6223 int ret = 0;
6224 struct ipw_priv *priv = ieee80211_priv(dev);
6225 struct ieee80211_device *ieee = priv->ieee;
6226 struct ieee80211_crypto_ops *ops;
6227 struct ieee80211_crypt_data **crypt;
6228
6229 struct ieee80211_security sec = {
6230 .flags = 0,
6231 };
6232
6233 param->u.crypt.err = 0;
6234 param->u.crypt.alg[IPW_CRYPT_ALG_NAME_LEN - 1] = '\0';
6235
6236 if (param_len !=
6237 (int)((char *)param->u.crypt.key - (char *)param) +
6238 param->u.crypt.key_len) {
6239 IPW_DEBUG_INFO("Len mismatch %d, %d\n", param_len,
6240 param->u.crypt.key_len);
6241 return -EINVAL;
6242 }
6243 if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff &&
6244 param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff &&
6245 param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) {
6246 if (param->u.crypt.idx >= WEP_KEYS)
6247 return -EINVAL;
6248 crypt = &ieee->crypt[param->u.crypt.idx];
6249 } else {
6250 return -EINVAL;
6251 }
6252
James Ketrenosafbf30a2005-08-25 00:05:33 -05006253 sec.flags |= SEC_ENABLED | SEC_ENCRYPT;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006254 if (strcmp(param->u.crypt.alg, "none") == 0) {
6255 if (crypt) {
6256 sec.enabled = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006257 sec.encrypt = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006258 sec.level = SEC_LEVEL_0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006259 sec.flags |= SEC_LEVEL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006260 ieee80211_crypt_delayed_deinit(ieee, crypt);
6261 }
6262 goto done;
6263 }
6264 sec.enabled = 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006265 sec.encrypt = 1;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006266
James Ketrenosb095c382005-08-24 22:04:42 -05006267 /* IPW HW cannot build TKIP MIC, host decryption still needed. */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006268 if (strcmp(param->u.crypt.alg, "TKIP") == 0)
6269 ieee->host_encrypt_msdu = 1;
6270
6271 if (!(ieee->host_encrypt || ieee->host_encrypt_msdu ||
6272 ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05006273 goto skip_host_crypt;
6274
James Ketrenosea2b26e2005-08-24 21:25:16 -05006275 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6276 if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) {
6277 request_module("ieee80211_crypt_wep");
6278 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6279 } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) {
6280 request_module("ieee80211_crypt_tkip");
6281 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6282 } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) {
6283 request_module("ieee80211_crypt_ccmp");
6284 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6285 }
6286 if (ops == NULL) {
6287 IPW_DEBUG_INFO("%s: unknown crypto alg '%s'\n",
6288 dev->name, param->u.crypt.alg);
6289 param->u.crypt.err = IPW_CRYPT_ERR_UNKNOWN_ALG;
6290 ret = -EINVAL;
6291 goto done;
6292 }
6293
6294 if (*crypt == NULL || (*crypt)->ops != ops) {
6295 struct ieee80211_crypt_data *new_crypt;
6296
6297 ieee80211_crypt_delayed_deinit(ieee, crypt);
6298
6299 new_crypt = (struct ieee80211_crypt_data *)
6300 kmalloc(sizeof(*new_crypt), GFP_KERNEL);
6301 if (new_crypt == NULL) {
6302 ret = -ENOMEM;
6303 goto done;
6304 }
6305 memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data));
6306 new_crypt->ops = ops;
6307 if (new_crypt->ops && try_module_get(new_crypt->ops->owner))
6308 new_crypt->priv =
6309 new_crypt->ops->init(param->u.crypt.idx);
6310
6311 if (new_crypt->priv == NULL) {
6312 kfree(new_crypt);
6313 param->u.crypt.err = IPW_CRYPT_ERR_CRYPT_INIT_FAILED;
6314 ret = -EINVAL;
6315 goto done;
6316 }
6317
6318 *crypt = new_crypt;
6319 }
6320
6321 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
6322 (*crypt)->ops->set_key(param->u.crypt.key,
6323 param->u.crypt.key_len, param->u.crypt.seq,
6324 (*crypt)->priv) < 0) {
6325 IPW_DEBUG_INFO("%s: key setting failed\n", dev->name);
6326 param->u.crypt.err = IPW_CRYPT_ERR_KEY_SET_FAILED;
6327 ret = -EINVAL;
6328 goto done;
6329 }
6330
James Ketrenosb095c382005-08-24 22:04:42 -05006331 skip_host_crypt:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006332 if (param->u.crypt.set_tx) {
6333 ieee->tx_keyidx = param->u.crypt.idx;
6334 sec.active_key = param->u.crypt.idx;
6335 sec.flags |= SEC_ACTIVE_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05006336 } else
6337 sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006338
James Ketrenosb095c382005-08-24 22:04:42 -05006339 if (param->u.crypt.alg != NULL) {
6340 memcpy(sec.keys[param->u.crypt.idx],
6341 param->u.crypt.key, param->u.crypt.key_len);
6342 sec.key_sizes[param->u.crypt.idx] = param->u.crypt.key_len;
6343 sec.flags |= (1 << param->u.crypt.idx);
6344
6345 if (strcmp(param->u.crypt.alg, "WEP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006346 sec.flags |= SEC_LEVEL;
6347 sec.level = SEC_LEVEL_1;
James Ketrenosb095c382005-08-24 22:04:42 -05006348 } else if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006349 sec.flags |= SEC_LEVEL;
6350 sec.level = SEC_LEVEL_2;
James Ketrenosb095c382005-08-24 22:04:42 -05006351 } else if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006352 sec.flags |= SEC_LEVEL;
6353 sec.level = SEC_LEVEL_3;
6354 }
6355 }
6356 done:
6357 if (ieee->set_security)
6358 ieee->set_security(ieee->dev, &sec);
6359
6360 /* Do not reset port if card is in Managed mode since resetting will
6361 * generate new IEEE 802.11 authentication which may end up in looping
6362 * with IEEE 802.1X. If your hardware requires a reset after WEP
6363 * configuration (for example... Prism2), implement the reset_port in
6364 * the callbacks structures used to initialize the 802.11 stack. */
6365 if (ieee->reset_on_keychange &&
6366 ieee->iw_mode != IW_MODE_INFRA &&
6367 ieee->reset_port && ieee->reset_port(dev)) {
6368 IPW_DEBUG_INFO("%s: reset_port failed\n", dev->name);
6369 param->u.crypt.err = IPW_CRYPT_ERR_CARD_CONF_FAILED;
6370 return -EINVAL;
6371 }
6372
6373 return ret;
6374}
6375
6376static int ipw_wpa_supplicant(struct net_device *dev, struct iw_point *p)
6377{
6378 struct ipw_param *param;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006379 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006380 int ret = 0;
6381
6382 IPW_DEBUG_INFO("wpa_supplicant: len=%d\n", p->length);
6383
6384 if (p->length < sizeof(struct ipw_param) || !p->pointer)
6385 return -EINVAL;
6386
6387 param = (struct ipw_param *)kmalloc(p->length, GFP_KERNEL);
6388 if (param == NULL)
6389 return -ENOMEM;
6390
6391 if (copy_from_user(param, p->pointer, p->length)) {
6392 kfree(param);
6393 return -EFAULT;
6394 }
6395
James Ketrenosafbf30a2005-08-25 00:05:33 -05006396 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006397 switch (param->cmd) {
6398
6399 case IPW_CMD_SET_WPA_PARAM:
6400 ret = ipw_wpa_set_param(dev, param->u.wpa_param.name,
6401 param->u.wpa_param.value);
6402 break;
6403
6404 case IPW_CMD_SET_WPA_IE:
6405 ret = ipw_wpa_set_wpa_ie(dev, param, p->length);
6406 break;
6407
6408 case IPW_CMD_SET_ENCRYPTION:
6409 ret = ipw_wpa_set_encryption(dev, param, p->length);
6410 break;
6411
6412 case IPW_CMD_MLME:
6413 ret = ipw_wpa_mlme(dev, param->u.mlme.command,
6414 param->u.mlme.reason_code);
6415 break;
6416
6417 default:
6418 IPW_ERROR("%s: Unknown WPA supplicant request: %d\n",
6419 dev->name, param->cmd);
6420 ret = -EOPNOTSUPP;
6421 }
6422
James Ketrenosafbf30a2005-08-25 00:05:33 -05006423 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006424 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
6425 ret = -EFAULT;
6426
6427 kfree(param);
6428 return ret;
6429}
James Ketrenosafbf30a2005-08-25 00:05:33 -05006430#else
6431/*
6432 * WE-18 support
6433 */
6434
6435/* SIOCSIWGENIE */
6436static int ipw_wx_set_genie(struct net_device *dev,
6437 struct iw_request_info *info,
6438 union iwreq_data *wrqu, char *extra)
6439{
6440 struct ipw_priv *priv = ieee80211_priv(dev);
6441 struct ieee80211_device *ieee = priv->ieee;
6442 u8 *buf;
6443 int err = 0;
6444
6445 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6446 (wrqu->data.length && extra == NULL))
6447 return -EINVAL;
6448
6449 //down(&priv->sem);
6450
6451 //if (!ieee->wpa_enabled) {
6452 // err = -EOPNOTSUPP;
6453 // goto out;
6454 //}
6455
6456 if (wrqu->data.length) {
6457 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6458 if (buf == NULL) {
6459 err = -ENOMEM;
6460 goto out;
6461 }
6462
6463 memcpy(buf, extra, wrqu->data.length);
6464 kfree(ieee->wpa_ie);
6465 ieee->wpa_ie = buf;
6466 ieee->wpa_ie_len = wrqu->data.length;
6467 } else {
6468 kfree(ieee->wpa_ie);
6469 ieee->wpa_ie = NULL;
6470 ieee->wpa_ie_len = 0;
6471 }
6472
6473 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6474 out:
6475 //up(&priv->sem);
6476 return err;
6477}
6478
6479/* SIOCGIWGENIE */
6480static int ipw_wx_get_genie(struct net_device *dev,
6481 struct iw_request_info *info,
6482 union iwreq_data *wrqu, char *extra)
6483{
6484 struct ipw_priv *priv = ieee80211_priv(dev);
6485 struct ieee80211_device *ieee = priv->ieee;
6486 int err = 0;
6487
6488 //down(&priv->sem);
6489
6490 //if (!ieee->wpa_enabled) {
6491 // err = -EOPNOTSUPP;
6492 // goto out;
6493 //}
6494
6495 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6496 wrqu->data.length = 0;
6497 goto out;
6498 }
6499
6500 if (wrqu->data.length < ieee->wpa_ie_len) {
6501 err = -E2BIG;
6502 goto out;
6503 }
6504
6505 wrqu->data.length = ieee->wpa_ie_len;
6506 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6507
6508 out:
6509 //up(&priv->sem);
6510 return err;
6511}
6512
6513/* SIOCSIWAUTH */
6514static int ipw_wx_set_auth(struct net_device *dev,
6515 struct iw_request_info *info,
6516 union iwreq_data *wrqu, char *extra)
6517{
6518 struct ipw_priv *priv = ieee80211_priv(dev);
6519 struct ieee80211_device *ieee = priv->ieee;
6520 struct iw_param *param = &wrqu->param;
6521 struct ieee80211_crypt_data *crypt;
6522 unsigned long flags;
6523 int ret = 0;
6524
6525 switch (param->flags & IW_AUTH_INDEX) {
6526 case IW_AUTH_WPA_VERSION:
6527 case IW_AUTH_CIPHER_PAIRWISE:
6528 case IW_AUTH_CIPHER_GROUP:
6529 case IW_AUTH_KEY_MGMT:
6530 /*
6531 * ipw2200 does not use these parameters
6532 */
6533 break;
6534
6535 case IW_AUTH_TKIP_COUNTERMEASURES:
6536 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6537 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags) {
6538 IPW_WARNING("Can't set TKIP countermeasures: "
6539 "crypt not set!\n");
6540 break;
6541 }
6542
6543 flags = crypt->ops->get_flags(crypt->priv);
6544
6545 if (param->value)
6546 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6547 else
6548 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6549
6550 crypt->ops->set_flags(flags, crypt->priv);
6551
6552 break;
6553
6554 case IW_AUTH_DROP_UNENCRYPTED:{
6555 /* HACK:
6556 *
6557 * wpa_supplicant calls set_wpa_enabled when the driver
6558 * is loaded and unloaded, regardless of if WPA is being
6559 * used. No other calls are made which can be used to
6560 * determine if encryption will be used or not prior to
6561 * association being expected. If encryption is not being
6562 * used, drop_unencrypted is set to false, else true -- we
6563 * can use this to determine if the CAP_PRIVACY_ON bit should
6564 * be set.
6565 */
6566 struct ieee80211_security sec = {
6567 .flags = SEC_ENABLED,
6568 .enabled = param->value,
6569 };
6570 priv->ieee->drop_unencrypted = param->value;
6571 /* We only change SEC_LEVEL for open mode. Others
6572 * are set by ipw_wpa_set_encryption.
6573 */
6574 if (!param->value) {
6575 sec.flags |= SEC_LEVEL;
6576 sec.level = SEC_LEVEL_0;
6577 } else {
6578 sec.flags |= SEC_LEVEL;
6579 sec.level = SEC_LEVEL_1;
6580 }
6581 if (priv->ieee->set_security)
6582 priv->ieee->set_security(priv->ieee->dev, &sec);
6583 break;
6584 }
6585
6586 case IW_AUTH_80211_AUTH_ALG:
6587 ret = ipw_wpa_set_auth_algs(priv, param->value);
6588 break;
6589
6590 case IW_AUTH_WPA_ENABLED:
6591 ret = ipw_wpa_enable(priv, param->value);
6592 break;
6593
6594 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6595 ieee->ieee802_1x = param->value;
6596 break;
6597
6598 //case IW_AUTH_ROAMING_CONTROL:
6599 case IW_AUTH_PRIVACY_INVOKED:
6600 ieee->privacy_invoked = param->value;
6601 break;
6602
6603 default:
6604 return -EOPNOTSUPP;
6605 }
6606 return ret;
6607}
6608
6609/* SIOCGIWAUTH */
6610static int ipw_wx_get_auth(struct net_device *dev,
6611 struct iw_request_info *info,
6612 union iwreq_data *wrqu, char *extra)
6613{
6614 struct ipw_priv *priv = ieee80211_priv(dev);
6615 struct ieee80211_device *ieee = priv->ieee;
6616 struct ieee80211_crypt_data *crypt;
6617 struct iw_param *param = &wrqu->param;
6618 int ret = 0;
6619
6620 switch (param->flags & IW_AUTH_INDEX) {
6621 case IW_AUTH_WPA_VERSION:
6622 case IW_AUTH_CIPHER_PAIRWISE:
6623 case IW_AUTH_CIPHER_GROUP:
6624 case IW_AUTH_KEY_MGMT:
6625 /*
6626 * wpa_supplicant will control these internally
6627 */
6628 ret = -EOPNOTSUPP;
6629 break;
6630
6631 case IW_AUTH_TKIP_COUNTERMEASURES:
6632 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
6633 if (!crypt || !crypt->ops->get_flags) {
6634 IPW_WARNING("Can't get TKIP countermeasures: "
6635 "crypt not set!\n");
6636 break;
6637 }
6638
6639 param->value = (crypt->ops->get_flags(crypt->priv) &
6640 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6641
6642 break;
6643
6644 case IW_AUTH_DROP_UNENCRYPTED:
6645 param->value = ieee->drop_unencrypted;
6646 break;
6647
6648 case IW_AUTH_80211_AUTH_ALG:
6649 param->value = ieee->sec.auth_mode;
6650 break;
6651
6652 case IW_AUTH_WPA_ENABLED:
6653 param->value = ieee->wpa_enabled;
6654 break;
6655
6656 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6657 param->value = ieee->ieee802_1x;
6658 break;
6659
6660 case IW_AUTH_ROAMING_CONTROL:
6661 case IW_AUTH_PRIVACY_INVOKED:
6662 param->value = ieee->privacy_invoked;
6663 break;
6664
6665 default:
6666 return -EOPNOTSUPP;
6667 }
6668 return 0;
6669}
6670
6671/* SIOCSIWENCODEEXT */
6672static int ipw_wx_set_encodeext(struct net_device *dev,
6673 struct iw_request_info *info,
6674 union iwreq_data *wrqu, char *extra)
6675{
6676 struct ipw_priv *priv = ieee80211_priv(dev);
6677 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6678
6679 if (hwcrypto) {
6680 /* IPW HW can't build TKIP MIC, host decryption still needed */
6681 if (ext->alg == IW_ENCODE_ALG_TKIP) {
6682 priv->ieee->host_encrypt = 0;
6683 priv->ieee->host_encrypt_msdu = 1;
6684 priv->ieee->host_decrypt = 1;
6685 } else {
6686 priv->ieee->host_encrypt = 0;
6687 priv->ieee->host_encrypt_msdu = 0;
6688 priv->ieee->host_decrypt = 0;
6689 }
6690 }
6691
6692 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
6693}
6694
6695/* SIOCGIWENCODEEXT */
6696static int ipw_wx_get_encodeext(struct net_device *dev,
6697 struct iw_request_info *info,
6698 union iwreq_data *wrqu, char *extra)
6699{
6700 struct ipw_priv *priv = ieee80211_priv(dev);
6701 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
6702}
6703
6704/* SIOCSIWMLME */
6705static int ipw_wx_set_mlme(struct net_device *dev,
6706 struct iw_request_info *info,
6707 union iwreq_data *wrqu, char *extra)
6708{
6709 struct ipw_priv *priv = ieee80211_priv(dev);
6710 struct iw_mlme *mlme = (struct iw_mlme *)extra;
6711 u16 reason;
6712
6713 reason = cpu_to_le16(mlme->reason_code);
6714
6715 switch (mlme->cmd) {
6716 case IW_MLME_DEAUTH:
6717 // silently ignore
6718 break;
6719
6720 case IW_MLME_DISASSOC:
6721 ipw_disassociate(priv);
6722 break;
6723
6724 default:
6725 return -EOPNOTSUPP;
6726 }
6727 return 0;
6728}
6729#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -05006730
James Ketrenosb095c382005-08-24 22:04:42 -05006731#ifdef CONFIG_IPW_QOS
6732
6733/* QoS */
6734/*
6735* get the modulation type of the current network or
6736* the card current mode
6737*/
6738u8 ipw_qos_current_mode(struct ipw_priv * priv)
6739{
6740 u8 mode = 0;
6741
6742 if (priv->status & STATUS_ASSOCIATED) {
6743 unsigned long flags;
6744
6745 spin_lock_irqsave(&priv->ieee->lock, flags);
6746 mode = priv->assoc_network->mode;
6747 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6748 } else {
6749 mode = priv->ieee->mode;
6750 }
6751 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
6752 return mode;
6753}
6754
6755/*
6756* Handle management frame beacon and probe response
6757*/
6758static int ipw_qos_handle_probe_reponse(struct ipw_priv *priv,
6759 int active_network,
6760 struct ieee80211_network *network)
6761{
6762 u32 size = sizeof(struct ieee80211_qos_parameters);
6763
James Ketrenosafbf30a2005-08-25 00:05:33 -05006764 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006765 network->qos_data.active = network->qos_data.supported;
6766
6767 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006768 if (active_network &&
6769 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006770 network->qos_data.active = network->qos_data.supported;
6771
6772 if ((network->qos_data.active == 1) && (active_network == 1) &&
6773 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6774 (network->qos_data.old_param_count !=
6775 network->qos_data.param_count)) {
6776 network->qos_data.old_param_count =
6777 network->qos_data.param_count;
6778 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006779 IPW_DEBUG_QOS("QoS parameters change call "
6780 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006781 }
6782 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006783 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6784 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006785 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006786 else
6787 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006788 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006789
James Ketrenosb095c382005-08-24 22:04:42 -05006790 if ((network->qos_data.active == 1) && (active_network == 1)) {
6791 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
6792 schedule_work(&priv->qos_activate);
6793 }
6794
6795 network->qos_data.active = 0;
6796 network->qos_data.supported = 0;
6797 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006798 if ((priv->status & STATUS_ASSOCIATED) &&
6799 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
6800 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
6801 if ((network->capability & WLAN_CAPABILITY_IBSS) &&
6802 !(network->flags & NETWORK_EMPTY_ESSID))
James Ketrenosb095c382005-08-24 22:04:42 -05006803 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006804 priv->assoc_network->ssid_len) &&
6805 !memcmp(network->ssid,
6806 priv->assoc_network->ssid,
6807 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006808 queue_work(priv->workqueue,
6809 &priv->merge_networks);
6810 }
James Ketrenosb095c382005-08-24 22:04:42 -05006811 }
6812
6813 return 0;
6814}
6815
6816/*
6817* This function set up the firmware to support QoS. It sends
6818* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6819*/
6820static int ipw_qos_activate(struct ipw_priv *priv,
6821 struct ieee80211_qos_data *qos_network_data)
6822{
6823 int err;
6824 struct ieee80211_qos_parameters qos_parameters[QOS_QOS_SETS];
6825 struct ieee80211_qos_parameters *active_one = NULL;
6826 u32 size = sizeof(struct ieee80211_qos_parameters);
6827 u32 burst_duration;
6828 int i;
6829 u8 type;
6830
6831 type = ipw_qos_current_mode(priv);
6832
6833 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6834 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6835 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6836 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6837
6838 if (qos_network_data == NULL) {
6839 if (type == IEEE_B) {
6840 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
6841 active_one = &def_parameters_CCK;
6842 } else
6843 active_one = &def_parameters_OFDM;
6844
James Ketrenosafbf30a2005-08-25 00:05:33 -05006845 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006846 burst_duration = ipw_qos_get_burst_duration(priv);
6847 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006848 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
6849 (u16) burst_duration;
6850 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05006851 if (type == IEEE_B) {
6852 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
6853 type);
6854 if (priv->qos_data.qos_enable == 0)
6855 active_one = &def_parameters_CCK;
6856 else
6857 active_one = priv->qos_data.def_qos_parm_CCK;
6858 } else {
6859 if (priv->qos_data.qos_enable == 0)
6860 active_one = &def_parameters_OFDM;
6861 else
6862 active_one = priv->qos_data.def_qos_parm_OFDM;
6863 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006864 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006865 } else {
6866 unsigned long flags;
6867 int active;
6868
6869 spin_lock_irqsave(&priv->ieee->lock, flags);
6870 active_one = &(qos_network_data->parameters);
6871 qos_network_data->old_param_count =
6872 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006873 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006874 active = qos_network_data->supported;
6875 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6876
6877 if (active == 0) {
6878 burst_duration = ipw_qos_get_burst_duration(priv);
6879 for (i = 0; i < QOS_QUEUE_NUM; i++)
6880 qos_parameters[QOS_PARAM_SET_ACTIVE].
6881 tx_op_limit[i] = (u16) burst_duration;
6882 }
6883 }
6884
6885 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05006886 err = ipw_send_qos_params_command(priv,
6887 (struct ieee80211_qos_parameters *)
6888 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05006889 if (err)
6890 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
6891
6892 return err;
6893}
6894
6895/*
6896* send IPW_CMD_WME_INFO to the firmware
6897*/
6898static int ipw_qos_set_info_element(struct ipw_priv *priv)
6899{
6900 int ret = 0;
6901 struct ieee80211_qos_information_element qos_info;
6902
6903 if (priv == NULL)
6904 return -1;
6905
6906 qos_info.elementID = QOS_ELEMENT_ID;
6907 qos_info.length = sizeof(struct ieee80211_qos_information_element) - 2;
6908
6909 qos_info.version = QOS_VERSION_1;
6910 qos_info.ac_info = 0;
6911
6912 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
6913 qos_info.qui_type = QOS_OUI_TYPE;
6914 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
6915
6916 ret = ipw_send_qos_info_command(priv, &qos_info);
6917 if (ret != 0) {
6918 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
6919 }
6920 return ret;
6921}
6922
6923/*
6924* Set the QoS parameter with the association request structure
6925*/
6926static int ipw_qos_association(struct ipw_priv *priv,
6927 struct ieee80211_network *network)
6928{
6929 int err = 0;
6930 struct ieee80211_qos_data *qos_data = NULL;
6931 struct ieee80211_qos_data ibss_data = {
6932 .supported = 1,
6933 .active = 1,
6934 };
6935
6936 switch (priv->ieee->iw_mode) {
6937 case IW_MODE_ADHOC:
6938 if (!(network->capability & WLAN_CAPABILITY_IBSS))
6939 BUG();
6940
6941 qos_data = &ibss_data;
6942 break;
6943
6944 case IW_MODE_INFRA:
6945 qos_data = &network->qos_data;
6946 break;
6947
6948 default:
6949 BUG();
6950 break;
6951 }
6952
6953 err = ipw_qos_activate(priv, qos_data);
6954 if (err) {
6955 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
6956 return err;
6957 }
6958
6959 if (priv->qos_data.qos_enable && qos_data->supported) {
6960 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
6961 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
6962 return ipw_qos_set_info_element(priv);
6963 }
6964
6965 return 0;
6966}
6967
6968/*
6969* handling the beaconing responces. if we get different QoS setting
6970* of the network from the the associated setting adjust the QoS
6971* setting
6972*/
6973static int ipw_qos_association_resp(struct ipw_priv *priv,
6974 struct ieee80211_network *network)
6975{
6976 int ret = 0;
6977 unsigned long flags;
6978 u32 size = sizeof(struct ieee80211_qos_parameters);
6979 int set_qos_param = 0;
6980
James Ketrenosafbf30a2005-08-25 00:05:33 -05006981 if ((priv == NULL) || (network == NULL) ||
6982 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05006983 return ret;
6984
6985 if (!(priv->status & STATUS_ASSOCIATED))
6986 return ret;
6987
James Ketrenosafbf30a2005-08-25 00:05:33 -05006988 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05006989 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05006990
6991 spin_lock_irqsave(&priv->ieee->lock, flags);
6992 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006993 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
James Ketrenosb095c382005-08-24 22:04:42 -05006994 sizeof(struct ieee80211_qos_data));
6995 priv->assoc_network->qos_data.active = 1;
6996 if ((network->qos_data.old_param_count !=
6997 network->qos_data.param_count)) {
6998 set_qos_param = 1;
6999 network->qos_data.old_param_count =
7000 network->qos_data.param_count;
7001 }
7002
7003 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007004 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7005 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007006 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007007 else
7008 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007009 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007010 priv->assoc_network->qos_data.active = 0;
7011 priv->assoc_network->qos_data.supported = 0;
7012 set_qos_param = 1;
7013 }
7014
7015 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7016
7017 if (set_qos_param == 1)
7018 schedule_work(&priv->qos_activate);
7019
7020 return ret;
7021}
7022
7023static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7024{
7025 u32 ret = 0;
7026
7027 if ((priv == NULL))
7028 return 0;
7029
James Ketrenosafbf30a2005-08-25 00:05:33 -05007030 if (!(priv->ieee->modulation & IEEE80211_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007031 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007032 else
James Ketrenosb095c382005-08-24 22:04:42 -05007033 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007034
James Ketrenosb095c382005-08-24 22:04:42 -05007035 return ret;
7036}
7037
7038/*
7039* Initialize the setting of QoS global
7040*/
7041static void ipw_qos_init(struct ipw_priv *priv, int enable,
7042 int burst_enable, u32 burst_duration_CCK,
7043 u32 burst_duration_OFDM)
7044{
7045 priv->qos_data.qos_enable = enable;
7046
7047 if (priv->qos_data.qos_enable) {
7048 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7049 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7050 IPW_DEBUG_QOS("QoS is enabled\n");
7051 } else {
7052 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7053 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7054 IPW_DEBUG_QOS("QoS is not enabled\n");
7055 }
7056
7057 priv->qos_data.burst_enable = burst_enable;
7058
7059 if (burst_enable) {
7060 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7061 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7062 } else {
7063 priv->qos_data.burst_duration_CCK = 0;
7064 priv->qos_data.burst_duration_OFDM = 0;
7065 }
7066}
7067
7068/*
7069* map the packet priority to the right TX Queue
7070*/
7071static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7072{
7073 if (priority > 7 || !priv->qos_data.qos_enable)
7074 priority = 0;
7075
7076 return from_priority_to_tx_queue[priority] - 1;
7077}
7078
7079/*
7080* add QoS parameter to the TX command
7081*/
7082static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7083 u16 priority,
7084 struct tfd_data *tfd, u8 unicast)
7085{
7086 int ret = 0;
7087 int tx_queue_id = 0;
7088 struct ieee80211_qos_data *qos_data = NULL;
7089 int active, supported;
7090 unsigned long flags;
7091
7092 if (!(priv->status & STATUS_ASSOCIATED))
7093 return 0;
7094
7095 qos_data = &priv->assoc_network->qos_data;
7096
7097 spin_lock_irqsave(&priv->ieee->lock, flags);
7098
7099 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7100 if (unicast == 0)
7101 qos_data->active = 0;
7102 else
7103 qos_data->active = qos_data->supported;
7104 }
7105
7106 active = qos_data->active;
7107 supported = qos_data->supported;
7108
7109 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7110
James Ketrenosafbf30a2005-08-25 00:05:33 -05007111 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7112 "unicast %d\n",
7113 priv->qos_data.qos_enable, active, supported, unicast);
James Ketrenosb095c382005-08-24 22:04:42 -05007114 if (active && priv->qos_data.qos_enable) {
7115 ret = from_priority_to_tx_queue[priority];
7116 tx_queue_id = ret - 1;
7117 IPW_DEBUG_QOS("QoS packet priority is %d \n", priority);
7118 if (priority <= 7) {
7119 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7120 tfd->tfd.tfd_26.mchdr.qos_ctrl = priority;
7121 tfd->tfd.tfd_26.mchdr.frame_ctl |=
7122 IEEE80211_STYPE_QOS_DATA;
7123
7124 if (priv->qos_data.qos_no_ack_mask &
7125 (1UL << tx_queue_id)) {
7126 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
7127 tfd->tfd.tfd_26.mchdr.qos_ctrl |=
7128 CTRL_QOS_NO_ACK;
7129 }
7130 }
7131 }
7132
7133 return ret;
7134}
7135
7136/*
7137* background support to run QoS activate functionality
7138*/
7139static void ipw_bg_qos_activate(void *data)
7140{
7141 struct ipw_priv *priv = data;
7142
7143 if (priv == NULL)
7144 return;
7145
7146 down(&priv->sem);
7147
7148 if (priv->status & STATUS_ASSOCIATED)
7149 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7150
7151 up(&priv->sem);
7152}
7153
7154/*
7155* Handler for probe responce and beacon frame
7156*/
James Ketrenos2b184d52005-08-03 20:33:14 -05007157static int ipw_handle_management(struct net_device *dev,
7158 struct ieee80211_network *network, u16 type)
James Ketrenosb095c382005-08-24 22:04:42 -05007159{
7160 struct ipw_priv *priv = ieee80211_priv(dev);
7161 int active_network;
7162
7163 if (priv->status & STATUS_ASSOCIATED && network == priv->assoc_network)
7164 active_network = 1;
7165 else
7166 active_network = 0;
7167
7168 switch (type) {
7169 case IEEE80211_STYPE_PROBE_RESP:
7170 case IEEE80211_STYPE_BEACON:
7171 ipw_qos_handle_probe_reponse(priv, active_network, network);
7172 break;
7173 case IEEE80211_STYPE_ASSOC_RESP:
7174 ipw_qos_association_resp(priv, network);
7175 break;
7176 default:
7177 break;
7178 }
7179
7180 return 0;
7181}
7182
7183static int ipw_send_qos_params_command(struct ipw_priv *priv, struct ieee80211_qos_parameters
7184 *qos_param)
7185{
7186 struct host_cmd cmd = {
7187 .cmd = IPW_CMD_QOS_PARAMETERS,
7188 .len = (sizeof(struct ieee80211_qos_parameters) * 3)
7189 };
7190
7191 if (!priv || !qos_param) {
7192 IPW_ERROR("Invalid args\n");
7193 return -1;
7194 }
7195
James Ketrenosafbf30a2005-08-25 00:05:33 -05007196 memcpy(cmd.param, qos_param, sizeof(*qos_param) * 3);
James Ketrenosb095c382005-08-24 22:04:42 -05007197 if (ipw_send_cmd(priv, &cmd)) {
7198 IPW_ERROR("failed to send IPW_CMD_QOS_PARAMETERS command\n");
7199 return -1;
7200 }
7201
7202 return 0;
7203}
7204
7205static int ipw_send_qos_info_command(struct ipw_priv *priv, struct ieee80211_qos_information_element
7206 *qos_param)
7207{
7208 struct host_cmd cmd = {
7209 .cmd = IPW_CMD_WME_INFO,
7210 .len = sizeof(*qos_param)
7211 };
7212
7213 if (!priv || !qos_param) {
7214 IPW_ERROR("Invalid args\n");
7215 return -1;
7216 }
7217
James Ketrenosafbf30a2005-08-25 00:05:33 -05007218 memcpy(cmd.param, qos_param, sizeof(*qos_param));
James Ketrenosb095c382005-08-24 22:04:42 -05007219 if (ipw_send_cmd(priv, &cmd)) {
7220 IPW_ERROR("failed to send CMD_QOS_INFO command\n");
7221 return -1;
7222 }
7223
7224 return 0;
7225}
7226
7227#endif /* CONFIG_IPW_QOS */
7228
James Ketrenos43f66a62005-03-25 12:31:53 -06007229static int ipw_associate_network(struct ipw_priv *priv,
7230 struct ieee80211_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007231 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007232{
7233 int err;
7234
7235 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007236 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007237
7238 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007239 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007240 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007241 memcpy(priv->essid, network->ssid, priv->essid_len);
7242 }
7243
7244 network->last_associate = jiffies;
7245
7246 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7247 priv->assoc_request.channel = network->channel;
7248 if ((priv->capability & CAP_PRIVACY_ON) &&
7249 (priv->capability & CAP_SHARED_KEY)) {
7250 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007251 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7252
7253 if ((priv->capability & CAP_PRIVACY_ON) &&
7254 (priv->ieee->sec.level == SEC_LEVEL_1) &&
7255 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
7256 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
James Ketrenos43f66a62005-03-25 12:31:53 -06007257 } else {
7258 priv->assoc_request.auth_type = AUTH_OPEN;
7259 priv->assoc_request.auth_key = 0;
7260 }
7261
James Ketrenosa613bff2005-08-24 21:43:11 -05007262 if (priv->ieee->wpa_ie_len) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05007263 priv->assoc_request.policy_support = 0x02; /* RSN active */
7264 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7265 priv->ieee->wpa_ie_len);
7266 }
James Ketrenosea2b26e2005-08-24 21:25:16 -05007267
Jeff Garzikbf794512005-07-31 13:07:26 -04007268 /*
7269 * It is valid for our ieee device to support multiple modes, but
7270 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007271 * just one mode.
7272 */
7273 if (network->mode & priv->ieee->mode & IEEE_A)
7274 priv->assoc_request.ieee_mode = IPW_A_MODE;
7275 else if (network->mode & priv->ieee->mode & IEEE_G)
7276 priv->assoc_request.ieee_mode = IPW_G_MODE;
7277 else if (network->mode & priv->ieee->mode & IEEE_B)
7278 priv->assoc_request.ieee_mode = IPW_B_MODE;
7279
James Ketrenosea2b26e2005-08-24 21:25:16 -05007280 priv->assoc_request.capability = network->capability;
7281 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7282 && !(priv->config & CFG_PREAMBLE_LONG)) {
7283 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7284 } else {
7285 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7286
7287 /* Clear the short preamble if we won't be supporting it */
7288 priv->assoc_request.capability &=
7289 ~WLAN_CAPABILITY_SHORT_PREAMBLE;
7290 }
7291
James Ketrenosafbf30a2005-08-25 00:05:33 -05007292 /* Clear capability bits that aren't used in Ad Hoc */
7293 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7294 priv->assoc_request.capability &=
7295 ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
7296
James Ketrenos43f66a62005-03-25 12:31:53 -06007297 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007298 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007299 roaming ? "Rea" : "A",
Jeff Garzikbf794512005-07-31 13:07:26 -04007300 escape_essid(priv->essid, priv->essid_len),
7301 network->channel,
7302 ipw_modes[priv->assoc_request.ieee_mode],
7303 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007304 (priv->assoc_request.preamble_length ==
7305 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7306 network->capability &
7307 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007308 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007309 priv->capability & CAP_PRIVACY_ON ?
7310 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007311 "(open)") : "",
7312 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007313 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007314 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007315 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007316
7317 priv->assoc_request.beacon_interval = network->beacon_interval;
7318 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007319 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007320 priv->assoc_request.assoc_type = HC_IBSS_START;
7321 priv->assoc_request.assoc_tsf_msw = 0;
7322 priv->assoc_request.assoc_tsf_lsw = 0;
7323 } else {
7324 if (unlikely(roaming))
7325 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7326 else
7327 priv->assoc_request.assoc_type = HC_ASSOCIATE;
7328 priv->assoc_request.assoc_tsf_msw = network->time_stamp[1];
7329 priv->assoc_request.assoc_tsf_lsw = network->time_stamp[0];
7330 }
7331
James Ketrenosafbf30a2005-08-25 00:05:33 -05007332 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007333
7334 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7335 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
7336 priv->assoc_request.atim_window = network->atim_window;
7337 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007338 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007339 priv->assoc_request.atim_window = 0;
7340 }
7341
James Ketrenos43f66a62005-03-25 12:31:53 -06007342 priv->assoc_request.listen_interval = network->listen_interval;
Jeff Garzikbf794512005-07-31 13:07:26 -04007343
James Ketrenos43f66a62005-03-25 12:31:53 -06007344 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7345 if (err) {
7346 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7347 return err;
7348 }
7349
7350 rates->ieee_mode = priv->assoc_request.ieee_mode;
7351 rates->purpose = IPW_RATE_CONNECT;
7352 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007353
James Ketrenos43f66a62005-03-25 12:31:53 -06007354 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7355 priv->sys_config.dot11g_auto_detection = 1;
7356 else
7357 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007358
7359 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7360 priv->sys_config.answer_broadcast_ssid_probe = 1;
7361 else
7362 priv->sys_config.answer_broadcast_ssid_probe = 0;
7363
James Ketrenos43f66a62005-03-25 12:31:53 -06007364 err = ipw_send_system_config(priv, &priv->sys_config);
7365 if (err) {
7366 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7367 return err;
7368 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007369
James Ketrenos43f66a62005-03-25 12:31:53 -06007370 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007371 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007372 if (err) {
7373 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7374 return err;
7375 }
7376
7377 /*
7378 * If preemption is enabled, it is possible for the association
7379 * to complete before we return from ipw_send_associate. Therefore
7380 * we have to be sure and update our priviate data first.
7381 */
7382 priv->channel = network->channel;
7383 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007384 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007385 priv->status &= ~STATUS_SECURITY_UPDATED;
7386
7387 priv->assoc_network = network;
7388
James Ketrenosb095c382005-08-24 22:04:42 -05007389#ifdef CONFIG_IPW_QOS
7390 ipw_qos_association(priv, network);
7391#endif
7392
James Ketrenos43f66a62005-03-25 12:31:53 -06007393 err = ipw_send_associate(priv, &priv->assoc_request);
7394 if (err) {
7395 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7396 return err;
7397 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007398
7399 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' " MAC_FMT " \n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007400 escape_essid(priv->essid, priv->essid_len),
7401 MAC_ARG(priv->bssid));
7402
7403 return 0;
7404}
7405
7406static void ipw_roam(void *data)
7407{
7408 struct ipw_priv *priv = data;
7409 struct ieee80211_network *network = NULL;
7410 struct ipw_network_match match = {
7411 .network = priv->assoc_network
7412 };
7413
7414 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007415 *
7416 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007417 * setting the status ROAM bit and requesting a scan.
7418 * 2. When the scan completes, it schedules the ROAM work
7419 * 3. The ROAM work looks at all of the known networks for one that
7420 * is a better network than the currently associated. If none
7421 * found, the ROAM process is over (ROAM bit cleared)
7422 * 4. If a better network is found, a disassociation request is
7423 * sent.
7424 * 5. When the disassociation completes, the roam work is again
7425 * scheduled. The second time through, the driver is no longer
7426 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007427 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007428 * 6. At this point ,the roaming process is complete and the ROAM
7429 * status bit is cleared.
7430 */
7431
7432 /* If we are no longer associated, and the roaming bit is no longer
7433 * set, then we are not actively roaming, so just return */
7434 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7435 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007436
James Ketrenos43f66a62005-03-25 12:31:53 -06007437 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007438 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007439 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007440 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007441 u8 rssi = priv->assoc_network->stats.rssi;
7442 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007443 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007444 list_for_each_entry(network, &priv->ieee->network_list, list) {
7445 if (network != priv->assoc_network)
7446 ipw_best_network(priv, &match, network, 1);
7447 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007448 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007449 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007450
James Ketrenos43f66a62005-03-25 12:31:53 -06007451 if (match.network == priv->assoc_network) {
7452 IPW_DEBUG_ASSOC("No better APs in this network to "
7453 "roam to.\n");
7454 priv->status &= ~STATUS_ROAMING;
7455 ipw_debug_config(priv);
7456 return;
7457 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007458
James Ketrenos43f66a62005-03-25 12:31:53 -06007459 ipw_send_disassociate(priv, 1);
7460 priv->assoc_network = match.network;
7461
7462 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007463 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007464
7465 /* Second pass through ROAM process -- request association */
7466 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7467 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7468 priv->status &= ~STATUS_ROAMING;
7469}
7470
James Ketrenosc848d0a2005-08-24 21:56:24 -05007471static void ipw_bg_roam(void *data)
7472{
7473 struct ipw_priv *priv = data;
7474 down(&priv->sem);
7475 ipw_roam(data);
7476 up(&priv->sem);
7477}
7478
7479static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007480{
7481 struct ipw_priv *priv = data;
7482
7483 struct ieee80211_network *network = NULL;
7484 struct ipw_network_match match = {
7485 .network = NULL
7486 };
7487 struct ipw_supported_rates *rates;
7488 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007489 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007490
James Ketrenosb095c382005-08-24 22:04:42 -05007491 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7492 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7493 return 0;
7494 }
7495
James Ketrenosc848d0a2005-08-24 21:56:24 -05007496 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007497 IPW_DEBUG_ASSOC("Not attempting association (already in "
7498 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007499 return 0;
7500 }
7501
7502 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007503 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7504 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007505 return 0;
7506 }
7507
James Ketrenos43f66a62005-03-25 12:31:53 -06007508 if (!(priv->config & CFG_ASSOCIATE) &&
7509 !(priv->config & (CFG_STATIC_ESSID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007510 CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007511 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007512 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007513 }
7514
James Ketrenosa613bff2005-08-24 21:43:11 -05007515 /* Protect our use of the network_list */
7516 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007517 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007518 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007519
7520 network = match.network;
7521 rates = &match.rates;
7522
7523 if (network == NULL &&
7524 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7525 priv->config & CFG_ADHOC_CREATE &&
7526 priv->config & CFG_STATIC_ESSID &&
James Ketrenosa613bff2005-08-24 21:43:11 -05007527 priv->config & CFG_STATIC_CHANNEL &&
James Ketrenos43f66a62005-03-25 12:31:53 -06007528 !list_empty(&priv->ieee->network_free_list)) {
7529 element = priv->ieee->network_free_list.next;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007530 network = list_entry(element, struct ieee80211_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007531 ipw_adhoc_create(priv, network);
7532 rates = &priv->rates;
7533 list_del(element);
7534 list_add_tail(&network->list, &priv->ieee->network_list);
7535 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007536 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007537
James Ketrenos43f66a62005-03-25 12:31:53 -06007538 /* If we reached the end of the list, then we don't have any valid
7539 * matching APs */
7540 if (!network) {
7541 ipw_debug_config(priv);
7542
James Ketrenosb095c382005-08-24 22:04:42 -05007543 if (!(priv->status & STATUS_SCANNING)) {
7544 if (!(priv->config & CFG_SPEED_SCAN))
7545 queue_delayed_work(priv->workqueue,
7546 &priv->request_scan,
7547 SCAN_INTERVAL);
7548 else
7549 queue_work(priv->workqueue,
7550 &priv->request_scan);
7551 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007552
James Ketrenosc848d0a2005-08-24 21:56:24 -05007553 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007554 }
7555
7556 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007557
7558 return 1;
7559}
7560
7561static void ipw_bg_associate(void *data)
7562{
7563 struct ipw_priv *priv = data;
7564 down(&priv->sem);
7565 ipw_associate(data);
7566 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06007567}
Jeff Garzikbf794512005-07-31 13:07:26 -04007568
James Ketrenosb095c382005-08-24 22:04:42 -05007569static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7570 struct sk_buff *skb)
7571{
7572 struct ieee80211_hdr *hdr;
7573 u16 fc;
7574
7575 hdr = (struct ieee80211_hdr *)skb->data;
7576 fc = le16_to_cpu(hdr->frame_ctl);
7577 if (!(fc & IEEE80211_FCTL_PROTECTED))
7578 return;
7579
7580 fc &= ~IEEE80211_FCTL_PROTECTED;
7581 hdr->frame_ctl = cpu_to_le16(fc);
7582 switch (priv->ieee->sec.level) {
7583 case SEC_LEVEL_3:
7584 /* Remove CCMP HDR */
7585 memmove(skb->data + IEEE80211_3ADDR_LEN,
7586 skb->data + IEEE80211_3ADDR_LEN + 8,
7587 skb->len - IEEE80211_3ADDR_LEN - 8);
Zhu Yia2d73e62005-07-13 12:24:51 -05007588 if (fc & IEEE80211_FCTL_MOREFRAGS)
7589 skb_trim(skb, skb->len - 16); /* 2*MIC */
7590 else
7591 skb_trim(skb, skb->len - 8); /* MIC */
James Ketrenosb095c382005-08-24 22:04:42 -05007592 break;
7593 case SEC_LEVEL_2:
7594 break;
7595 case SEC_LEVEL_1:
7596 /* Remove IV */
7597 memmove(skb->data + IEEE80211_3ADDR_LEN,
7598 skb->data + IEEE80211_3ADDR_LEN + 4,
7599 skb->len - IEEE80211_3ADDR_LEN - 4);
Zhu Yia2d73e62005-07-13 12:24:51 -05007600 if (fc & IEEE80211_FCTL_MOREFRAGS)
7601 skb_trim(skb, skb->len - 8); /* 2*ICV */
7602 else
7603 skb_trim(skb, skb->len - 4); /* ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007604 break;
7605 case SEC_LEVEL_0:
7606 break;
7607 default:
7608 printk(KERN_ERR "Unknow security level %d\n",
7609 priv->ieee->sec.level);
7610 break;
7611 }
7612}
7613
7614static void ipw_handle_data_packet(struct ipw_priv *priv,
7615 struct ipw_rx_mem_buffer *rxb,
7616 struct ieee80211_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007617{
7618 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7619
7620 /* We received data from the HW, so stop the watchdog */
7621 priv->net_dev->trans_start = jiffies;
7622
Jeff Garzikbf794512005-07-31 13:07:26 -04007623 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007624 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007625 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007626 skb_tailroom(rxb->skb))) {
7627 priv->ieee->stats.rx_errors++;
7628 priv->wstats.discard.misc++;
7629 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7630 return;
7631 } else if (unlikely(!netif_running(priv->net_dev))) {
7632 priv->ieee->stats.rx_dropped++;
7633 priv->wstats.discard.misc++;
7634 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7635 return;
7636 }
7637
7638 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007639 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007640
7641 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007642 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007643
7644 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7645
James Ketrenosb095c382005-08-24 22:04:42 -05007646 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
7647 if (!priv->ieee->host_decrypt)
7648 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7649
Jeff Garzikbf794512005-07-31 13:07:26 -04007650 if (!ieee80211_rx(priv->ieee, rxb->skb, stats))
James Ketrenos43f66a62005-03-25 12:31:53 -06007651 priv->ieee->stats.rx_errors++;
James Ketrenosa613bff2005-08-24 21:43:11 -05007652 else { /* ieee80211_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007653 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007654 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007655 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007656}
7657
James Ketrenosea2b26e2005-08-24 21:25:16 -05007658static inline int is_network_packet(struct ipw_priv *priv,
7659 struct ieee80211_hdr_4addr *header)
7660{
7661 /* Filter incoming packets to determine if they are targetted toward
7662 * this network, discarding packets coming from ourselves */
7663 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05007664 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007665 /* packets from our adapter are dropped (echo) */
7666 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
7667 return 0;
7668
James Ketrenosafbf30a2005-08-25 00:05:33 -05007669 /* multicast packets to our IBSS go through */
7670 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05007671 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007672
7673 /* packets to our adapter go through */
7674 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7675 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05007676
7677 case IW_MODE_INFRA: /* Header: Dest. | AP{BSSID} | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05007678 /* packets from our adapter are dropped (echo) */
7679 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
7680 return 0;
7681
James Ketrenosa613bff2005-08-24 21:43:11 -05007682 /* {broad,multi}cast packets to our IBSS go through */
James Ketrenosafbf30a2005-08-25 00:05:33 -05007683 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05007684 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
7685
7686 /* packets to our adapter go through */
7687 return !memcmp(header->addr1, priv->net_dev->dev_addr,
7688 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007689 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007690
James Ketrenosea2b26e2005-08-24 21:25:16 -05007691 return 1;
7692}
7693
James Ketrenosafbf30a2005-08-25 00:05:33 -05007694#define IPW_PACKET_RETRY_TIME HZ
7695
7696static inline int is_duplicate_packet(struct ipw_priv *priv,
7697 struct ieee80211_hdr_4addr *header)
7698{
7699 u16 fc = le16_to_cpu(header->frame_ctl);
7700 u16 sc = le16_to_cpu(header->seq_ctl);
7701 u16 seq = WLAN_GET_SEQ_SEQ(sc);
7702 u16 frag = WLAN_GET_SEQ_FRAG(sc);
7703 u16 *last_seq, *last_frag;
7704 unsigned long *last_time;
7705
7706 switch (priv->ieee->iw_mode) {
7707 case IW_MODE_ADHOC:
7708 {
7709 struct list_head *p;
7710 struct ipw_ibss_seq *entry = NULL;
7711 u8 *mac = header->addr2;
7712 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
7713
7714 __list_for_each(p, &priv->ibss_mac_hash[index]) {
7715 entry =
7716 list_entry(p, struct ipw_ibss_seq, list);
7717 if (!memcmp(entry->mac, mac, ETH_ALEN))
7718 break;
7719 }
7720 if (p == &priv->ibss_mac_hash[index]) {
7721 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
7722 if (!entry) {
7723 IPW_ERROR
7724 ("Cannot malloc new mac entry\n");
7725 return 0;
7726 }
7727 memcpy(entry->mac, mac, ETH_ALEN);
7728 entry->seq_num = seq;
7729 entry->frag_num = frag;
7730 entry->packet_time = jiffies;
7731 list_add(&entry->list,
7732 &priv->ibss_mac_hash[index]);
7733 return 0;
7734 }
7735 last_seq = &entry->seq_num;
7736 last_frag = &entry->frag_num;
7737 last_time = &entry->packet_time;
7738 break;
7739 }
7740 case IW_MODE_INFRA:
7741 last_seq = &priv->last_seq_num;
7742 last_frag = &priv->last_frag_num;
7743 last_time = &priv->last_packet_time;
7744 break;
7745 default:
7746 return 0;
7747 }
7748 if ((*last_seq == seq) &&
7749 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
7750 if (*last_frag == frag)
7751 goto drop;
7752 if (*last_frag + 1 != frag)
7753 /* out-of-order fragment */
7754 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007755 } else
7756 *last_seq = seq;
7757
Zhu Yif57ce7c2005-07-13 12:22:15 -05007758 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007759 *last_time = jiffies;
7760 return 0;
7761
7762 drop:
7763 BUG_ON(!(fc & IEEE80211_FCTL_RETRY));
7764 return 1;
7765}
7766
James Ketrenosb095c382005-08-24 22:04:42 -05007767static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
7768 struct ipw_rx_mem_buffer *rxb,
7769 struct ieee80211_rx_stats *stats)
7770{
7771 struct sk_buff *skb = rxb->skb;
7772 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
7773 struct ieee80211_hdr_4addr *header = (struct ieee80211_hdr_4addr *)
7774 (skb->data + IPW_RX_FRAME_SIZE);
7775
7776 ieee80211_rx_mgt(priv->ieee, header, stats);
7777
7778 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
7779 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7780 IEEE80211_STYPE_PROBE_RESP) ||
7781 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
7782 IEEE80211_STYPE_BEACON))) {
7783 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
7784 ipw_add_station(priv, header->addr2);
7785 }
7786
7787 if (priv->config & CFG_NET_STATS) {
7788 IPW_DEBUG_HC("sending stat packet\n");
7789
7790 /* Set the size of the skb to the size of the full
7791 * ipw header and 802.11 frame */
7792 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
7793 IPW_RX_FRAME_SIZE);
7794
7795 /* Advance past the ipw packet header to the 802.11 frame */
7796 skb_pull(skb, IPW_RX_FRAME_SIZE);
7797
7798 /* Push the ieee80211_rx_stats before the 802.11 frame */
7799 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
7800
7801 skb->dev = priv->ieee->dev;
7802
7803 /* Point raw at the ieee80211_stats */
7804 skb->mac.raw = skb->data;
7805
7806 skb->pkt_type = PACKET_OTHERHOST;
7807 skb->protocol = __constant_htons(ETH_P_80211_STATS);
7808 memset(skb->cb, 0, sizeof(rxb->skb->cb));
7809 netif_rx(skb);
7810 rxb->skb = NULL;
7811 }
7812}
7813
James Ketrenos43f66a62005-03-25 12:31:53 -06007814/*
7815 * Main entry function for recieving a packet with 80211 headers. This
7816 * should be called when ever the FW has notified us that there is a new
7817 * skb in the recieve queue.
7818 */
7819static void ipw_rx(struct ipw_priv *priv)
7820{
7821 struct ipw_rx_mem_buffer *rxb;
7822 struct ipw_rx_packet *pkt;
James Ketrenos0dacca12005-09-21 12:23:41 -05007823 struct ieee80211_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06007824 u32 r, w, i;
7825 u8 network_packet;
7826
James Ketrenosb095c382005-08-24 22:04:42 -05007827 r = ipw_read32(priv, IPW_RX_READ_INDEX);
7828 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
James Ketrenos43f66a62005-03-25 12:31:53 -06007829 i = (priv->rxq->processed + 1) % RX_QUEUE_SIZE;
7830
7831 while (i != r) {
7832 rxb = priv->rxq->queue[i];
7833#ifdef CONFIG_IPW_DEBUG
7834 if (unlikely(rxb == NULL)) {
7835 printk(KERN_CRIT "Queue not allocated!\n");
7836 break;
7837 }
7838#endif
7839 priv->rxq->queue[i] = NULL;
7840
7841 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007842 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06007843 PCI_DMA_FROMDEVICE);
7844
7845 pkt = (struct ipw_rx_packet *)rxb->skb->data;
7846 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
7847 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007848 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06007849
7850 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007851 case RX_FRAME_TYPE: /* 802.11 frame */ {
7852 struct ieee80211_rx_stats stats = {
James Ketrenosc848d0a2005-08-24 21:56:24 -05007853 .rssi =
7854 le16_to_cpu(pkt->u.frame.rssi_dbm) -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007855 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05007856 .signal =
7857 le16_to_cpu(pkt->u.frame.signal),
7858 .noise =
7859 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007860 .rate = pkt->u.frame.rate,
7861 .mac_time = jiffies,
7862 .received_channel =
7863 pkt->u.frame.received_channel,
7864 .freq =
7865 (pkt->u.frame.
7866 control & (1 << 0)) ?
7867 IEEE80211_24GHZ_BAND :
7868 IEEE80211_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05007869 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007870 };
James Ketrenos43f66a62005-03-25 12:31:53 -06007871
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007872 if (stats.rssi != 0)
7873 stats.mask |= IEEE80211_STATMASK_RSSI;
7874 if (stats.signal != 0)
7875 stats.mask |= IEEE80211_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007876 if (stats.noise != 0)
7877 stats.mask |= IEEE80211_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007878 if (stats.rate != 0)
7879 stats.mask |= IEEE80211_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06007880
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007881 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007882
James Ketrenosb095c382005-08-24 22:04:42 -05007883#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007884 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7885 ipw_handle_data_packet(priv, rxb,
7886 &stats);
7887 break;
7888 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007889#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04007890
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007891 header =
James Ketrenos0dacca12005-09-21 12:23:41 -05007892 (struct ieee80211_hdr_4addr *)(rxb->skb->
7893 data +
7894 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007895 /* TODO: Check Ad-Hoc dest/source and make sure
7896 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04007897 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06007898 * frame control of the packet and disregard
7899 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06007900
James Ketrenosea2b26e2005-08-24 21:25:16 -05007901 network_packet =
7902 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007903 if (network_packet && priv->assoc_network) {
7904 priv->assoc_network->stats.rssi =
7905 stats.rssi;
7906 average_add(&priv->average_rssi,
7907 stats.rssi);
7908 priv->last_rx_rssi = stats.rssi;
7909 }
7910
7911 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05007912 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007913
James Ketrenosa613bff2005-08-24 21:43:11 -05007914 if (le16_to_cpu(pkt->u.frame.length) <
7915 frame_hdr_len(header)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007916 IPW_DEBUG_DROP
7917 ("Received packet is too small. "
7918 "Dropping.\n");
7919 priv->ieee->stats.rx_errors++;
7920 priv->wstats.discard.misc++;
7921 break;
7922 }
7923
James Ketrenosa613bff2005-08-24 21:43:11 -05007924 switch (WLAN_FC_GET_TYPE
7925 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05007926
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007927 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05007928 ipw_handle_mgmt_packet(priv, rxb,
7929 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007930 break;
7931
7932 case IEEE80211_FTYPE_CTL:
7933 break;
7934
7935 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05007936 if (unlikely(!network_packet ||
7937 is_duplicate_packet(priv,
7938 header)))
7939 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007940 IPW_DEBUG_DROP("Dropping: "
7941 MAC_FMT ", "
7942 MAC_FMT ", "
7943 MAC_FMT "\n",
7944 MAC_ARG(header->
7945 addr1),
7946 MAC_ARG(header->
7947 addr2),
7948 MAC_ARG(header->
7949 addr3));
James Ketrenosb095c382005-08-24 22:04:42 -05007950 break;
7951 }
7952
7953 ipw_handle_data_packet(priv, rxb,
7954 &stats);
7955
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007956 break;
7957 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007958 break;
7959 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007960
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007961 case RX_HOST_NOTIFICATION_TYPE:{
7962 IPW_DEBUG_RX
7963 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007964 pkt->u.notification.subtype,
7965 pkt->u.notification.flags,
7966 pkt->u.notification.size);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007967 ipw_rx_notification(priv, &pkt->u.notification);
7968 break;
7969 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007970
7971 default:
7972 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
7973 pkt->header.message_type);
7974 break;
7975 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007976
7977 /* For now we just don't re-use anything. We can tweak this
7978 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06007979 * fail to Rx correctly */
7980 if (rxb->skb != NULL) {
7981 dev_kfree_skb_any(rxb->skb);
7982 rxb->skb = NULL;
7983 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007984
James Ketrenos43f66a62005-03-25 12:31:53 -06007985 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05007986 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007987 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04007988
James Ketrenos43f66a62005-03-25 12:31:53 -06007989 i = (i + 1) % RX_QUEUE_SIZE;
7990 }
7991
7992 /* Backtrack one entry */
7993 priv->rxq->processed = (i ? i : RX_QUEUE_SIZE) - 1;
7994
7995 ipw_rx_queue_restock(priv);
7996}
7997
James Ketrenosafbf30a2005-08-25 00:05:33 -05007998#define DEFAULT_RTS_THRESHOLD 2304U
7999#define MIN_RTS_THRESHOLD 1U
8000#define MAX_RTS_THRESHOLD 2304U
8001#define DEFAULT_BEACON_INTERVAL 100U
8002#define DEFAULT_SHORT_RETRY_LIMIT 7U
8003#define DEFAULT_LONG_RETRY_LIMIT 4U
8004
8005static int ipw_sw_reset(struct ipw_priv *priv, int init)
8006{
8007 int band, modulation;
8008 int old_mode = priv->ieee->iw_mode;
8009
8010 /* Initialize module parameter values here */
8011 priv->config = 0;
8012
8013 /* We default to disabling the LED code as right now it causes
8014 * too many systems to lock up... */
8015 if (!led)
8016 priv->config |= CFG_NO_LED;
8017
8018 if (associate)
8019 priv->config |= CFG_ASSOCIATE;
8020 else
8021 IPW_DEBUG_INFO("Auto associate disabled.\n");
8022
8023 if (auto_create)
8024 priv->config |= CFG_ADHOC_CREATE;
8025 else
8026 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8027
8028 if (disable) {
8029 priv->status |= STATUS_RF_KILL_SW;
8030 IPW_DEBUG_INFO("Radio disabled.\n");
8031 }
8032
8033 if (channel != 0) {
8034 priv->config |= CFG_STATIC_CHANNEL;
8035 priv->channel = channel;
8036 IPW_DEBUG_INFO("Bind to static channel %d\n", channel);
8037 /* TODO: Validate that provided channel is in range */
8038 }
8039#ifdef CONFIG_IPW_QOS
8040 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8041 burst_duration_CCK, burst_duration_OFDM);
8042#endif /* CONFIG_IPW_QOS */
8043
8044 switch (mode) {
8045 case 1:
8046 priv->ieee->iw_mode = IW_MODE_ADHOC;
8047 priv->net_dev->type = ARPHRD_ETHER;
8048
8049 break;
8050#ifdef CONFIG_IPW2200_MONITOR
8051 case 2:
8052 priv->ieee->iw_mode = IW_MODE_MONITOR;
8053 priv->net_dev->type = ARPHRD_IEEE80211;
8054 break;
8055#endif
8056 default:
8057 case 0:
8058 priv->net_dev->type = ARPHRD_ETHER;
8059 priv->ieee->iw_mode = IW_MODE_INFRA;
8060 break;
8061 }
8062
8063 if (hwcrypto) {
8064 priv->ieee->host_encrypt = 0;
8065 priv->ieee->host_encrypt_msdu = 0;
8066 priv->ieee->host_decrypt = 0;
8067 }
8068 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
8069
8070 if ((priv->pci_dev->device == 0x4223) ||
8071 (priv->pci_dev->device == 0x4224)) {
8072 if (init)
8073 printk(KERN_INFO DRV_NAME
8074 ": Detected Intel PRO/Wireless 2915ABG Network "
8075 "Connection\n");
8076 priv->ieee->abg_true = 1;
8077 band = IEEE80211_52GHZ_BAND | IEEE80211_24GHZ_BAND;
8078 modulation = IEEE80211_OFDM_MODULATION |
8079 IEEE80211_CCK_MODULATION;
8080 priv->adapter = IPW_2915ABG;
8081 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
8082 } else {
8083 if (init)
8084 printk(KERN_INFO DRV_NAME
8085 ": Detected Intel PRO/Wireless 2200BG Network "
8086 "Connection\n");
8087
8088 priv->ieee->abg_true = 0;
8089 band = IEEE80211_24GHZ_BAND;
8090 modulation = IEEE80211_OFDM_MODULATION |
8091 IEEE80211_CCK_MODULATION;
8092 priv->adapter = IPW_2200BG;
8093 priv->ieee->mode = IEEE_G | IEEE_B;
8094 }
8095
8096 priv->ieee->freq_band = band;
8097 priv->ieee->modulation = modulation;
8098
8099 priv->rates_mask = IEEE80211_DEFAULT_RATES_MASK;
8100
8101 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8102 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
8103
8104 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8105 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8106 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
8107
8108 /* If power management is turned on, default to AC mode */
8109 priv->power_mode = IPW_POWER_AC;
8110 priv->tx_power = IPW_TX_POWER_DEFAULT;
8111
8112 return old_mode == priv->ieee->mode;
8113}
8114
James Ketrenos43f66a62005-03-25 12:31:53 -06008115/*
8116 * This file defines the Wireless Extension handlers. It does not
8117 * define any methods of hardware manipulation and relies on the
8118 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008119 *
8120 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008121 * function used to poll the hardware vs. making unecessary calls.
8122 *
8123 */
8124
Jeff Garzikbf794512005-07-31 13:07:26 -04008125static int ipw_wx_get_name(struct net_device *dev,
8126 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008127 union iwreq_data *wrqu, char *extra)
8128{
8129 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008130 down(&priv->sem);
8131 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -05008132 strcpy(wrqu->name, "radio off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008133 else if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06008134 strcpy(wrqu->name, "unassociated");
Jeff Garzikbf794512005-07-31 13:07:26 -04008135 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008136 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c",
8137 ipw_modes[priv->assoc_request.ieee_mode]);
8138 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008139 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008140 return 0;
8141}
8142
8143static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8144{
8145 if (channel == 0) {
8146 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8147 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008148 IPW_DEBUG_ASSOC("Attempting to associate with new "
8149 "parameters.\n");
8150 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008151 return 0;
8152 }
8153
8154 priv->config |= CFG_STATIC_CHANNEL;
8155
8156 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008157 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8158 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008159 return 0;
8160 }
8161
8162 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8163 priv->channel = channel;
8164
James Ketrenosb095c382005-08-24 22:04:42 -05008165#ifdef CONFIG_IPW2200_MONITOR
8166 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008167 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008168 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008169 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008170 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008171 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008172 }
8173
8174 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8175 udelay(10);
8176
8177 if (priv->status & STATUS_SCANNING)
8178 IPW_DEBUG_SCAN("Still scanning...\n");
8179 else
8180 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8181 1000 - i);
8182
8183 return 0;
8184 }
8185#endif /* CONFIG_IPW2200_MONITOR */
8186
James Ketrenosc848d0a2005-08-24 21:56:24 -05008187 /* Network configuration changed -- force [re]association */
8188 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8189 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008190 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008191
8192 return 0;
8193}
8194
Jeff Garzikbf794512005-07-31 13:07:26 -04008195static int ipw_wx_set_freq(struct net_device *dev,
8196 struct iw_request_info *info,
8197 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008198{
8199 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008200 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008201 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008202 int ret = 0, i;
James Ketrenosb095c382005-08-24 22:04:42 -05008203 u8 channel;
8204
8205 if (fwrq->m == 0) {
8206 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
8207 down(&priv->sem);
8208 ret = ipw_set_channel(priv, 0);
8209 up(&priv->sem);
8210 return ret;
8211 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008212 /* if setting by freq convert to channel */
8213 if (fwrq->e == 1) {
James Ketrenosb095c382005-08-24 22:04:42 -05008214 channel = ieee80211_freq_to_channel(priv->ieee, fwrq->m);
8215 if (channel == 0)
8216 return -EINVAL;
8217 } else
8218 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008219
James Ketrenosb095c382005-08-24 22:04:42 -05008220 if (!ieee80211_is_valid_channel(priv->ieee, channel))
8221 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008222
James Ketrenosafbf30a2005-08-25 00:05:33 -05008223 if (priv->ieee->iw_mode == IW_MODE_ADHOC && priv->ieee->mode & IEEE_A) {
8224 i = ieee80211_channel_to_index(priv->ieee, channel);
8225 if (i == -1)
8226 return -EINVAL;
8227 if (geo->a[i].flags & IEEE80211_CH_PASSIVE_ONLY) {
8228 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8229 return -EINVAL;
8230 }
8231 }
8232
James Ketrenos43f66a62005-03-25 12:31:53 -06008233 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008234 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008235 ret = ipw_set_channel(priv, channel);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008236 up(&priv->sem);
8237 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008238}
8239
Jeff Garzikbf794512005-07-31 13:07:26 -04008240static int ipw_wx_get_freq(struct net_device *dev,
8241 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008242 union iwreq_data *wrqu, char *extra)
8243{
8244 struct ipw_priv *priv = ieee80211_priv(dev);
8245
8246 wrqu->freq.e = 0;
8247
8248 /* If we are associated, trying to associate, or have a statically
8249 * configured CHANNEL then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008250 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008251 if (priv->config & CFG_STATIC_CHANNEL ||
8252 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED))
8253 wrqu->freq.m = priv->channel;
Jeff Garzikbf794512005-07-31 13:07:26 -04008254 else
James Ketrenos43f66a62005-03-25 12:31:53 -06008255 wrqu->freq.m = 0;
8256
James Ketrenosc848d0a2005-08-24 21:56:24 -05008257 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008258 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8259 return 0;
8260}
8261
Jeff Garzikbf794512005-07-31 13:07:26 -04008262static int ipw_wx_set_mode(struct net_device *dev,
8263 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008264 union iwreq_data *wrqu, char *extra)
8265{
8266 struct ipw_priv *priv = ieee80211_priv(dev);
8267 int err = 0;
8268
8269 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06008270
8271 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008272#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008273 case IW_MODE_MONITOR:
8274#endif
8275 case IW_MODE_ADHOC:
8276 case IW_MODE_INFRA:
8277 break;
8278 case IW_MODE_AUTO:
8279 wrqu->mode = IW_MODE_INFRA;
8280 break;
8281 default:
8282 return -EINVAL;
8283 }
James Ketrenosb095c382005-08-24 22:04:42 -05008284 if (wrqu->mode == priv->ieee->iw_mode)
8285 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008286
James Ketrenosb095c382005-08-24 22:04:42 -05008287 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008288
8289 ipw_sw_reset(priv, 0);
8290
James Ketrenosb095c382005-08-24 22:04:42 -05008291#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008292 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008293 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008294
8295 if (wrqu->mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008296 priv->net_dev->type = ARPHRD_IEEE80211;
James Ketrenosb095c382005-08-24 22:04:42 -05008297#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008298
Jeff Garzikbf794512005-07-31 13:07:26 -04008299 /* Free the existing firmware and reset the fw_loaded
James Ketrenos43f66a62005-03-25 12:31:53 -06008300 * flag so ipw_load() will bring in the new firmawre */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008301 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008302
8303 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008304
James Ketrenosc848d0a2005-08-24 21:56:24 -05008305 queue_work(priv->workqueue, &priv->adapter_restart);
8306 up(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008307 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008308}
8309
Jeff Garzikbf794512005-07-31 13:07:26 -04008310static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008311 struct iw_request_info *info,
8312 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008313{
8314 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008315 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008316 wrqu->mode = priv->ieee->iw_mode;
8317 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008318 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008319 return 0;
8320}
8321
James Ketrenos43f66a62005-03-25 12:31:53 -06008322/* Values are in microsecond */
8323static const s32 timeout_duration[] = {
8324 350000,
8325 250000,
8326 75000,
8327 37000,
8328 25000,
8329};
8330
8331static const s32 period_duration[] = {
8332 400000,
8333 700000,
8334 1000000,
8335 1000000,
8336 1000000
8337};
8338
Jeff Garzikbf794512005-07-31 13:07:26 -04008339static int ipw_wx_get_range(struct net_device *dev,
8340 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008341 union iwreq_data *wrqu, char *extra)
8342{
8343 struct ipw_priv *priv = ieee80211_priv(dev);
8344 struct iw_range *range = (struct iw_range *)extra;
James Ketrenosb095c382005-08-24 22:04:42 -05008345 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
8346 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008347
8348 wrqu->data.length = sizeof(*range);
8349 memset(range, 0, sizeof(*range));
8350
8351 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008352 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008353
8354 range->max_qual.qual = 100;
8355 /* TODO: Find real max RSSI and stick here */
8356 range->max_qual.level = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008357 range->max_qual.noise = priv->ieee->worst_rssi + 0x100;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008358 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008359
8360 range->avg_qual.qual = 70;
8361 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008362 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008363 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008364 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008365 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008366 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008367
Jeff Garzikbf794512005-07-31 13:07:26 -04008368 for (i = 0; i < range->num_bitrates; i++)
8369 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008370 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008371
James Ketrenos43f66a62005-03-25 12:31:53 -06008372 range->max_rts = DEFAULT_RTS_THRESHOLD;
8373 range->min_frag = MIN_FRAG_THRESHOLD;
8374 range->max_frag = MAX_FRAG_THRESHOLD;
8375
8376 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008377 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008378 range->num_encoding_sizes = 2;
8379 range->max_encoding_tokens = WEP_KEYS;
8380
8381 /* Set the Wireless Extension versions */
8382 range->we_version_compiled = WIRELESS_EXT;
8383 range->we_version_source = 16;
8384
James Ketrenosb095c382005-08-24 22:04:42 -05008385 i = 0;
8386 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
8387 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES;
8388 i++, j++) {
8389 range->freq[i].i = geo->bg[j].channel;
8390 range->freq[i].m = geo->bg[j].freq * 100000;
8391 range->freq[i].e = 1;
8392 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008393 }
James Ketrenosb095c382005-08-24 22:04:42 -05008394
8395 if (priv->ieee->mode & IEEE_A) {
8396 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES;
8397 i++, j++) {
8398 range->freq[i].i = geo->a[j].channel;
8399 range->freq[i].m = geo->a[j].freq * 100000;
8400 range->freq[i].e = 1;
8401 }
8402 }
8403
8404 range->num_channels = i;
8405 range->num_frequency = i;
8406
James Ketrenosc848d0a2005-08-24 21:56:24 -05008407 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008408 IPW_DEBUG_WX("GET Range\n");
8409 return 0;
8410}
8411
Jeff Garzikbf794512005-07-31 13:07:26 -04008412static int ipw_wx_set_wap(struct net_device *dev,
8413 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008414 union iwreq_data *wrqu, char *extra)
8415{
8416 struct ipw_priv *priv = ieee80211_priv(dev);
8417
8418 static const unsigned char any[] = {
8419 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
8420 };
8421 static const unsigned char off[] = {
8422 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
8423 };
8424
Jeff Garzikbf794512005-07-31 13:07:26 -04008425 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008426 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008427 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008428 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
8429 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8430 /* we disable mandatory BSSID association */
8431 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8432 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008433 IPW_DEBUG_ASSOC("Attempting to associate with new "
8434 "parameters.\n");
8435 ipw_associate(priv);
8436 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008437 return 0;
8438 }
8439
8440 priv->config |= CFG_STATIC_BSSID;
8441 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
8442 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008443 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008444 return 0;
8445 }
8446
8447 IPW_DEBUG_WX("Setting mandatory BSSID to " MAC_FMT "\n",
8448 MAC_ARG(wrqu->ap_addr.sa_data));
8449
8450 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8451
James Ketrenosc848d0a2005-08-24 21:56:24 -05008452 /* Network configuration changed -- force [re]association */
8453 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8454 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008455 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008456
James Ketrenosc848d0a2005-08-24 21:56:24 -05008457 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008458 return 0;
8459}
8460
Jeff Garzikbf794512005-07-31 13:07:26 -04008461static int ipw_wx_get_wap(struct net_device *dev,
8462 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008463 union iwreq_data *wrqu, char *extra)
8464{
8465 struct ipw_priv *priv = ieee80211_priv(dev);
8466 /* If we are associated, trying to associate, or have a statically
8467 * configured BSSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008468 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04008469 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008470 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8471 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008472 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008473 } else
8474 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
8475
8476 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
8477 MAC_ARG(wrqu->ap_addr.sa_data));
James Ketrenosc848d0a2005-08-24 21:56:24 -05008478 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008479 return 0;
8480}
8481
Jeff Garzikbf794512005-07-31 13:07:26 -04008482static int ipw_wx_set_essid(struct net_device *dev,
8483 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008484 union iwreq_data *wrqu, char *extra)
8485{
8486 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008487 char *essid = ""; /* ANY */
James Ketrenos43f66a62005-03-25 12:31:53 -06008488 int length = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008489 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008490 if (wrqu->essid.flags && wrqu->essid.length) {
8491 length = wrqu->essid.length - 1;
8492 essid = extra;
8493 }
8494 if (length == 0) {
8495 IPW_DEBUG_WX("Setting ESSID to ANY\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008496 if ((priv->config & CFG_STATIC_ESSID) &&
8497 !(priv->status & (STATUS_ASSOCIATED |
8498 STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008499 IPW_DEBUG_ASSOC("Attempting to associate with new "
8500 "parameters.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008501 priv->config &= ~CFG_STATIC_ESSID;
James Ketrenos43f66a62005-03-25 12:31:53 -06008502 ipw_associate(priv);
8503 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008504 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008505 return 0;
8506 }
8507
8508 length = min(length, IW_ESSID_MAX_SIZE);
8509
8510 priv->config |= CFG_STATIC_ESSID;
8511
8512 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
8513 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008514 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008515 return 0;
8516 }
8517
8518 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
8519 length);
8520
8521 priv->essid_len = length;
8522 memcpy(priv->essid, essid, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04008523
James Ketrenosc848d0a2005-08-24 21:56:24 -05008524 /* Network configuration changed -- force [re]association */
8525 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
8526 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008527 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008528
James Ketrenosc848d0a2005-08-24 21:56:24 -05008529 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008530 return 0;
8531}
8532
Jeff Garzikbf794512005-07-31 13:07:26 -04008533static int ipw_wx_get_essid(struct net_device *dev,
8534 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008535 union iwreq_data *wrqu, char *extra)
8536{
8537 struct ipw_priv *priv = ieee80211_priv(dev);
8538
8539 /* If we are associated, trying to associate, or have a statically
8540 * configured ESSID then return that; otherwise return ANY */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008541 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008542 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04008543 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8544 IPW_DEBUG_WX("Getting essid: '%s'\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008545 escape_essid(priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04008546 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06008547 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008548 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008549 } else {
8550 IPW_DEBUG_WX("Getting essid: ANY\n");
8551 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008552 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06008553 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05008554 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008555 return 0;
8556}
8557
Jeff Garzikbf794512005-07-31 13:07:26 -04008558static int ipw_wx_set_nick(struct net_device *dev,
8559 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008560 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008561{
James Ketrenos43f66a62005-03-25 12:31:53 -06008562 struct ipw_priv *priv = ieee80211_priv(dev);
8563
8564 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
8565 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
8566 return -E2BIG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008567 down(&priv->sem);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008568 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06008569 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008570 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06008571 IPW_DEBUG_TRACE("<<\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008572 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008573 return 0;
8574
8575}
8576
Jeff Garzikbf794512005-07-31 13:07:26 -04008577static int ipw_wx_get_nick(struct net_device *dev,
8578 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008579 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008580{
James Ketrenos43f66a62005-03-25 12:31:53 -06008581 struct ipw_priv *priv = ieee80211_priv(dev);
8582 IPW_DEBUG_WX("Getting nick\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008583 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008584 wrqu->data.length = strlen(priv->nick) + 1;
8585 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008586 wrqu->data.flags = 1; /* active */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008587 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008588 return 0;
8589}
8590
James Ketrenos43f66a62005-03-25 12:31:53 -06008591static int ipw_wx_set_rate(struct net_device *dev,
8592 struct iw_request_info *info,
8593 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008594{
James Ketrenosea2b26e2005-08-24 21:25:16 -05008595 /* TODO: We should use semaphores or locks for access to priv */
8596 struct ipw_priv *priv = ieee80211_priv(dev);
8597 u32 target_rate = wrqu->bitrate.value;
8598 u32 fixed, mask;
8599
8600 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
8601 /* value = X, fixed = 1 means only rate X */
8602 /* value = X, fixed = 0 means all rates lower equal X */
8603
8604 if (target_rate == -1) {
8605 fixed = 0;
8606 mask = IEEE80211_DEFAULT_RATES_MASK;
8607 /* Now we should reassociate */
8608 goto apply;
8609 }
8610
8611 mask = 0;
8612 fixed = wrqu->bitrate.fixed;
8613
8614 if (target_rate == 1000000 || !fixed)
8615 mask |= IEEE80211_CCK_RATE_1MB_MASK;
8616 if (target_rate == 1000000)
8617 goto apply;
8618
8619 if (target_rate == 2000000 || !fixed)
8620 mask |= IEEE80211_CCK_RATE_2MB_MASK;
8621 if (target_rate == 2000000)
8622 goto apply;
8623
8624 if (target_rate == 5500000 || !fixed)
8625 mask |= IEEE80211_CCK_RATE_5MB_MASK;
8626 if (target_rate == 5500000)
8627 goto apply;
8628
8629 if (target_rate == 6000000 || !fixed)
8630 mask |= IEEE80211_OFDM_RATE_6MB_MASK;
8631 if (target_rate == 6000000)
8632 goto apply;
8633
8634 if (target_rate == 9000000 || !fixed)
8635 mask |= IEEE80211_OFDM_RATE_9MB_MASK;
8636 if (target_rate == 9000000)
8637 goto apply;
8638
8639 if (target_rate == 11000000 || !fixed)
8640 mask |= IEEE80211_CCK_RATE_11MB_MASK;
8641 if (target_rate == 11000000)
8642 goto apply;
8643
8644 if (target_rate == 12000000 || !fixed)
8645 mask |= IEEE80211_OFDM_RATE_12MB_MASK;
8646 if (target_rate == 12000000)
8647 goto apply;
8648
8649 if (target_rate == 18000000 || !fixed)
8650 mask |= IEEE80211_OFDM_RATE_18MB_MASK;
8651 if (target_rate == 18000000)
8652 goto apply;
8653
8654 if (target_rate == 24000000 || !fixed)
8655 mask |= IEEE80211_OFDM_RATE_24MB_MASK;
8656 if (target_rate == 24000000)
8657 goto apply;
8658
8659 if (target_rate == 36000000 || !fixed)
8660 mask |= IEEE80211_OFDM_RATE_36MB_MASK;
8661 if (target_rate == 36000000)
8662 goto apply;
8663
8664 if (target_rate == 48000000 || !fixed)
8665 mask |= IEEE80211_OFDM_RATE_48MB_MASK;
8666 if (target_rate == 48000000)
8667 goto apply;
8668
8669 if (target_rate == 54000000 || !fixed)
8670 mask |= IEEE80211_OFDM_RATE_54MB_MASK;
8671 if (target_rate == 54000000)
8672 goto apply;
8673
8674 IPW_DEBUG_WX("invalid rate specified, returning error\n");
8675 return -EINVAL;
8676
8677 apply:
8678 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
8679 mask, fixed ? "fixed" : "sub-rates");
James Ketrenosc848d0a2005-08-24 21:56:24 -05008680 down(&priv->sem);
James Ketrenosb095c382005-08-24 22:04:42 -05008681 if (mask == IEEE80211_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05008682 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05008683 ipw_set_fixed_rate(priv, priv->ieee->mode);
8684 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05008685 priv->config |= CFG_FIXED_RATE;
8686
James Ketrenosc848d0a2005-08-24 21:56:24 -05008687 if (priv->rates_mask == mask) {
8688 IPW_DEBUG_WX("Mask set to current mask.\n");
8689 up(&priv->sem);
8690 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05008691 }
8692
James Ketrenosc848d0a2005-08-24 21:56:24 -05008693 priv->rates_mask = mask;
8694
8695 /* Network configuration changed -- force [re]association */
8696 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
8697 if (!ipw_disassociate(priv))
8698 ipw_associate(priv);
8699
8700 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008701 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008702}
8703
Jeff Garzikbf794512005-07-31 13:07:26 -04008704static int ipw_wx_get_rate(struct net_device *dev,
8705 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008706 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008707{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008708 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008709 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008710 wrqu->bitrate.value = priv->last_rate;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008711 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008712 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
8713 return 0;
8714}
8715
Jeff Garzikbf794512005-07-31 13:07:26 -04008716static int ipw_wx_set_rts(struct net_device *dev,
8717 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008718 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008719{
James Ketrenos43f66a62005-03-25 12:31:53 -06008720 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008721 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008722 if (wrqu->rts.disabled)
8723 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8724 else {
8725 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05008726 wrqu->rts.value > MAX_RTS_THRESHOLD) {
8727 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008728 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008729 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008730 priv->rts_threshold = wrqu->rts.value;
8731 }
8732
8733 ipw_send_rts_threshold(priv, priv->rts_threshold);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008734 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008735 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
8736 return 0;
8737}
8738
Jeff Garzikbf794512005-07-31 13:07:26 -04008739static int ipw_wx_get_rts(struct net_device *dev,
8740 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008741 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008742{
James Ketrenos43f66a62005-03-25 12:31:53 -06008743 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008744 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008745 wrqu->rts.value = priv->rts_threshold;
8746 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008747 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008748 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008749 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
8750 return 0;
8751}
8752
Jeff Garzikbf794512005-07-31 13:07:26 -04008753static int ipw_wx_set_txpow(struct net_device *dev,
8754 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008755 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008756{
James Ketrenos43f66a62005-03-25 12:31:53 -06008757 struct ipw_priv *priv = ieee80211_priv(dev);
Liu Hong8400a1c2005-07-13 12:27:17 -05008758 const struct ieee80211_geo *geo = ieee80211_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008759 struct ipw_tx_power tx_power;
8760 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008761
James Ketrenosc848d0a2005-08-24 21:56:24 -05008762 down(&priv->sem);
8763 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
8764 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008765 return -EINPROGRESS;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008766 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008767
James Ketrenosb095c382005-08-24 22:04:42 -05008768 if (!wrqu->power.fixed)
8769 wrqu->power.value = IPW_TX_POWER_DEFAULT;
8770
James Ketrenosc848d0a2005-08-24 21:56:24 -05008771 if (wrqu->power.flags != IW_TXPOW_DBM) {
8772 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008773 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008774 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008775
James Ketrenosb095c382005-08-24 22:04:42 -05008776 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05008777 (wrqu->power.value < IPW_TX_POWER_MIN)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05008778 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008779 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008780 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008781
8782 priv->tx_power = wrqu->power.value;
8783
8784 memset(&tx_power, 0, sizeof(tx_power));
8785
8786 /* configure device for 'G' band */
8787 tx_power.ieee_mode = IPW_G_MODE;
Liu Hong8400a1c2005-07-13 12:27:17 -05008788 tx_power.num_channels = geo->bg_channels;
8789 for (i = 0; i < geo->bg_channels; i++) {
8790 int max_power = geo->bg[i].max_power;
8791
James Ketrenos43f66a62005-03-25 12:31:53 -06008792 tx_power.channels_tx_power[i].channel_number = i + 1;
Liu Hong8400a1c2005-07-13 12:27:17 -05008793 if (max_power != 0 && priv->tx_power > max_power)
8794 tx_power.channels_tx_power[i].tx_power = max_power;
8795 else
8796 tx_power.channels_tx_power[i].tx_power = priv->tx_power;
James Ketrenos43f66a62005-03-25 12:31:53 -06008797 }
8798 if (ipw_send_tx_power(priv, &tx_power))
8799 goto error;
8800
8801 /* configure device to also handle 'B' band */
8802 tx_power.ieee_mode = IPW_B_MODE;
8803 if (ipw_send_tx_power(priv, &tx_power))
8804 goto error;
8805
Liu Hong8400a1c2005-07-13 12:27:17 -05008806 /* configure device to also handle 'A' band */
8807 if (priv->ieee->abg_true) {
8808 tx_power.ieee_mode = IPW_A_MODE;
8809 tx_power.num_channels = geo->a_channels;
8810 for (i = 0; i < geo->a_channels; i++) {
8811 int max_power = geo->a[i].max_power;
8812
8813 tx_power.channels_tx_power[i].channel_number = i + 1;
8814 if (max_power != 0 && priv->tx_power > max_power)
8815 tx_power.channels_tx_power[i].tx_power =
8816 max_power;
8817 else
8818 tx_power.channels_tx_power[i].tx_power =
8819 priv->tx_power;
8820 }
8821 if (ipw_send_tx_power(priv, &tx_power))
8822 goto error;
8823 }
8824
James Ketrenosc848d0a2005-08-24 21:56:24 -05008825 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008826 return 0;
8827
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008828 error:
James Ketrenosc848d0a2005-08-24 21:56:24 -05008829 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008830 return -EIO;
8831}
8832
Jeff Garzikbf794512005-07-31 13:07:26 -04008833static int ipw_wx_get_txpow(struct net_device *dev,
8834 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008835 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008836{
James Ketrenos43f66a62005-03-25 12:31:53 -06008837 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008838 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008839 wrqu->power.value = priv->tx_power;
8840 wrqu->power.fixed = 1;
8841 wrqu->power.flags = IW_TXPOW_DBM;
8842 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008843 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008844
Jeff Garzikbf794512005-07-31 13:07:26 -04008845 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008846 wrqu->power.disabled ? "ON" : "OFF", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06008847
8848 return 0;
8849}
8850
Jeff Garzikbf794512005-07-31 13:07:26 -04008851static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008852 struct iw_request_info *info,
8853 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008854{
8855 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008856 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008857 if (wrqu->frag.disabled)
8858 priv->ieee->fts = DEFAULT_FTS;
8859 else {
8860 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05008861 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
8862 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008863 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05008864 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008865
James Ketrenos43f66a62005-03-25 12:31:53 -06008866 priv->ieee->fts = wrqu->frag.value & ~0x1;
8867 }
8868
8869 ipw_send_frag_threshold(priv, wrqu->frag.value);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008870 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008871 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
8872 return 0;
8873}
8874
Jeff Garzikbf794512005-07-31 13:07:26 -04008875static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008876 struct iw_request_info *info,
8877 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008878{
8879 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008880 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008881 wrqu->frag.value = priv->ieee->fts;
8882 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008883 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008884 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06008885 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
8886
8887 return 0;
8888}
8889
Jeff Garzikbf794512005-07-31 13:07:26 -04008890static int ipw_wx_set_retry(struct net_device *dev,
8891 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008892 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008893{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008894 struct ipw_priv *priv = ieee80211_priv(dev);
8895
8896 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
8897 return -EINVAL;
8898
8899 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
8900 return 0;
8901
8902 if (wrqu->retry.value < 0 || wrqu->retry.value > 255)
8903 return -EINVAL;
8904
8905 down(&priv->sem);
8906 if (wrqu->retry.flags & IW_RETRY_MIN)
8907 priv->short_retry_limit = (u8) wrqu->retry.value;
8908 else if (wrqu->retry.flags & IW_RETRY_MAX)
8909 priv->long_retry_limit = (u8) wrqu->retry.value;
8910 else {
8911 priv->short_retry_limit = (u8) wrqu->retry.value;
8912 priv->long_retry_limit = (u8) wrqu->retry.value;
8913 }
8914
8915 ipw_send_retry_limit(priv, priv->short_retry_limit,
8916 priv->long_retry_limit);
8917 up(&priv->sem);
8918 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
8919 priv->short_retry_limit, priv->long_retry_limit);
8920 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008921}
8922
Jeff Garzikbf794512005-07-31 13:07:26 -04008923static int ipw_wx_get_retry(struct net_device *dev,
8924 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008925 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04008926{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008927 struct ipw_priv *priv = ieee80211_priv(dev);
8928
8929 down(&priv->sem);
8930 wrqu->retry.disabled = 0;
8931
8932 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
8933 up(&priv->sem);
8934 return -EINVAL;
8935 }
8936
8937 if (wrqu->retry.flags & IW_RETRY_MAX) {
8938 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
8939 wrqu->retry.value = priv->long_retry_limit;
8940 } else if (wrqu->retry.flags & IW_RETRY_MIN) {
8941 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
8942 wrqu->retry.value = priv->short_retry_limit;
8943 } else {
8944 wrqu->retry.flags = IW_RETRY_LIMIT;
8945 wrqu->retry.value = priv->short_retry_limit;
8946 }
8947 up(&priv->sem);
8948
8949 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
8950
8951 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008952}
8953
James Ketrenosafbf30a2005-08-25 00:05:33 -05008954#if WIRELESS_EXT > 17
8955static int ipw_request_direct_scan(struct ipw_priv *priv, char *essid,
8956 int essid_len)
8957{
8958 struct ipw_scan_request_ext scan;
8959 int err = 0, scan_type;
8960
8961 down(&priv->sem);
8962
8963 if (priv->status & STATUS_RF_KILL_MASK) {
8964 IPW_DEBUG_HC("Aborting scan due to RF kill activation\n");
8965 priv->status |= STATUS_SCAN_PENDING;
8966 goto done;
8967 }
8968
8969 IPW_DEBUG_HC("starting request direct scan!\n");
8970
8971 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
8972 err = wait_event_interruptible(priv->wait_state,
8973 !(priv->
8974 status & (STATUS_SCANNING |
8975 STATUS_SCAN_ABORTING)));
8976 if (err) {
8977 IPW_DEBUG_HC("aborting direct scan");
8978 goto done;
8979 }
8980 }
8981 memset(&scan, 0, sizeof(scan));
8982
8983 if (priv->config & CFG_SPEED_SCAN)
8984 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8985 cpu_to_le16(30);
8986 else
8987 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
8988 cpu_to_le16(20);
8989
8990 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
8991 cpu_to_le16(20);
8992 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] = cpu_to_le16(20);
8993 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
8994
8995 scan.full_scan_index = cpu_to_le32(ieee80211_get_scans(priv->ieee));
8996
8997 err = ipw_send_ssid(priv, essid, essid_len);
8998 if (err) {
8999 IPW_DEBUG_HC("Attempt to send SSID command failed\n");
9000 goto done;
9001 }
9002 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
9003
9004 ipw_add_scan_channels(priv, &scan, scan_type);
9005
9006 err = ipw_send_scan_request_ext(priv, &scan);
9007 if (err) {
9008 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
9009 goto done;
9010 }
9011
9012 priv->status |= STATUS_SCANNING;
9013
9014 done:
9015 up(&priv->sem);
9016 return err;
9017}
9018#endif /* WIRELESS_EXT > 17 */
9019
Jeff Garzikbf794512005-07-31 13:07:26 -04009020static int ipw_wx_set_scan(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);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009025#if WIRELESS_EXT > 17
9026 struct iw_scan_req *req = NULL;
9027 if (wrqu->data.length
9028 && wrqu->data.length == sizeof(struct iw_scan_req)) {
9029 req = (struct iw_scan_req *)extra;
9030 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
9031 ipw_request_direct_scan(priv, req->essid,
9032 req->essid_len);
9033 return 0;
9034 }
9035 }
9036#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009037 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009038
9039 queue_work(priv->workqueue, &priv->request_scan);
9040
James Ketrenos43f66a62005-03-25 12:31:53 -06009041 return 0;
9042}
9043
Jeff Garzikbf794512005-07-31 13:07:26 -04009044static int ipw_wx_get_scan(struct net_device *dev,
9045 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009046 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009047{
James Ketrenos43f66a62005-03-25 12:31:53 -06009048 struct ipw_priv *priv = ieee80211_priv(dev);
9049 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
9050}
9051
Jeff Garzikbf794512005-07-31 13:07:26 -04009052static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009053 struct iw_request_info *info,
9054 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009055{
9056 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009057 int ret;
9058
9059 down(&priv->sem);
9060 ret = ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
9061 up(&priv->sem);
9062
9063 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009064}
9065
Jeff Garzikbf794512005-07-31 13:07:26 -04009066static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009067 struct iw_request_info *info,
9068 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009069{
9070 struct ipw_priv *priv = ieee80211_priv(dev);
9071 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
9072}
9073
Jeff Garzikbf794512005-07-31 13:07:26 -04009074static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009075 struct iw_request_info *info,
9076 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009077{
9078 struct ipw_priv *priv = ieee80211_priv(dev);
9079 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009080 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009081 if (wrqu->power.disabled) {
9082 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9083 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9084 if (err) {
9085 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009086 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009087 return err;
9088 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009089 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009090 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009091 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009092 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009093
9094 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009095 case IW_POWER_ON: /* If not specified */
9096 case IW_POWER_MODE: /* If set all mask */
9097 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009098 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009099 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009100 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9101 wrqu->power.flags);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009102 up(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009103 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009104 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009105
James Ketrenos43f66a62005-03-25 12:31:53 -06009106 /* If the user hasn't specified a power management mode yet, default
9107 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009108 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009109 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009110 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009111 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
9112 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9113 if (err) {
9114 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009115 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009116 return err;
9117 }
9118
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009119 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009120 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009121 return 0;
9122}
9123
Jeff Garzikbf794512005-07-31 13:07:26 -04009124static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009125 struct iw_request_info *info,
9126 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009127{
9128 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009129 down(&priv->sem);
James Ketrenosa613bff2005-08-24 21:43:11 -05009130 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009131 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009132 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009133 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009134
James Ketrenosc848d0a2005-08-24 21:56:24 -05009135 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009136 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009137
James Ketrenos43f66a62005-03-25 12:31:53 -06009138 return 0;
9139}
9140
Jeff Garzikbf794512005-07-31 13:07:26 -04009141static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009142 struct iw_request_info *info,
9143 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009144{
9145 struct ipw_priv *priv = ieee80211_priv(dev);
9146 int mode = *(int *)extra;
9147 int err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009148 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009149 if ((mode < 1) || (mode > IPW_POWER_LIMIT)) {
9150 mode = IPW_POWER_AC;
9151 priv->power_mode = mode;
9152 } else {
9153 priv->power_mode = IPW_POWER_ENABLED | mode;
9154 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009155
James Ketrenos43f66a62005-03-25 12:31:53 -06009156 if (priv->power_mode != mode) {
9157 err = ipw_send_power_mode(priv, mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009158
James Ketrenos43f66a62005-03-25 12:31:53 -06009159 if (err) {
9160 IPW_DEBUG_WX("failed setting power mode.\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009161 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009162 return err;
9163 }
9164 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009165 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009166 return 0;
9167}
9168
9169#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009170static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009171 struct iw_request_info *info,
9172 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009173{
9174 struct ipw_priv *priv = ieee80211_priv(dev);
9175 int level = IPW_POWER_LEVEL(priv->power_mode);
9176 char *p = extra;
9177
9178 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9179
9180 switch (level) {
9181 case IPW_POWER_AC:
9182 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9183 break;
9184 case IPW_POWER_BATTERY:
9185 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9186 break;
9187 default:
9188 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009189 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009190 timeout_duration[level - 1] / 1000,
9191 period_duration[level - 1] / 1000);
9192 }
9193
9194 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009195 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009196
9197 wrqu->data.length = p - extra + 1;
9198
9199 return 0;
9200}
9201
9202static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009203 struct iw_request_info *info,
9204 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009205{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009206 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009207 int mode = *(int *)extra;
9208 u8 band = 0, modulation = 0;
9209
9210 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009211 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009212 return -EINVAL;
9213 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009214 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009215 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009216 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009217 if (mode & IEEE_A) {
9218 band |= IEEE80211_52GHZ_BAND;
9219 modulation |= IEEE80211_OFDM_MODULATION;
9220 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009221 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009222 } else {
9223 if (mode & IEEE_A) {
9224 IPW_WARNING("Attempt to set 2200BG into "
9225 "802.11a mode\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009226 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009227 return -EINVAL;
9228 }
9229
James Ketrenosa33a1982005-09-14 14:28:59 -05009230 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009231 }
9232
9233 if (mode & IEEE_B) {
9234 band |= IEEE80211_24GHZ_BAND;
9235 modulation |= IEEE80211_CCK_MODULATION;
9236 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009237 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009238
James Ketrenos43f66a62005-03-25 12:31:53 -06009239 if (mode & IEEE_G) {
9240 band |= IEEE80211_24GHZ_BAND;
9241 modulation |= IEEE80211_OFDM_MODULATION;
9242 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009243 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009244
9245 priv->ieee->mode = mode;
9246 priv->ieee->freq_band = band;
9247 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009248 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009249
James Ketrenosc848d0a2005-08-24 21:56:24 -05009250 /* Network configuration changed -- force [re]association */
9251 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9252 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009253 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009254 ipw_associate(priv);
9255 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009256
James Ketrenosa613bff2005-08-24 21:43:11 -05009257 /* Update the band LEDs */
9258 ipw_led_band_on(priv);
9259
Jeff Garzikbf794512005-07-31 13:07:26 -04009260 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009261 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009262 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
James Ketrenosc848d0a2005-08-24 21:56:24 -05009263 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009264 return 0;
9265}
9266
9267static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009268 struct iw_request_info *info,
9269 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009270{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009271 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009272 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009273 switch (priv->ieee->mode) {
9274 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009275 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9276 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009277 case IEEE_B:
9278 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9279 break;
9280 case IEEE_A | IEEE_B:
9281 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9282 break;
9283 case IEEE_G:
9284 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9285 break;
9286 case IEEE_A | IEEE_G:
9287 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9288 break;
9289 case IEEE_B | IEEE_G:
9290 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9291 break;
9292 case IEEE_A | IEEE_B | IEEE_G:
9293 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9294 break;
9295 default:
9296 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009297 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009298 }
9299
James Ketrenos43f66a62005-03-25 12:31:53 -06009300 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9301
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009302 wrqu->data.length = strlen(extra) + 1;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009303 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009304
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009305 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009306}
9307
James Ketrenosea2b26e2005-08-24 21:25:16 -05009308static int ipw_wx_set_preamble(struct net_device *dev,
9309 struct iw_request_info *info,
9310 union iwreq_data *wrqu, char *extra)
9311{
9312 struct ipw_priv *priv = ieee80211_priv(dev);
9313 int mode = *(int *)extra;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009314 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009315 /* Switching from SHORT -> LONG requires a disassociation */
9316 if (mode == 1) {
9317 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9318 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009319
9320 /* Network configuration changed -- force [re]association */
9321 IPW_DEBUG_ASSOC
9322 ("[re]association triggered due to preamble change.\n");
9323 if (!ipw_disassociate(priv))
9324 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009325 }
9326 goto done;
9327 }
9328
9329 if (mode == 0) {
9330 priv->config &= ~CFG_PREAMBLE_LONG;
9331 goto done;
9332 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009333 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009334 return -EINVAL;
9335
9336 done:
James Ketrenosc848d0a2005-08-24 21:56:24 -05009337 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009338 return 0;
9339}
9340
9341static int ipw_wx_get_preamble(struct net_device *dev,
9342 struct iw_request_info *info,
9343 union iwreq_data *wrqu, char *extra)
9344{
9345 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009346 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009347 if (priv->config & CFG_PREAMBLE_LONG)
9348 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9349 else
9350 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
James Ketrenosc848d0a2005-08-24 21:56:24 -05009351 up(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009352 return 0;
9353}
9354
James Ketrenosb095c382005-08-24 22:04:42 -05009355#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009356static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009357 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009358 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009359{
James Ketrenos43f66a62005-03-25 12:31:53 -06009360 struct ipw_priv *priv = ieee80211_priv(dev);
9361 int *parms = (int *)extra;
9362 int enable = (parms[0] > 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009363 down(&priv->sem);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009364 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009365 if (enable) {
9366 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9367 priv->net_dev->type = ARPHRD_IEEE80211;
James Ketrenosa613bff2005-08-24 21:43:11 -05009368 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009369 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009370
James Ketrenos43f66a62005-03-25 12:31:53 -06009371 ipw_set_channel(priv, parms[1]);
9372 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009373 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
9374 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009375 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009376 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009377 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009378 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009379 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05009380 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009381 return 0;
9382}
9383
James Ketrenosb095c382005-08-24 22:04:42 -05009384#endif // CONFIG_IPW2200_MONITOR
9385
Jeff Garzikbf794512005-07-31 13:07:26 -04009386static int ipw_wx_reset(struct net_device *dev,
9387 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009388 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009389{
James Ketrenos43f66a62005-03-25 12:31:53 -06009390 struct ipw_priv *priv = ieee80211_priv(dev);
9391 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009392 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009393 return 0;
9394}
James Ketrenosb095c382005-08-24 22:04:42 -05009395
James Ketrenosb095c382005-08-24 22:04:42 -05009396static int ipw_wx_sw_reset(struct net_device *dev,
9397 struct iw_request_info *info,
9398 union iwreq_data *wrqu, char *extra)
9399{
9400 struct ipw_priv *priv = ieee80211_priv(dev);
9401 union iwreq_data wrqu_sec = {
9402 .encoding = {
9403 .flags = IW_ENCODE_DISABLED,
9404 },
9405 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009406 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009407
9408 IPW_DEBUG_WX("SW_RESET\n");
9409
9410 down(&priv->sem);
9411
James Ketrenosafbf30a2005-08-25 00:05:33 -05009412 ret = ipw_sw_reset(priv, 0);
9413 if (!ret) {
9414 free_firmware();
9415 ipw_adapter_restart(priv);
9416 }
James Ketrenosb095c382005-08-24 22:04:42 -05009417
9418 /* The SW reset bit might have been toggled on by the 'disable'
9419 * module parameter, so take appropriate action */
9420 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9421
9422 up(&priv->sem);
9423 ieee80211_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
9424 down(&priv->sem);
9425
9426 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9427 /* Configuration likely changed -- force [re]association */
9428 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9429 "reset.\n");
9430 if (!ipw_disassociate(priv))
9431 ipw_associate(priv);
9432 }
9433
9434 up(&priv->sem);
9435
9436 return 0;
9437}
James Ketrenos43f66a62005-03-25 12:31:53 -06009438
9439/* Rebase the WE IOCTLs to zero for the handler array */
9440#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009441static iw_handler ipw_wx_handlers[] = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009442 IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name,
9443 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9444 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9445 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9446 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
9447 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9448 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9449 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9450 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9451 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9452 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9453 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9454 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9455 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
9456 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
9457 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
9458 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
9459 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
9460 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
9461 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
9462 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
9463 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
9464 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
9465 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
9466 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
9467 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
9468 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
9469 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -05009470 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
9471 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
9472 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
9473 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -05009474#if WIRELESS_EXT > 17
9475 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
9476 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
9477 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
9478 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
9479 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
9480 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
9481 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
9482#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009483};
9484
James Ketrenosb095c382005-08-24 22:04:42 -05009485enum {
9486 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9487 IPW_PRIV_GET_POWER,
9488 IPW_PRIV_SET_MODE,
9489 IPW_PRIV_GET_MODE,
9490 IPW_PRIV_SET_PREAMBLE,
9491 IPW_PRIV_GET_PREAMBLE,
9492 IPW_PRIV_RESET,
9493 IPW_PRIV_SW_RESET,
9494#ifdef CONFIG_IPW2200_MONITOR
9495 IPW_PRIV_SET_MONITOR,
9496#endif
9497};
James Ketrenos43f66a62005-03-25 12:31:53 -06009498
Jeff Garzikbf794512005-07-31 13:07:26 -04009499static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009500 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009501 .cmd = IPW_PRIV_SET_POWER,
9502 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9503 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009504 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009505 .cmd = IPW_PRIV_GET_POWER,
9506 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9507 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009508 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009509 .cmd = IPW_PRIV_SET_MODE,
9510 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9511 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009512 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009513 .cmd = IPW_PRIV_GET_MODE,
9514 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9515 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009516 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009517 .cmd = IPW_PRIV_SET_PREAMBLE,
9518 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9519 .name = "set_preamble"},
9520 {
9521 .cmd = IPW_PRIV_GET_PREAMBLE,
9522 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9523 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009524 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009525 IPW_PRIV_RESET,
9526 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009527 {
9528 IPW_PRIV_SW_RESET,
9529 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9530#ifdef CONFIG_IPW2200_MONITOR
9531 {
9532 IPW_PRIV_SET_MONITOR,
9533 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9534#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009535};
9536
9537static iw_handler ipw_priv_handler[] = {
9538 ipw_wx_set_powermode,
9539 ipw_wx_get_powermode,
9540 ipw_wx_set_wireless_mode,
9541 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009542 ipw_wx_set_preamble,
9543 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -04009544 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -05009545 ipw_wx_sw_reset,
9546#ifdef CONFIG_IPW2200_MONITOR
9547 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -06009548#endif
9549};
9550
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009551static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009552 .standard = ipw_wx_handlers,
9553 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
9554 .num_private = ARRAY_SIZE(ipw_priv_handler),
9555 .num_private_args = ARRAY_SIZE(ipw_priv_args),
9556 .private = ipw_priv_handler,
9557 .private_args = ipw_priv_args,
James Ketrenos43f66a62005-03-25 12:31:53 -06009558};
9559
James Ketrenosa613bff2005-08-24 21:43:11 -05009560static struct iw_public_data ipw_wx_data;
9561
James Ketrenos43f66a62005-03-25 12:31:53 -06009562/*
9563 * Get wireless statistics.
9564 * Called by /proc/net/wireless
9565 * Also called by SIOCGIWSTATS
9566 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009567static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -06009568{
9569 struct ipw_priv *priv = ieee80211_priv(dev);
9570 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009571
James Ketrenos43f66a62005-03-25 12:31:53 -06009572 wstats = &priv->wstats;
9573
James Ketrenosea2b26e2005-08-24 21:25:16 -05009574 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -05009575 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -06009576 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
9577 * and associated; if not associcated, the values are all meaningless
9578 * anyway, so set them all to NULL and INVALID */
9579 if (!(priv->status & STATUS_ASSOCIATED)) {
9580 wstats->miss.beacon = 0;
9581 wstats->discard.retries = 0;
9582 wstats->qual.qual = 0;
9583 wstats->qual.level = 0;
9584 wstats->qual.noise = 0;
9585 wstats->qual.updated = 7;
9586 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009587 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -06009588 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -04009589 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009590
9591 wstats->qual.qual = priv->quality;
9592 wstats->qual.level = average_value(&priv->average_rssi);
9593 wstats->qual.noise = average_value(&priv->average_noise);
9594 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009595 IW_QUAL_NOISE_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -06009596
9597 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
9598 wstats->discard.retries = priv->last_tx_failures;
9599 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -04009600
James Ketrenos43f66a62005-03-25 12:31:53 -06009601/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
9602 goto fail_get_ordinal;
9603 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -04009604
James Ketrenos43f66a62005-03-25 12:31:53 -06009605 return wstats;
9606}
9607
James Ketrenos43f66a62005-03-25 12:31:53 -06009608/* net device stuff */
9609
9610static inline void init_sys_config(struct ipw_sys_config *sys_config)
9611{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009612 memset(sys_config, 0, sizeof(struct ipw_sys_config));
9613 sys_config->bt_coexistence = 1; /* We may need to look into prvStaBtConfig */
James Ketrenos43f66a62005-03-25 12:31:53 -06009614 sys_config->answer_broadcast_ssid_probe = 0;
9615 sys_config->accept_all_data_frames = 0;
9616 sys_config->accept_non_directed_frames = 1;
9617 sys_config->exclude_unicast_unencrypted = 0;
9618 sys_config->disable_unicast_decryption = 1;
9619 sys_config->exclude_multicast_unencrypted = 0;
9620 sys_config->disable_multicast_decryption = 1;
9621 sys_config->antenna_diversity = CFG_SYS_ANTENNA_BOTH;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009622 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -06009623 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009624 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009625 sys_config->bt_coexist_collision_thr = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009626 sys_config->pass_noise_stats_to_host = 1; //1 -- fix for 256
James Ketrenos43f66a62005-03-25 12:31:53 -06009627}
9628
9629static int ipw_net_open(struct net_device *dev)
9630{
9631 struct ipw_priv *priv = ieee80211_priv(dev);
9632 IPW_DEBUG_INFO("dev->open\n");
9633 /* we should be verifying the device is ready to be opened */
James Ketrenosc848d0a2005-08-24 21:56:24 -05009634 down(&priv->sem);
Jeff Garzikbf794512005-07-31 13:07:26 -04009635 if (!(priv->status & STATUS_RF_KILL_MASK) &&
9636 (priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009637 netif_start_queue(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009638 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009639 return 0;
9640}
9641
9642static int ipw_net_stop(struct net_device *dev)
9643{
9644 IPW_DEBUG_INFO("dev->close\n");
9645 netif_stop_queue(dev);
9646 return 0;
9647}
9648
9649/*
9650todo:
9651
9652modify to send one tfd per fragment instead of using chunking. otherwise
9653we need to heavily modify the ieee80211_skb_to_txb.
9654*/
9655
James Ketrenos227d2dc2005-07-28 16:25:55 -05009656static inline int ipw_tx_skb(struct ipw_priv *priv, struct ieee80211_txb *txb,
9657 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009658{
James Ketrenos0dacca12005-09-21 12:23:41 -05009659 struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009660 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -06009661 int i = 0;
9662 struct tfd_frame *tfd;
James Ketrenosb095c382005-08-24 22:04:42 -05009663#ifdef CONFIG_IPW_QOS
9664 int tx_id = ipw_get_tx_queue_number(priv, pri);
9665 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9666#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009667 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -05009668#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06009669 struct clx2_queue *q = &txq->q;
9670 u8 id, hdr_len, unicast;
9671 u16 remaining_bytes;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009672 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -06009673
James Ketrenos227d2dc2005-07-28 16:25:55 -05009674 /* If there isn't room in the queue, we return busy and let the
9675 * network stack requeue the packet for us */
9676 if (ipw_queue_space(q) < q->high_mark)
9677 return NETDEV_TX_BUSY;
9678
James Ketrenos43f66a62005-03-25 12:31:53 -06009679 switch (priv->ieee->iw_mode) {
9680 case IW_MODE_ADHOC:
9681 hdr_len = IEEE80211_3ADDR_LEN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009682 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -06009683 id = ipw_find_station(priv, hdr->addr1);
9684 if (id == IPW_INVALID_STATION) {
9685 id = ipw_add_station(priv, hdr->addr1);
9686 if (id == IPW_INVALID_STATION) {
9687 IPW_WARNING("Attempt to send data to "
Jeff Garzikbf794512005-07-31 13:07:26 -04009688 "invalid cell: " MAC_FMT "\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009689 MAC_ARG(hdr->addr1));
9690 goto drop;
9691 }
9692 }
9693 break;
9694
9695 case IW_MODE_INFRA:
9696 default:
James Ketrenosafbf30a2005-08-25 00:05:33 -05009697 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -06009698 hdr_len = IEEE80211_3ADDR_LEN;
9699 id = 0;
9700 break;
9701 }
9702
9703 tfd = &txq->bd[q->first_empty];
9704 txq->txb[q->first_empty] = txb;
9705 memset(tfd, 0, sizeof(*tfd));
9706 tfd->u.data.station_number = id;
9707
9708 tfd->control_flags.message_type = TX_FRAME_TYPE;
9709 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
9710
9711 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -05009712 tfd->u.data.len = cpu_to_le16(txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009713 remaining_bytes = txb->payload_size;
Jeff Garzikbf794512005-07-31 13:07:26 -04009714
James Ketrenos43f66a62005-03-25 12:31:53 -06009715 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -05009716 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009717 else
James Ketrenosb095c382005-08-24 22:04:42 -05009718 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -06009719
James Ketrenosea2b26e2005-08-24 21:25:16 -05009720 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
9721 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009722
James Ketrenosc848d0a2005-08-24 21:56:24 -05009723 fc = le16_to_cpu(hdr->frame_ctl);
9724 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
9725
James Ketrenos43f66a62005-03-25 12:31:53 -06009726 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
9727
James Ketrenosb095c382005-08-24 22:04:42 -05009728 if (likely(unicast))
9729 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9730
9731 if (txb->encrypted && !priv->ieee->host_encrypt) {
9732 switch (priv->ieee->sec.level) {
9733 case SEC_LEVEL_3:
9734 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9735 IEEE80211_FCTL_PROTECTED;
9736 /* XXX: ACK flag must be set for CCMP even if it
9737 * is a multicast/broadcast packet, because CCMP
9738 * group communication encrypted by GTK is
9739 * actually done by the AP. */
9740 if (!unicast)
9741 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
9742
9743 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9744 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
9745 tfd->u.data.key_index = 0;
9746 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
9747 break;
9748 case SEC_LEVEL_2:
9749 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9750 IEEE80211_FCTL_PROTECTED;
9751 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
9752 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
9753 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
9754 break;
9755 case SEC_LEVEL_1:
9756 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
9757 IEEE80211_FCTL_PROTECTED;
9758 tfd->u.data.key_index = priv->ieee->tx_keyidx;
9759 if (priv->ieee->sec.key_sizes[priv->ieee->tx_keyidx] <=
9760 40)
9761 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
9762 else
9763 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
9764 break;
9765 case SEC_LEVEL_0:
9766 break;
9767 default:
9768 printk(KERN_ERR "Unknow security level %d\n",
9769 priv->ieee->sec.level);
9770 break;
9771 }
9772 } else
9773 /* No hardware encryption */
9774 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
9775
9776#ifdef CONFIG_IPW_QOS
9777 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data), unicast);
9778#endif /* CONFIG_IPW_QOS */
9779
James Ketrenos43f66a62005-03-25 12:31:53 -06009780 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -05009781 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
9782 txb->nr_frags));
9783 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
9784 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
9785 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
9786 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
9787 i, le32_to_cpu(tfd->u.data.num_chunks),
9788 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009789 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009790 i, tfd->u.data.num_chunks,
9791 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009792 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -06009793 txb->fragments[i]->len - hdr_len);
9794
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009795 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009796 cpu_to_le32(pci_map_single
9797 (priv->pci_dev,
9798 txb->fragments[i]->data + hdr_len,
9799 txb->fragments[i]->len - hdr_len,
9800 PCI_DMA_TODEVICE));
9801 tfd->u.data.chunk_len[i] =
9802 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009803 }
9804
9805 if (i != txb->nr_frags) {
9806 struct sk_buff *skb;
9807 u16 remaining_bytes = 0;
9808 int j;
9809
9810 for (j = i; j < txb->nr_frags; j++)
9811 remaining_bytes += txb->fragments[j]->len - hdr_len;
9812
9813 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
9814 remaining_bytes);
9815 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
9816 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -05009817 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -06009818 for (j = i; j < txb->nr_frags; j++) {
9819 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009820
James Ketrenos43f66a62005-03-25 12:31:53 -06009821 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009822 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009823 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009824 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009825 }
9826 dev_kfree_skb_any(txb->fragments[i]);
9827 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009828 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -05009829 cpu_to_le32(pci_map_single
9830 (priv->pci_dev, skb->data,
9831 tfd->u.data.chunk_len[i],
9832 PCI_DMA_TODEVICE));
9833
9834 tfd->u.data.num_chunks =
9835 cpu_to_le32(le32_to_cpu(tfd->u.data.num_chunks) +
9836 1);
Jeff Garzikbf794512005-07-31 13:07:26 -04009837 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009838 }
9839
9840 /* kick DMA */
9841 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
9842 ipw_write32(priv, q->reg_w, q->first_empty);
9843
James Ketrenos227d2dc2005-07-28 16:25:55 -05009844 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -06009845
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009846 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -06009847 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
9848 ieee80211_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -05009849 return NETDEV_TX_OK;
9850}
9851
9852static int ipw_net_is_queue_full(struct net_device *dev, int pri)
9853{
9854 struct ipw_priv *priv = ieee80211_priv(dev);
9855#ifdef CONFIG_IPW_QOS
9856 int tx_id = ipw_get_tx_queue_number(priv, pri);
9857 struct clx2_tx_queue *txq = &priv->txq[tx_id];
9858#else
9859 struct clx2_tx_queue *txq = &priv->txq[0];
9860#endif /* CONFIG_IPW_QOS */
9861
9862 if (ipw_queue_space(&txq->q) < txq->q.high_mark)
9863 return 1;
9864
9865 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009866}
9867
9868static int ipw_net_hard_start_xmit(struct ieee80211_txb *txb,
James Ketrenosc8d42d12005-09-21 12:23:43 -05009869 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -06009870{
9871 struct ipw_priv *priv = ieee80211_priv(dev);
9872 unsigned long flags;
James Ketrenos227d2dc2005-07-28 16:25:55 -05009873 int ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009874
9875 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -06009876 spin_lock_irqsave(&priv->lock, flags);
9877
9878 if (!(priv->status & STATUS_ASSOCIATED)) {
9879 IPW_DEBUG_INFO("Tx attempt while not associated.\n");
9880 priv->ieee->stats.tx_carrier_errors++;
9881 netif_stop_queue(dev);
9882 goto fail_unlock;
9883 }
9884
James Ketrenos227d2dc2005-07-28 16:25:55 -05009885 ret = ipw_tx_skb(priv, txb, pri);
9886 if (ret == NETDEV_TX_OK)
9887 __ipw_led_activity_on(priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009888 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06009889
James Ketrenos227d2dc2005-07-28 16:25:55 -05009890 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009891
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009892 fail_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -06009893 spin_unlock_irqrestore(&priv->lock, flags);
9894 return 1;
9895}
9896
9897static struct net_device_stats *ipw_net_get_stats(struct net_device *dev)
9898{
9899 struct ipw_priv *priv = ieee80211_priv(dev);
Jeff Garzikbf794512005-07-31 13:07:26 -04009900
James Ketrenos43f66a62005-03-25 12:31:53 -06009901 priv->ieee->stats.tx_packets = priv->tx_packets;
9902 priv->ieee->stats.rx_packets = priv->rx_packets;
9903 return &priv->ieee->stats;
9904}
9905
9906static void ipw_net_set_multicast_list(struct net_device *dev)
9907{
9908
9909}
9910
9911static int ipw_net_set_mac_address(struct net_device *dev, void *p)
9912{
9913 struct ipw_priv *priv = ieee80211_priv(dev);
9914 struct sockaddr *addr = p;
9915 if (!is_valid_ether_addr(addr->sa_data))
9916 return -EADDRNOTAVAIL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009917 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009918 priv->config |= CFG_CUSTOM_MAC;
9919 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
9920 printk(KERN_INFO "%s: Setting MAC to " MAC_FMT "\n",
9921 priv->net_dev->name, MAC_ARG(priv->mac_addr));
James Ketrenosa613bff2005-08-24 21:43:11 -05009922 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009923 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009924 return 0;
9925}
9926
Jeff Garzikbf794512005-07-31 13:07:26 -04009927static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -06009928 struct ethtool_drvinfo *info)
9929{
9930 struct ipw_priv *p = ieee80211_priv(dev);
9931 char vers[64];
9932 char date[32];
9933 u32 len;
9934
9935 strcpy(info->driver, DRV_NAME);
9936 strcpy(info->version, DRV_VERSION);
9937
9938 len = sizeof(vers);
9939 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
9940 len = sizeof(date);
9941 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
9942
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009943 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009944 vers, date);
9945 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -05009946 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009947}
9948
9949static u32 ipw_ethtool_get_link(struct net_device *dev)
9950{
9951 struct ipw_priv *priv = ieee80211_priv(dev);
9952 return (priv->status & STATUS_ASSOCIATED) != 0;
9953}
9954
9955static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
9956{
James Ketrenosb095c382005-08-24 22:04:42 -05009957 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -06009958}
9959
9960static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009961 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009962{
9963 struct ipw_priv *p = ieee80211_priv(dev);
9964
James Ketrenosb095c382005-08-24 22:04:42 -05009965 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009966 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009967 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009968 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009969 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009970 return 0;
9971}
9972
9973static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009974 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -06009975{
9976 struct ipw_priv *p = ieee80211_priv(dev);
9977 int i;
9978
James Ketrenosb095c382005-08-24 22:04:42 -05009979 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -06009980 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009981 down(&p->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009982 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009983 for (i = IPW_EEPROM_DATA;
James Ketrenosb095c382005-08-24 22:04:42 -05009984 i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06009985 ipw_write8(p, i, p->eeprom[i]);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009986 up(&p->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -06009987 return 0;
9988}
9989
9990static struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009991 .get_link = ipw_ethtool_get_link,
9992 .get_drvinfo = ipw_ethtool_get_drvinfo,
9993 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
9994 .get_eeprom = ipw_ethtool_get_eeprom,
9995 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -06009996};
9997
9998static irqreturn_t ipw_isr(int irq, void *data, struct pt_regs *regs)
9999{
10000 struct ipw_priv *priv = data;
10001 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010002
James Ketrenos43f66a62005-03-25 12:31:53 -060010003 if (!priv)
10004 return IRQ_NONE;
10005
10006 spin_lock(&priv->lock);
10007
10008 if (!(priv->status & STATUS_INT_ENABLED)) {
10009 /* Shared IRQ */
10010 goto none;
10011 }
10012
James Ketrenosb095c382005-08-24 22:04:42 -050010013 inta = ipw_read32(priv, IPW_INTA_RW);
10014 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010015
James Ketrenos43f66a62005-03-25 12:31:53 -060010016 if (inta == 0xFFFFFFFF) {
10017 /* Hardware disappeared */
10018 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10019 goto none;
10020 }
10021
James Ketrenosb095c382005-08-24 22:04:42 -050010022 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010023 /* Shared interrupt */
10024 goto none;
10025 }
10026
10027 /* tell the device to stop sending interrupts */
10028 ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010029
James Ketrenos43f66a62005-03-25 12:31:53 -060010030 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010031 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10032 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010033
James Ketrenos43f66a62005-03-25 12:31:53 -060010034 /* Cache INTA value for our tasklet */
10035 priv->isr_inta = inta;
10036
10037 tasklet_schedule(&priv->irq_tasklet);
10038
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010039 spin_unlock(&priv->lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010040
10041 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010042 none:
James Ketrenos43f66a62005-03-25 12:31:53 -060010043 spin_unlock(&priv->lock);
10044 return IRQ_NONE;
10045}
10046
10047static void ipw_rf_kill(void *adapter)
10048{
10049 struct ipw_priv *priv = adapter;
10050 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010051
James Ketrenos43f66a62005-03-25 12:31:53 -060010052 spin_lock_irqsave(&priv->lock, flags);
10053
10054 if (rf_kill_active(priv)) {
10055 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10056 if (priv->workqueue)
10057 queue_delayed_work(priv->workqueue,
10058 &priv->rf_kill, 2 * HZ);
10059 goto exit_unlock;
10060 }
10061
10062 /* RF Kill is now disabled, so bring the device back up */
10063
10064 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10065 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10066 "device\n");
10067
10068 /* we can not do an adapter restart while inside an irq lock */
10069 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010070 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010071 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10072 "enabled\n");
10073
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010074 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010075 spin_unlock_irqrestore(&priv->lock, flags);
10076}
10077
James Ketrenosc848d0a2005-08-24 21:56:24 -050010078static void ipw_bg_rf_kill(void *data)
10079{
10080 struct ipw_priv *priv = data;
10081 down(&priv->sem);
10082 ipw_rf_kill(data);
10083 up(&priv->sem);
10084}
10085
James Ketrenosa613bff2005-08-24 21:43:11 -050010086void ipw_link_up(struct ipw_priv *priv)
10087{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010088 priv->last_seq_num = -1;
10089 priv->last_frag_num = -1;
10090 priv->last_packet_time = 0;
10091
James Ketrenosa613bff2005-08-24 21:43:11 -050010092 netif_carrier_on(priv->net_dev);
10093 if (netif_queue_stopped(priv->net_dev)) {
10094 IPW_DEBUG_NOTIF("waking queue\n");
10095 netif_wake_queue(priv->net_dev);
10096 } else {
10097 IPW_DEBUG_NOTIF("starting queue\n");
10098 netif_start_queue(priv->net_dev);
10099 }
10100
James Ketrenosc848d0a2005-08-24 21:56:24 -050010101 cancel_delayed_work(&priv->request_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010102 ipw_reset_stats(priv);
10103 /* Ensure the rate is updated immediately */
10104 priv->last_rate = ipw_get_current_rate(priv);
10105 ipw_gather_stats(priv);
10106 ipw_led_link_up(priv);
10107 notify_wx_assoc_event(priv);
10108
10109 if (priv->config & CFG_BACKGROUND_SCAN)
10110 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10111}
10112
James Ketrenosc848d0a2005-08-24 21:56:24 -050010113static void ipw_bg_link_up(void *data)
10114{
10115 struct ipw_priv *priv = data;
10116 down(&priv->sem);
10117 ipw_link_up(data);
10118 up(&priv->sem);
10119}
10120
James Ketrenosa613bff2005-08-24 21:43:11 -050010121void ipw_link_down(struct ipw_priv *priv)
10122{
10123 ipw_led_link_down(priv);
10124 netif_carrier_off(priv->net_dev);
10125 netif_stop_queue(priv->net_dev);
10126 notify_wx_assoc_event(priv);
10127
10128 /* Cancel any queued work ... */
10129 cancel_delayed_work(&priv->request_scan);
10130 cancel_delayed_work(&priv->adhoc_check);
10131 cancel_delayed_work(&priv->gather_stats);
10132
10133 ipw_reset_stats(priv);
10134
James Ketrenosafbf30a2005-08-25 00:05:33 -050010135 if (!(priv->status & STATUS_EXIT_PENDING)) {
10136 /* Queue up another scan... */
10137 queue_work(priv->workqueue, &priv->request_scan);
10138 }
James Ketrenosa613bff2005-08-24 21:43:11 -050010139}
10140
James Ketrenosc848d0a2005-08-24 21:56:24 -050010141static void ipw_bg_link_down(void *data)
10142{
10143 struct ipw_priv *priv = data;
10144 down(&priv->sem);
10145 ipw_link_down(data);
10146 up(&priv->sem);
10147}
10148
James Ketrenos43f66a62005-03-25 12:31:53 -060010149static int ipw_setup_deferred_work(struct ipw_priv *priv)
10150{
10151 int ret = 0;
10152
James Ketrenos43f66a62005-03-25 12:31:53 -060010153 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010154 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010155 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010156
James Ketrenosc848d0a2005-08-24 21:56:24 -050010157 INIT_WORK(&priv->adhoc_check, ipw_bg_adhoc_check, priv);
10158 INIT_WORK(&priv->associate, ipw_bg_associate, priv);
10159 INIT_WORK(&priv->disassociate, ipw_bg_disassociate, priv);
Zhu Yid8bad6d2005-07-13 12:25:38 -050010160 INIT_WORK(&priv->system_config, ipw_system_config, priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010161 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish, priv);
10162 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart, priv);
10163 INIT_WORK(&priv->rf_kill, ipw_bg_rf_kill, priv);
10164 INIT_WORK(&priv->up, (void (*)(void *))ipw_bg_up, priv);
10165 INIT_WORK(&priv->down, (void (*)(void *))ipw_bg_down, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010166 INIT_WORK(&priv->request_scan,
James Ketrenosb095c382005-08-24 22:04:42 -050010167 (void (*)(void *))ipw_request_scan, priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010168 INIT_WORK(&priv->gather_stats,
James Ketrenosc848d0a2005-08-24 21:56:24 -050010169 (void (*)(void *))ipw_bg_gather_stats, priv);
10170 INIT_WORK(&priv->abort_scan, (void (*)(void *))ipw_bg_abort_scan, priv);
10171 INIT_WORK(&priv->roam, ipw_bg_roam, priv);
10172 INIT_WORK(&priv->scan_check, ipw_bg_scan_check, priv);
10173 INIT_WORK(&priv->link_up, (void (*)(void *))ipw_bg_link_up, priv);
10174 INIT_WORK(&priv->link_down, (void (*)(void *))ipw_bg_link_down, priv);
10175 INIT_WORK(&priv->led_link_on, (void (*)(void *))ipw_bg_led_link_on,
James Ketrenosa613bff2005-08-24 21:43:11 -050010176 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010177 INIT_WORK(&priv->led_link_off, (void (*)(void *))ipw_bg_led_link_off,
James Ketrenosa613bff2005-08-24 21:43:11 -050010178 priv);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010179 INIT_WORK(&priv->led_act_off, (void (*)(void *))ipw_bg_led_activity_off,
10180 priv);
10181 INIT_WORK(&priv->merge_networks,
10182 (void (*)(void *))ipw_merge_adhoc_network, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010183
James Ketrenosb095c382005-08-24 22:04:42 -050010184#ifdef CONFIG_IPW_QOS
10185 INIT_WORK(&priv->qos_activate, (void (*)(void *))ipw_bg_qos_activate,
10186 priv);
10187#endif /* CONFIG_IPW_QOS */
10188
James Ketrenos43f66a62005-03-25 12:31:53 -060010189 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10190 ipw_irq_tasklet, (unsigned long)priv);
10191
10192 return ret;
10193}
10194
James Ketrenos43f66a62005-03-25 12:31:53 -060010195static void shim__set_security(struct net_device *dev,
10196 struct ieee80211_security *sec)
10197{
10198 struct ipw_priv *priv = ieee80211_priv(dev);
10199 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010200 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010201 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010202 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010203 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010204 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010205 priv->ieee->sec.flags &= ~(1 << i);
10206 else {
10207 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010208 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010209 priv->ieee->sec.flags |= (1 << i);
10210 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010211 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010212 } else if (sec->level != SEC_LEVEL_1)
10213 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010214 }
10215
James Ketrenosb095c382005-08-24 22:04:42 -050010216 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010217 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010218 priv->ieee->sec.active_key = sec->active_key;
10219 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010220 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010221 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010222 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010223 } else
10224 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010225
10226 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010227 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10228 priv->ieee->sec.auth_mode = sec->auth_mode;
10229 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010230 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10231 priv->capability |= CAP_SHARED_KEY;
10232 else
10233 priv->capability &= ~CAP_SHARED_KEY;
10234 priv->status |= STATUS_SECURITY_UPDATED;
10235 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010236
James Ketrenosb095c382005-08-24 22:04:42 -050010237 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10238 priv->ieee->sec.flags |= SEC_ENABLED;
10239 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010240 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010241 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010242 priv->capability |= CAP_PRIVACY_ON;
10243 else
10244 priv->capability &= ~CAP_PRIVACY_ON;
10245 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050010246
10247 if (sec->flags & SEC_ENCRYPT)
10248 priv->ieee->sec.encrypt = sec->encrypt;
Jeff Garzikbf794512005-07-31 13:07:26 -040010249
James Ketrenosb095c382005-08-24 22:04:42 -050010250 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10251 priv->ieee->sec.level = sec->level;
10252 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010253 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenos43f66a62005-03-25 12:31:53 -060010254
Zhu Yid8bad6d2005-07-13 12:25:38 -050010255 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10256 ipw_set_hwcrypto_keys(priv);
10257 }
James Ketrenosb095c382005-08-24 22:04:42 -050010258
Jeff Garzikbf794512005-07-31 13:07:26 -040010259 /* To match current functionality of ipw2100 (which works well w/
10260 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010261 * privacy capability changes ... */
10262#if 0
10263 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010264 (((priv->assoc_request.capability &
James Ketrenos43f66a62005-03-25 12:31:53 -060010265 WLAN_CAPABILITY_PRIVACY) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010266 (!(priv->assoc_request.capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010267 WLAN_CAPABILITY_PRIVACY) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010268 IPW_DEBUG_ASSOC("Disassociating due to capability "
10269 "change.\n");
10270 ipw_disassociate(priv);
10271 }
10272#endif
10273}
10274
Jeff Garzikbf794512005-07-31 13:07:26 -040010275static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010276 struct ipw_supported_rates *rates)
10277{
10278 /* TODO: Mask out rates based on priv->rates_mask */
10279
10280 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010281 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010282 switch (priv->ieee->freq_band) {
10283 case IEEE80211_52GHZ_BAND:
10284 rates->ieee_mode = IPW_A_MODE;
10285 rates->purpose = IPW_RATE_CAPABILITIES;
10286 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10287 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10288 break;
10289
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010290 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010291 rates->ieee_mode = IPW_G_MODE;
10292 rates->purpose = IPW_RATE_CAPABILITIES;
10293 ipw_add_cck_scan_rates(rates, IEEE80211_CCK_MODULATION,
10294 IEEE80211_CCK_DEFAULT_RATES_MASK);
10295 if (priv->ieee->modulation & IEEE80211_OFDM_MODULATION) {
10296 ipw_add_ofdm_scan_rates(rates, IEEE80211_CCK_MODULATION,
10297 IEEE80211_OFDM_DEFAULT_RATES_MASK);
10298 }
10299 break;
10300 }
10301
10302 return 0;
10303}
10304
Jeff Garzikbf794512005-07-31 13:07:26 -040010305static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010306{
10307 int i;
10308 struct ipw_tx_power tx_power;
10309
10310 memset(&priv->sys_config, 0, sizeof(priv->sys_config));
10311 memset(&tx_power, 0, sizeof(tx_power));
10312
10313 /* This is only called from ipw_up, which resets/reloads the firmware
10314 so, we don't need to first disable the card before we configure
10315 it */
10316
10317 /* configure device for 'G' band */
10318 tx_power.ieee_mode = IPW_G_MODE;
10319 tx_power.num_channels = 11;
10320 for (i = 0; i < 11; i++) {
10321 tx_power.channels_tx_power[i].channel_number = i + 1;
10322 tx_power.channels_tx_power[i].tx_power = priv->tx_power;
10323 }
10324 if (ipw_send_tx_power(priv, &tx_power))
10325 goto error;
10326
10327 /* configure device to also handle 'B' band */
10328 tx_power.ieee_mode = IPW_B_MODE;
10329 if (ipw_send_tx_power(priv, &tx_power))
10330 goto error;
10331
10332 /* initialize adapter address */
10333 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10334 goto error;
10335
10336 /* set basic system config settings */
10337 init_sys_config(&priv->sys_config);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010338 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10339 priv->sys_config.answer_broadcast_ssid_probe = 1;
10340 else
10341 priv->sys_config.answer_broadcast_ssid_probe = 0;
10342
James Ketrenos43f66a62005-03-25 12:31:53 -060010343 if (ipw_send_system_config(priv, &priv->sys_config))
10344 goto error;
10345
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010346 init_supported_rates(priv, &priv->rates);
10347 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010348 goto error;
10349
10350 /* Set request-to-send threshold */
10351 if (priv->rts_threshold) {
10352 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10353 goto error;
10354 }
James Ketrenosb095c382005-08-24 22:04:42 -050010355#ifdef CONFIG_IPW_QOS
10356 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10357 ipw_qos_activate(priv, NULL);
10358#endif /* CONFIG_IPW_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010359
10360 if (ipw_set_random_seed(priv))
10361 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010362
James Ketrenos43f66a62005-03-25 12:31:53 -060010363 /* final state transition to the RUN state */
10364 if (ipw_send_host_complete(priv))
10365 goto error;
10366
10367 /* If configured to try and auto-associate, kick off a scan */
James Ketrenosb095c382005-08-24 22:04:42 -050010368 if (priv->config & CFG_ASSOCIATE)
10369 queue_work(priv->workqueue, &priv->request_scan);
James Ketrenos43f66a62005-03-25 12:31:53 -060010370
10371 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010372
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010373 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010374 return -EIO;
10375}
10376
James Ketrenosafbf30a2005-08-25 00:05:33 -050010377static const struct ieee80211_geo ipw_geo = {
10378 "---",
10379 .bg_channels = 11,
10380 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10381 {2427, 4}, {2432, 5}, {2437, 6},
10382 {2442, 7}, {2447, 8}, {2452, 9},
10383 {2457, 10}, {2462, 11}},
10384 .a_channels = 8,
10385 .a = {{5180, 36},
10386 {5200, 40},
10387 {5220, 44},
10388 {5240, 48},
10389 {5260, 52, IEEE80211_CH_PASSIVE_ONLY},
10390 {5280, 56, IEEE80211_CH_PASSIVE_ONLY},
10391 {5300, 60, IEEE80211_CH_PASSIVE_ONLY},
10392 {5320, 64, IEEE80211_CH_PASSIVE_ONLY}},
10393};
10394
James Ketrenos43f66a62005-03-25 12:31:53 -060010395#define MAX_HW_RESTARTS 5
10396static int ipw_up(struct ipw_priv *priv)
10397{
10398 int rc, i;
10399
10400 if (priv->status & STATUS_EXIT_PENDING)
10401 return -EIO;
10402
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010403 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040010404 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060010405 * Also start the clocks. */
10406 rc = ipw_load(priv);
10407 if (rc) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010408 IPW_ERROR("Unable to load firmware: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010409 return rc;
10410 }
10411
10412 ipw_init_ordinals(priv);
10413 if (!(priv->config & CFG_CUSTOM_MAC))
10414 eeprom_parse_mac(priv, priv->mac_addr);
10415 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
10416
James Ketrenosafbf30a2005-08-25 00:05:33 -050010417 memcpy(priv->country, &priv->eeprom[EEPROM_COUNTRY_CODE], 3);
10418 priv->country[3] = '\0';
10419 ieee80211_set_geo(priv->ieee, &ipw_geo);
10420
James Ketrenosb095c382005-08-24 22:04:42 -050010421 if (priv->status & STATUS_RF_KILL_SW) {
10422 IPW_WARNING("Radio disabled by module parameter.\n");
10423 return 0;
10424 } else if (rf_kill_active(priv)) {
10425 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
10426 "Kill switch must be turned off for "
10427 "wireless networking to work.\n");
10428 queue_delayed_work(priv->workqueue, &priv->rf_kill,
10429 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010430 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010431 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010432
10433 rc = ipw_config(priv);
10434 if (!rc) {
10435 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosa613bff2005-08-24 21:43:11 -050010436 ipw_led_init(priv);
10437 ipw_led_radio_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010438 priv->notif_missed_beacons = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010439 priv->status |= STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010440
10441 /* Set hardware WEP key if it is configured. */
10442 if ((priv->capability & CAP_PRIVACY_ON) &&
10443 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10444 !(priv->ieee->host_encrypt ||
10445 priv->ieee->host_decrypt))
10446 ipw_set_hwcrypto_keys(priv);
10447
James Ketrenos43f66a62005-03-25 12:31:53 -060010448 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010449 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010450
James Ketrenosc848d0a2005-08-24 21:56:24 -050010451 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060010452 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
10453 i, MAX_HW_RESTARTS);
10454
10455 /* We had an error bringing up the hardware, so take it
10456 * all the way back down so we can try again */
10457 ipw_down(priv);
10458 }
10459
Jeff Garzikbf794512005-07-31 13:07:26 -040010460 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060010461 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010462 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010463
James Ketrenos43f66a62005-03-25 12:31:53 -060010464 return -EIO;
10465}
10466
James Ketrenosc848d0a2005-08-24 21:56:24 -050010467static void ipw_bg_up(void *data)
10468{
10469 struct ipw_priv *priv = data;
10470 down(&priv->sem);
10471 ipw_up(data);
10472 up(&priv->sem);
10473}
10474
James Ketrenosb095c382005-08-24 22:04:42 -050010475static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010476{
James Ketrenosb095c382005-08-24 22:04:42 -050010477 int i;
10478
10479 if (priv->status & STATUS_SCANNING) {
10480 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
10481 ipw_abort_scan(priv);
10482 }
10483
10484 if (priv->status & STATUS_ASSOCIATED) {
10485 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
10486 ipw_disassociate(priv);
10487 }
10488
10489 ipw_led_shutdown(priv);
10490
10491 /* Wait up to 1s for status to change to not scanning and not
10492 * associated (disassociation can take a while for a ful 802.11
10493 * exchange */
10494 for (i = 1000; i && (priv->status &
10495 (STATUS_DISASSOCIATING |
10496 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
10497 udelay(10);
10498
10499 if (priv->status & (STATUS_DISASSOCIATING |
10500 STATUS_ASSOCIATED | STATUS_SCANNING))
10501 IPW_DEBUG_INFO("Still associated or scanning...\n");
10502 else
10503 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
10504
James Ketrenosc848d0a2005-08-24 21:56:24 -050010505 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060010506 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050010507
10508 priv->status &= ~STATUS_INIT;
10509}
10510
10511static void ipw_down(struct ipw_priv *priv)
10512{
10513 int exit_pending = priv->status & STATUS_EXIT_PENDING;
10514
10515 priv->status |= STATUS_EXIT_PENDING;
10516
10517 if (ipw_is_init(priv))
10518 ipw_deinit(priv);
10519
10520 /* Wipe out the EXIT_PENDING status bit if we are not actually
10521 * exiting the module */
10522 if (!exit_pending)
10523 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010524
10525 /* tell the device to stop sending interrupts */
10526 ipw_disable_interrupts(priv);
10527
10528 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050010529 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010530 netif_carrier_off(priv->net_dev);
10531 netif_stop_queue(priv->net_dev);
10532
10533 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050010534
10535 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010536}
10537
James Ketrenosc848d0a2005-08-24 21:56:24 -050010538static void ipw_bg_down(void *data)
10539{
10540 struct ipw_priv *priv = data;
10541 down(&priv->sem);
10542 ipw_down(data);
10543 up(&priv->sem);
10544}
10545
James Ketrenosafbf30a2005-08-25 00:05:33 -050010546#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050010547static int ipw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
10548{
James Ketrenosea2b26e2005-08-24 21:25:16 -050010549 struct iwreq *wrq = (struct iwreq *)rq;
10550 int ret = -1;
10551 switch (cmd) {
10552 case IPW_IOCTL_WPA_SUPPLICANT:
10553 ret = ipw_wpa_supplicant(dev, &wrq->u.data);
10554 return ret;
10555
10556 default:
10557 return -EOPNOTSUPP;
10558 }
10559
James Ketrenosea2b26e2005-08-24 21:25:16 -050010560 return -EOPNOTSUPP;
10561}
James Ketrenosafbf30a2005-08-25 00:05:33 -050010562#endif
James Ketrenosea2b26e2005-08-24 21:25:16 -050010563
James Ketrenos43f66a62005-03-25 12:31:53 -060010564/* Called by register_netdev() */
10565static int ipw_net_init(struct net_device *dev)
10566{
10567 struct ipw_priv *priv = ieee80211_priv(dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010568 down(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010569
James Ketrenosc848d0a2005-08-24 21:56:24 -050010570 if (ipw_up(priv)) {
10571 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010572 return -EIO;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010573 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010574
James Ketrenosc848d0a2005-08-24 21:56:24 -050010575 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010576 return 0;
10577}
10578
10579/* PCI driver stuff */
10580static struct pci_device_id card_ids[] = {
10581 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
10582 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
10583 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
10584 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
10585 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
10586 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
10587 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
10588 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
10589 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
10590 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
10591 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
10592 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
10593 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
10594 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
10595 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
10596 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
10597 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
10598 {PCI_VENDOR_ID_INTEL, 0x104f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010599 {PCI_VENDOR_ID_INTEL, 0x4220, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
James Ketrenosa613bff2005-08-24 21:43:11 -050010600 {PCI_VENDOR_ID_INTEL, 0x4221, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* BG */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010601 {PCI_VENDOR_ID_INTEL, 0x4223, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
10602 {PCI_VENDOR_ID_INTEL, 0x4224, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040010603
James Ketrenos43f66a62005-03-25 12:31:53 -060010604 /* required last entry */
10605 {0,}
10606};
10607
10608MODULE_DEVICE_TABLE(pci, card_ids);
10609
10610static struct attribute *ipw_sysfs_entries[] = {
10611 &dev_attr_rf_kill.attr,
10612 &dev_attr_direct_dword.attr,
10613 &dev_attr_indirect_byte.attr,
10614 &dev_attr_indirect_dword.attr,
10615 &dev_attr_mem_gpio_reg.attr,
10616 &dev_attr_command_event_reg.attr,
10617 &dev_attr_nic_type.attr,
10618 &dev_attr_status.attr,
10619 &dev_attr_cfg.attr,
10620 &dev_attr_dump_errors.attr,
10621 &dev_attr_dump_events.attr,
10622 &dev_attr_eeprom_delay.attr,
10623 &dev_attr_ucode_version.attr,
10624 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050010625 &dev_attr_scan_age.attr,
10626 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050010627 &dev_attr_speed_scan.attr,
10628 &dev_attr_net_stats.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060010629 NULL
10630};
10631
10632static struct attribute_group ipw_attribute_group = {
10633 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010634 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060010635};
10636
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010637static int ipw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060010638{
10639 int err = 0;
10640 struct net_device *net_dev;
10641 void __iomem *base;
10642 u32 length, val;
10643 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010644 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060010645
10646 net_dev = alloc_ieee80211(sizeof(struct ipw_priv));
10647 if (net_dev == NULL) {
10648 err = -ENOMEM;
10649 goto out;
10650 }
10651
10652 priv = ieee80211_priv(net_dev);
10653 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010654
James Ketrenos43f66a62005-03-25 12:31:53 -060010655 priv->net_dev = net_dev;
10656 priv->pci_dev = pdev;
10657#ifdef CONFIG_IPW_DEBUG
10658 ipw_debug_level = debug;
10659#endif
10660 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010661 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
10662 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060010663
James Ketrenosc848d0a2005-08-24 21:56:24 -050010664 init_MUTEX(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010665 if (pci_enable_device(pdev)) {
10666 err = -ENODEV;
10667 goto out_free_ieee80211;
10668 }
10669
10670 pci_set_master(pdev);
10671
Tobias Klauser0e08b442005-06-20 14:28:41 -070010672 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
Jeff Garzikbf794512005-07-31 13:07:26 -040010673 if (!err)
Tobias Klauser0e08b442005-06-20 14:28:41 -070010674 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010675 if (err) {
10676 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
10677 goto out_pci_disable_device;
10678 }
10679
10680 pci_set_drvdata(pdev, priv);
10681
10682 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040010683 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060010684 goto out_pci_disable_device;
10685
Jeff Garzikbf794512005-07-31 13:07:26 -040010686 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060010687 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040010688 pci_read_config_dword(pdev, 0x40, &val);
10689 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060010690 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040010691
James Ketrenos43f66a62005-03-25 12:31:53 -060010692 length = pci_resource_len(pdev, 0);
10693 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040010694
James Ketrenos43f66a62005-03-25 12:31:53 -060010695 base = ioremap_nocache(pci_resource_start(pdev, 0), length);
10696 if (!base) {
10697 err = -ENODEV;
10698 goto out_pci_release_regions;
10699 }
10700
10701 priv->hw_base = base;
10702 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
10703 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
10704
10705 err = ipw_setup_deferred_work(priv);
10706 if (err) {
10707 IPW_ERROR("Unable to setup deferred work\n");
10708 goto out_iounmap;
10709 }
10710
James Ketrenosb095c382005-08-24 22:04:42 -050010711 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010712
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010713 err = request_irq(pdev->irq, ipw_isr, SA_SHIRQ, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010714 if (err) {
10715 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
10716 goto out_destroy_workqueue;
10717 }
10718
10719 SET_MODULE_OWNER(net_dev);
10720 SET_NETDEV_DEV(net_dev, &pdev->dev);
10721
James Ketrenosa613bff2005-08-24 21:43:11 -050010722 ipw_wx_data.spy_data = &priv->ieee->spy_data;
10723 ipw_wx_data.ieee80211 = priv->ieee;
10724
James Ketrenosc848d0a2005-08-24 21:56:24 -050010725 down(&priv->sem);
10726
James Ketrenos43f66a62005-03-25 12:31:53 -060010727 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
10728 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050010729 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060010730
James Ketrenosb095c382005-08-24 22:04:42 -050010731#ifdef CONFIG_IPW_QOS
James Ketrenos2b184d52005-08-03 20:33:14 -050010732 priv->ieee->handle_management = ipw_handle_management;
James Ketrenosb095c382005-08-24 22:04:42 -050010733#endif /* CONFIG_IPW_QOS */
10734
James Ketrenosc848d0a2005-08-24 21:56:24 -050010735 priv->ieee->perfect_rssi = -20;
10736 priv->ieee->worst_rssi = -85;
10737
James Ketrenos43f66a62005-03-25 12:31:53 -060010738 net_dev->open = ipw_net_open;
10739 net_dev->stop = ipw_net_stop;
10740 net_dev->init = ipw_net_init;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010741#if WIRELESS_EXT < 18
James Ketrenosea2b26e2005-08-24 21:25:16 -050010742 net_dev->do_ioctl = ipw_ioctl;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010743#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010744 net_dev->get_stats = ipw_net_get_stats;
10745 net_dev->set_multicast_list = ipw_net_set_multicast_list;
10746 net_dev->set_mac_address = ipw_net_set_mac_address;
10747 net_dev->get_wireless_stats = ipw_get_wireless_stats;
James Ketrenosa613bff2005-08-24 21:43:11 -050010748 net_dev->wireless_data = &ipw_wx_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010749 net_dev->wireless_handlers = &ipw_wx_handler_def;
10750 net_dev->ethtool_ops = &ipw_ethtool_ops;
10751 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010752 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060010753 net_dev->mem_start = pci_resource_start(pdev, 0);
10754 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
10755
10756 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
10757 if (err) {
10758 IPW_ERROR("failed to create sysfs device attributes\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -050010759 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010760 goto out_release_irq;
10761 }
10762
James Ketrenosc848d0a2005-08-24 21:56:24 -050010763 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010764 err = register_netdev(net_dev);
10765 if (err) {
10766 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050010767 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060010768 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010769 return 0;
10770
James Ketrenosa613bff2005-08-24 21:43:11 -050010771 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060010772 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010773 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060010774 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010775 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060010776 destroy_workqueue(priv->workqueue);
10777 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010778 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060010779 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010780 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060010781 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010782 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060010783 pci_disable_device(pdev);
10784 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010785 out_free_ieee80211:
James Ketrenos43f66a62005-03-25 12:31:53 -060010786 free_ieee80211(priv->net_dev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010787 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060010788 return err;
10789}
10790
10791static void ipw_pci_remove(struct pci_dev *pdev)
10792{
10793 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010794 struct list_head *p, *q;
10795 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050010796
James Ketrenos43f66a62005-03-25 12:31:53 -060010797 if (!priv)
10798 return;
10799
James Ketrenosb095c382005-08-24 22:04:42 -050010800 down(&priv->sem);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010801
10802 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060010803 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -050010804 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010805
James Ketrenosb095c382005-08-24 22:04:42 -050010806 up(&priv->sem);
James Ketrenos43f66a62005-03-25 12:31:53 -060010807
10808 unregister_netdev(priv->net_dev);
10809
10810 if (priv->rxq) {
10811 ipw_rx_queue_free(priv, priv->rxq);
10812 priv->rxq = NULL;
10813 }
10814 ipw_tx_queue_free(priv);
10815
10816 /* ipw_down will ensure that there is no more pending work
10817 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050010818 cancel_delayed_work(&priv->adhoc_check);
10819 cancel_delayed_work(&priv->gather_stats);
10820 cancel_delayed_work(&priv->request_scan);
10821 cancel_delayed_work(&priv->rf_kill);
10822 cancel_delayed_work(&priv->scan_check);
10823 destroy_workqueue(priv->workqueue);
10824 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010825
James Ketrenosafbf30a2005-08-25 00:05:33 -050010826 /* Free MAC hash list for ADHOC */
10827 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
10828 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
10829 kfree(list_entry(p, struct ipw_ibss_seq, list));
10830 list_del(p);
10831 }
10832 }
10833
James Ketrenos43f66a62005-03-25 12:31:53 -060010834 free_irq(pdev->irq, priv);
10835 iounmap(priv->hw_base);
10836 pci_release_regions(pdev);
10837 pci_disable_device(pdev);
10838 pci_set_drvdata(pdev, NULL);
10839 free_ieee80211(priv->net_dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010840 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060010841}
10842
James Ketrenos43f66a62005-03-25 12:31:53 -060010843#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070010844static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060010845{
10846 struct ipw_priv *priv = pci_get_drvdata(pdev);
10847 struct net_device *dev = priv->net_dev;
10848
10849 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
10850
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010851 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060010852 ipw_down(priv);
10853
10854 /* Remove the PRESENT state of the device */
10855 netif_device_detach(dev);
10856
James Ketrenos43f66a62005-03-25 12:31:53 -060010857 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010858 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070010859 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040010860
James Ketrenos43f66a62005-03-25 12:31:53 -060010861 return 0;
10862}
10863
10864static int ipw_pci_resume(struct pci_dev *pdev)
10865{
10866 struct ipw_priv *priv = pci_get_drvdata(pdev);
10867 struct net_device *dev = priv->net_dev;
10868 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040010869
James Ketrenos43f66a62005-03-25 12:31:53 -060010870 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
10871
James Ketrenosea2b26e2005-08-24 21:25:16 -050010872 pci_set_power_state(pdev, PCI_D0);
James Ketrenos43f66a62005-03-25 12:31:53 -060010873 pci_enable_device(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010874 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050010875
James Ketrenos43f66a62005-03-25 12:31:53 -060010876 /*
10877 * Suspend/Resume resets the PCI configuration space, so we have to
10878 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
10879 * from interfering with C3 CPU state. pci_restore_state won't help
10880 * here since it only restores the first 64 bytes pci config header.
10881 */
Jeff Garzikbf794512005-07-31 13:07:26 -040010882 pci_read_config_dword(pdev, 0x40, &val);
10883 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060010884 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
10885
10886 /* Set the device back into the PRESENT state; this will also wake
10887 * the queue of needed */
10888 netif_device_attach(dev);
10889
10890 /* Bring the device back up */
10891 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040010892
James Ketrenos43f66a62005-03-25 12:31:53 -060010893 return 0;
10894}
10895#endif
10896
10897/* driver initialization stuff */
10898static struct pci_driver ipw_driver = {
10899 .name = DRV_NAME,
10900 .id_table = card_ids,
10901 .probe = ipw_pci_probe,
10902 .remove = __devexit_p(ipw_pci_remove),
10903#ifdef CONFIG_PM
10904 .suspend = ipw_pci_suspend,
10905 .resume = ipw_pci_resume,
10906#endif
10907};
10908
10909static int __init ipw_init(void)
10910{
10911 int ret;
10912
10913 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
10914 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
10915
10916 ret = pci_module_init(&ipw_driver);
10917 if (ret) {
10918 IPW_ERROR("Unable to initialize PCI module\n");
10919 return ret;
10920 }
10921
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010922 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060010923 if (ret) {
10924 IPW_ERROR("Unable to create driver sysfs file\n");
10925 pci_unregister_driver(&ipw_driver);
10926 return ret;
10927 }
10928
10929 return ret;
10930}
10931
10932static void __exit ipw_exit(void)
10933{
10934 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
10935 pci_unregister_driver(&ipw_driver);
10936}
10937
10938module_param(disable, int, 0444);
10939MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
10940
10941module_param(associate, int, 0444);
10942MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
10943
10944module_param(auto_create, int, 0444);
10945MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
10946
James Ketrenosa613bff2005-08-24 21:43:11 -050010947module_param(led, int, 0444);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010948MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050010949
James Ketrenos43f66a62005-03-25 12:31:53 -060010950module_param(debug, int, 0444);
10951MODULE_PARM_DESC(debug, "debug output mask");
10952
10953module_param(channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040010954MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060010955
James Ketrenosb095c382005-08-24 22:04:42 -050010956#ifdef CONFIG_IPW_QOS
10957module_param(qos_enable, int, 0444);
10958MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
10959
10960module_param(qos_burst_enable, int, 0444);
10961MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
10962
10963module_param(qos_no_ack_mask, int, 0444);
10964MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
10965
10966module_param(burst_duration_CCK, int, 0444);
10967MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
10968
10969module_param(burst_duration_OFDM, int, 0444);
10970MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
10971#endif /* CONFIG_IPW_QOS */
10972
10973#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -060010974module_param(mode, int, 0444);
10975MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
10976#else
10977module_param(mode, int, 0444);
10978MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
10979#endif
10980
James Ketrenosb095c382005-08-24 22:04:42 -050010981module_param(hwcrypto, int, 0444);
10982MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)");
10983
James Ketrenos43f66a62005-03-25 12:31:53 -060010984module_exit(ipw_exit);
10985module_init(ipw_init);